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 ConnectorConnectorsOneGlobals = { /** * The ID of your Unify application */ appId?: string | undefined; }; export type ConnectorConnectorsOneRequest = { /** * ID of the record you are acting upon. */ id: string; }; export type ConnectorConnectorsOneResponse = { httpMeta: components.HTTPMetadata; /** * Connectors */ getConnectorResponse?: components.GetConnectorResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const ConnectorConnectorsOneGlobals$inboundSchema: z.ZodType; /** @internal */ export type ConnectorConnectorsOneGlobals$Outbound = { appId?: string | undefined; }; /** @internal */ export declare const ConnectorConnectorsOneGlobals$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 ConnectorConnectorsOneGlobals$ { /** @deprecated use `ConnectorConnectorsOneGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConnectorConnectorsOneGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConnectorConnectorsOneGlobals$Outbound` instead. */ type Outbound = ConnectorConnectorsOneGlobals$Outbound; } export declare function connectorConnectorsOneGlobalsToJSON(connectorConnectorsOneGlobals: ConnectorConnectorsOneGlobals): string; export declare function connectorConnectorsOneGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ConnectorConnectorsOneRequest$inboundSchema: z.ZodType; /** @internal */ export type ConnectorConnectorsOneRequest$Outbound = { id: string; }; /** @internal */ export declare const ConnectorConnectorsOneRequest$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 ConnectorConnectorsOneRequest$ { /** @deprecated use `ConnectorConnectorsOneRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConnectorConnectorsOneRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConnectorConnectorsOneRequest$Outbound` instead. */ type Outbound = ConnectorConnectorsOneRequest$Outbound; } export declare function connectorConnectorsOneRequestToJSON(connectorConnectorsOneRequest: ConnectorConnectorsOneRequest): string; export declare function connectorConnectorsOneRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ConnectorConnectorsOneResponse$inboundSchema: z.ZodType; /** @internal */ export type ConnectorConnectorsOneResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; GetConnectorResponse?: components.GetConnectorResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const ConnectorConnectorsOneResponse$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 ConnectorConnectorsOneResponse$ { /** @deprecated use `ConnectorConnectorsOneResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConnectorConnectorsOneResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConnectorConnectorsOneResponse$Outbound` instead. */ type Outbound = ConnectorConnectorsOneResponse$Outbound; } export declare function connectorConnectorsOneResponseToJSON(connectorConnectorsOneResponse: ConnectorConnectorsOneResponse): string; export declare function connectorConnectorsOneResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=connectorconnectorsone.d.ts.map