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 VaultConnectionsOneGlobals = { /** * 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 VaultConnectionsOneRequest = { /** * Service ID of the resource to return */ serviceId: string; /** * Unified API */ unifiedApi: string; }; export type VaultConnectionsOneResponse = { httpMeta: components.HTTPMetadata; /** * Connection */ getConnectionResponse?: components.GetConnectionResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const VaultConnectionsOneGlobals$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionsOneGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const VaultConnectionsOneGlobals$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 VaultConnectionsOneGlobals$ { /** @deprecated use `VaultConnectionsOneGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsOneGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsOneGlobals$Outbound` instead. */ type Outbound = VaultConnectionsOneGlobals$Outbound; } export declare function vaultConnectionsOneGlobalsToJSON(vaultConnectionsOneGlobals: VaultConnectionsOneGlobals): string; export declare function vaultConnectionsOneGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultConnectionsOneRequest$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionsOneRequest$Outbound = { service_id: string; unified_api: string; }; /** @internal */ export declare const VaultConnectionsOneRequest$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 VaultConnectionsOneRequest$ { /** @deprecated use `VaultConnectionsOneRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsOneRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsOneRequest$Outbound` instead. */ type Outbound = VaultConnectionsOneRequest$Outbound; } export declare function vaultConnectionsOneRequestToJSON(vaultConnectionsOneRequest: VaultConnectionsOneRequest): string; export declare function vaultConnectionsOneRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultConnectionsOneResponse$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionsOneResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; GetConnectionResponse?: components.GetConnectionResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const VaultConnectionsOneResponse$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 VaultConnectionsOneResponse$ { /** @deprecated use `VaultConnectionsOneResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsOneResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionsOneResponse$Outbound` instead. */ type Outbound = VaultConnectionsOneResponse$Outbound; } export declare function vaultConnectionsOneResponseToJSON(vaultConnectionsOneResponse: VaultConnectionsOneResponse): string; export declare function vaultConnectionsOneResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vaultconnectionsone.d.ts.map