@unkey/api
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@unkey/api* API.
14 lines • 719 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 PortalCreateSessionResponse = {
headers: {
[k: string]: Array<string>;
};
result: components.V2PortalCreateSessionResponseBody;
};
/** @internal */
export declare const PortalCreateSessionResponse$inboundSchema: z.ZodType<PortalCreateSessionResponse, z.ZodTypeDef, unknown>;
export declare function portalCreateSessionResponseFromJSON(jsonString: string): SafeParseResult<PortalCreateSessionResponse, SDKValidationError>;
//# sourceMappingURL=portalcreatesession.d.ts.map