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.
30 lines (24 loc) • 892 B
text/typescript
/**
* Configuration Services
*
* Modular services for configuration management, discovery, loading, validation, and merging.
*/
export { ConfigDiscoveryService } from "./ConfigDiscoveryService.js";
export type { DiscoveryResult } from "./ConfigDiscoveryService.js";
export { ConfigLoaderService } from "./ConfigLoaderService.js";
export type { CollectionLoadOptions } from "./ConfigLoaderService.js";
export { ConfigMergeService } from "./ConfigMergeService.js";
export type { ConfigOverrides } from "./ConfigMergeService.js";
export {
SessionAuthService,
type SessionAuthInfo,
type AppwriteSessionPrefs,
type AuthenticationStatus
} from "./SessionAuthService.js";
export {
ConfigValidationService,
type ValidationResult,
type ValidationError,
type ValidationWarning,
type ValidationReportOptions
} from "./ConfigValidationService.js";