UNPKG

@unkey/api

Version:

Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@unkey/api* API.

13 lines 717 B
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type V2IdentitiesCreateIdentityResponseData = { /** * The unique identifier of the created identity. */ identityId: string; }; /** @internal */ export declare const V2IdentitiesCreateIdentityResponseData$inboundSchema: z.ZodType<V2IdentitiesCreateIdentityResponseData, z.ZodTypeDef, unknown>; export declare function v2IdentitiesCreateIdentityResponseDataFromJSON(jsonString: string): SafeParseResult<V2IdentitiesCreateIdentityResponseData, SDKValidationError>; //# sourceMappingURL=v2identitiescreateidentityresponsedata.d.ts.map