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 V3FetchRequestRequest = { /** * A unique Prove-generated identifier for the enrolled identity (UUID). */ proveId: string; /** * A unique identifier for the identity attribute (UUID), as returned by the discover endpoint. */ attributeId: 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 V3FetchRequestResponse = { httpMeta: components.HTTPMetadata; /** * V3FetchResponse */ v3FetchResponse?: components.V3FetchResponse | undefined; }; /** @internal */ export declare const V3FetchRequestRequest$inboundSchema: z.ZodType; /** @internal */ export type V3FetchRequestRequest$Outbound = { proveId: string; attributeId: string; clientRequestId?: string | undefined; }; /** @internal */ export declare const V3FetchRequestRequest$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 V3FetchRequestRequest$ { /** @deprecated use `V3FetchRequestRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3FetchRequestRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3FetchRequestRequest$Outbound` instead. */ type Outbound = V3FetchRequestRequest$Outbound; } export declare function v3FetchRequestRequestToJSON(v3FetchRequestRequest: V3FetchRequestRequest): string; export declare function v3FetchRequestRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const V3FetchRequestResponse$inboundSchema: z.ZodType; /** @internal */ export type V3FetchRequestResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; V3FetchResponse?: components.V3FetchResponse$Outbound | undefined; }; /** @internal */ export declare const V3FetchRequestResponse$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 V3FetchRequestResponse$ { /** @deprecated use `V3FetchRequestResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3FetchRequestResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3FetchRequestResponse$Outbound` instead. */ type Outbound = V3FetchRequestResponse$Outbound; } export declare function v3FetchRequestResponseToJSON(v3FetchRequestResponse: V3FetchRequestResponse): string; export declare function v3FetchRequestResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3fetchrequest.d.ts.map