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 V3DiscoverRequestRequest = { /** * A unique Prove-generated identifier for the enrolled identity (UUID). */ 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 V3DiscoverRequestResponse = { httpMeta: components.HTTPMetadata; /** * Successful Request. */ v3DiscoverResponse?: components.V3DiscoverResponse | undefined; headers: { [k: string]: Array; }; }; /** @internal */ export declare const V3DiscoverRequestRequest$inboundSchema: z.ZodType; /** @internal */ export type V3DiscoverRequestRequest$Outbound = { proveId: string; clientRequestId?: string | undefined; }; /** @internal */ export declare const V3DiscoverRequestRequest$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 V3DiscoverRequestRequest$ { /** @deprecated use `V3DiscoverRequestRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3DiscoverRequestRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3DiscoverRequestRequest$Outbound` instead. */ type Outbound = V3DiscoverRequestRequest$Outbound; } export declare function v3DiscoverRequestRequestToJSON(v3DiscoverRequestRequest: V3DiscoverRequestRequest): string; export declare function v3DiscoverRequestRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const V3DiscoverRequestResponse$inboundSchema: z.ZodType; /** @internal */ export type V3DiscoverRequestResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; V3DiscoverResponse?: components.V3DiscoverResponse$Outbound | undefined; Headers: { [k: string]: Array; }; }; /** @internal */ export declare const V3DiscoverRequestResponse$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 V3DiscoverRequestResponse$ { /** @deprecated use `V3DiscoverRequestResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3DiscoverRequestResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3DiscoverRequestResponse$Outbound` instead. */ type Outbound = V3DiscoverRequestResponse$Outbound; } export declare function v3DiscoverRequestResponseToJSON(v3DiscoverRequestResponse: V3DiscoverRequestResponse): string; export declare function v3DiscoverRequestResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3discoverrequest.d.ts.map