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 IntegrationsControllerGenerateConnectOAuthUrlRequest = { /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; generateConnectOauthUrlRequestDto: components.GenerateConnectOauthUrlRequestDto; }; export type IntegrationsControllerGenerateConnectOAuthUrlResponse = { headers: { [k: string]: Array; }; result: components.GenerateChatOAuthUrlResponseDto; }; /** @internal */ export type IntegrationsControllerGenerateConnectOAuthUrlRequest$Outbound = { "idempotency-key"?: string | undefined; GenerateConnectOauthUrlRequestDto: components.GenerateConnectOauthUrlRequestDto$Outbound; }; /** @internal */ export declare const IntegrationsControllerGenerateConnectOAuthUrlRequest$outboundSchema: z.ZodType; export declare function integrationsControllerGenerateConnectOAuthUrlRequestToJSON(integrationsControllerGenerateConnectOAuthUrlRequest: IntegrationsControllerGenerateConnectOAuthUrlRequest): string; /** @internal */ export declare const IntegrationsControllerGenerateConnectOAuthUrlResponse$inboundSchema: z.ZodType; export declare function integrationsControllerGenerateConnectOAuthUrlResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=integrationscontrollergenerateconnectoauthurl.d.ts.map