import { ClosedEnum } from "../../types/enums.js"; import * as z from "zod"; export declare const KeyUpdateContractDtoScopes: { readonly OmniReadOnly: "omni_read_only"; readonly OmniReadWrite: "omni_read_write"; readonly ClientDownloadConfigSpecs: "client_download_config_specs"; readonly NoneHashEnabled: "none_hash_enabled"; readonly CanAccessKeys: "can_access_keys"; }; export type KeyUpdateContractDtoScopes = ClosedEnum; export type KeyUpdateContractDto = { description?: string | undefined; scopes?: Array | undefined; environments?: Array | undefined; targetAppID?: any | null | undefined; secondaryTargetAppIDs?: Array | null | undefined; }; /** @internal */ export declare const KeyUpdateContractDtoScopes$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const KeyUpdateContractDtoScopes$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace KeyUpdateContractDtoScopes$ { /** @deprecated use `KeyUpdateContractDtoScopes$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly OmniReadOnly: "omni_read_only"; readonly OmniReadWrite: "omni_read_write"; readonly ClientDownloadConfigSpecs: "client_download_config_specs"; readonly NoneHashEnabled: "none_hash_enabled"; readonly CanAccessKeys: "can_access_keys"; }>; /** @deprecated use `KeyUpdateContractDtoScopes$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly OmniReadOnly: "omni_read_only"; readonly OmniReadWrite: "omni_read_write"; readonly ClientDownloadConfigSpecs: "client_download_config_specs"; readonly NoneHashEnabled: "none_hash_enabled"; readonly CanAccessKeys: "can_access_keys"; }>; } /** @internal */ export declare const KeyUpdateContractDto$inboundSchema: z.ZodType; /** @internal */ export type KeyUpdateContractDto$Outbound = { description?: string | undefined; scopes?: Array | undefined; environments?: Array | undefined; targetAppID?: any | null | undefined; secondaryTargetAppIDs?: Array | null | undefined; }; /** @internal */ export declare const KeyUpdateContractDto$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 KeyUpdateContractDto$ { /** @deprecated use `KeyUpdateContractDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `KeyUpdateContractDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `KeyUpdateContractDto$Outbound` instead. */ type Outbound = KeyUpdateContractDto$Outbound; } //# sourceMappingURL=keyupdatecontractdto.d.ts.map