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 DomainsControllerStartDomainAutoConfigureRequest = { domain: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; createDomainConnectApplyUrlDto: components.CreateDomainConnectApplyUrlDto; }; export type DomainsControllerStartDomainAutoConfigureResponse = { headers: { [k: string]: Array; }; result: components.DomainConnectApplyUrlResponseDto; }; /** @internal */ export type DomainsControllerStartDomainAutoConfigureRequest$Outbound = { domain: string; "idempotency-key"?: string | undefined; CreateDomainConnectApplyUrlDto: components.CreateDomainConnectApplyUrlDto$Outbound; }; /** @internal */ export declare const DomainsControllerStartDomainAutoConfigureRequest$outboundSchema: z.ZodType; export declare function domainsControllerStartDomainAutoConfigureRequestToJSON(domainsControllerStartDomainAutoConfigureRequest: DomainsControllerStartDomainAutoConfigureRequest): string; /** @internal */ export declare const DomainsControllerStartDomainAutoConfigureResponse$inboundSchema: z.ZodType; export declare function domainsControllerStartDomainAutoConfigureResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=domainscontrollerstartdomainautoconfigure.d.ts.map