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 VaultConnectionsAllGlobals = { /** * 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 VaultConnectionsAllRequest = { /** * Scope results to Unified API */ api?: string | undefined; /** * Scopes results to connections that have been configured or not */ configured?: boolean | undefined; }; export type VaultConnectionsAllResponse = { httpMeta: components.HTTPMetadata; /** * Connections */ getConnectionsResponse?: components.GetConnectionsResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const VaultConnectionsAllGlobals$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionsAllGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const VaultConnectionsAllGlobals$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 VaultConnectionsAllGlobals$ { /** @deprecated use `VaultConnectionsAllGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsAllGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsAllGlobals$Outbound` instead. */ type Outbound = VaultConnectionsAllGlobals$Outbound; } export declare function vaultConnectionsAllGlobalsToJSON(vaultConnectionsAllGlobals: VaultConnectionsAllGlobals): string; export declare function vaultConnectionsAllGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultConnectionsAllRequest$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionsAllRequest$Outbound = { api?: string | undefined; configured?: boolean | undefined; }; /** @internal */ export declare const VaultConnectionsAllRequest$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 VaultConnectionsAllRequest$ { /** @deprecated use `VaultConnectionsAllRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsAllRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsAllRequest$Outbound` instead. */ type Outbound = VaultConnectionsAllRequest$Outbound; } export declare function vaultConnectionsAllRequestToJSON(vaultConnectionsAllRequest: VaultConnectionsAllRequest): string; export declare function vaultConnectionsAllRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultConnectionsAllResponse$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionsAllResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; GetConnectionsResponse?: components.GetConnectionsResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const VaultConnectionsAllResponse$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 VaultConnectionsAllResponse$ { /** @deprecated use `VaultConnectionsAllResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsAllResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsAllResponse$Outbound` instead. */ type Outbound = VaultConnectionsAllResponse$Outbound; } export declare function vaultConnectionsAllResponseToJSON(vaultConnectionsAllResponse: VaultConnectionsAllResponse): string; export declare function vaultConnectionsAllResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vaultconnectionsall.d.ts.map