export interface AppwriteModuleOptions {
  endpoint: string,
  projectId: string,
  databaseId: string,
  awsRegion: string,
  useEnvVarsForSecrets: boolean;
  appwriteApiKeyName?: string; // Name of the appwrite api key variable, appwrite_api_key by default.
  showEnvironmentVars?: boolean; // Only for debugging purpose
  // Delete attributes that are no longer available in the schema. Note this will delete data (the fields of the attribute) from the documents as well. False by default
  deleteRemovedAttributes?: boolean;
}
