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 V3CrossDomainIdentityRequest = { /** * A Prove-generated unique ID for a specific identity. */ identityId: string; v3CrossDomainIdentityRequest?: components.V3CrossDomainIdentityRequest | undefined; }; export type V3CrossDomainIdentityResponse = { httpMeta: components.HTTPMetadata; /** * V3CrossDomainIdentityResponse */ v3CrossDomainIdentityResponse?: components.V3CrossDomainIdentityResponse | undefined; }; /** @internal */ export declare const V3CrossDomainIdentityRequest$inboundSchema: z.ZodType; /** @internal */ export type V3CrossDomainIdentityRequest$Outbound = { identityId: string; V3CrossDomainIdentityRequest?: components.V3CrossDomainIdentityRequest$Outbound | 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; /** @internal */ export declare const V3CrossDomainIdentityResponse$inboundSchema: z.ZodType; /** @internal */ export type V3CrossDomainIdentityResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; V3CrossDomainIdentityResponse?: components.V3CrossDomainIdentityResponse$Outbound | undefined; }; /** @internal */ export declare const V3CrossDomainIdentityResponse$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 V3CrossDomainIdentityResponse$ { /** @deprecated use `V3CrossDomainIdentityResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3CrossDomainIdentityResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3CrossDomainIdentityResponse$Outbound` instead. */ type Outbound = V3CrossDomainIdentityResponse$Outbound; } export declare function v3CrossDomainIdentityResponseToJSON(v3CrossDomainIdentityResponse: V3CrossDomainIdentityResponse): string; export declare function v3CrossDomainIdentityResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3crossdomainidentity.d.ts.map