import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type VaultSessionsCreateGlobals = { /** * ID of the consumer which you want to get or push data from */ consumerId?: string | undefined; /** * The ID of your Unify application */ appId?: string | undefined; }; export type VaultSessionsCreateResponse = { httpMeta: components.HTTPMetadata; /** * Session created */ createSessionResponse?: components.CreateSessionResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const VaultSessionsCreateGlobals$inboundSchema: z.ZodType; /** @internal */ export type VaultSessionsCreateGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const VaultSessionsCreateGlobals$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace VaultSessionsCreateGlobals$ { /** @deprecated use `VaultSessionsCreateGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultSessionsCreateGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultSessionsCreateGlobals$Outbound` instead. */ type Outbound = VaultSessionsCreateGlobals$Outbound; } export declare function vaultSessionsCreateGlobalsToJSON(vaultSessionsCreateGlobals: VaultSessionsCreateGlobals): string; export declare function vaultSessionsCreateGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultSessionsCreateResponse$inboundSchema: z.ZodType; /** @internal */ export type VaultSessionsCreateResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; CreateSessionResponse?: components.CreateSessionResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const VaultSessionsCreateResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace VaultSessionsCreateResponse$ { /** @deprecated use `VaultSessionsCreateResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultSessionsCreateResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultSessionsCreateResponse$Outbound` instead. */ type Outbound = VaultSessionsCreateResponse$Outbound; } export declare function vaultSessionsCreateResponseToJSON(vaultSessionsCreateResponse: VaultSessionsCreateResponse): string; export declare function vaultSessionsCreateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vaultsessionscreate.d.ts.map