import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListJobEventsRequest = { id: string; cursor?: string | undefined; limit?: number | undefined; /** * asc pages oldest-first (default); desc pages newest-first. A cursor is only valid within a traversal that keeps the same order. */ order?: components.ComputeOrder | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type ListJobEventsResponse = components.ComputeEventList | components.ComputeErrorEnvelope; /** @internal */ export declare const ListJobEventsRequest$inboundSchema: z.ZodType; /** @internal */ export type ListJobEventsRequest$Outbound = { id: string; cursor?: string | undefined; limit: number; order: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListJobEventsRequest$outboundSchema: z.ZodType; export declare function listJobEventsRequestToJSON(listJobEventsRequest: ListJobEventsRequest): string; export declare function listJobEventsRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListJobEventsResponse$inboundSchema: z.ZodType; /** @internal */ export type ListJobEventsResponse$Outbound = components.ComputeEventList$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const ListJobEventsResponse$outboundSchema: z.ZodType; export declare function listJobEventsResponseToJSON(listJobEventsResponse: ListJobEventsResponse): string; export declare function listJobEventsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listjobevents.d.ts.map