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 VaultCustomMappingsAllGlobals = { /** * 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 VaultCustomMappingsAllRequest = { /** * Unified API */ unifiedApi: string; /** * Service ID of the resource to return */ serviceId: string; }; export type VaultCustomMappingsAllResponse = { httpMeta: components.HTTPMetadata; /** * Custom mapping */ getCustomMappingsResponse?: components.GetCustomMappingsResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const VaultCustomMappingsAllGlobals$inboundSchema: z.ZodType; /** @internal */ export type VaultCustomMappingsAllGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const VaultCustomMappingsAllGlobals$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 VaultCustomMappingsAllGlobals$ { /** @deprecated use `VaultCustomMappingsAllGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultCustomMappingsAllGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultCustomMappingsAllGlobals$Outbound` instead. */ type Outbound = VaultCustomMappingsAllGlobals$Outbound; } export declare function vaultCustomMappingsAllGlobalsToJSON(vaultCustomMappingsAllGlobals: VaultCustomMappingsAllGlobals): string; export declare function vaultCustomMappingsAllGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultCustomMappingsAllRequest$inboundSchema: z.ZodType; /** @internal */ export type VaultCustomMappingsAllRequest$Outbound = { unified_api: string; service_id: string; }; /** @internal */ export declare const VaultCustomMappingsAllRequest$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 VaultCustomMappingsAllRequest$ { /** @deprecated use `VaultCustomMappingsAllRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultCustomMappingsAllRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultCustomMappingsAllRequest$Outbound` instead. */ type Outbound = VaultCustomMappingsAllRequest$Outbound; } export declare function vaultCustomMappingsAllRequestToJSON(vaultCustomMappingsAllRequest: VaultCustomMappingsAllRequest): string; export declare function vaultCustomMappingsAllRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultCustomMappingsAllResponse$inboundSchema: z.ZodType; /** @internal */ export type VaultCustomMappingsAllResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; GetCustomMappingsResponse?: components.GetCustomMappingsResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const VaultCustomMappingsAllResponse$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 VaultCustomMappingsAllResponse$ { /** @deprecated use `VaultCustomMappingsAllResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultCustomMappingsAllResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultCustomMappingsAllResponse$Outbound` instead. */ type Outbound = VaultCustomMappingsAllResponse$Outbound; } export declare function vaultCustomMappingsAllResponseToJSON(vaultCustomMappingsAllResponse: VaultCustomMappingsAllResponse): string; export declare function vaultCustomMappingsAllResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vaultcustommappingsall.d.ts.map