import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Direction of sorting */ export declare const OrderDirection: { readonly Asc: "ASC"; readonly Desc: "DESC"; }; /** * Direction of sorting */ export type OrderDirection = ClosedEnum; export type ContextsControllerListContextsRequest = { /** * Cursor for pagination indicating the starting point after which to fetch results. */ after?: string | undefined; /** * Cursor for pagination indicating the ending point before which to fetch results. */ before?: string | undefined; /** * Limit the number of items to return */ limit?: number | undefined; /** * Direction of sorting */ orderDirection?: OrderDirection | undefined; /** * Field to order by */ orderBy?: string | undefined; /** * Include cursor item in response */ includeCursor?: boolean | undefined; /** * Filter contexts by id */ id?: string | undefined; /** * Search contexts by type or id (supports partial matching across both fields) */ search?: string | undefined; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type ContextsControllerListContextsResponse = { headers: { [k: string]: Array; }; result: components.ListContextsResponseDto; }; /** @internal */ export declare const OrderDirection$outboundSchema: z.ZodNativeEnum; /** @internal */ export type ContextsControllerListContextsRequest$Outbound = { after?: string | undefined; before?: string | undefined; limit?: number | undefined; orderDirection?: string | undefined; orderBy?: string | undefined; includeCursor?: boolean | undefined; id?: string | undefined; search?: string | undefined; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const ContextsControllerListContextsRequest$outboundSchema: z.ZodType; export declare function contextsControllerListContextsRequestToJSON(contextsControllerListContextsRequest: ContextsControllerListContextsRequest): string; /** @internal */ export declare const ContextsControllerListContextsResponse$inboundSchema: z.ZodType; export declare function contextsControllerListContextsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=contextscontrollerlistcontexts.d.ts.map