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 VaultConnectionCustomMappingsAllGlobals = { /** * 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 VaultConnectionCustomMappingsAllRequest = { /** * Unified API */ unifiedApi: string; /** * Service ID of the resource to return */ serviceId: string; /** * Name of the resource (plural) */ resource: string; /** * This is the id of the resource you want to fetch when listing custom fields. For example, if you want to fetch custom fields for a specific contact, you would use the contact id. */ resourceId?: string | undefined; }; export type VaultConnectionCustomMappingsAllResponse = { httpMeta: components.HTTPMetadata; /** * Custom mapping */ getCustomMappingsResponse?: components.GetCustomMappingsResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const VaultConnectionCustomMappingsAllGlobals$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionCustomMappingsAllGlobals$Outbound = { consumerId?: string | undefined; appId?: string | undefined; }; /** @internal */ export declare const VaultConnectionCustomMappingsAllGlobals$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 VaultConnectionCustomMappingsAllGlobals$ { /** @deprecated use `VaultConnectionCustomMappingsAllGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionCustomMappingsAllGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionCustomMappingsAllGlobals$Outbound` instead. */ type Outbound = VaultConnectionCustomMappingsAllGlobals$Outbound; } export declare function vaultConnectionCustomMappingsAllGlobalsToJSON(vaultConnectionCustomMappingsAllGlobals: VaultConnectionCustomMappingsAllGlobals): string; export declare function vaultConnectionCustomMappingsAllGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultConnectionCustomMappingsAllRequest$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionCustomMappingsAllRequest$Outbound = { unified_api: string; service_id: string; resource: string; resource_id?: string | undefined; }; /** @internal */ export declare const VaultConnectionCustomMappingsAllRequest$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 VaultConnectionCustomMappingsAllRequest$ { /** @deprecated use `VaultConnectionCustomMappingsAllRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionCustomMappingsAllRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionCustomMappingsAllRequest$Outbound` instead. */ type Outbound = VaultConnectionCustomMappingsAllRequest$Outbound; } export declare function vaultConnectionCustomMappingsAllRequestToJSON(vaultConnectionCustomMappingsAllRequest: VaultConnectionCustomMappingsAllRequest): string; export declare function vaultConnectionCustomMappingsAllRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultConnectionCustomMappingsAllResponse$inboundSchema: z.ZodType; /** @internal */ export type VaultConnectionCustomMappingsAllResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; GetCustomMappingsResponse?: components.GetCustomMappingsResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const VaultConnectionCustomMappingsAllResponse$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 VaultConnectionCustomMappingsAllResponse$ { /** @deprecated use `VaultConnectionCustomMappingsAllResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConnectionCustomMappingsAllResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConnectionCustomMappingsAllResponse$Outbound` instead. */ type Outbound = VaultConnectionCustomMappingsAllResponse$Outbound; } export declare function vaultConnectionCustomMappingsAllResponseToJSON(vaultConnectionCustomMappingsAllResponse: VaultConnectionCustomMappingsAllResponse): string; export declare function vaultConnectionCustomMappingsAllResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vaultconnectioncustommappingsall.d.ts.map