import { ClosedEnum } from "../../types/enums.js"; import * as z from "zod"; export declare const KeyCreateContractDtoType: { readonly Server: "SERVER"; readonly Client: "CLIENT"; readonly Console: "CONSOLE"; }; export type KeyCreateContractDtoType = ClosedEnum; export declare const KeyCreateContractDtoScopes: { 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 KeyCreateContractDtoScopes = ClosedEnum; export type KeyCreateContractDto = { description: string; type: KeyCreateContractDtoType; scopes?: Array | undefined; environments?: Array | undefined; targetAppID?: string | undefined; secondaryTargetAppIDs?: Array | undefined; }; /** @internal */ export declare const KeyCreateContractDtoType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const KeyCreateContractDtoType$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 KeyCreateContractDtoType$ { /** @deprecated use `KeyCreateContractDtoType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Server: "SERVER"; readonly Client: "CLIENT"; readonly Console: "CONSOLE"; }>; /** @deprecated use `KeyCreateContractDtoType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Server: "SERVER"; readonly Client: "CLIENT"; readonly Console: "CONSOLE"; }>; } /** @internal */ export declare const KeyCreateContractDtoScopes$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const KeyCreateContractDtoScopes$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 KeyCreateContractDtoScopes$ { /** @deprecated use `KeyCreateContractDtoScopes$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 `KeyCreateContractDtoScopes$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 KeyCreateContractDto$inboundSchema: z.ZodType; /** @internal */ export type KeyCreateContractDto$Outbound = { description: string; type: string; scopes?: Array | undefined; environments?: Array | undefined; targetAppID?: string | undefined; secondaryTargetAppIDs?: Array | undefined; }; /** @internal */ export declare const KeyCreateContractDto$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 KeyCreateContractDto$ { /** @deprecated use `KeyCreateContractDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `KeyCreateContractDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `KeyCreateContractDto$Outbound` instead. */ type Outbound = KeyCreateContractDto$Outbound; } //# sourceMappingURL=keycreatecontractdto.d.ts.map