UNPKG

appwrite-utils

Version:

`appwrite-utils` is a comprehensive TypeScript library designed to streamline the development process for Appwrite projects. Version 1.0.0 aligns with the YAML-first architecture of `appwrite-utils-cli`, providing enhanced integration capabilities and rob

14 lines (13 loc) 617 B
import { z } from "zod"; export declare const SpecificationSchema: z.ZodNativeEnum<{ readonly HALF_CPU_HALF_GIG_RAM: "s-0.5vcpu-512mb"; readonly ONE_CPU_HALF_GIG_RAM: "s-1vcpu-512mb"; readonly ONE_CPU_ONE_GIG_RAM: "s-1vcpu-1gb"; readonly TWO_CPU_TWO_GIG_RAM: "s-2vcpu-2gb"; readonly TWO_CPU_FOUR_GIG_RAM: "s-2vcpu-4gb"; readonly FOUR_CPU_FOUR_GIG_RAM: "s-4vcpu-4gb"; readonly FOUR_CPU_EIGHT_GIG_RAM: "s-4vcpu-8gb"; readonly EIGHT_CPU_FOUR_GIG_RAM: "s-8vcpu-4gb"; readonly EIGHT_CPU_EIGHT_GIG_RAM: "s-8vcpu-8gb"; }>; export type Specification = z.infer<typeof SpecificationSchema>;