UNPKG

@unkey/api

Version:

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

19 lines 1.18 kB
import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EmptyResponse } from "./emptyresponse.js"; import { Meta } from "./meta.js"; export type V2PermissionsDeletePermissionResponseBody = { /** * 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; /** * Empty response object by design. A successful response indicates this operation was successfully executed. */ data: EmptyResponse; }; /** @internal */ export declare const V2PermissionsDeletePermissionResponseBody$inboundSchema: z.ZodType<V2PermissionsDeletePermissionResponseBody, z.ZodTypeDef, unknown>; export declare function v2PermissionsDeletePermissionResponseBodyFromJSON(jsonString: string): SafeParseResult<V2PermissionsDeletePermissionResponseBody, SDKValidationError>; //# sourceMappingURL=v2permissionsdeletepermissionresponsebody.d.ts.map