@unkey/api
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@unkey/api* API.
19 lines • 826 B
TypeScript
import * as z from "zod/v3";
export type V2KeysWhoamiRequestBody = {
/**
* The complete API key string provided by you, including any prefix.
*
* @remarks
* Never log, cache, or store API keys in your system as they provide full access to user resources.
* Include the full key exactly as provided - even minor modifications will cause a not found error.
*/
key: string;
};
/** @internal */
export type V2KeysWhoamiRequestBody$Outbound = {
key: string;
};
/** @internal */
export declare const V2KeysWhoamiRequestBody$outboundSchema: z.ZodType<V2KeysWhoamiRequestBody$Outbound, z.ZodTypeDef, V2KeysWhoamiRequestBody>;
export declare function v2KeysWhoamiRequestBodyToJSON(v2KeysWhoamiRequestBody: V2KeysWhoamiRequestBody): string;
//# sourceMappingURL=v2keyswhoamirequestbody.d.ts.map