UNPKG

appwrite-utils-cli

Version:

Appwrite Utility Functions to help with database management, data conversion, data import, migrations, and much more. Meant to be used as a CLI tool, I do not recommend installing this in frontend environments.

18 lines (17 loc) 625 B
/** * Generates JSON Schema for YAML import configurations. * Provides IntelliSense support for YAML files in IDEs. */ export declare function generateImportConfigSchema(): any; /** * Creates all necessary schema files for YAML import configurations. * * @param appwriteFolderPath - Path to the .appwrite directory */ export declare function createImportSchemas(appwriteFolderPath: string): Promise<void>; /** * Generates example YAML import configurations. * * @param appwriteFolderPath - Path to the .appwrite directory */ export declare function createImportExamples(appwriteFolderPath: string): Promise<void>;