import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ConnectorConnectorsAllGlobals = { /** * The ID of your Unify application */ appId?: string | undefined; }; export type ConnectorConnectorsAllRequest = { /** * Cursor to start from. You can find cursors for next/previous pages in the meta.cursors property of the response. */ cursor?: string | null | undefined; /** * Number of results to return. Minimum 1, Maximum 200, Default 20 */ limit?: number | undefined; /** * Apply filters */ filter?: components.ConnectorsFilter | undefined; }; export type ConnectorConnectorsAllResponse = { httpMeta: components.HTTPMetadata; /** * Connectors */ getConnectorsResponse?: components.GetConnectorsResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const ConnectorConnectorsAllGlobals$inboundSchema: z.ZodType; /** @internal */ export type ConnectorConnectorsAllGlobals$Outbound = { appId?: string | undefined; }; /** @internal */ export declare const ConnectorConnectorsAllGlobals$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConnectorConnectorsAllGlobals$ { /** @deprecated use `ConnectorConnectorsAllGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConnectorConnectorsAllGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConnectorConnectorsAllGlobals$Outbound` instead. */ type Outbound = ConnectorConnectorsAllGlobals$Outbound; } export declare function connectorConnectorsAllGlobalsToJSON(connectorConnectorsAllGlobals: ConnectorConnectorsAllGlobals): string; export declare function connectorConnectorsAllGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ConnectorConnectorsAllRequest$inboundSchema: z.ZodType; /** @internal */ export type ConnectorConnectorsAllRequest$Outbound = { cursor?: string | null | undefined; limit: number; filter?: components.ConnectorsFilter$Outbound | undefined; }; /** @internal */ export declare const ConnectorConnectorsAllRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConnectorConnectorsAllRequest$ { /** @deprecated use `ConnectorConnectorsAllRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConnectorConnectorsAllRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConnectorConnectorsAllRequest$Outbound` instead. */ type Outbound = ConnectorConnectorsAllRequest$Outbound; } export declare function connectorConnectorsAllRequestToJSON(connectorConnectorsAllRequest: ConnectorConnectorsAllRequest): string; export declare function connectorConnectorsAllRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ConnectorConnectorsAllResponse$inboundSchema: z.ZodType; /** @internal */ export type ConnectorConnectorsAllResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; GetConnectorsResponse?: components.GetConnectorsResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const ConnectorConnectorsAllResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConnectorConnectorsAllResponse$ { /** @deprecated use `ConnectorConnectorsAllResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConnectorConnectorsAllResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConnectorConnectorsAllResponse$Outbound` instead. */ type Outbound = ConnectorConnectorsAllResponse$Outbound; } export declare function connectorConnectorsAllResponseToJSON(connectorConnectorsAllResponse: ConnectorConnectorsAllResponse): string; export declare function connectorConnectorsAllResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=connectorconnectorsall.d.ts.map