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 VaultConsumersUpdateGlobals = { /** * The ID of your Unify application */ appId?: string | undefined; }; export type VaultConsumersUpdateRequest = { /** * ID of the consumer to return */ consumerId: string; updateConsumerRequest: components.UpdateConsumerRequest; }; export type VaultConsumersUpdateResponse = { httpMeta: components.HTTPMetadata; /** * Consumer updated */ updateConsumerResponse?: components.UpdateConsumerResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const VaultConsumersUpdateGlobals$inboundSchema: z.ZodType; /** @internal */ export type VaultConsumersUpdateGlobals$Outbound = { appId?: string | undefined; }; /** @internal */ export declare const VaultConsumersUpdateGlobals$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 VaultConsumersUpdateGlobals$ { /** @deprecated use `VaultConsumersUpdateGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConsumersUpdateGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConsumersUpdateGlobals$Outbound` instead. */ type Outbound = VaultConsumersUpdateGlobals$Outbound; } export declare function vaultConsumersUpdateGlobalsToJSON(vaultConsumersUpdateGlobals: VaultConsumersUpdateGlobals): string; export declare function vaultConsumersUpdateGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultConsumersUpdateRequest$inboundSchema: z.ZodType; /** @internal */ export type VaultConsumersUpdateRequest$Outbound = { consumer_id: string; UpdateConsumerRequest: components.UpdateConsumerRequest$Outbound; }; /** @internal */ export declare const VaultConsumersUpdateRequest$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 VaultConsumersUpdateRequest$ { /** @deprecated use `VaultConsumersUpdateRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConsumersUpdateRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConsumersUpdateRequest$Outbound` instead. */ type Outbound = VaultConsumersUpdateRequest$Outbound; } export declare function vaultConsumersUpdateRequestToJSON(vaultConsumersUpdateRequest: VaultConsumersUpdateRequest): string; export declare function vaultConsumersUpdateRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultConsumersUpdateResponse$inboundSchema: z.ZodType; /** @internal */ export type VaultConsumersUpdateResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; UpdateConsumerResponse?: components.UpdateConsumerResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const VaultConsumersUpdateResponse$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 VaultConsumersUpdateResponse$ { /** @deprecated use `VaultConsumersUpdateResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConsumersUpdateResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConsumersUpdateResponse$Outbound` instead. */ type Outbound = VaultConsumersUpdateResponse$Outbound; } export declare function vaultConsumersUpdateResponseToJSON(vaultConsumersUpdateResponse: VaultConsumersUpdateResponse): string; export declare function vaultConsumersUpdateResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vaultconsumersupdate.d.ts.map