UNPKG

@unkey/api

Version:

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

17 lines 1.06 kB
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Meta } from "./meta.js"; /** * Empty response object. A successful response indicates the identity was deleted successfully. */ export type V2IdentitiesDeleteIdentityResponseBody = { /** * Metadata object included in every API response. This provides context about the request and is essential for debugging, audit trails, and support inquiries. The `requestId` is particularly important when troubleshooting issues with the Unkey support team. */ meta: Meta; }; /** @internal */ export declare const V2IdentitiesDeleteIdentityResponseBody$inboundSchema: z.ZodType<V2IdentitiesDeleteIdentityResponseBody, z.ZodTypeDef, unknown>; export declare function v2IdentitiesDeleteIdentityResponseBodyFromJSON(jsonString: string): SafeParseResult<V2IdentitiesDeleteIdentityResponseBody, SDKValidationError>; //# sourceMappingURL=v2identitiesdeleteidentityresponsebody.d.ts.map