UNPKG

@unkey/api

Version:

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

18 lines 782 B
import * as z from "zod/v3"; export type V2PortalExchangeSessionRequestBody = { /** * The session token ID received from `portal.createSession`. * * @remarks * Must be valid, unexpired, and not previously exchanged. */ sessionId: string; }; /** @internal */ export type V2PortalExchangeSessionRequestBody$Outbound = { sessionId: string; }; /** @internal */ export declare const V2PortalExchangeSessionRequestBody$outboundSchema: z.ZodType<V2PortalExchangeSessionRequestBody$Outbound, z.ZodTypeDef, V2PortalExchangeSessionRequestBody>; export declare function v2PortalExchangeSessionRequestBodyToJSON(v2PortalExchangeSessionRequestBody: V2PortalExchangeSessionRequestBody): string; //# sourceMappingURL=v2portalexchangesessionrequestbody.d.ts.map