import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Request body for the V3 Identity Cross Domain API. */ export type V3CrossDomainIdentityRequest = { /** * A client-generated unique ID for a specific session. This can be used to identify specific requests. The format of this ID is defined by the client - Prove recommends using a GUID, but any format can be accepted. Do not include Personally Identifiable Information (PII) in this field. */ clientRequestId?: string | undefined; }; /** @internal */ export declare const V3CrossDomainIdentityRequest$inboundSchema: z.ZodType; /** @internal */ export type V3CrossDomainIdentityRequest$Outbound = { clientRequestId?: string | undefined; }; /** @internal */ export declare const V3CrossDomainIdentityRequest$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 V3CrossDomainIdentityRequest$ { /** @deprecated use `V3CrossDomainIdentityRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3CrossDomainIdentityRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3CrossDomainIdentityRequest$Outbound` instead. */ type Outbound = V3CrossDomainIdentityRequest$Outbound; } export declare function v3CrossDomainIdentityRequestToJSON(v3CrossDomainIdentityRequest: V3CrossDomainIdentityRequest): string; export declare function v3CrossDomainIdentityRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3crossdomainidentityrequest.d.ts.map