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 VaultConsumersOneGlobals = { /** * The ID of your Unify application */ appId?: string | undefined; }; export type VaultConsumersOneRequest = { /** * ID of the consumer to return */ consumerId: string; }; export type VaultConsumersOneResponse = { httpMeta: components.HTTPMetadata; /** * Consumer */ getConsumerResponse?: components.GetConsumerResponse | undefined; /** * Unexpected error */ unexpectedErrorResponse?: components.UnexpectedErrorResponse | undefined; }; /** @internal */ export declare const VaultConsumersOneGlobals$inboundSchema: z.ZodType; /** @internal */ export type VaultConsumersOneGlobals$Outbound = { appId?: string | undefined; }; /** @internal */ export declare const VaultConsumersOneGlobals$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 VaultConsumersOneGlobals$ { /** @deprecated use `VaultConsumersOneGlobals$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConsumersOneGlobals$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConsumersOneGlobals$Outbound` instead. */ type Outbound = VaultConsumersOneGlobals$Outbound; } export declare function vaultConsumersOneGlobalsToJSON(vaultConsumersOneGlobals: VaultConsumersOneGlobals): string; export declare function vaultConsumersOneGlobalsFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultConsumersOneRequest$inboundSchema: z.ZodType; /** @internal */ export type VaultConsumersOneRequest$Outbound = { consumer_id: string; }; /** @internal */ export declare const VaultConsumersOneRequest$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 VaultConsumersOneRequest$ { /** @deprecated use `VaultConsumersOneRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConsumersOneRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConsumersOneRequest$Outbound` instead. */ type Outbound = VaultConsumersOneRequest$Outbound; } export declare function vaultConsumersOneRequestToJSON(vaultConsumersOneRequest: VaultConsumersOneRequest): string; export declare function vaultConsumersOneRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const VaultConsumersOneResponse$inboundSchema: z.ZodType; /** @internal */ export type VaultConsumersOneResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; GetConsumerResponse?: components.GetConsumerResponse$Outbound | undefined; UnexpectedErrorResponse?: components.UnexpectedErrorResponse$Outbound | undefined; }; /** @internal */ export declare const VaultConsumersOneResponse$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 VaultConsumersOneResponse$ { /** @deprecated use `VaultConsumersOneResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `VaultConsumersOneResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `VaultConsumersOneResponse$Outbound` instead. */ type Outbound = VaultConsumersOneResponse$Outbound; } export declare function vaultConsumersOneResponseToJSON(vaultConsumersOneResponse: VaultConsumersOneResponse): string; export declare function vaultConsumersOneResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=vaultconsumersone.d.ts.map