@unkey/api
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@unkey/api* API.
23 lines • 1.03 kB
TypeScript
import * as z from "zod/v3";
import { V2KeysMigrateKeyData, V2KeysMigrateKeyData$Outbound } from "./v2keysmigratekeydata.js";
export type V2KeysMigrateKeysRequestBody = {
/**
* Identifier of the configured migration provider/strategy to use (e.g., "your_company"). You will receive this from Unkey's support staff.
*/
migrationId: string;
/**
* The ID of the API that the keys should be inserted into
*/
apiId: string;
keys: Array<V2KeysMigrateKeyData>;
};
/** @internal */
export type V2KeysMigrateKeysRequestBody$Outbound = {
migrationId: string;
apiId: string;
keys: Array<V2KeysMigrateKeyData$Outbound>;
};
/** @internal */
export declare const V2KeysMigrateKeysRequestBody$outboundSchema: z.ZodType<V2KeysMigrateKeysRequestBody$Outbound, z.ZodTypeDef, V2KeysMigrateKeysRequestBody>;
export declare function v2KeysMigrateKeysRequestBodyToJSON(v2KeysMigrateKeysRequestBody: V2KeysMigrateKeysRequestBody): string;
//# sourceMappingURL=v2keysmigratekeysrequestbody.d.ts.map