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 ListConnectionsConnectionsGetRequest = { /** * An opaque cursor for pagination */ cursor?: string | null | undefined; /** * The number of items per page (must be greater than 0 and less than or equal to 100) */ pageSize?: number | undefined; /** * The metadata search filter. Returns only items which match the filter. The following filter operators are supported: $eq - Equal to (number, string, boolean), $ne - Not equal to (number, string, boolean), $gt - Greater than (number), $gte - Greater than or equal to (number), $lt - Less than (number), $lte - Less than or equal to (number), $in - In array (string or number), $nin - Not in array (string or number). The operators can be combined with AND and OR. Read [Metadata & Filters guide](https://docs.ragie.ai/docs/metadata-filters) for more details and examples. */ filter?: string | null | undefined; /** * An optional partition to scope the request to. If omitted, the request will be scoped to the default partition. */ partition?: string | null | undefined; }; export type ListConnectionsConnectionsGetResponse = { result: components.ConnectionList; }; /** @internal */ export declare const ListConnectionsConnectionsGetRequest$inboundSchema: z.ZodType; /** @internal */ export type ListConnectionsConnectionsGetRequest$Outbound = { cursor?: string | null | undefined; page_size: number; filter?: string | null | undefined; partition?: string | null | undefined; }; /** @internal */ export declare const ListConnectionsConnectionsGetRequest$outboundSchema: z.ZodType; export declare function listConnectionsConnectionsGetRequestToJSON(listConnectionsConnectionsGetRequest: ListConnectionsConnectionsGetRequest): string; export declare function listConnectionsConnectionsGetRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListConnectionsConnectionsGetResponse$inboundSchema: z.ZodType; /** @internal */ export type ListConnectionsConnectionsGetResponse$Outbound = { Result: components.ConnectionList$Outbound; }; /** @internal */ export declare const ListConnectionsConnectionsGetResponse$outboundSchema: z.ZodType; export declare function listConnectionsConnectionsGetResponseToJSON(listConnectionsConnectionsGetResponse: ListConnectionsConnectionsGetResponse): string; export declare function listConnectionsConnectionsGetResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listconnectionsconnectionsget.d.ts.map