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 V3GetIdentityRequest = { /** * A unique Prove-generated identifier for the enrolled identity. */ proveId: string; /** * 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; }; export type V3GetIdentityResponse = { httpMeta: components.HTTPMetadata; /** * V3GetIdentityResponse */ v3GetIdentityResponse?: components.V3GetIdentityResponse | undefined; }; /** @internal */ export declare const V3GetIdentityRequest$inboundSchema: z.ZodType; /** @internal */ export type V3GetIdentityRequest$Outbound = { proveId: string; clientRequestId?: string | undefined; }; /** @internal */ export declare const V3GetIdentityRequest$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 V3GetIdentityRequest$ { /** @deprecated use `V3GetIdentityRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3GetIdentityRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3GetIdentityRequest$Outbound` instead. */ type Outbound = V3GetIdentityRequest$Outbound; } export declare function v3GetIdentityRequestToJSON(v3GetIdentityRequest: V3GetIdentityRequest): string; export declare function v3GetIdentityRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const V3GetIdentityResponse$inboundSchema: z.ZodType; /** @internal */ export type V3GetIdentityResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; V3GetIdentityResponse?: components.V3GetIdentityResponse$Outbound | undefined; }; /** @internal */ export declare const V3GetIdentityResponse$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 V3GetIdentityResponse$ { /** @deprecated use `V3GetIdentityResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3GetIdentityResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3GetIdentityResponse$Outbound` instead. */ type Outbound = V3GetIdentityResponse$Outbound; } export declare function v3GetIdentityResponseToJSON(v3GetIdentityResponse: V3GetIdentityResponse): string; export declare function v3GetIdentityResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3getidentity.d.ts.map