chirag-appwrite-cli 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/build-verify.yml +71 -0
- package/.github/workflows/npm-publish.yml +41 -22
- package/CHANGELOG.md +190 -1
- package/LICENSE.md +12 -1
- package/README.md +182 -15
- package/bun.lock +627 -0
- package/dist/bundle.cjs +108228 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +149 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/client.d.ts +88 -0
- package/dist/lib/client.d.ts.map +1 -0
- package/dist/lib/client.js +238 -0
- package/dist/lib/client.js.map +1 -0
- package/dist/lib/commands/config.d.ts +557 -0
- package/dist/lib/commands/config.d.ts.map +1 -0
- package/dist/lib/commands/config.js +415 -0
- package/dist/lib/commands/config.js.map +1 -0
- package/dist/lib/commands/db.d.ts +34 -0
- package/dist/lib/commands/db.d.ts.map +1 -0
- package/dist/lib/commands/db.js +247 -0
- package/dist/lib/commands/db.js.map +1 -0
- package/dist/lib/commands/errors.d.ts +68 -0
- package/dist/lib/commands/errors.d.ts.map +1 -0
- package/dist/lib/commands/errors.js +72 -0
- package/dist/lib/commands/errors.js.map +1 -0
- package/dist/lib/commands/generic.d.ts +17 -0
- package/dist/lib/commands/generic.d.ts.map +1 -0
- package/dist/lib/commands/generic.js +292 -0
- package/dist/lib/commands/generic.js.map +1 -0
- package/dist/lib/commands/init.d.ts +3 -0
- package/dist/lib/commands/init.d.ts.map +1 -0
- package/dist/lib/commands/init.js +526 -0
- package/dist/lib/commands/init.js.map +1 -0
- package/dist/lib/commands/pull.d.ts +110 -0
- package/dist/lib/commands/pull.d.ts.map +1 -0
- package/dist/lib/commands/pull.js +626 -0
- package/dist/lib/commands/pull.js.map +1 -0
- package/dist/lib/commands/push.d.ts +82 -0
- package/dist/lib/commands/push.d.ts.map +1 -0
- package/dist/lib/commands/push.js +1666 -0
- package/dist/lib/commands/push.js.map +1 -0
- package/dist/lib/commands/run.d.ts +3 -0
- package/dist/lib/commands/run.d.ts.map +1 -0
- package/dist/lib/commands/run.js +289 -0
- package/dist/lib/commands/run.js.map +1 -0
- package/dist/lib/commands/schema.d.ts +57 -0
- package/dist/lib/commands/schema.d.ts.map +1 -0
- package/dist/lib/commands/schema.js +75 -0
- package/dist/lib/commands/schema.js.map +1 -0
- package/dist/lib/commands/services/account.d.ts +3 -0
- package/dist/lib/commands/services/account.d.ts.map +1 -0
- package/dist/lib/commands/services/account.js +306 -0
- package/dist/lib/commands/services/account.js.map +1 -0
- package/dist/lib/commands/services/avatars.d.ts +3 -0
- package/dist/lib/commands/services/avatars.d.ts.map +1 -0
- package/dist/lib/commands/services/avatars.js +118 -0
- package/dist/lib/commands/services/avatars.js.map +1 -0
- package/dist/lib/commands/services/console.d.ts +3 -0
- package/dist/lib/commands/services/console.d.ts.map +1 -0
- package/dist/lib/commands/services/console.js +41 -0
- package/dist/lib/commands/services/console.js.map +1 -0
- package/dist/lib/commands/services/databases.d.ts +3 -0
- package/dist/lib/commands/services/databases.d.ts.map +1 -0
- package/dist/lib/commands/services/databases.js +612 -0
- package/dist/lib/commands/services/databases.js.map +1 -0
- package/dist/lib/commands/services/functions.d.ts +3 -0
- package/dist/lib/commands/services/functions.d.ts.map +1 -0
- package/dist/lib/commands/services/functions.js +258 -0
- package/dist/lib/commands/services/functions.js.map +1 -0
- package/dist/lib/commands/services/graphql.d.ts +3 -0
- package/dist/lib/commands/services/graphql.d.ts.map +1 -0
- package/dist/lib/commands/services/graphql.js +28 -0
- package/dist/lib/commands/services/graphql.js.map +1 -0
- package/dist/lib/commands/services/health.d.ts +3 -0
- package/dist/lib/commands/services/health.d.ts.map +1 -0
- package/dist/lib/commands/services/health.js +123 -0
- package/dist/lib/commands/services/health.js.map +1 -0
- package/dist/lib/commands/services/locale.d.ts +3 -0
- package/dist/lib/commands/services/locale.d.ts.map +1 -0
- package/dist/lib/commands/services/locale.js +52 -0
- package/dist/lib/commands/services/locale.js.map +1 -0
- package/dist/lib/commands/services/messaging.d.ts +3 -0
- package/dist/lib/commands/services/messaging.d.ts.map +1 -0
- package/dist/lib/commands/services/messaging.js +505 -0
- package/dist/lib/commands/services/messaging.js.map +1 -0
- package/dist/lib/commands/services/migrations.d.ts +3 -0
- package/dist/lib/commands/services/migrations.d.ts.map +1 -0
- package/dist/lib/commands/services/migrations.js +135 -0
- package/dist/lib/commands/services/migrations.js.map +1 -0
- package/dist/lib/commands/services/project.d.ts +3 -0
- package/dist/lib/commands/services/project.d.ts.map +1 -0
- package/dist/lib/commands/services/project.js +54 -0
- package/dist/lib/commands/services/project.js.map +1 -0
- package/dist/lib/commands/services/projects.d.ts +3 -0
- package/dist/lib/commands/services/projects.d.ts.map +1 -0
- package/dist/lib/commands/services/projects.js +415 -0
- package/dist/lib/commands/services/projects.js.map +1 -0
- package/dist/lib/commands/services/proxy.d.ts +3 -0
- package/dist/lib/commands/services/proxy.d.ts.map +1 -0
- package/dist/lib/commands/services/proxy.js +68 -0
- package/dist/lib/commands/services/proxy.js.map +1 -0
- package/dist/lib/commands/services/sites.d.ts +3 -0
- package/dist/lib/commands/services/sites.d.ts.map +1 -0
- package/dist/lib/commands/services/sites.js +242 -0
- package/dist/lib/commands/services/sites.js.map +1 -0
- package/dist/lib/commands/services/storage.d.ts +3 -0
- package/dist/lib/commands/services/storage.d.ts.map +1 -0
- package/dist/lib/commands/services/storage.js +153 -0
- package/dist/lib/commands/services/storage.js.map +1 -0
- package/dist/lib/commands/services/tablesdb.d.ts +3 -0
- package/dist/lib/commands/services/tablesdb.d.ts.map +1 -0
- package/dist/lib/commands/services/tablesdb.js +605 -0
- package/dist/lib/commands/services/tablesdb.js.map +1 -0
- package/dist/lib/commands/services/teams.d.ts +3 -0
- package/dist/lib/commands/services/teams.d.ts.map +1 -0
- package/dist/lib/commands/services/teams.js +123 -0
- package/dist/lib/commands/services/teams.js.map +1 -0
- package/dist/lib/commands/services/tokens.d.ts +3 -0
- package/dist/lib/commands/services/tokens.d.ts.map +1 -0
- package/dist/lib/commands/services/tokens.js +49 -0
- package/dist/lib/commands/services/tokens.js.map +1 -0
- package/dist/lib/commands/services/users.d.ts +3 -0
- package/dist/lib/commands/services/users.d.ts.map +1 -0
- package/dist/lib/commands/services/users.js +312 -0
- package/dist/lib/commands/services/users.js.map +1 -0
- package/dist/lib/commands/services/vcs.d.ts +3 -0
- package/dist/lib/commands/services/vcs.d.ts.map +1 -0
- package/dist/lib/commands/services/vcs.js +87 -0
- package/dist/lib/commands/services/vcs.js.map +1 -0
- package/dist/lib/commands/types.d.ts +3 -0
- package/dist/lib/commands/types.d.ts.map +1 -0
- package/dist/lib/commands/types.js +151 -0
- package/dist/lib/commands/types.js.map +1 -0
- package/dist/lib/commands/update.d.ts +3 -0
- package/dist/lib/commands/update.d.ts.map +1 -0
- package/dist/lib/commands/update.js +201 -0
- package/dist/lib/commands/update.js.map +1 -0
- package/dist/lib/commands/utils/attributes.d.ts +46 -0
- package/dist/lib/commands/utils/attributes.d.ts.map +1 -0
- package/dist/lib/commands/utils/attributes.js +521 -0
- package/dist/lib/commands/utils/attributes.js.map +1 -0
- package/dist/lib/commands/utils/change-approval.d.ts +25 -0
- package/dist/lib/commands/utils/change-approval.d.ts.map +1 -0
- package/dist/lib/commands/utils/change-approval.js +129 -0
- package/dist/lib/commands/utils/change-approval.js.map +1 -0
- package/dist/lib/commands/utils/database-sync.d.ts +10 -0
- package/dist/lib/commands/utils/database-sync.d.ts.map +1 -0
- package/dist/lib/commands/utils/database-sync.js +136 -0
- package/dist/lib/commands/utils/database-sync.js.map +1 -0
- package/dist/lib/commands/utils/deployment.d.ts +34 -0
- package/dist/lib/commands/utils/deployment.d.ts.map +1 -0
- package/dist/lib/commands/utils/deployment.js +108 -0
- package/dist/lib/commands/utils/deployment.js.map +1 -0
- package/dist/lib/commands/utils/error-formatter.d.ts +19 -0
- package/dist/lib/commands/utils/error-formatter.d.ts.map +1 -0
- package/dist/lib/commands/utils/error-formatter.js +333 -0
- package/dist/lib/commands/utils/error-formatter.js.map +1 -0
- package/dist/lib/commands/utils/pools.d.ts +16 -0
- package/dist/lib/commands/utils/pools.d.ts.map +1 -0
- package/dist/lib/commands/utils/pools.js +197 -0
- package/dist/lib/commands/utils/pools.js.map +1 -0
- package/dist/lib/config.d.ts +119 -0
- package/dist/lib/config.d.ts.map +1 -0
- package/dist/lib/config.js +728 -0
- package/dist/lib/config.js.map +1 -0
- package/dist/lib/emulation/docker.d.ts +7 -0
- package/dist/lib/emulation/docker.d.ts.map +1 -0
- package/dist/lib/emulation/docker.js +224 -0
- package/dist/lib/emulation/docker.js.map +1 -0
- package/dist/lib/emulation/utils.d.ts +29 -0
- package/dist/lib/emulation/utils.d.ts.map +1 -0
- package/dist/lib/emulation/utils.js +165 -0
- package/dist/lib/emulation/utils.js.map +1 -0
- package/dist/lib/id.d.ts +7 -0
- package/dist/lib/id.d.ts.map +1 -0
- package/dist/lib/id.js +27 -0
- package/dist/lib/id.js.map +1 -0
- package/dist/lib/paginate.d.ts +9 -0
- package/dist/lib/paginate.d.ts.map +1 -0
- package/dist/lib/paginate.js +43 -0
- package/dist/lib/paginate.js.map +1 -0
- package/dist/lib/parser.d.ts +18 -0
- package/dist/lib/parser.d.ts.map +1 -0
- package/dist/lib/parser.js +225 -0
- package/dist/lib/parser.js.map +1 -0
- package/dist/lib/questions.d.ts +59 -0
- package/dist/lib/questions.d.ts.map +1 -0
- package/dist/lib/questions.js +991 -0
- package/dist/lib/questions.js.map +1 -0
- package/dist/lib/sdks.d.ts +4 -0
- package/dist/lib/sdks.d.ts.map +1 -0
- package/dist/lib/sdks.js +61 -0
- package/dist/lib/sdks.js.map +1 -0
- package/dist/lib/services.d.ts +13 -0
- package/dist/lib/services.d.ts.map +1 -0
- package/dist/lib/services.js +47 -0
- package/dist/lib/services.js.map +1 -0
- package/dist/lib/spinner.d.ts +28 -0
- package/dist/lib/spinner.d.ts.map +1 -0
- package/dist/lib/spinner.js +91 -0
- package/dist/lib/spinner.js.map +1 -0
- package/dist/lib/type-generation/attribute.d.ts +17 -0
- package/dist/lib/type-generation/attribute.d.ts.map +1 -0
- package/dist/lib/type-generation/attribute.js +16 -0
- package/dist/lib/type-generation/attribute.js.map +1 -0
- package/dist/lib/type-generation/languages/csharp.d.ts +7 -0
- package/dist/lib/type-generation/languages/csharp.d.ts.map +1 -0
- package/dist/lib/type-generation/languages/csharp.js +180 -0
- package/dist/lib/type-generation/languages/csharp.js.map +1 -0
- package/dist/lib/type-generation/languages/dart.d.ts +8 -0
- package/dist/lib/type-generation/languages/dart.d.ts.map +1 -0
- package/dist/lib/type-generation/languages/dart.js +197 -0
- package/dist/lib/type-generation/languages/dart.js.map +1 -0
- package/dist/lib/type-generation/languages/java.d.ts +7 -0
- package/dist/lib/type-generation/languages/java.d.ts.map +1 -0
- package/dist/lib/type-generation/languages/java.js +140 -0
- package/dist/lib/type-generation/languages/java.js.map +1 -0
- package/dist/lib/type-generation/languages/javascript.d.ts +9 -0
- package/dist/lib/type-generation/languages/javascript.d.ts.map +1 -0
- package/dist/lib/type-generation/languages/javascript.js +109 -0
- package/dist/lib/type-generation/languages/javascript.js.map +1 -0
- package/dist/lib/type-generation/languages/kotlin.d.ts +7 -0
- package/dist/lib/type-generation/languages/kotlin.d.ts.map +1 -0
- package/dist/lib/type-generation/languages/kotlin.js +95 -0
- package/dist/lib/type-generation/languages/kotlin.js.map +1 -0
- package/dist/lib/type-generation/languages/language.d.ts +43 -0
- package/dist/lib/type-generation/languages/language.d.ts.map +1 -0
- package/dist/lib/type-generation/languages/language.js +77 -0
- package/dist/lib/type-generation/languages/language.js.map +1 -0
- package/dist/lib/type-generation/languages/php.d.ts +7 -0
- package/dist/lib/type-generation/languages/php.d.ts.map +1 -0
- package/dist/lib/type-generation/languages/php.js +116 -0
- package/dist/lib/type-generation/languages/php.js.map +1 -0
- package/dist/lib/type-generation/languages/swift.d.ts +7 -0
- package/dist/lib/type-generation/languages/swift.d.ts.map +1 -0
- package/dist/lib/type-generation/languages/swift.js +179 -0
- package/dist/lib/type-generation/languages/swift.js.map +1 -0
- package/dist/lib/type-generation/languages/typescript.d.ts +9 -0
- package/dist/lib/type-generation/languages/typescript.d.ts.map +1 -0
- package/dist/lib/type-generation/languages/typescript.js +115 -0
- package/dist/lib/type-generation/languages/typescript.js.map +1 -0
- package/dist/lib/types.d.ts +63 -0
- package/dist/lib/types.d.ts.map +1 -0
- package/dist/lib/types.js +2 -0
- package/dist/lib/types.js.map +1 -0
- package/dist/lib/utils.d.ts +18 -0
- package/dist/lib/utils.d.ts.map +1 -0
- package/dist/lib/utils.js +323 -0
- package/dist/lib/utils.js.map +1 -0
- package/dist/lib/validations.d.ts +2 -0
- package/dist/lib/validations.d.ts.map +1 -0
- package/dist/lib/validations.js +16 -0
- package/dist/lib/validations.js.map +1 -0
- package/dist/package.json +68 -0
- package/dist/scripts/generate-commands.d.ts +2 -0
- package/dist/scripts/generate-commands.d.ts.map +1 -0
- package/dist/scripts/generate-commands.js +398 -0
- package/dist/scripts/generate-commands.js.map +1 -0
- package/dist/sites/profile-website/src/lib/utils.d.ts +4 -0
- package/dist/sites/profile-website/src/lib/utils.d.ts.map +1 -0
- package/dist/sites/profile-website/src/lib/utils.js +32 -0
- package/dist/sites/profile-website/src/lib/utils.js.map +1 -0
- package/dist/sites/profile-website/tailwind.config.d.ts +3 -0
- package/dist/sites/profile-website/tailwind.config.d.ts.map +1 -0
- package/dist/sites/profile-website/tailwind.config.js +110 -0
- package/dist/sites/profile-website/tailwind.config.js.map +1 -0
- package/dist/test.d.ts +2 -0
- package/dist/test.d.ts.map +1 -0
- package/dist/test.js +38 -0
- package/dist/test.js.map +1 -0
- package/index.ts +190 -0
- package/install.ps1 +5 -8
- package/install.sh +4 -5
- package/lib/client.ts +292 -0
- package/lib/commands/config.ts +493 -0
- package/lib/commands/db.ts +324 -0
- package/lib/commands/errors.ts +93 -0
- package/lib/commands/generic.ts +440 -0
- package/lib/commands/init.ts +713 -0
- package/lib/commands/pull.ts +944 -0
- package/lib/commands/push.ts +2355 -0
- package/lib/commands/run.ts +416 -0
- package/lib/commands/schema.ts +103 -0
- package/lib/commands/services/account.ts +832 -0
- package/lib/commands/services/avatars.ts +400 -0
- package/lib/commands/services/console.ts +73 -0
- package/lib/commands/services/databases.ts +2080 -0
- package/lib/commands/services/functions.ts +855 -0
- package/lib/commands/services/graphql.ts +47 -0
- package/lib/commands/services/health.ts +322 -0
- package/lib/commands/services/locale.ts +99 -0
- package/lib/commands/services/messaging.ts +1871 -0
- package/lib/commands/services/migrations.ts +421 -0
- package/lib/commands/services/project.ts +116 -0
- package/lib/commands/services/projects.ts +1317 -0
- package/lib/commands/services/proxy.ts +163 -0
- package/lib/commands/services/sites.ts +777 -0
- package/lib/commands/services/storage.ts +547 -0
- package/lib/commands/services/tablesdb.ts +1928 -0
- package/lib/commands/services/teams.ts +294 -0
- package/lib/commands/services/tokens.ts +106 -0
- package/lib/commands/services/users.ts +886 -0
- package/lib/commands/services/vcs.ts +268 -0
- package/lib/commands/types.ts +220 -0
- package/lib/commands/update.ts +245 -0
- package/lib/commands/utils/attributes.ts +734 -0
- package/lib/commands/utils/change-approval.ts +186 -0
- package/lib/commands/utils/database-sync.ts +180 -0
- package/lib/commands/utils/deployment.ts +180 -0
- package/lib/commands/utils/error-formatter.ts +417 -0
- package/lib/commands/utils/pools.ts +354 -0
- package/lib/config.ts +932 -0
- package/lib/emulation/docker.ts +312 -0
- package/lib/emulation/utils.ts +207 -0
- package/lib/id.ts +30 -0
- package/lib/paginate.ts +77 -0
- package/lib/parser.ts +264 -0
- package/lib/questions.ts +1167 -0
- package/lib/sdks.ts +84 -0
- package/lib/services.ts +72 -0
- package/lib/spinner.ts +131 -0
- package/lib/type-generation/attribute.ts +18 -0
- package/lib/type-generation/languages/csharp.ts +192 -0
- package/lib/type-generation/languages/dart.ts +217 -0
- package/lib/type-generation/languages/java.ts +152 -0
- package/lib/type-generation/languages/javascript.ts +122 -0
- package/lib/type-generation/languages/kotlin.ts +107 -0
- package/lib/type-generation/languages/language.ts +127 -0
- package/lib/type-generation/languages/php.ts +128 -0
- package/lib/type-generation/languages/swift.ts +191 -0
- package/lib/type-generation/languages/typescript.ts +133 -0
- package/lib/types.ts +75 -0
- package/lib/utils.ts +394 -0
- package/lib/validations.ts +20 -0
- package/package.json +39 -21
- package/scoop/appwrite.config.json +20 -0
- package/scripts/generate-commands.ts +539 -0
- package/tsconfig.json +24 -0
- package/appwrite.config.json +0 -420
- package/docs/examples/account/create-anonymous-session.md +0 -1
- package/docs/examples/account/create-email-password-session.md +0 -3
- package/docs/examples/account/create-email-token.md +0 -4
- package/docs/examples/account/create-j-w-t.md +0 -1
- package/docs/examples/account/create-magic-u-r-l-token.md +0 -5
- package/docs/examples/account/create-mfa-authenticator.md +0 -2
- package/docs/examples/account/create-mfa-challenge.md +0 -2
- package/docs/examples/account/create-mfa-recovery-codes.md +0 -1
- package/docs/examples/account/create-o-auth2session.md +0 -5
- package/docs/examples/account/create-o-auth2token.md +0 -5
- package/docs/examples/account/create-phone-token.md +0 -3
- package/docs/examples/account/create-phone-verification.md +0 -1
- package/docs/examples/account/create-push-target.md +0 -4
- package/docs/examples/account/create-recovery.md +0 -3
- package/docs/examples/account/create-session.md +0 -3
- package/docs/examples/account/create-verification.md +0 -2
- package/docs/examples/account/create.md +0 -5
- package/docs/examples/account/delete-identity.md +0 -2
- package/docs/examples/account/delete-mfa-authenticator.md +0 -2
- package/docs/examples/account/delete-push-target.md +0 -2
- package/docs/examples/account/delete-session.md +0 -2
- package/docs/examples/account/delete-sessions.md +0 -1
- package/docs/examples/account/delete.md +0 -1
- package/docs/examples/account/get-mfa-recovery-codes.md +0 -1
- package/docs/examples/account/get-prefs.md +0 -1
- package/docs/examples/account/get-session.md +0 -2
- package/docs/examples/account/get.md +0 -1
- package/docs/examples/account/list-identities.md +0 -2
- package/docs/examples/account/list-logs.md +0 -2
- package/docs/examples/account/list-mfa-factors.md +0 -1
- package/docs/examples/account/list-sessions.md +0 -1
- package/docs/examples/account/update-email.md +0 -3
- package/docs/examples/account/update-m-f-a.md +0 -2
- package/docs/examples/account/update-magic-u-r-l-session.md +0 -3
- package/docs/examples/account/update-mfa-authenticator.md +0 -3
- package/docs/examples/account/update-mfa-challenge.md +0 -3
- package/docs/examples/account/update-mfa-recovery-codes.md +0 -1
- package/docs/examples/account/update-name.md +0 -2
- package/docs/examples/account/update-password.md +0 -3
- package/docs/examples/account/update-phone-session.md +0 -3
- package/docs/examples/account/update-phone-verification.md +0 -3
- package/docs/examples/account/update-phone.md +0 -3
- package/docs/examples/account/update-prefs.md +0 -2
- package/docs/examples/account/update-push-target.md +0 -3
- package/docs/examples/account/update-recovery.md +0 -4
- package/docs/examples/account/update-session.md +0 -2
- package/docs/examples/account/update-status.md +0 -1
- package/docs/examples/account/update-verification.md +0 -3
- package/docs/examples/avatars/get-browser.md +0 -5
- package/docs/examples/avatars/get-credit-card.md +0 -5
- package/docs/examples/avatars/get-favicon.md +0 -2
- package/docs/examples/avatars/get-flag.md +0 -5
- package/docs/examples/avatars/get-image.md +0 -4
- package/docs/examples/avatars/get-initials.md +0 -5
- package/docs/examples/avatars/get-q-r.md +0 -5
- package/docs/examples/console/get-resource.md +0 -3
- package/docs/examples/console/variables.md +0 -1
- package/docs/examples/databases/create-boolean-attribute.md +0 -7
- package/docs/examples/databases/create-collection.md +0 -7
- package/docs/examples/databases/create-datetime-attribute.md +0 -7
- package/docs/examples/databases/create-document.md +0 -6
- package/docs/examples/databases/create-documents.md +0 -4
- package/docs/examples/databases/create-email-attribute.md +0 -7
- package/docs/examples/databases/create-enum-attribute.md +0 -8
- package/docs/examples/databases/create-float-attribute.md +0 -9
- package/docs/examples/databases/create-index.md +0 -8
- package/docs/examples/databases/create-integer-attribute.md +0 -9
- package/docs/examples/databases/create-ip-attribute.md +0 -7
- package/docs/examples/databases/create-relationship-attribute.md +0 -9
- package/docs/examples/databases/create-string-attribute.md +0 -9
- package/docs/examples/databases/create-url-attribute.md +0 -7
- package/docs/examples/databases/create.md +0 -4
- package/docs/examples/databases/decrement-document-attribute.md +0 -7
- package/docs/examples/databases/delete-attribute.md +0 -4
- package/docs/examples/databases/delete-collection.md +0 -3
- package/docs/examples/databases/delete-document.md +0 -4
- package/docs/examples/databases/delete-documents.md +0 -4
- package/docs/examples/databases/delete-index.md +0 -4
- package/docs/examples/databases/delete.md +0 -2
- package/docs/examples/databases/get-attribute.md +0 -4
- package/docs/examples/databases/get-collection-usage.md +0 -4
- package/docs/examples/databases/get-collection.md +0 -3
- package/docs/examples/databases/get-database-usage.md +0 -3
- package/docs/examples/databases/get-document.md +0 -5
- package/docs/examples/databases/get-index.md +0 -4
- package/docs/examples/databases/get-usage.md +0 -2
- package/docs/examples/databases/get.md +0 -2
- package/docs/examples/databases/increment-document-attribute.md +0 -7
- package/docs/examples/databases/list-attributes.md +0 -4
- package/docs/examples/databases/list-collection-logs.md +0 -4
- package/docs/examples/databases/list-collections.md +0 -4
- package/docs/examples/databases/list-document-logs.md +0 -5
- package/docs/examples/databases/list-documents.md +0 -4
- package/docs/examples/databases/list-indexes.md +0 -4
- package/docs/examples/databases/list-logs.md +0 -3
- package/docs/examples/databases/list-usage.md +0 -2
- package/docs/examples/databases/list.md +0 -3
- package/docs/examples/databases/update-boolean-attribute.md +0 -7
- package/docs/examples/databases/update-collection.md +0 -7
- package/docs/examples/databases/update-datetime-attribute.md +0 -7
- package/docs/examples/databases/update-document.md +0 -6
- package/docs/examples/databases/update-documents.md +0 -5
- package/docs/examples/databases/update-email-attribute.md +0 -7
- package/docs/examples/databases/update-enum-attribute.md +0 -8
- package/docs/examples/databases/update-float-attribute.md +0 -9
- package/docs/examples/databases/update-integer-attribute.md +0 -9
- package/docs/examples/databases/update-ip-attribute.md +0 -7
- package/docs/examples/databases/update-relationship-attribute.md +0 -6
- package/docs/examples/databases/update-string-attribute.md +0 -8
- package/docs/examples/databases/update-url-attribute.md +0 -7
- package/docs/examples/databases/update.md +0 -4
- package/docs/examples/databases/upsert-document.md +0 -6
- package/docs/examples/databases/upsert-documents.md +0 -4
- package/docs/examples/functions/create-deployment.md +0 -6
- package/docs/examples/functions/create-duplicate-deployment.md +0 -4
- package/docs/examples/functions/create-execution.md +0 -8
- package/docs/examples/functions/create-template-deployment.md +0 -7
- package/docs/examples/functions/create-variable.md +0 -5
- package/docs/examples/functions/create-vcs-deployment.md +0 -5
- package/docs/examples/functions/create.md +0 -19
- package/docs/examples/functions/delete-deployment.md +0 -3
- package/docs/examples/functions/delete-execution.md +0 -3
- package/docs/examples/functions/delete-variable.md +0 -3
- package/docs/examples/functions/delete.md +0 -2
- package/docs/examples/functions/get-deployment-download.md +0 -4
- package/docs/examples/functions/get-deployment.md +0 -3
- package/docs/examples/functions/get-execution.md +0 -3
- package/docs/examples/functions/get-template.md +0 -2
- package/docs/examples/functions/get-usage.md +0 -3
- package/docs/examples/functions/get-variable.md +0 -3
- package/docs/examples/functions/get.md +0 -2
- package/docs/examples/functions/list-deployments.md +0 -4
- package/docs/examples/functions/list-executions.md +0 -3
- package/docs/examples/functions/list-runtimes.md +0 -1
- package/docs/examples/functions/list-specifications.md +0 -1
- package/docs/examples/functions/list-templates.md +0 -5
- package/docs/examples/functions/list-usage.md +0 -2
- package/docs/examples/functions/list-variables.md +0 -2
- package/docs/examples/functions/list.md +0 -3
- package/docs/examples/functions/update-deployment-status.md +0 -3
- package/docs/examples/functions/update-function-deployment.md +0 -3
- package/docs/examples/functions/update-variable.md +0 -6
- package/docs/examples/functions/update.md +0 -19
- package/docs/examples/graphql/mutation.md +0 -2
- package/docs/examples/graphql/query.md +0 -2
- package/docs/examples/health/get-antivirus.md +0 -1
- package/docs/examples/health/get-cache.md +0 -1
- package/docs/examples/health/get-certificate.md +0 -2
- package/docs/examples/health/get-d-b.md +0 -1
- package/docs/examples/health/get-failed-jobs.md +0 -3
- package/docs/examples/health/get-pub-sub.md +0 -1
- package/docs/examples/health/get-queue-builds.md +0 -2
- package/docs/examples/health/get-queue-certificates.md +0 -2
- package/docs/examples/health/get-queue-databases.md +0 -3
- package/docs/examples/health/get-queue-deletes.md +0 -2
- package/docs/examples/health/get-queue-functions.md +0 -2
- package/docs/examples/health/get-queue-logs.md +0 -2
- package/docs/examples/health/get-queue-mails.md +0 -2
- package/docs/examples/health/get-queue-messaging.md +0 -2
- package/docs/examples/health/get-queue-migrations.md +0 -2
- package/docs/examples/health/get-queue-stats-resources.md +0 -2
- package/docs/examples/health/get-queue-usage.md +0 -2
- package/docs/examples/health/get-queue-webhooks.md +0 -2
- package/docs/examples/health/get-storage-local.md +0 -1
- package/docs/examples/health/get-storage.md +0 -1
- package/docs/examples/health/get-time.md +0 -1
- package/docs/examples/health/get.md +0 -1
- package/docs/examples/locale/get.md +0 -1
- package/docs/examples/locale/list-codes.md +0 -1
- package/docs/examples/locale/list-continents.md +0 -1
- package/docs/examples/locale/list-countries-e-u.md +0 -1
- package/docs/examples/locale/list-countries-phones.md +0 -1
- package/docs/examples/locale/list-countries.md +0 -1
- package/docs/examples/locale/list-currencies.md +0 -1
- package/docs/examples/locale/list-languages.md +0 -1
- package/docs/examples/messaging/create-apns-provider.md +0 -9
- package/docs/examples/messaging/create-email.md +0 -13
- package/docs/examples/messaging/create-fcm-provider.md +0 -5
- package/docs/examples/messaging/create-mailgun-provider.md +0 -11
- package/docs/examples/messaging/create-msg91provider.md +0 -7
- package/docs/examples/messaging/create-push.md +0 -20
- package/docs/examples/messaging/create-sendgrid-provider.md +0 -9
- package/docs/examples/messaging/create-sms.md +0 -8
- package/docs/examples/messaging/create-smtp-provider.md +0 -15
- package/docs/examples/messaging/create-subscriber.md +0 -4
- package/docs/examples/messaging/create-telesign-provider.md +0 -7
- package/docs/examples/messaging/create-textmagic-provider.md +0 -7
- package/docs/examples/messaging/create-topic.md +0 -4
- package/docs/examples/messaging/create-twilio-provider.md +0 -7
- package/docs/examples/messaging/create-vonage-provider.md +0 -7
- package/docs/examples/messaging/delete-provider.md +0 -2
- package/docs/examples/messaging/delete-subscriber.md +0 -3
- package/docs/examples/messaging/delete-topic.md +0 -2
- package/docs/examples/messaging/delete.md +0 -2
- package/docs/examples/messaging/get-message.md +0 -2
- package/docs/examples/messaging/get-provider.md +0 -2
- package/docs/examples/messaging/get-subscriber.md +0 -3
- package/docs/examples/messaging/get-topic.md +0 -2
- package/docs/examples/messaging/list-message-logs.md +0 -3
- package/docs/examples/messaging/list-messages.md +0 -3
- package/docs/examples/messaging/list-provider-logs.md +0 -3
- package/docs/examples/messaging/list-providers.md +0 -3
- package/docs/examples/messaging/list-subscriber-logs.md +0 -3
- package/docs/examples/messaging/list-subscribers.md +0 -4
- package/docs/examples/messaging/list-targets.md +0 -3
- package/docs/examples/messaging/list-topic-logs.md +0 -3
- package/docs/examples/messaging/list-topics.md +0 -3
- package/docs/examples/messaging/update-apns-provider.md +0 -9
- package/docs/examples/messaging/update-email.md +0 -13
- package/docs/examples/messaging/update-fcm-provider.md +0 -5
- package/docs/examples/messaging/update-mailgun-provider.md +0 -11
- package/docs/examples/messaging/update-msg91provider.md +0 -7
- package/docs/examples/messaging/update-push.md +0 -20
- package/docs/examples/messaging/update-sendgrid-provider.md +0 -9
- package/docs/examples/messaging/update-sms.md +0 -8
- package/docs/examples/messaging/update-smtp-provider.md +0 -15
- package/docs/examples/messaging/update-telesign-provider.md +0 -7
- package/docs/examples/messaging/update-textmagic-provider.md +0 -7
- package/docs/examples/messaging/update-topic.md +0 -4
- package/docs/examples/messaging/update-twilio-provider.md +0 -7
- package/docs/examples/messaging/update-vonage-provider.md +0 -7
- package/docs/examples/migrations/create-appwrite-migration.md +0 -5
- package/docs/examples/migrations/create-csv-migration.md +0 -4
- package/docs/examples/migrations/create-firebase-migration.md +0 -3
- package/docs/examples/migrations/create-n-host-migration.md +0 -9
- package/docs/examples/migrations/create-supabase-migration.md +0 -8
- package/docs/examples/migrations/delete.md +0 -2
- package/docs/examples/migrations/get-appwrite-report.md +0 -5
- package/docs/examples/migrations/get-firebase-report.md +0 -3
- package/docs/examples/migrations/get-n-host-report.md +0 -9
- package/docs/examples/migrations/get-supabase-report.md +0 -8
- package/docs/examples/migrations/get.md +0 -2
- package/docs/examples/migrations/list.md +0 -3
- package/docs/examples/migrations/retry.md +0 -2
- package/docs/examples/project/create-variable.md +0 -4
- package/docs/examples/project/delete-variable.md +0 -2
- package/docs/examples/project/get-usage.md +0 -4
- package/docs/examples/project/get-variable.md +0 -2
- package/docs/examples/project/list-variables.md +0 -1
- package/docs/examples/project/update-variable.md +0 -5
- package/docs/examples/projects/create-dev-key.md +0 -4
- package/docs/examples/projects/create-j-w-t.md +0 -4
- package/docs/examples/projects/create-key.md +0 -5
- package/docs/examples/projects/create-platform.md +0 -7
- package/docs/examples/projects/create-smtp-test.md +0 -11
- package/docs/examples/projects/create-webhook.md +0 -9
- package/docs/examples/projects/create.md +0 -14
- package/docs/examples/projects/delete-dev-key.md +0 -3
- package/docs/examples/projects/delete-email-template.md +0 -4
- package/docs/examples/projects/delete-key.md +0 -3
- package/docs/examples/projects/delete-platform.md +0 -3
- package/docs/examples/projects/delete-sms-template.md +0 -4
- package/docs/examples/projects/delete-webhook.md +0 -3
- package/docs/examples/projects/delete.md +0 -2
- package/docs/examples/projects/get-dev-key.md +0 -3
- package/docs/examples/projects/get-email-template.md +0 -4
- package/docs/examples/projects/get-key.md +0 -3
- package/docs/examples/projects/get-platform.md +0 -3
- package/docs/examples/projects/get-sms-template.md +0 -4
- package/docs/examples/projects/get-webhook.md +0 -3
- package/docs/examples/projects/get.md +0 -2
- package/docs/examples/projects/list-dev-keys.md +0 -3
- package/docs/examples/projects/list-keys.md +0 -2
- package/docs/examples/projects/list-platforms.md +0 -2
- package/docs/examples/projects/list-webhooks.md +0 -2
- package/docs/examples/projects/list.md +0 -3
- package/docs/examples/projects/update-api-status-all.md +0 -3
- package/docs/examples/projects/update-api-status.md +0 -4
- package/docs/examples/projects/update-auth-duration.md +0 -3
- package/docs/examples/projects/update-auth-limit.md +0 -3
- package/docs/examples/projects/update-auth-password-dictionary.md +0 -3
- package/docs/examples/projects/update-auth-password-history.md +0 -3
- package/docs/examples/projects/update-auth-sessions-limit.md +0 -3
- package/docs/examples/projects/update-auth-status.md +0 -4
- package/docs/examples/projects/update-dev-key.md +0 -5
- package/docs/examples/projects/update-email-template.md +0 -9
- package/docs/examples/projects/update-key.md +0 -6
- package/docs/examples/projects/update-memberships-privacy.md +0 -5
- package/docs/examples/projects/update-mock-numbers.md +0 -3
- package/docs/examples/projects/update-o-auth2.md +0 -6
- package/docs/examples/projects/update-personal-data-check.md +0 -3
- package/docs/examples/projects/update-platform.md +0 -7
- package/docs/examples/projects/update-service-status-all.md +0 -3
- package/docs/examples/projects/update-service-status.md +0 -4
- package/docs/examples/projects/update-session-alerts.md +0 -3
- package/docs/examples/projects/update-session-invalidation.md +0 -3
- package/docs/examples/projects/update-sms-template.md +0 -5
- package/docs/examples/projects/update-smtp.md +0 -11
- package/docs/examples/projects/update-team.md +0 -3
- package/docs/examples/projects/update-webhook-signature.md +0 -3
- package/docs/examples/projects/update-webhook.md +0 -10
- package/docs/examples/projects/update.md +0 -12
- package/docs/examples/proxy/create-a-p-i-rule.md +0 -2
- package/docs/examples/proxy/create-function-rule.md +0 -4
- package/docs/examples/proxy/create-redirect-rule.md +0 -6
- package/docs/examples/proxy/create-site-rule.md +0 -4
- package/docs/examples/proxy/delete-rule.md +0 -2
- package/docs/examples/proxy/get-rule.md +0 -2
- package/docs/examples/proxy/list-rules.md +0 -3
- package/docs/examples/proxy/update-rule-verification.md +0 -2
- package/docs/examples/sites/create-deployment.md +0 -7
- package/docs/examples/sites/create-duplicate-deployment.md +0 -3
- package/docs/examples/sites/create-template-deployment.md +0 -7
- package/docs/examples/sites/create-variable.md +0 -5
- package/docs/examples/sites/create-vcs-deployment.md +0 -5
- package/docs/examples/sites/create.md +0 -19
- package/docs/examples/sites/delete-deployment.md +0 -3
- package/docs/examples/sites/delete-log.md +0 -3
- package/docs/examples/sites/delete-variable.md +0 -3
- package/docs/examples/sites/delete.md +0 -2
- package/docs/examples/sites/get-deployment-download.md +0 -4
- package/docs/examples/sites/get-deployment.md +0 -3
- package/docs/examples/sites/get-log.md +0 -3
- package/docs/examples/sites/get-template.md +0 -2
- package/docs/examples/sites/get-usage.md +0 -3
- package/docs/examples/sites/get-variable.md +0 -3
- package/docs/examples/sites/get.md +0 -2
- package/docs/examples/sites/list-deployments.md +0 -4
- package/docs/examples/sites/list-frameworks.md +0 -1
- package/docs/examples/sites/list-logs.md +0 -3
- package/docs/examples/sites/list-specifications.md +0 -1
- package/docs/examples/sites/list-templates.md +0 -5
- package/docs/examples/sites/list-usage.md +0 -2
- package/docs/examples/sites/list-variables.md +0 -2
- package/docs/examples/sites/list.md +0 -3
- package/docs/examples/sites/update-deployment-status.md +0 -3
- package/docs/examples/sites/update-site-deployment.md +0 -3
- package/docs/examples/sites/update-variable.md +0 -6
- package/docs/examples/sites/update.md +0 -19
- package/docs/examples/storage/create-bucket.md +0 -11
- package/docs/examples/storage/create-file.md +0 -5
- package/docs/examples/storage/delete-bucket.md +0 -2
- package/docs/examples/storage/delete-file.md +0 -3
- package/docs/examples/storage/get-bucket-usage.md +0 -3
- package/docs/examples/storage/get-bucket.md +0 -2
- package/docs/examples/storage/get-file-download.md +0 -4
- package/docs/examples/storage/get-file-preview.md +0 -15
- package/docs/examples/storage/get-file-view.md +0 -4
- package/docs/examples/storage/get-file.md +0 -3
- package/docs/examples/storage/get-usage.md +0 -2
- package/docs/examples/storage/list-buckets.md +0 -3
- package/docs/examples/storage/list-files.md +0 -4
- package/docs/examples/storage/update-bucket.md +0 -11
- package/docs/examples/storage/update-file.md +0 -5
- package/docs/examples/tables/create-boolean-column.md +0 -7
- package/docs/examples/tables/create-datetime-column.md +0 -7
- package/docs/examples/tables/create-email-column.md +0 -7
- package/docs/examples/tables/create-enum-column.md +0 -8
- package/docs/examples/tables/create-float-column.md +0 -9
- package/docs/examples/tables/create-index.md +0 -8
- package/docs/examples/tables/create-integer-column.md +0 -9
- package/docs/examples/tables/create-ip-column.md +0 -7
- package/docs/examples/tables/create-relationship-column.md +0 -9
- package/docs/examples/tables/create-row.md +0 -6
- package/docs/examples/tables/create-rows.md +0 -4
- package/docs/examples/tables/create-string-column.md +0 -9
- package/docs/examples/tables/create-url-column.md +0 -7
- package/docs/examples/tables/create.md +0 -7
- package/docs/examples/tables/decrement-row-column.md +0 -7
- package/docs/examples/tables/delete-column.md +0 -4
- package/docs/examples/tables/delete-index.md +0 -4
- package/docs/examples/tables/delete-row.md +0 -4
- package/docs/examples/tables/delete-rows.md +0 -4
- package/docs/examples/tables/delete.md +0 -3
- package/docs/examples/tables/get-column.md +0 -4
- package/docs/examples/tables/get-index.md +0 -4
- package/docs/examples/tables/get-row.md +0 -5
- package/docs/examples/tables/get-usage.md +0 -4
- package/docs/examples/tables/get.md +0 -3
- package/docs/examples/tables/increment-row-column.md +0 -7
- package/docs/examples/tables/list-columns.md +0 -4
- package/docs/examples/tables/list-indexes.md +0 -4
- package/docs/examples/tables/list-logs.md +0 -4
- package/docs/examples/tables/list-row-logs.md +0 -5
- package/docs/examples/tables/list-rows.md +0 -4
- package/docs/examples/tables/list.md +0 -4
- package/docs/examples/tables/update-boolean-column.md +0 -7
- package/docs/examples/tables/update-datetime-column.md +0 -7
- package/docs/examples/tables/update-email-column.md +0 -7
- package/docs/examples/tables/update-enum-column.md +0 -8
- package/docs/examples/tables/update-float-column.md +0 -9
- package/docs/examples/tables/update-integer-column.md +0 -9
- package/docs/examples/tables/update-ip-column.md +0 -7
- package/docs/examples/tables/update-relationship-column.md +0 -6
- package/docs/examples/tables/update-row.md +0 -6
- package/docs/examples/tables/update-rows.md +0 -5
- package/docs/examples/tables/update-string-column.md +0 -8
- package/docs/examples/tables/update-url-column.md +0 -7
- package/docs/examples/tables/update.md +0 -7
- package/docs/examples/tables/upsert-row.md +0 -4
- package/docs/examples/tables/upsert-rows.md +0 -3
- package/docs/examples/teams/create-membership.md +0 -8
- package/docs/examples/teams/create.md +0 -4
- package/docs/examples/teams/delete-membership.md +0 -3
- package/docs/examples/teams/delete.md +0 -2
- package/docs/examples/teams/get-membership.md +0 -3
- package/docs/examples/teams/get-prefs.md +0 -2
- package/docs/examples/teams/get.md +0 -2
- package/docs/examples/teams/list-logs.md +0 -3
- package/docs/examples/teams/list-memberships.md +0 -4
- package/docs/examples/teams/list.md +0 -3
- package/docs/examples/teams/update-membership-status.md +0 -5
- package/docs/examples/teams/update-membership.md +0 -4
- package/docs/examples/teams/update-name.md +0 -3
- package/docs/examples/teams/update-prefs.md +0 -3
- package/docs/examples/tokens/create-file-token.md +0 -4
- package/docs/examples/tokens/delete.md +0 -2
- package/docs/examples/tokens/get.md +0 -2
- package/docs/examples/tokens/list.md +0 -4
- package/docs/examples/tokens/update.md +0 -3
- package/docs/examples/users/create-argon2user.md +0 -5
- package/docs/examples/users/create-bcrypt-user.md +0 -5
- package/docs/examples/users/create-j-w-t.md +0 -4
- package/docs/examples/users/create-m-d5user.md +0 -5
- package/docs/examples/users/create-mfa-recovery-codes.md +0 -2
- package/docs/examples/users/create-p-h-pass-user.md +0 -5
- package/docs/examples/users/create-s-h-a-user.md +0 -6
- package/docs/examples/users/create-scrypt-modified-user.md +0 -8
- package/docs/examples/users/create-scrypt-user.md +0 -10
- package/docs/examples/users/create-session.md +0 -2
- package/docs/examples/users/create-target.md +0 -7
- package/docs/examples/users/create-token.md +0 -4
- package/docs/examples/users/create.md +0 -6
- package/docs/examples/users/delete-identity.md +0 -2
- package/docs/examples/users/delete-mfa-authenticator.md +0 -3
- package/docs/examples/users/delete-session.md +0 -3
- package/docs/examples/users/delete-sessions.md +0 -2
- package/docs/examples/users/delete-target.md +0 -3
- package/docs/examples/users/delete.md +0 -2
- package/docs/examples/users/get-mfa-recovery-codes.md +0 -2
- package/docs/examples/users/get-prefs.md +0 -2
- package/docs/examples/users/get-target.md +0 -3
- package/docs/examples/users/get-usage.md +0 -2
- package/docs/examples/users/get.md +0 -2
- package/docs/examples/users/list-identities.md +0 -3
- package/docs/examples/users/list-logs.md +0 -3
- package/docs/examples/users/list-memberships.md +0 -4
- package/docs/examples/users/list-mfa-factors.md +0 -2
- package/docs/examples/users/list-sessions.md +0 -2
- package/docs/examples/users/list-targets.md +0 -3
- package/docs/examples/users/list.md +0 -3
- package/docs/examples/users/update-email-verification.md +0 -3
- package/docs/examples/users/update-email.md +0 -3
- package/docs/examples/users/update-labels.md +0 -3
- package/docs/examples/users/update-mfa-recovery-codes.md +0 -2
- package/docs/examples/users/update-mfa.md +0 -3
- package/docs/examples/users/update-name.md +0 -3
- package/docs/examples/users/update-password.md +0 -3
- package/docs/examples/users/update-phone-verification.md +0 -3
- package/docs/examples/users/update-phone.md +0 -3
- package/docs/examples/users/update-prefs.md +0 -3
- package/docs/examples/users/update-status.md +0 -3
- package/docs/examples/users/update-target.md +0 -6
- package/docs/examples/vcs/create-repository-detection.md +0 -5
- package/docs/examples/vcs/create-repository.md +0 -4
- package/docs/examples/vcs/delete-installation.md +0 -2
- package/docs/examples/vcs/get-installation.md +0 -2
- package/docs/examples/vcs/get-repository-contents.md +0 -5
- package/docs/examples/vcs/get-repository.md +0 -3
- package/docs/examples/vcs/list-installations.md +0 -3
- package/docs/examples/vcs/list-repositories.md +0 -4
- package/docs/examples/vcs/list-repository-branches.md +0 -3
- package/docs/examples/vcs/update-external-deployments.md +0 -4
- package/functions/Starter function/.prettierrc.json +0 -6
- package/functions/Starter function/README.md +0 -48
- package/functions/Starter function/package-lock.json +0 -60
- package/functions/Starter function/package.json +0 -16
- package/functions/Starter function/src/main.js +0 -35
- package/generate/appwrite.d.ts +0 -55
- package/generate/appwrite.db.ts +0 -75
- package/index.js +0 -109
- package/lib/client-generation/languages/typescript.js +0 -65
- package/lib/client.js +0 -259
- package/lib/commands/account.js +0 -2074
- package/lib/commands/avatars.js +0 -491
- package/lib/commands/console.js +0 -129
- package/lib/commands/databases.js +0 -2972
- package/lib/commands/functions.js +0 -1737
- package/lib/commands/generic.js +0 -328
- package/lib/commands/graphql.js +0 -128
- package/lib/commands/health.js +0 -891
- package/lib/commands/init.js +0 -566
- package/lib/commands/locale.js +0 -324
- package/lib/commands/messaging.js +0 -2970
- package/lib/commands/migrations.js +0 -751
- package/lib/commands/organizations.js +0 -48
- package/lib/commands/project.js +0 -308
- package/lib/commands/projects.js +0 -2615
- package/lib/commands/proxy.js +0 -406
- package/lib/commands/pull.js +0 -474
- package/lib/commands/push.js +0 -2117
- package/lib/commands/run.js +0 -330
- package/lib/commands/sites.js +0 -1663
- package/lib/commands/storage.js +0 -990
- package/lib/commands/tables.js +0 -2607
- package/lib/commands/teams.js +0 -682
- package/lib/commands/tokens.js +0 -261
- package/lib/commands/types.js +0 -191
- package/lib/commands/users.js +0 -2035
- package/lib/commands/vcs.js +0 -484
- package/lib/config.js +0 -717
- package/lib/emulation/docker.js +0 -264
- package/lib/emulation/utils.js +0 -186
- package/lib/exception.js +0 -9
- package/lib/id.js +0 -30
- package/lib/paginate.js +0 -52
- package/lib/parser.js +0 -246
- package/lib/questions.js +0 -1006
- package/lib/sdks.js +0 -60
- package/lib/spinner.js +0 -104
- package/lib/type-generation/attribute.js +0 -16
- package/lib/type-generation/languages/dart.js +0 -196
- package/lib/type-generation/languages/java.js +0 -130
- package/lib/type-generation/languages/javascript.js +0 -102
- package/lib/type-generation/languages/kotlin.js +0 -85
- package/lib/type-generation/languages/language.js +0 -125
- package/lib/type-generation/languages/php.js +0 -110
- package/lib/type-generation/languages/swift.js +0 -169
- package/lib/type-generation/languages/typescript.js +0 -105
- package/lib/utils.js +0 -289
- package/lib/validations.js +0 -17
- package/scoop/appwrite.json +0 -30
- package/sites/JavaScript starter2/.env.example +0 -3
- package/sites/JavaScript starter2/LICENSE +0 -21
- package/sites/JavaScript starter2/images/appwrite.svg +0 -8
- package/sites/JavaScript starter2/images/javascript.svg +0 -5
- package/sites/JavaScript starter2/index.html +0 -250
- package/sites/JavaScript starter2/lib/appwrite.js +0 -10
- package/sites/JavaScript starter2/package-lock.json +0 -1431
- package/sites/JavaScript starter2/package.json +0 -21
- package/sites/JavaScript starter2/readme.md +0 -26
- package/sites/JavaScript starter2/src/javascript.svg +0 -1
- package/sites/JavaScript starter2/style/app.css +0 -20
- package/sites/JavaScript starter2/vite.config.js +0 -7
package/lib/config.ts
ADDED
|
@@ -0,0 +1,932 @@
|
|
|
1
|
+
import os from "os";
|
|
2
|
+
import fs from "fs";
|
|
3
|
+
import _path from "path";
|
|
4
|
+
import process from "process";
|
|
5
|
+
import JSONbig from "json-bigint";
|
|
6
|
+
import type { Models } from "@appwrite.io/console";
|
|
7
|
+
import type {
|
|
8
|
+
BucketType,
|
|
9
|
+
CollectionType,
|
|
10
|
+
FunctionType,
|
|
11
|
+
ConfigType,
|
|
12
|
+
SettingsType,
|
|
13
|
+
SiteType,
|
|
14
|
+
TableType,
|
|
15
|
+
TeamType,
|
|
16
|
+
TopicType,
|
|
17
|
+
} from "./commands/config.js";
|
|
18
|
+
import type {
|
|
19
|
+
SessionData,
|
|
20
|
+
ConfigData,
|
|
21
|
+
Entity,
|
|
22
|
+
GlobalConfigData,
|
|
23
|
+
} from "./types.js";
|
|
24
|
+
import { createSettingsObject } from "./utils.js";
|
|
25
|
+
|
|
26
|
+
const JSONBigInt = JSONbig({ storeAsString: false });
|
|
27
|
+
|
|
28
|
+
const KeysVars = new Set(["key", "value"]);
|
|
29
|
+
const KeysSite = new Set([
|
|
30
|
+
"path",
|
|
31
|
+
"$id",
|
|
32
|
+
"name",
|
|
33
|
+
"enabled",
|
|
34
|
+
"logging",
|
|
35
|
+
"timeout",
|
|
36
|
+
"framework",
|
|
37
|
+
"buildRuntime",
|
|
38
|
+
"adapter",
|
|
39
|
+
"installCommand",
|
|
40
|
+
"buildCommand",
|
|
41
|
+
"outputDirectory",
|
|
42
|
+
"fallbackFile",
|
|
43
|
+
"specification",
|
|
44
|
+
"vars",
|
|
45
|
+
]);
|
|
46
|
+
const KeysFunction = new Set([
|
|
47
|
+
"path",
|
|
48
|
+
"$id",
|
|
49
|
+
"execute",
|
|
50
|
+
"name",
|
|
51
|
+
"enabled",
|
|
52
|
+
"logging",
|
|
53
|
+
"runtime",
|
|
54
|
+
"specification",
|
|
55
|
+
"scopes",
|
|
56
|
+
"events",
|
|
57
|
+
"schedule",
|
|
58
|
+
"timeout",
|
|
59
|
+
"entrypoint",
|
|
60
|
+
"commands",
|
|
61
|
+
"vars",
|
|
62
|
+
]);
|
|
63
|
+
const KeysDatabase = new Set(["$id", "name", "enabled"]);
|
|
64
|
+
const KeysCollection = new Set([
|
|
65
|
+
"$id",
|
|
66
|
+
"$permissions",
|
|
67
|
+
"databaseId",
|
|
68
|
+
"name",
|
|
69
|
+
"enabled",
|
|
70
|
+
"documentSecurity",
|
|
71
|
+
"attributes",
|
|
72
|
+
"indexes",
|
|
73
|
+
]);
|
|
74
|
+
const KeysTable = new Set([
|
|
75
|
+
"$id",
|
|
76
|
+
"$permissions",
|
|
77
|
+
"databaseId",
|
|
78
|
+
"name",
|
|
79
|
+
"enabled",
|
|
80
|
+
"rowSecurity",
|
|
81
|
+
"columns",
|
|
82
|
+
"indexes",
|
|
83
|
+
]);
|
|
84
|
+
const KeysStorage = new Set([
|
|
85
|
+
"$id",
|
|
86
|
+
"$permissions",
|
|
87
|
+
"fileSecurity",
|
|
88
|
+
"name",
|
|
89
|
+
"enabled",
|
|
90
|
+
"maximumFileSize",
|
|
91
|
+
"allowedFileExtensions",
|
|
92
|
+
"compression",
|
|
93
|
+
"encryption",
|
|
94
|
+
"antivirus",
|
|
95
|
+
]);
|
|
96
|
+
const KeysTopics = new Set(["$id", "name", "subscribe"]);
|
|
97
|
+
const KeysTeams = new Set(["$id", "name"]);
|
|
98
|
+
const KeysAttributes = new Set([
|
|
99
|
+
"key",
|
|
100
|
+
"type",
|
|
101
|
+
"required",
|
|
102
|
+
"array",
|
|
103
|
+
"size",
|
|
104
|
+
"default",
|
|
105
|
+
// integer and float
|
|
106
|
+
"min",
|
|
107
|
+
"max",
|
|
108
|
+
// email, enum, URL, IP, and datetime
|
|
109
|
+
"format",
|
|
110
|
+
// enum
|
|
111
|
+
"elements",
|
|
112
|
+
// relationship
|
|
113
|
+
"relatedCollection",
|
|
114
|
+
"relationType",
|
|
115
|
+
"twoWay",
|
|
116
|
+
"twoWayKey",
|
|
117
|
+
"onDelete",
|
|
118
|
+
"side",
|
|
119
|
+
// Indexes
|
|
120
|
+
"attributes",
|
|
121
|
+
"orders",
|
|
122
|
+
// Strings
|
|
123
|
+
"encrypt",
|
|
124
|
+
]);
|
|
125
|
+
const KeysColumns = new Set([
|
|
126
|
+
"key",
|
|
127
|
+
"type",
|
|
128
|
+
"required",
|
|
129
|
+
"array",
|
|
130
|
+
"size",
|
|
131
|
+
"default",
|
|
132
|
+
// integer and float
|
|
133
|
+
"min",
|
|
134
|
+
"max",
|
|
135
|
+
// email, enum, URL, IP, and datetime
|
|
136
|
+
"format",
|
|
137
|
+
// enum
|
|
138
|
+
"elements",
|
|
139
|
+
// relationship
|
|
140
|
+
"relatedTable",
|
|
141
|
+
"relationType",
|
|
142
|
+
"twoWay",
|
|
143
|
+
"twoWayKey",
|
|
144
|
+
"onDelete",
|
|
145
|
+
"side",
|
|
146
|
+
// Indexes
|
|
147
|
+
"columns",
|
|
148
|
+
"orders",
|
|
149
|
+
// Strings
|
|
150
|
+
"encrypt",
|
|
151
|
+
]);
|
|
152
|
+
const KeyIndexes = new Set(["key", "type", "status", "attributes", "orders"]);
|
|
153
|
+
const KeyIndexesColumns = new Set([
|
|
154
|
+
"key",
|
|
155
|
+
"type",
|
|
156
|
+
"status",
|
|
157
|
+
"columns",
|
|
158
|
+
"orders",
|
|
159
|
+
]);
|
|
160
|
+
|
|
161
|
+
function whitelistKeys<T = any>(
|
|
162
|
+
value: T,
|
|
163
|
+
keys: Set<string>,
|
|
164
|
+
nestedKeys: Record<string, Set<string>> = {},
|
|
165
|
+
): T {
|
|
166
|
+
if (Array.isArray(value)) {
|
|
167
|
+
const newValue: any[] = [];
|
|
168
|
+
|
|
169
|
+
for (const item of value) {
|
|
170
|
+
newValue.push(whitelistKeys(item, keys, nestedKeys));
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
return newValue as T;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
const newValue: Record<string, any> = {};
|
|
177
|
+
Object.keys(value as any).forEach((key) => {
|
|
178
|
+
if (keys.has(key)) {
|
|
179
|
+
if (nestedKeys[key]) {
|
|
180
|
+
newValue[key] = whitelistKeys((value as any)[key], nestedKeys[key]);
|
|
181
|
+
} else {
|
|
182
|
+
newValue[key] = (value as any)[key];
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
});
|
|
186
|
+
return newValue as T;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
class Config<T extends ConfigData = ConfigData> {
|
|
190
|
+
readonly path: string;
|
|
191
|
+
protected data: T;
|
|
192
|
+
|
|
193
|
+
constructor(path: string) {
|
|
194
|
+
this.path = path;
|
|
195
|
+
this.data = {} as T;
|
|
196
|
+
this.read();
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
read(): void {
|
|
200
|
+
try {
|
|
201
|
+
const file = fs.readFileSync(this.path).toString();
|
|
202
|
+
this.data = JSONBigInt.parse(file);
|
|
203
|
+
} catch (e) {
|
|
204
|
+
this.data = {} as T;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
write(): void {
|
|
209
|
+
const dir = _path.dirname(this.path);
|
|
210
|
+
if (!fs.existsSync(dir)) {
|
|
211
|
+
fs.mkdirSync(dir, { recursive: true });
|
|
212
|
+
}
|
|
213
|
+
fs.writeFileSync(this.path, JSONBigInt.stringify(this.data, null, 4), {
|
|
214
|
+
mode: 0o600,
|
|
215
|
+
});
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
get<K extends keyof T>(key: K): T[K];
|
|
219
|
+
get(key: string): any {
|
|
220
|
+
return this.data[key as keyof T];
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
set<K extends keyof T>(key: K, value: T[K]): void;
|
|
224
|
+
set(key: string, value: any): void {
|
|
225
|
+
(this.data as any)[key] = value;
|
|
226
|
+
this.write();
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
delete(key: string): void {
|
|
230
|
+
delete (this.data as any)[key];
|
|
231
|
+
this.write();
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
clear(): void {
|
|
235
|
+
this.data = {} as T;
|
|
236
|
+
this.write();
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
has(key: string): boolean {
|
|
240
|
+
return this.data[key as keyof T] !== undefined;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
keys(): string[] {
|
|
244
|
+
return Object.keys(this.data);
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
values(): unknown[] {
|
|
248
|
+
return Object.values(this.data);
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
toString(): string {
|
|
252
|
+
return JSONBigInt.stringify(this.data, null, 4);
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
protected _getDBEntities(entityType: string): Entity[] {
|
|
256
|
+
if (!this.has(entityType)) {
|
|
257
|
+
return [];
|
|
258
|
+
}
|
|
259
|
+
return this.get(entityType) as Entity[];
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
protected _getDBEntity(
|
|
263
|
+
entityType: string,
|
|
264
|
+
$id: string,
|
|
265
|
+
): Entity | Record<string, never> {
|
|
266
|
+
if (!this.has(entityType)) {
|
|
267
|
+
return {};
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
const entities = this.get(entityType) as Entity[];
|
|
271
|
+
for (let i = 0; i < entities.length; i++) {
|
|
272
|
+
if (entities[i]["$id"] == $id) {
|
|
273
|
+
return entities[i];
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
return {};
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
protected _addDBEntity(
|
|
281
|
+
entityType: string,
|
|
282
|
+
props: Entity,
|
|
283
|
+
keysSet: Set<string>,
|
|
284
|
+
nestedKeys: Record<string, Set<string>> = {},
|
|
285
|
+
): void {
|
|
286
|
+
props = whitelistKeys(props, keysSet, nestedKeys);
|
|
287
|
+
|
|
288
|
+
if (!this.has(entityType)) {
|
|
289
|
+
(this.set as (key: string, value: Entity[]) => void)(entityType, []);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
const entities = this.get(entityType) as Entity[];
|
|
293
|
+
for (let i = 0; i < entities.length; i++) {
|
|
294
|
+
if (entities[i]["$id"] == props["$id"]) {
|
|
295
|
+
entities[i] = props;
|
|
296
|
+
(this.set as (key: string, value: Entity[]) => void)(
|
|
297
|
+
entityType,
|
|
298
|
+
entities,
|
|
299
|
+
);
|
|
300
|
+
return;
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
entities.push(props);
|
|
304
|
+
(this.set as (key: string, value: Entity[]) => void)(entityType, entities);
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
class Local extends Config<ConfigType> {
|
|
309
|
+
static CONFIG_FILE_PATH = "appwrite.config.json";
|
|
310
|
+
static CONFIG_FILE_PATH_LEGACY = "appwrite.json";
|
|
311
|
+
configDirectoryPath = "";
|
|
312
|
+
|
|
313
|
+
constructor(
|
|
314
|
+
path: string = Local.CONFIG_FILE_PATH,
|
|
315
|
+
legacyPath: string = Local.CONFIG_FILE_PATH_LEGACY,
|
|
316
|
+
) {
|
|
317
|
+
let absolutePath =
|
|
318
|
+
Local.findConfigFile(path) || Local.findConfigFile(legacyPath);
|
|
319
|
+
|
|
320
|
+
if (!absolutePath) {
|
|
321
|
+
absolutePath = `${process.cwd()}/${path}`;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
super(absolutePath);
|
|
325
|
+
this.configDirectoryPath = _path.dirname(absolutePath);
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
static findConfigFile(filename: string): string | null {
|
|
329
|
+
let currentPath = process.cwd();
|
|
330
|
+
|
|
331
|
+
while (true) {
|
|
332
|
+
const filePath = `${currentPath}/${filename}`;
|
|
333
|
+
|
|
334
|
+
if (fs.existsSync(filePath)) {
|
|
335
|
+
return filePath;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
const parentDirectory = _path.dirname(currentPath);
|
|
339
|
+
if (parentDirectory === currentPath) {
|
|
340
|
+
break;
|
|
341
|
+
}
|
|
342
|
+
currentPath = parentDirectory;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
return null;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
getDirname(): string {
|
|
349
|
+
return _path.dirname(this.path);
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
getEndpoint(): string {
|
|
353
|
+
return this.get("endpoint") || "";
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
setEndpoint(endpoint: string): void {
|
|
357
|
+
this.set("endpoint", endpoint);
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
getSites(): SiteType[] {
|
|
361
|
+
if (!this.has("sites")) {
|
|
362
|
+
return [];
|
|
363
|
+
}
|
|
364
|
+
return this.get("sites") ?? [];
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
getSite($id: string): SiteType | Record<string, never> {
|
|
368
|
+
if (!this.has("sites")) {
|
|
369
|
+
return {};
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
const sites = this.get("sites") ?? [];
|
|
373
|
+
for (let i = 0; i < sites.length; i++) {
|
|
374
|
+
if (sites[i]["$id"] == $id) {
|
|
375
|
+
return sites[i];
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
return {};
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
addSite(props: SiteType): void {
|
|
383
|
+
props = whitelistKeys(props, KeysSite, {
|
|
384
|
+
vars: KeysVars,
|
|
385
|
+
});
|
|
386
|
+
|
|
387
|
+
if (!this.has("sites")) {
|
|
388
|
+
this.set("sites", []);
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
const sites = this.get("sites") ?? [];
|
|
392
|
+
for (let i = 0; i < sites.length; i++) {
|
|
393
|
+
if (sites[i]["$id"] == props["$id"]) {
|
|
394
|
+
sites[i] = {
|
|
395
|
+
...sites[i],
|
|
396
|
+
...props,
|
|
397
|
+
};
|
|
398
|
+
this.set("sites", sites);
|
|
399
|
+
return;
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
sites.push(props);
|
|
404
|
+
this.set("sites", sites);
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
getFunctions(): FunctionType[] {
|
|
408
|
+
if (!this.has("functions")) {
|
|
409
|
+
return [];
|
|
410
|
+
}
|
|
411
|
+
return this.get("functions") ?? [];
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
getFunction($id: string): FunctionType | Record<string, never> {
|
|
415
|
+
if (!this.has("functions")) {
|
|
416
|
+
return {};
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
const functions = this.get("functions") ?? [];
|
|
420
|
+
for (let i = 0; i < functions.length; i++) {
|
|
421
|
+
if (functions[i]["$id"] == $id) {
|
|
422
|
+
return functions[i];
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
return {};
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
addFunction(props: FunctionType): void {
|
|
430
|
+
props = whitelistKeys(props, KeysFunction, {
|
|
431
|
+
vars: KeysVars,
|
|
432
|
+
});
|
|
433
|
+
|
|
434
|
+
if (!this.has("functions")) {
|
|
435
|
+
this.set("functions", []);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
const functions = this.get("functions") ?? [];
|
|
439
|
+
for (let i = 0; i < functions.length; i++) {
|
|
440
|
+
if (functions[i]["$id"] == props["$id"]) {
|
|
441
|
+
functions[i] = {
|
|
442
|
+
...functions[i],
|
|
443
|
+
...props,
|
|
444
|
+
};
|
|
445
|
+
this.set("functions", functions);
|
|
446
|
+
return;
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
functions.push(props);
|
|
451
|
+
this.set("functions", functions);
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
getCollections(): CollectionType[] {
|
|
455
|
+
if (!this.has("collections")) {
|
|
456
|
+
return [];
|
|
457
|
+
}
|
|
458
|
+
return this.get("collections") ?? [];
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
getCollection($id: string): CollectionType | Record<string, never> {
|
|
462
|
+
if (!this.has("collections")) {
|
|
463
|
+
return {};
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
const collections = this.get("collections") ?? [];
|
|
467
|
+
for (let i = 0; i < collections.length; i++) {
|
|
468
|
+
if (collections[i]["$id"] == $id) {
|
|
469
|
+
return collections[i];
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
return {};
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
addCollection(props: CollectionType): void {
|
|
477
|
+
props = whitelistKeys(props, KeysCollection, {
|
|
478
|
+
attributes: KeysAttributes,
|
|
479
|
+
indexes: KeyIndexes,
|
|
480
|
+
});
|
|
481
|
+
|
|
482
|
+
if (!this.has("collections")) {
|
|
483
|
+
this.set("collections", []);
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
const collections = this.get("collections") ?? [];
|
|
487
|
+
for (let i = 0; i < collections.length; i++) {
|
|
488
|
+
if (
|
|
489
|
+
collections[i]["$id"] == props["$id"] &&
|
|
490
|
+
collections[i]["databaseId"] == props["databaseId"]
|
|
491
|
+
) {
|
|
492
|
+
collections[i] = props;
|
|
493
|
+
this.set("collections", collections);
|
|
494
|
+
return;
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
collections.push(props);
|
|
498
|
+
this.set("collections", collections);
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
getTables(): TableType[] {
|
|
502
|
+
if (!this.has("tables")) {
|
|
503
|
+
return [];
|
|
504
|
+
}
|
|
505
|
+
return this.get("tables") ?? [];
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
getTable($id: string): TableType | Record<string, never> {
|
|
509
|
+
if (!this.has("tables")) {
|
|
510
|
+
return {};
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
const tables = this.get("tables") ?? [];
|
|
514
|
+
for (let i = 0; i < tables.length; i++) {
|
|
515
|
+
if (tables[i]["$id"] == $id) {
|
|
516
|
+
return tables[i];
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
return {};
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
addTable(props: TableType): void {
|
|
524
|
+
props = whitelistKeys(props, KeysTable, {
|
|
525
|
+
columns: KeysColumns,
|
|
526
|
+
indexes: KeyIndexesColumns,
|
|
527
|
+
});
|
|
528
|
+
|
|
529
|
+
if (!this.has("tables")) {
|
|
530
|
+
this.set("tables", []);
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
const tables = this.get("tables") ?? [];
|
|
534
|
+
for (let i = 0; i < tables.length; i++) {
|
|
535
|
+
if (
|
|
536
|
+
tables[i]["$id"] == props["$id"] &&
|
|
537
|
+
tables[i]["databaseId"] == props["databaseId"]
|
|
538
|
+
) {
|
|
539
|
+
tables[i] = props;
|
|
540
|
+
this.set("tables", tables);
|
|
541
|
+
return;
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
tables.push(props);
|
|
545
|
+
this.set("tables", tables);
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
getBuckets(): BucketType[] {
|
|
549
|
+
if (!this.has("buckets")) {
|
|
550
|
+
return [];
|
|
551
|
+
}
|
|
552
|
+
return this.get("buckets") ?? [];
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
getBucket($id: string): BucketType | Record<string, never> {
|
|
556
|
+
if (!this.has("buckets")) {
|
|
557
|
+
return {};
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
const buckets = this.get("buckets") ?? [];
|
|
561
|
+
for (let i = 0; i < buckets.length; i++) {
|
|
562
|
+
if (buckets[i]["$id"] == $id) {
|
|
563
|
+
return buckets[i];
|
|
564
|
+
}
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
return {};
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
addBucket(props: BucketType): void {
|
|
571
|
+
props = whitelistKeys(props, KeysStorage);
|
|
572
|
+
|
|
573
|
+
if (!this.has("buckets")) {
|
|
574
|
+
this.set("buckets", []);
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
const buckets = this.get("buckets") ?? [];
|
|
578
|
+
for (let i = 0; i < buckets.length; i++) {
|
|
579
|
+
if (buckets[i]["$id"] == props["$id"]) {
|
|
580
|
+
buckets[i] = props;
|
|
581
|
+
this.set("buckets", buckets);
|
|
582
|
+
return;
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
buckets.push(props);
|
|
586
|
+
this.set("buckets", buckets);
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
getMessagingTopics(): TopicType[] {
|
|
590
|
+
if (!this.has("topics")) {
|
|
591
|
+
return [];
|
|
592
|
+
}
|
|
593
|
+
return this.get("topics") ?? [];
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
getMessagingTopic($id: string): TopicType | Record<string, never> {
|
|
597
|
+
if (!this.has("topics")) {
|
|
598
|
+
return {};
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
const topics = this.get("topics") ?? [];
|
|
602
|
+
for (let i = 0; i < topics.length; i++) {
|
|
603
|
+
if (topics[i]["$id"] == $id) {
|
|
604
|
+
return topics[i];
|
|
605
|
+
}
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
return {};
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
addMessagingTopic(props: TopicType): void {
|
|
612
|
+
props = whitelistKeys(props, KeysTopics);
|
|
613
|
+
|
|
614
|
+
if (!this.has("topics")) {
|
|
615
|
+
this.set("topics", []);
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
const topics = this.get("topics") ?? [];
|
|
619
|
+
for (let i = 0; i < topics.length; i++) {
|
|
620
|
+
if (topics[i]["$id"] === props["$id"]) {
|
|
621
|
+
topics[i] = props;
|
|
622
|
+
this.set("topics", topics);
|
|
623
|
+
return;
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
topics.push(props);
|
|
627
|
+
this.set("topics", topics);
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
getTablesDBs(): any[] {
|
|
631
|
+
return this._getDBEntities("tablesDB");
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
getTablesDB($id: string): any {
|
|
635
|
+
return this._getDBEntity("tablesDB", $id);
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
addTablesDB(props: any): void {
|
|
639
|
+
this._addDBEntity("tablesDB", props, KeysDatabase);
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
getDatabases(): any[] {
|
|
643
|
+
return this._getDBEntities("databases");
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
getDatabase($id: string): any {
|
|
647
|
+
return this._getDBEntity("databases", $id);
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
addDatabase(props: any): void {
|
|
651
|
+
this._addDBEntity("databases", props, KeysDatabase);
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
getTeams(): TeamType[] {
|
|
655
|
+
if (!this.has("teams")) {
|
|
656
|
+
return [];
|
|
657
|
+
}
|
|
658
|
+
return this.get("teams") ?? [];
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
getTeam($id: string): TeamType | Record<string, never> {
|
|
662
|
+
if (!this.has("teams")) {
|
|
663
|
+
return {};
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
const teams = this.get("teams") ?? [];
|
|
667
|
+
for (let i = 0; i < teams.length; i++) {
|
|
668
|
+
if (teams[i]["$id"] == $id) {
|
|
669
|
+
return teams[i];
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
return {};
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
addTeam(props: TeamType): void {
|
|
677
|
+
props = whitelistKeys(props, KeysTeams);
|
|
678
|
+
if (!this.has("teams")) {
|
|
679
|
+
this.set("teams", []);
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
const teams = this.get("teams") ?? [];
|
|
683
|
+
for (let i = 0; i < teams.length; i++) {
|
|
684
|
+
if (teams[i]["$id"] == props["$id"]) {
|
|
685
|
+
teams[i] = props;
|
|
686
|
+
this.set("teams", teams);
|
|
687
|
+
return;
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
teams.push(props);
|
|
691
|
+
this.set("teams", teams);
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
getProject(): {
|
|
695
|
+
projectId?: string;
|
|
696
|
+
projectName?: string;
|
|
697
|
+
projectSettings?: SettingsType;
|
|
698
|
+
} {
|
|
699
|
+
if (!this.has("projectId")) {
|
|
700
|
+
return {};
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
return {
|
|
704
|
+
projectId: this.get("projectId"),
|
|
705
|
+
projectName: this.get("projectName"),
|
|
706
|
+
projectSettings: this.get("settings"),
|
|
707
|
+
};
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
setProject(
|
|
711
|
+
projectId: string,
|
|
712
|
+
projectName: string = "",
|
|
713
|
+
project?: Models.Project,
|
|
714
|
+
): void {
|
|
715
|
+
this.set("projectId", projectId);
|
|
716
|
+
|
|
717
|
+
if (projectName !== "") {
|
|
718
|
+
this.set("projectName", projectName);
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
if (project === undefined) {
|
|
722
|
+
return;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
this.set("settings", createSettingsObject(project));
|
|
726
|
+
}
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
class Global extends Config<GlobalConfigData> {
|
|
730
|
+
static CONFIG_FILE_PATH = ".appwrite/prefs.json";
|
|
731
|
+
|
|
732
|
+
static PREFERENCE_CURRENT = "current" as const;
|
|
733
|
+
static PREFERENCE_ENDPOINT = "endpoint" as const;
|
|
734
|
+
static PREFERENCE_EMAIL = "email" as const;
|
|
735
|
+
static PREFERENCE_SELF_SIGNED = "selfSigned" as const;
|
|
736
|
+
static PREFERENCE_COOKIE = "cookie" as const;
|
|
737
|
+
static PREFERENCE_PROJECT = "project" as const;
|
|
738
|
+
static PREFERENCE_KEY = "key" as const;
|
|
739
|
+
static PREFERENCE_LOCALE = "locale" as const;
|
|
740
|
+
static PREFERENCE_MODE = "mode" as const;
|
|
741
|
+
|
|
742
|
+
static IGNORE_ATTRIBUTES: readonly string[] = [
|
|
743
|
+
Global.PREFERENCE_CURRENT,
|
|
744
|
+
Global.PREFERENCE_SELF_SIGNED,
|
|
745
|
+
Global.PREFERENCE_ENDPOINT,
|
|
746
|
+
Global.PREFERENCE_COOKIE,
|
|
747
|
+
Global.PREFERENCE_PROJECT,
|
|
748
|
+
Global.PREFERENCE_KEY,
|
|
749
|
+
Global.PREFERENCE_LOCALE,
|
|
750
|
+
Global.PREFERENCE_MODE,
|
|
751
|
+
];
|
|
752
|
+
|
|
753
|
+
static MODE_ADMIN = "admin";
|
|
754
|
+
static MODE_DEFAULT = "default";
|
|
755
|
+
|
|
756
|
+
static PROJECT_CONSOLE = "console";
|
|
757
|
+
|
|
758
|
+
constructor(path: string = Global.CONFIG_FILE_PATH) {
|
|
759
|
+
const homeDir = os.homedir();
|
|
760
|
+
super(`${homeDir}/${path}`);
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
getCurrentSession(): string {
|
|
764
|
+
if (!this.has(Global.PREFERENCE_CURRENT)) {
|
|
765
|
+
return "";
|
|
766
|
+
}
|
|
767
|
+
return this.get(Global.PREFERENCE_CURRENT);
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
setCurrentSession(session: string): void {
|
|
771
|
+
if (session !== undefined) {
|
|
772
|
+
this.set(Global.PREFERENCE_CURRENT, session);
|
|
773
|
+
}
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
getSessionIds(): string[] {
|
|
777
|
+
return Object.keys(this.data).filter(
|
|
778
|
+
(key) => !Global.IGNORE_ATTRIBUTES.includes(key),
|
|
779
|
+
);
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
getSessions(): Array<{ id: string; endpoint: string; email: string }> {
|
|
783
|
+
const sessions = Object.keys(this.data).filter(
|
|
784
|
+
(key) => !Global.IGNORE_ATTRIBUTES.includes(key),
|
|
785
|
+
);
|
|
786
|
+
const current = this.getCurrentSession();
|
|
787
|
+
|
|
788
|
+
const sessionMap = new Map<
|
|
789
|
+
string,
|
|
790
|
+
{ id: string; endpoint: string; email: string }
|
|
791
|
+
>();
|
|
792
|
+
|
|
793
|
+
sessions.forEach((sessionId) => {
|
|
794
|
+
const sessionData = (this.data as any)[sessionId];
|
|
795
|
+
const email = sessionData[Global.PREFERENCE_EMAIL];
|
|
796
|
+
const endpoint = sessionData[Global.PREFERENCE_ENDPOINT];
|
|
797
|
+
const key = `${email}|${endpoint}`;
|
|
798
|
+
|
|
799
|
+
if (sessionId === current || !sessionMap.has(key)) {
|
|
800
|
+
sessionMap.set(key, {
|
|
801
|
+
id: sessionId,
|
|
802
|
+
endpoint: sessionData[Global.PREFERENCE_ENDPOINT],
|
|
803
|
+
email: sessionData[Global.PREFERENCE_EMAIL],
|
|
804
|
+
});
|
|
805
|
+
}
|
|
806
|
+
});
|
|
807
|
+
|
|
808
|
+
return Array.from(sessionMap.values());
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
addSession(session: string, data: SessionData): void {
|
|
812
|
+
this.set(session as any, data as any);
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
removeSession(session: string): void {
|
|
816
|
+
this.delete(session);
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
getEmail(): string {
|
|
820
|
+
if (!this.hasFrom(Global.PREFERENCE_EMAIL)) {
|
|
821
|
+
return "";
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
return this.getFrom(Global.PREFERENCE_EMAIL);
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
setEmail(email: string): void {
|
|
828
|
+
this.setTo(Global.PREFERENCE_EMAIL, email);
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
getEndpoint(): string {
|
|
832
|
+
if (!this.hasFrom(Global.PREFERENCE_ENDPOINT)) {
|
|
833
|
+
return "";
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
return this.getFrom(Global.PREFERENCE_ENDPOINT);
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
setEndpoint(endpoint: string): void {
|
|
840
|
+
this.setTo(Global.PREFERENCE_ENDPOINT, endpoint);
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
getSelfSigned(): boolean {
|
|
844
|
+
if (!this.hasFrom(Global.PREFERENCE_SELF_SIGNED)) {
|
|
845
|
+
return false;
|
|
846
|
+
}
|
|
847
|
+
return this.getFrom(Global.PREFERENCE_SELF_SIGNED);
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
setSelfSigned(selfSigned: boolean): void {
|
|
851
|
+
this.setTo(Global.PREFERENCE_SELF_SIGNED, selfSigned);
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
getCookie(): string {
|
|
855
|
+
if (!this.hasFrom(Global.PREFERENCE_COOKIE)) {
|
|
856
|
+
return "";
|
|
857
|
+
}
|
|
858
|
+
return this.getFrom(Global.PREFERENCE_COOKIE);
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
setCookie(cookie: string): void {
|
|
862
|
+
this.setTo(Global.PREFERENCE_COOKIE, cookie);
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
getProject(): string {
|
|
866
|
+
if (!this.hasFrom(Global.PREFERENCE_PROJECT)) {
|
|
867
|
+
return "";
|
|
868
|
+
}
|
|
869
|
+
return this.getFrom(Global.PREFERENCE_PROJECT);
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
setProject(project: string): void {
|
|
873
|
+
this.setTo(Global.PREFERENCE_PROJECT, project);
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
getKey(): string {
|
|
877
|
+
if (!this.hasFrom(Global.PREFERENCE_KEY)) {
|
|
878
|
+
return "";
|
|
879
|
+
}
|
|
880
|
+
return this.getFrom(Global.PREFERENCE_KEY);
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
setKey(key: string): void {
|
|
884
|
+
this.setTo(Global.PREFERENCE_KEY, key);
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
hasFrom(key: string): boolean {
|
|
888
|
+
const current = this.getCurrentSession();
|
|
889
|
+
|
|
890
|
+
if (current) {
|
|
891
|
+
const config = this.get(current as any) ?? {};
|
|
892
|
+
|
|
893
|
+
return (config as any)[key] !== undefined;
|
|
894
|
+
}
|
|
895
|
+
return false;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
getFrom(key: string): any {
|
|
899
|
+
const current = this.getCurrentSession();
|
|
900
|
+
|
|
901
|
+
if (current) {
|
|
902
|
+
const config = this.get(current as any) ?? {};
|
|
903
|
+
|
|
904
|
+
return (config as any)[key];
|
|
905
|
+
}
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
setTo(key: string, value: any): void {
|
|
909
|
+
const current = this.getCurrentSession();
|
|
910
|
+
|
|
911
|
+
if (current) {
|
|
912
|
+
const config = this.get(current as any);
|
|
913
|
+
|
|
914
|
+
(config as any)[key] = value;
|
|
915
|
+
this.write();
|
|
916
|
+
}
|
|
917
|
+
}
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
export const localConfig = new Local();
|
|
921
|
+
export const globalConfig = new Global();
|
|
922
|
+
export {
|
|
923
|
+
KeysAttributes,
|
|
924
|
+
KeysSite,
|
|
925
|
+
KeysFunction,
|
|
926
|
+
KeysTopics,
|
|
927
|
+
KeysStorage,
|
|
928
|
+
KeysTeams,
|
|
929
|
+
KeysCollection,
|
|
930
|
+
KeysTable,
|
|
931
|
+
whitelistKeys,
|
|
932
|
+
};
|