@unkey/api
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@unkey/api* API.
14 lines • 733 B
TypeScript
import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import * as components from "../components/index.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type PortalExchangeSessionResponse = {
headers: {
[k: string]: Array<string>;
};
result: components.V2PortalExchangeSessionResponseBody;
};
/** @internal */
export declare const PortalExchangeSessionResponse$inboundSchema: z.ZodType<PortalExchangeSessionResponse, z.ZodTypeDef, unknown>;
export declare function portalExchangeSessionResponseFromJSON(jsonString: string): SafeParseResult<PortalExchangeSessionResponse, SDKValidationError>;
//# sourceMappingURL=portalexchangesession.d.ts.map