appwrite-cli 13.0.0-rc.1 → 13.0.0-rc.3
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/publish.yml +68 -0
- package/CHANGELOG.md +10 -1
- package/LICENSE.md +1 -1
- package/README.md +3 -3
- package/cli.ts +152 -0
- package/dist/bundle.cjs +95813 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +145 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.d.ts +10 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -142
- package/dist/index.js.map +1 -1
- package/dist/lib/client.d.ts +2 -3
- package/dist/lib/client.d.ts.map +1 -1
- package/dist/lib/client.js +57 -45
- package/dist/lib/client.js.map +1 -1
- package/dist/lib/commands/config.d.ts +562 -0
- package/dist/lib/commands/config.d.ts.map +1 -0
- package/dist/lib/commands/config.js +416 -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 +2 -2
- package/dist/lib/commands/generic.d.ts.map +1 -1
- package/dist/lib/commands/generic.js +170 -157
- package/dist/lib/commands/generic.js.map +1 -1
- package/dist/lib/commands/init.d.ts +1 -1
- package/dist/lib/commands/init.d.ts.map +1 -1
- package/dist/lib/commands/init.js +201 -192
- package/dist/lib/commands/init.js.map +1 -1
- package/dist/lib/commands/pull.d.ts +105 -3
- package/dist/lib/commands/pull.d.ts.map +1 -1
- package/dist/lib/commands/pull.js +530 -370
- package/dist/lib/commands/pull.js.map +1 -1
- package/dist/lib/commands/push.d.ts +106 -0
- package/dist/lib/commands/push.d.ts.map +1 -1
- package/dist/lib/commands/push.js +1432 -1830
- package/dist/lib/commands/push.js.map +1 -1
- package/dist/lib/commands/run.d.ts +1 -1
- package/dist/lib/commands/run.d.ts.map +1 -1
- package/dist/lib/commands/run.js +129 -127
- package/dist/lib/commands/run.js.map +1 -1
- package/dist/lib/commands/schema.d.ts +59 -0
- package/dist/lib/commands/schema.d.ts.map +1 -0
- package/dist/lib/commands/schema.js +86 -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 +328 -0
- package/dist/lib/commands/services/account.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 +28 -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 +620 -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 +266 -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 +250 -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 +175 -0
- package/dist/lib/commands/services/storage.js.map +1 -0
- package/dist/lib/commands/services/tables-db.d.ts +3 -0
- package/dist/lib/commands/services/tables-db.d.ts.map +1 -0
- package/dist/lib/commands/services/tables-db.js +613 -0
- package/dist/lib/commands/services/tables-db.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 +1 -1
- package/dist/lib/commands/types.d.ts.map +1 -1
- package/dist/lib/commands/types.js +53 -57
- package/dist/lib/commands/types.js.map +1 -1
- package/dist/lib/commands/update.d.ts +1 -1
- package/dist/lib/commands/update.d.ts.map +1 -1
- package/dist/lib/commands/update.js +69 -69
- package/dist/lib/commands/update.js.map +1 -1
- package/dist/lib/commands/utils/attributes.d.ts +47 -0
- package/dist/lib/commands/utils/attributes.d.ts.map +1 -0
- package/dist/lib/commands/utils/attributes.js +514 -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 +109 -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 +198 -0
- package/dist/lib/commands/utils/pools.js.map +1 -0
- package/dist/lib/config.d.ts +41 -40
- package/dist/lib/config.d.ts.map +1 -1
- package/dist/lib/config.js +264 -239
- package/dist/lib/config.js.map +1 -1
- package/dist/lib/constants.d.ts +14 -0
- package/dist/lib/constants.d.ts.map +1 -0
- package/dist/lib/constants.js +19 -0
- package/dist/lib/constants.js.map +1 -0
- package/dist/lib/emulation/docker.d.ts +4 -12
- package/dist/lib/emulation/docker.d.ts.map +1 -1
- package/dist/lib/emulation/docker.js +159 -142
- package/dist/lib/emulation/docker.js.map +1 -1
- package/dist/lib/emulation/utils.d.ts +1 -1
- package/dist/lib/emulation/utils.d.ts.map +1 -1
- package/dist/lib/emulation/utils.js +55 -58
- package/dist/lib/emulation/utils.js.map +1 -1
- package/dist/lib/id.d.ts +1 -1
- package/dist/lib/id.d.ts.map +1 -1
- package/dist/lib/id.js +13 -18
- package/dist/lib/id.js.map +1 -1
- package/dist/lib/paginate.d.ts +3 -4
- package/dist/lib/paginate.d.ts.map +1 -1
- package/dist/lib/paginate.js +7 -10
- package/dist/lib/paginate.js.map +1 -1
- package/dist/lib/parser.d.ts +1 -1
- package/dist/lib/parser.d.ts.map +1 -1
- package/dist/lib/parser.js +92 -103
- package/dist/lib/parser.js.map +1 -1
- package/dist/lib/questions.d.ts +1 -1
- package/dist/lib/questions.d.ts.map +1 -1
- package/dist/lib/questions.js +381 -385
- package/dist/lib/questions.js.map +1 -1
- package/dist/lib/sdks.d.ts +1 -1
- package/dist/lib/sdks.d.ts.map +1 -1
- package/dist/lib/sdks.js +39 -30
- package/dist/lib/sdks.js.map +1 -1
- 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 +1 -1
- package/dist/lib/spinner.d.ts.map +1 -1
- package/dist/lib/spinner.js +25 -27
- package/dist/lib/spinner.js.map +1 -1
- package/dist/lib/type-generation/attribute.d.ts +1 -1
- package/dist/lib/type-generation/attribute.d.ts.map +1 -1
- package/dist/lib/type-generation/attribute.js +14 -17
- package/dist/lib/type-generation/attribute.js.map +1 -1
- package/dist/lib/type-generation/languages/csharp.d.ts +1 -1
- package/dist/lib/type-generation/languages/csharp.d.ts.map +1 -1
- package/dist/lib/type-generation/languages/csharp.js +34 -34
- package/dist/lib/type-generation/languages/csharp.js.map +1 -1
- package/dist/lib/type-generation/languages/dart.d.ts +1 -1
- package/dist/lib/type-generation/languages/dart.d.ts.map +1 -1
- package/dist/lib/type-generation/languages/dart.js +57 -57
- package/dist/lib/type-generation/languages/dart.js.map +1 -1
- package/dist/lib/type-generation/languages/java.d.ts +1 -1
- package/dist/lib/type-generation/languages/java.d.ts.map +1 -1
- package/dist/lib/type-generation/languages/java.js +35 -35
- package/dist/lib/type-generation/languages/java.js.map +1 -1
- package/dist/lib/type-generation/languages/javascript.d.ts +1 -1
- package/dist/lib/type-generation/languages/javascript.d.ts.map +1 -1
- package/dist/lib/type-generation/languages/javascript.js +45 -44
- package/dist/lib/type-generation/languages/javascript.js.map +1 -1
- package/dist/lib/type-generation/languages/kotlin.d.ts +1 -1
- package/dist/lib/type-generation/languages/kotlin.d.ts.map +1 -1
- package/dist/lib/type-generation/languages/kotlin.js +35 -35
- package/dist/lib/type-generation/languages/kotlin.js.map +1 -1
- package/dist/lib/type-generation/languages/language.d.ts.map +1 -1
- package/dist/lib/type-generation/languages/language.js +32 -37
- package/dist/lib/type-generation/languages/language.js.map +1 -1
- package/dist/lib/type-generation/languages/php.d.ts +1 -1
- package/dist/lib/type-generation/languages/php.d.ts.map +1 -1
- package/dist/lib/type-generation/languages/php.js +34 -34
- package/dist/lib/type-generation/languages/php.js.map +1 -1
- package/dist/lib/type-generation/languages/swift.d.ts +1 -1
- package/dist/lib/type-generation/languages/swift.d.ts.map +1 -1
- package/dist/lib/type-generation/languages/swift.js +35 -35
- package/dist/lib/type-generation/languages/swift.js.map +1 -1
- package/dist/lib/type-generation/languages/typescript.d.ts +1 -1
- package/dist/lib/type-generation/languages/typescript.d.ts.map +1 -1
- package/dist/lib/type-generation/languages/typescript.js +49 -46
- package/dist/lib/type-generation/languages/typescript.js.map +1 -1
- package/dist/lib/types.d.ts +38 -108
- package/dist/lib/types.d.ts.map +1 -1
- package/dist/lib/types.js +1 -2
- package/dist/lib/utils.d.ts +3 -0
- package/dist/lib/utils.d.ts.map +1 -1
- package/dist/lib/utils.js +142 -98
- package/dist/lib/utils.js.map +1 -1
- package/dist/lib/validations.d.ts.map +1 -1
- package/dist/lib/validations.js +2 -6
- package/dist/lib/validations.js.map +1 -1
- package/dist/package.json +68 -0
- package/index.ts +25 -149
- package/install.ps1 +2 -2
- package/install.sh +1 -1
- package/lib/client.ts +261 -220
- package/lib/commands/config.ts +494 -0
- package/lib/commands/db.ts +324 -0
- package/lib/commands/errors.ts +93 -0
- package/lib/commands/generic.ts +371 -269
- package/lib/commands/init.ts +631 -519
- package/lib/commands/pull.ts +827 -453
- package/lib/commands/push.ts +2191 -2349
- package/lib/commands/run.ts +382 -302
- package/lib/commands/schema.ts +122 -0
- package/lib/commands/services/account.ts +647 -0
- package/lib/commands/services/console.ts +52 -0
- package/lib/commands/services/databases.ts +1163 -0
- package/lib/commands/services/functions.ts +536 -0
- package/lib/commands/services/graphql.ts +50 -0
- package/lib/commands/services/health.ts +260 -0
- package/lib/commands/services/locale.ts +102 -0
- package/lib/commands/services/messaging.ts +1052 -0
- package/lib/commands/services/migrations.ts +249 -0
- package/lib/commands/services/project.ts +112 -0
- package/lib/commands/services/projects.ts +785 -0
- package/lib/commands/services/proxy.ts +135 -0
- package/lib/commands/services/sites.ts +505 -0
- package/lib/commands/services/storage.ts +338 -0
- package/lib/commands/services/tables-db.ts +1150 -0
- package/lib/commands/services/teams.ts +232 -0
- package/lib/commands/services/tokens.ts +94 -0
- package/lib/commands/services/users.ts +616 -0
- package/lib/commands/services/vcs.ts +165 -0
- package/lib/commands/types.ts +145 -118
- package/lib/commands/update.ts +189 -159
- package/lib/commands/utils/attributes.ts +719 -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 +184 -0
- package/lib/commands/utils/error-formatter.ts +417 -0
- package/lib/commands/utils/pools.ts +355 -0
- package/lib/config.ts +766 -687
- package/lib/constants.ts +22 -0
- package/lib/emulation/docker.ts +277 -216
- package/lib/emulation/utils.ts +188 -174
- package/lib/id.ts +23 -23
- package/lib/paginate.ts +69 -55
- package/lib/parser.ts +220 -189
- package/lib/questions.ts +1024 -948
- package/lib/sdks.ts +84 -51
- package/lib/services.ts +72 -0
- package/lib/spinner.ts +112 -99
- package/lib/type-generation/attribute.ts +15 -14
- package/lib/type-generation/languages/csharp.ts +71 -60
- package/lib/type-generation/languages/dart.ts +106 -93
- package/lib/type-generation/languages/java.ts +69 -58
- package/lib/type-generation/languages/javascript.ts +84 -73
- package/lib/type-generation/languages/kotlin.ts +71 -60
- package/lib/type-generation/languages/language.ts +103 -95
- package/lib/type-generation/languages/php.ts +67 -56
- package/lib/type-generation/languages/swift.ts +71 -60
- package/lib/type-generation/languages/typescript.ts +93 -76
- package/lib/types.ts +50 -125
- package/lib/utils.ts +304 -233
- package/lib/validations.ts +17 -14
- package/package.json +31 -22
- package/scoop/appwrite.config.json +3 -3
- package/tsconfig.json +7 -13
- package/.github/workflows/autoclose.yml +0 -11
- package/.github/workflows/npm-publish.yml +0 -49
- package/dist/lib/commands/account.d.ts +0 -379
- package/dist/lib/commands/account.d.ts.map +0 -1
- package/dist/lib/commands/account.js +0 -1228
- package/dist/lib/commands/account.js.map +0 -1
- package/dist/lib/commands/console.d.ts +0 -20
- package/dist/lib/commands/console.d.ts.map +0 -1
- package/dist/lib/commands/console.js +0 -78
- package/dist/lib/commands/console.js.map +0 -1
- package/dist/lib/commands/databases.d.ts +0 -732
- package/dist/lib/commands/databases.d.ts.map +0 -1
- package/dist/lib/commands/databases.js +0 -2196
- package/dist/lib/commands/databases.js.map +0 -1
- package/dist/lib/commands/functions.d.ts +0 -310
- package/dist/lib/commands/functions.d.ts.map +0 -1
- package/dist/lib/commands/functions.js +0 -1100
- package/dist/lib/commands/functions.js.map +0 -1
- package/dist/lib/commands/graphql.d.ts +0 -19
- package/dist/lib/commands/graphql.d.ts.map +0 -1
- package/dist/lib/commands/graphql.js +0 -77
- package/dist/lib/commands/graphql.js.map +0 -1
- package/dist/lib/commands/health.d.ts +0 -153
- package/dist/lib/commands/health.d.ts.map +0 -1
- package/dist/lib/commands/health.js +0 -464
- package/dist/lib/commands/health.js.map +0 -1
- package/dist/lib/commands/locale.d.ts +0 -53
- package/dist/lib/commands/locale.d.ts.map +0 -1
- package/dist/lib/commands/locale.js +0 -165
- package/dist/lib/commands/locale.js.map +0 -1
- package/dist/lib/commands/messaging.d.ts +0 -588
- package/dist/lib/commands/messaging.d.ts.map +0 -1
- package/dist/lib/commands/messaging.js +0 -2042
- package/dist/lib/commands/messaging.js.map +0 -1
- package/dist/lib/commands/migrations.d.ts +0 -150
- package/dist/lib/commands/migrations.d.ts.map +0 -1
- package/dist/lib/commands/migrations.js +0 -524
- package/dist/lib/commands/migrations.js.map +0 -1
- package/dist/lib/commands/organizations.d.ts +0 -11
- package/dist/lib/commands/organizations.d.ts.map +0 -1
- package/dist/lib/commands/organizations.js +0 -31
- package/dist/lib/commands/organizations.js.map +0 -1
- package/dist/lib/commands/project.d.ts +0 -53
- package/dist/lib/commands/project.d.ts.map +0 -1
- package/dist/lib/commands/project.js +0 -176
- package/dist/lib/commands/project.js.map +0 -1
- package/dist/lib/commands/projects.d.ts +0 -516
- package/dist/lib/commands/projects.d.ts.map +0 -1
- package/dist/lib/commands/projects.js +0 -1590
- package/dist/lib/commands/projects.js.map +0 -1
- package/dist/lib/commands/proxy.d.ts +0 -71
- package/dist/lib/commands/proxy.d.ts.map +0 -1
- package/dist/lib/commands/proxy.js +0 -240
- package/dist/lib/commands/proxy.js.map +0 -1
- package/dist/lib/commands/sites.d.ts +0 -296
- package/dist/lib/commands/sites.d.ts.map +0 -1
- package/dist/lib/commands/sites.js +0 -1046
- package/dist/lib/commands/sites.js.map +0 -1
- package/dist/lib/commands/storage.d.ts +0 -170
- package/dist/lib/commands/storage.d.ts.map +0 -1
- package/dist/lib/commands/storage.js +0 -651
- package/dist/lib/commands/storage.js.map +0 -1
- package/dist/lib/commands/tables-db.d.ts +0 -728
- package/dist/lib/commands/tables-db.d.ts.map +0 -1
- package/dist/lib/commands/tables-db.js +0 -2198
- package/dist/lib/commands/tables-db.js.map +0 -1
- package/dist/lib/commands/teams.d.ts +0 -129
- package/dist/lib/commands/teams.d.ts.map +0 -1
- package/dist/lib/commands/teams.js +0 -403
- package/dist/lib/commands/teams.js.map +0 -1
- package/dist/lib/commands/tokens.d.ts +0 -48
- package/dist/lib/commands/tokens.d.ts.map +0 -1
- package/dist/lib/commands/tokens.js +0 -156
- package/dist/lib/commands/tokens.js.map +0 -1
- package/dist/lib/commands/users.d.ts +0 -382
- package/dist/lib/commands/users.d.ts.map +0 -1
- package/dist/lib/commands/users.js +0 -1195
- package/dist/lib/commands/users.js.map +0 -1
- package/dist/lib/commands/vcs.d.ts +0 -92
- package/dist/lib/commands/vcs.d.ts.map +0 -1
- package/dist/lib/commands/vcs.js +0 -276
- package/dist/lib/commands/vcs.js.map +0 -1
- package/dist/lib/exception.d.ts +0 -8
- package/dist/lib/exception.d.ts.map +0 -1
- package/dist/lib/exception.js +0 -16
- package/dist/lib/exception.js.map +0 -1
- package/lib/commands/account.ts +0 -1867
- package/lib/commands/console.ts +0 -112
- package/lib/commands/databases.ts +0 -3272
- package/lib/commands/functions.ts +0 -1587
- package/lib/commands/graphql.ts +0 -110
- package/lib/commands/health.ts +0 -753
- package/lib/commands/locale.ts +0 -270
- package/lib/commands/messaging.ts +0 -2878
- package/lib/commands/migrations.ts +0 -754
- package/lib/commands/organizations.ts +0 -46
- package/lib/commands/project.ts +0 -266
- package/lib/commands/projects.ts +0 -2370
- package/lib/commands/proxy.ts +0 -357
- package/lib/commands/sites.ts +0 -1514
- package/lib/commands/storage.ts +0 -919
- package/lib/commands/tables-db.ts +0 -3260
- package/lib/commands/teams.ts +0 -609
- package/lib/commands/tokens.ts +0 -232
- package/lib/commands/users.ts +0 -1804
- package/lib/commands/vcs.ts +0 -428
- package/lib/exception.ts +0 -20
|
@@ -1,1195 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.usersUpdatePhoneVerification = exports.usersUpdateEmailVerification = exports.usersCreateToken = exports.usersDeleteTarget = exports.usersUpdateTarget = exports.usersGetTarget = exports.usersCreateTarget = exports.usersListTargets = exports.usersUpdateStatus = exports.usersDeleteSession = exports.usersDeleteSessions = exports.usersCreateSession = exports.usersListSessions = exports.usersUpdatePrefs = exports.usersGetPrefs = exports.usersUpdatePhone = exports.usersUpdatePassword = exports.usersUpdateName = exports.usersCreateMFARecoveryCodes = exports.usersUpdateMFARecoveryCodes = exports.usersGetMFARecoveryCodes = exports.usersListMFAFactors = exports.usersDeleteMFAAuthenticator = exports.usersUpdateMFA = exports.usersListMemberships = exports.usersListLogs = exports.usersUpdateLabels = exports.usersCreateJWT = exports.usersUpdateEmail = exports.usersDelete = exports.usersGet = exports.usersGetUsage = exports.usersCreateSHAUser = exports.usersCreateScryptModifiedUser = exports.usersCreateScryptUser = exports.usersCreatePHPassUser = exports.usersCreateMD5User = exports.usersDeleteIdentity = exports.usersListIdentities = exports.usersCreateBcryptUser = exports.usersCreateArgon2User = exports.usersCreate = exports.usersList = exports.users = void 0;
|
|
4
|
-
const utils_1 = require("../utils");
|
|
5
|
-
const commander_1 = require("commander");
|
|
6
|
-
const sdks_1 = require("../sdks");
|
|
7
|
-
const parser_1 = require("../parser");
|
|
8
|
-
const web_1 = require("stream/web");
|
|
9
|
-
function convertReadStreamToReadableStream(readStream) {
|
|
10
|
-
return new web_1.ReadableStream({
|
|
11
|
-
start(controller) {
|
|
12
|
-
readStream.on("data", (chunk) => {
|
|
13
|
-
controller.enqueue(chunk);
|
|
14
|
-
});
|
|
15
|
-
readStream.on("end", () => {
|
|
16
|
-
controller.close();
|
|
17
|
-
});
|
|
18
|
-
readStream.on("error", (err) => {
|
|
19
|
-
controller.error(err);
|
|
20
|
-
});
|
|
21
|
-
},
|
|
22
|
-
cancel() {
|
|
23
|
-
readStream.destroy();
|
|
24
|
-
},
|
|
25
|
-
});
|
|
26
|
-
}
|
|
27
|
-
exports.users = new commander_1.Command("users").description(parser_1.commandDescriptions['users'] ?? '').configureHelp({
|
|
28
|
-
helpWidth: process.stdout.columns || 80
|
|
29
|
-
});
|
|
30
|
-
const usersList = async ({ queries, search, total, parseOutput = true, overrideForCli = false, sdk = undefined, console: showConsole }) => {
|
|
31
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
32
|
-
sdk;
|
|
33
|
-
let apiPath = '/users';
|
|
34
|
-
let payload = {};
|
|
35
|
-
if (typeof queries !== 'undefined') {
|
|
36
|
-
payload['queries'] = queries;
|
|
37
|
-
}
|
|
38
|
-
if (typeof search !== 'undefined') {
|
|
39
|
-
payload['search'] = search;
|
|
40
|
-
}
|
|
41
|
-
if (typeof total !== 'undefined') {
|
|
42
|
-
payload['total'] = total;
|
|
43
|
-
}
|
|
44
|
-
let response = undefined;
|
|
45
|
-
response = await client.call('get', apiPath, {}, payload);
|
|
46
|
-
if (parseOutput) {
|
|
47
|
-
if (showConsole) {
|
|
48
|
-
(0, utils_1.showConsoleLink)('users', 'list');
|
|
49
|
-
}
|
|
50
|
-
else {
|
|
51
|
-
(0, parser_1.parse)(response);
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
return response;
|
|
55
|
-
};
|
|
56
|
-
exports.usersList = usersList;
|
|
57
|
-
const usersCreate = async ({ userId, email, phone, password, name, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
58
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
59
|
-
sdk;
|
|
60
|
-
let apiPath = '/users';
|
|
61
|
-
let payload = {};
|
|
62
|
-
if (typeof userId !== 'undefined') {
|
|
63
|
-
payload['userId'] = userId;
|
|
64
|
-
}
|
|
65
|
-
if (typeof email !== 'undefined') {
|
|
66
|
-
payload['email'] = email;
|
|
67
|
-
}
|
|
68
|
-
if (typeof phone !== 'undefined') {
|
|
69
|
-
payload['phone'] = phone;
|
|
70
|
-
}
|
|
71
|
-
if (typeof password !== 'undefined') {
|
|
72
|
-
payload['password'] = password;
|
|
73
|
-
}
|
|
74
|
-
if (typeof name !== 'undefined') {
|
|
75
|
-
payload['name'] = name;
|
|
76
|
-
}
|
|
77
|
-
let response = undefined;
|
|
78
|
-
response = await client.call('post', apiPath, {
|
|
79
|
-
'content-type': 'application/json',
|
|
80
|
-
}, payload);
|
|
81
|
-
if (parseOutput) {
|
|
82
|
-
(0, parser_1.parse)(response);
|
|
83
|
-
}
|
|
84
|
-
return response;
|
|
85
|
-
};
|
|
86
|
-
exports.usersCreate = usersCreate;
|
|
87
|
-
const usersCreateArgon2User = async ({ userId, email, password, name, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
88
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
89
|
-
sdk;
|
|
90
|
-
let apiPath = '/users/argon2';
|
|
91
|
-
let payload = {};
|
|
92
|
-
if (typeof userId !== 'undefined') {
|
|
93
|
-
payload['userId'] = userId;
|
|
94
|
-
}
|
|
95
|
-
if (typeof email !== 'undefined') {
|
|
96
|
-
payload['email'] = email;
|
|
97
|
-
}
|
|
98
|
-
if (typeof password !== 'undefined') {
|
|
99
|
-
payload['password'] = password;
|
|
100
|
-
}
|
|
101
|
-
if (typeof name !== 'undefined') {
|
|
102
|
-
payload['name'] = name;
|
|
103
|
-
}
|
|
104
|
-
let response = undefined;
|
|
105
|
-
response = await client.call('post', apiPath, {
|
|
106
|
-
'content-type': 'application/json',
|
|
107
|
-
}, payload);
|
|
108
|
-
if (parseOutput) {
|
|
109
|
-
(0, parser_1.parse)(response);
|
|
110
|
-
}
|
|
111
|
-
return response;
|
|
112
|
-
};
|
|
113
|
-
exports.usersCreateArgon2User = usersCreateArgon2User;
|
|
114
|
-
const usersCreateBcryptUser = async ({ userId, email, password, name, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
115
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
116
|
-
sdk;
|
|
117
|
-
let apiPath = '/users/bcrypt';
|
|
118
|
-
let payload = {};
|
|
119
|
-
if (typeof userId !== 'undefined') {
|
|
120
|
-
payload['userId'] = userId;
|
|
121
|
-
}
|
|
122
|
-
if (typeof email !== 'undefined') {
|
|
123
|
-
payload['email'] = email;
|
|
124
|
-
}
|
|
125
|
-
if (typeof password !== 'undefined') {
|
|
126
|
-
payload['password'] = password;
|
|
127
|
-
}
|
|
128
|
-
if (typeof name !== 'undefined') {
|
|
129
|
-
payload['name'] = name;
|
|
130
|
-
}
|
|
131
|
-
let response = undefined;
|
|
132
|
-
response = await client.call('post', apiPath, {
|
|
133
|
-
'content-type': 'application/json',
|
|
134
|
-
}, payload);
|
|
135
|
-
if (parseOutput) {
|
|
136
|
-
(0, parser_1.parse)(response);
|
|
137
|
-
}
|
|
138
|
-
return response;
|
|
139
|
-
};
|
|
140
|
-
exports.usersCreateBcryptUser = usersCreateBcryptUser;
|
|
141
|
-
const usersListIdentities = async ({ queries, search, total, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
142
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
143
|
-
sdk;
|
|
144
|
-
let apiPath = '/users/identities';
|
|
145
|
-
let payload = {};
|
|
146
|
-
if (typeof queries !== 'undefined') {
|
|
147
|
-
payload['queries'] = queries;
|
|
148
|
-
}
|
|
149
|
-
if (typeof search !== 'undefined') {
|
|
150
|
-
payload['search'] = search;
|
|
151
|
-
}
|
|
152
|
-
if (typeof total !== 'undefined') {
|
|
153
|
-
payload['total'] = total;
|
|
154
|
-
}
|
|
155
|
-
let response = undefined;
|
|
156
|
-
response = await client.call('get', apiPath, {}, payload);
|
|
157
|
-
if (parseOutput) {
|
|
158
|
-
(0, parser_1.parse)(response);
|
|
159
|
-
}
|
|
160
|
-
return response;
|
|
161
|
-
};
|
|
162
|
-
exports.usersListIdentities = usersListIdentities;
|
|
163
|
-
const usersDeleteIdentity = async ({ identityId, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
164
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
165
|
-
sdk;
|
|
166
|
-
let apiPath = '/users/identities/{identityId}'.replace('{identityId}', identityId);
|
|
167
|
-
let payload = {};
|
|
168
|
-
let response = undefined;
|
|
169
|
-
response = await client.call('delete', apiPath, {
|
|
170
|
-
'content-type': 'application/json',
|
|
171
|
-
}, payload);
|
|
172
|
-
if (parseOutput) {
|
|
173
|
-
(0, parser_1.parse)(response);
|
|
174
|
-
}
|
|
175
|
-
return response;
|
|
176
|
-
};
|
|
177
|
-
exports.usersDeleteIdentity = usersDeleteIdentity;
|
|
178
|
-
const usersCreateMD5User = async ({ userId, email, password, name, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
179
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
180
|
-
sdk;
|
|
181
|
-
let apiPath = '/users/md5';
|
|
182
|
-
let payload = {};
|
|
183
|
-
if (typeof userId !== 'undefined') {
|
|
184
|
-
payload['userId'] = userId;
|
|
185
|
-
}
|
|
186
|
-
if (typeof email !== 'undefined') {
|
|
187
|
-
payload['email'] = email;
|
|
188
|
-
}
|
|
189
|
-
if (typeof password !== 'undefined') {
|
|
190
|
-
payload['password'] = password;
|
|
191
|
-
}
|
|
192
|
-
if (typeof name !== 'undefined') {
|
|
193
|
-
payload['name'] = name;
|
|
194
|
-
}
|
|
195
|
-
let response = undefined;
|
|
196
|
-
response = await client.call('post', apiPath, {
|
|
197
|
-
'content-type': 'application/json',
|
|
198
|
-
}, payload);
|
|
199
|
-
if (parseOutput) {
|
|
200
|
-
(0, parser_1.parse)(response);
|
|
201
|
-
}
|
|
202
|
-
return response;
|
|
203
|
-
};
|
|
204
|
-
exports.usersCreateMD5User = usersCreateMD5User;
|
|
205
|
-
const usersCreatePHPassUser = async ({ userId, email, password, name, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
206
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
207
|
-
sdk;
|
|
208
|
-
let apiPath = '/users/phpass';
|
|
209
|
-
let payload = {};
|
|
210
|
-
if (typeof userId !== 'undefined') {
|
|
211
|
-
payload['userId'] = userId;
|
|
212
|
-
}
|
|
213
|
-
if (typeof email !== 'undefined') {
|
|
214
|
-
payload['email'] = email;
|
|
215
|
-
}
|
|
216
|
-
if (typeof password !== 'undefined') {
|
|
217
|
-
payload['password'] = password;
|
|
218
|
-
}
|
|
219
|
-
if (typeof name !== 'undefined') {
|
|
220
|
-
payload['name'] = name;
|
|
221
|
-
}
|
|
222
|
-
let response = undefined;
|
|
223
|
-
response = await client.call('post', apiPath, {
|
|
224
|
-
'content-type': 'application/json',
|
|
225
|
-
}, payload);
|
|
226
|
-
if (parseOutput) {
|
|
227
|
-
(0, parser_1.parse)(response);
|
|
228
|
-
}
|
|
229
|
-
return response;
|
|
230
|
-
};
|
|
231
|
-
exports.usersCreatePHPassUser = usersCreatePHPassUser;
|
|
232
|
-
const usersCreateScryptUser = async ({ userId, email, password, passwordSalt, passwordCpu, passwordMemory, passwordParallel, passwordLength, name, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
233
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
234
|
-
sdk;
|
|
235
|
-
let apiPath = '/users/scrypt';
|
|
236
|
-
let payload = {};
|
|
237
|
-
if (typeof userId !== 'undefined') {
|
|
238
|
-
payload['userId'] = userId;
|
|
239
|
-
}
|
|
240
|
-
if (typeof email !== 'undefined') {
|
|
241
|
-
payload['email'] = email;
|
|
242
|
-
}
|
|
243
|
-
if (typeof password !== 'undefined') {
|
|
244
|
-
payload['password'] = password;
|
|
245
|
-
}
|
|
246
|
-
if (typeof passwordSalt !== 'undefined') {
|
|
247
|
-
payload['passwordSalt'] = passwordSalt;
|
|
248
|
-
}
|
|
249
|
-
if (typeof passwordCpu !== 'undefined') {
|
|
250
|
-
payload['passwordCpu'] = passwordCpu;
|
|
251
|
-
}
|
|
252
|
-
if (typeof passwordMemory !== 'undefined') {
|
|
253
|
-
payload['passwordMemory'] = passwordMemory;
|
|
254
|
-
}
|
|
255
|
-
if (typeof passwordParallel !== 'undefined') {
|
|
256
|
-
payload['passwordParallel'] = passwordParallel;
|
|
257
|
-
}
|
|
258
|
-
if (typeof passwordLength !== 'undefined') {
|
|
259
|
-
payload['passwordLength'] = passwordLength;
|
|
260
|
-
}
|
|
261
|
-
if (typeof name !== 'undefined') {
|
|
262
|
-
payload['name'] = name;
|
|
263
|
-
}
|
|
264
|
-
let response = undefined;
|
|
265
|
-
response = await client.call('post', apiPath, {
|
|
266
|
-
'content-type': 'application/json',
|
|
267
|
-
}, payload);
|
|
268
|
-
if (parseOutput) {
|
|
269
|
-
(0, parser_1.parse)(response);
|
|
270
|
-
}
|
|
271
|
-
return response;
|
|
272
|
-
};
|
|
273
|
-
exports.usersCreateScryptUser = usersCreateScryptUser;
|
|
274
|
-
const usersCreateScryptModifiedUser = async ({ userId, email, password, passwordSalt, passwordSaltSeparator, passwordSignerKey, name, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
275
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
276
|
-
sdk;
|
|
277
|
-
let apiPath = '/users/scrypt-modified';
|
|
278
|
-
let payload = {};
|
|
279
|
-
if (typeof userId !== 'undefined') {
|
|
280
|
-
payload['userId'] = userId;
|
|
281
|
-
}
|
|
282
|
-
if (typeof email !== 'undefined') {
|
|
283
|
-
payload['email'] = email;
|
|
284
|
-
}
|
|
285
|
-
if (typeof password !== 'undefined') {
|
|
286
|
-
payload['password'] = password;
|
|
287
|
-
}
|
|
288
|
-
if (typeof passwordSalt !== 'undefined') {
|
|
289
|
-
payload['passwordSalt'] = passwordSalt;
|
|
290
|
-
}
|
|
291
|
-
if (typeof passwordSaltSeparator !== 'undefined') {
|
|
292
|
-
payload['passwordSaltSeparator'] = passwordSaltSeparator;
|
|
293
|
-
}
|
|
294
|
-
if (typeof passwordSignerKey !== 'undefined') {
|
|
295
|
-
payload['passwordSignerKey'] = passwordSignerKey;
|
|
296
|
-
}
|
|
297
|
-
if (typeof name !== 'undefined') {
|
|
298
|
-
payload['name'] = name;
|
|
299
|
-
}
|
|
300
|
-
let response = undefined;
|
|
301
|
-
response = await client.call('post', apiPath, {
|
|
302
|
-
'content-type': 'application/json',
|
|
303
|
-
}, payload);
|
|
304
|
-
if (parseOutput) {
|
|
305
|
-
(0, parser_1.parse)(response);
|
|
306
|
-
}
|
|
307
|
-
return response;
|
|
308
|
-
};
|
|
309
|
-
exports.usersCreateScryptModifiedUser = usersCreateScryptModifiedUser;
|
|
310
|
-
const usersCreateSHAUser = async ({ userId, email, password, passwordVersion, name, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
311
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
312
|
-
sdk;
|
|
313
|
-
let apiPath = '/users/sha';
|
|
314
|
-
let payload = {};
|
|
315
|
-
if (typeof userId !== 'undefined') {
|
|
316
|
-
payload['userId'] = userId;
|
|
317
|
-
}
|
|
318
|
-
if (typeof email !== 'undefined') {
|
|
319
|
-
payload['email'] = email;
|
|
320
|
-
}
|
|
321
|
-
if (typeof password !== 'undefined') {
|
|
322
|
-
payload['password'] = password;
|
|
323
|
-
}
|
|
324
|
-
if (typeof passwordVersion !== 'undefined') {
|
|
325
|
-
payload['passwordVersion'] = passwordVersion;
|
|
326
|
-
}
|
|
327
|
-
if (typeof name !== 'undefined') {
|
|
328
|
-
payload['name'] = name;
|
|
329
|
-
}
|
|
330
|
-
let response = undefined;
|
|
331
|
-
response = await client.call('post', apiPath, {
|
|
332
|
-
'content-type': 'application/json',
|
|
333
|
-
}, payload);
|
|
334
|
-
if (parseOutput) {
|
|
335
|
-
(0, parser_1.parse)(response);
|
|
336
|
-
}
|
|
337
|
-
return response;
|
|
338
|
-
};
|
|
339
|
-
exports.usersCreateSHAUser = usersCreateSHAUser;
|
|
340
|
-
const usersGetUsage = async ({ range, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
341
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
342
|
-
sdk;
|
|
343
|
-
let apiPath = '/users/usage';
|
|
344
|
-
let payload = {};
|
|
345
|
-
if (typeof range !== 'undefined') {
|
|
346
|
-
payload['range'] = range;
|
|
347
|
-
}
|
|
348
|
-
let response = undefined;
|
|
349
|
-
response = await client.call('get', apiPath, {}, payload);
|
|
350
|
-
if (parseOutput) {
|
|
351
|
-
(0, parser_1.parse)(response);
|
|
352
|
-
}
|
|
353
|
-
return response;
|
|
354
|
-
};
|
|
355
|
-
exports.usersGetUsage = usersGetUsage;
|
|
356
|
-
const usersGet = async ({ userId, parseOutput = true, overrideForCli = false, sdk = undefined, console: showConsole }) => {
|
|
357
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
358
|
-
sdk;
|
|
359
|
-
let apiPath = '/users/{userId}'.replace('{userId}', userId);
|
|
360
|
-
let payload = {};
|
|
361
|
-
let response = undefined;
|
|
362
|
-
response = await client.call('get', apiPath, {}, payload);
|
|
363
|
-
if (parseOutput) {
|
|
364
|
-
if (showConsole) {
|
|
365
|
-
(0, utils_1.showConsoleLink)('users', 'get', userId);
|
|
366
|
-
}
|
|
367
|
-
else {
|
|
368
|
-
(0, parser_1.parse)(response);
|
|
369
|
-
}
|
|
370
|
-
}
|
|
371
|
-
return response;
|
|
372
|
-
};
|
|
373
|
-
exports.usersGet = usersGet;
|
|
374
|
-
const usersDelete = async ({ userId, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
375
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
376
|
-
sdk;
|
|
377
|
-
let apiPath = '/users/{userId}'.replace('{userId}', userId);
|
|
378
|
-
let payload = {};
|
|
379
|
-
let response = undefined;
|
|
380
|
-
response = await client.call('delete', apiPath, {
|
|
381
|
-
'content-type': 'application/json',
|
|
382
|
-
}, payload);
|
|
383
|
-
if (parseOutput) {
|
|
384
|
-
(0, parser_1.parse)(response);
|
|
385
|
-
}
|
|
386
|
-
return response;
|
|
387
|
-
};
|
|
388
|
-
exports.usersDelete = usersDelete;
|
|
389
|
-
const usersUpdateEmail = async ({ userId, email, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
390
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
391
|
-
sdk;
|
|
392
|
-
let apiPath = '/users/{userId}/email'.replace('{userId}', userId);
|
|
393
|
-
let payload = {};
|
|
394
|
-
if (typeof email !== 'undefined') {
|
|
395
|
-
payload['email'] = email;
|
|
396
|
-
}
|
|
397
|
-
let response = undefined;
|
|
398
|
-
response = await client.call('patch', apiPath, {
|
|
399
|
-
'content-type': 'application/json',
|
|
400
|
-
}, payload);
|
|
401
|
-
if (parseOutput) {
|
|
402
|
-
(0, parser_1.parse)(response);
|
|
403
|
-
}
|
|
404
|
-
return response;
|
|
405
|
-
};
|
|
406
|
-
exports.usersUpdateEmail = usersUpdateEmail;
|
|
407
|
-
const usersCreateJWT = async ({ userId, sessionId, duration, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
408
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
409
|
-
sdk;
|
|
410
|
-
let apiPath = '/users/{userId}/jwts'.replace('{userId}', userId);
|
|
411
|
-
let payload = {};
|
|
412
|
-
if (typeof sessionId !== 'undefined') {
|
|
413
|
-
payload['sessionId'] = sessionId;
|
|
414
|
-
}
|
|
415
|
-
if (typeof duration !== 'undefined') {
|
|
416
|
-
payload['duration'] = duration;
|
|
417
|
-
}
|
|
418
|
-
let response = undefined;
|
|
419
|
-
response = await client.call('post', apiPath, {
|
|
420
|
-
'content-type': 'application/json',
|
|
421
|
-
}, payload);
|
|
422
|
-
if (parseOutput) {
|
|
423
|
-
(0, parser_1.parse)(response);
|
|
424
|
-
}
|
|
425
|
-
return response;
|
|
426
|
-
};
|
|
427
|
-
exports.usersCreateJWT = usersCreateJWT;
|
|
428
|
-
const usersUpdateLabels = async ({ userId, labels, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
429
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
430
|
-
sdk;
|
|
431
|
-
let apiPath = '/users/{userId}/labels'.replace('{userId}', userId);
|
|
432
|
-
let payload = {};
|
|
433
|
-
labels = labels === true ? [] : labels;
|
|
434
|
-
if (typeof labels !== 'undefined') {
|
|
435
|
-
payload['labels'] = labels;
|
|
436
|
-
}
|
|
437
|
-
let response = undefined;
|
|
438
|
-
response = await client.call('put', apiPath, {
|
|
439
|
-
'content-type': 'application/json',
|
|
440
|
-
}, payload);
|
|
441
|
-
if (parseOutput) {
|
|
442
|
-
(0, parser_1.parse)(response);
|
|
443
|
-
}
|
|
444
|
-
return response;
|
|
445
|
-
};
|
|
446
|
-
exports.usersUpdateLabels = usersUpdateLabels;
|
|
447
|
-
const usersListLogs = async ({ userId, queries, total, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
448
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
449
|
-
sdk;
|
|
450
|
-
let apiPath = '/users/{userId}/logs'.replace('{userId}', userId);
|
|
451
|
-
let payload = {};
|
|
452
|
-
if (typeof queries !== 'undefined') {
|
|
453
|
-
payload['queries'] = queries;
|
|
454
|
-
}
|
|
455
|
-
if (typeof total !== 'undefined') {
|
|
456
|
-
payload['total'] = total;
|
|
457
|
-
}
|
|
458
|
-
let response = undefined;
|
|
459
|
-
response = await client.call('get', apiPath, {}, payload);
|
|
460
|
-
if (parseOutput) {
|
|
461
|
-
(0, parser_1.parse)(response);
|
|
462
|
-
}
|
|
463
|
-
return response;
|
|
464
|
-
};
|
|
465
|
-
exports.usersListLogs = usersListLogs;
|
|
466
|
-
const usersListMemberships = async ({ userId, queries, search, total, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
467
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
468
|
-
sdk;
|
|
469
|
-
let apiPath = '/users/{userId}/memberships'.replace('{userId}', userId);
|
|
470
|
-
let payload = {};
|
|
471
|
-
if (typeof queries !== 'undefined') {
|
|
472
|
-
payload['queries'] = queries;
|
|
473
|
-
}
|
|
474
|
-
if (typeof search !== 'undefined') {
|
|
475
|
-
payload['search'] = search;
|
|
476
|
-
}
|
|
477
|
-
if (typeof total !== 'undefined') {
|
|
478
|
-
payload['total'] = total;
|
|
479
|
-
}
|
|
480
|
-
let response = undefined;
|
|
481
|
-
response = await client.call('get', apiPath, {}, payload);
|
|
482
|
-
if (parseOutput) {
|
|
483
|
-
(0, parser_1.parse)(response);
|
|
484
|
-
}
|
|
485
|
-
return response;
|
|
486
|
-
};
|
|
487
|
-
exports.usersListMemberships = usersListMemberships;
|
|
488
|
-
const usersUpdateMFA = async ({ userId, mfa, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
489
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
490
|
-
sdk;
|
|
491
|
-
let apiPath = '/users/{userId}/mfa'.replace('{userId}', userId);
|
|
492
|
-
let payload = {};
|
|
493
|
-
if (typeof mfa !== 'undefined') {
|
|
494
|
-
payload['mfa'] = mfa;
|
|
495
|
-
}
|
|
496
|
-
let response = undefined;
|
|
497
|
-
response = await client.call('patch', apiPath, {
|
|
498
|
-
'content-type': 'application/json',
|
|
499
|
-
}, payload);
|
|
500
|
-
if (parseOutput) {
|
|
501
|
-
(0, parser_1.parse)(response);
|
|
502
|
-
}
|
|
503
|
-
return response;
|
|
504
|
-
};
|
|
505
|
-
exports.usersUpdateMFA = usersUpdateMFA;
|
|
506
|
-
const usersDeleteMFAAuthenticator = async ({ userId, type, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
507
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
508
|
-
sdk;
|
|
509
|
-
let apiPath = '/users/{userId}/mfa/authenticators/{type}'.replace('{userId}', userId).replace('{type}', type);
|
|
510
|
-
let payload = {};
|
|
511
|
-
let response = undefined;
|
|
512
|
-
response = await client.call('delete', apiPath, {
|
|
513
|
-
'content-type': 'application/json',
|
|
514
|
-
}, payload);
|
|
515
|
-
if (parseOutput) {
|
|
516
|
-
(0, parser_1.parse)(response);
|
|
517
|
-
}
|
|
518
|
-
return response;
|
|
519
|
-
};
|
|
520
|
-
exports.usersDeleteMFAAuthenticator = usersDeleteMFAAuthenticator;
|
|
521
|
-
const usersListMFAFactors = async ({ userId, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
522
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
523
|
-
sdk;
|
|
524
|
-
let apiPath = '/users/{userId}/mfa/factors'.replace('{userId}', userId);
|
|
525
|
-
let payload = {};
|
|
526
|
-
let response = undefined;
|
|
527
|
-
response = await client.call('get', apiPath, {}, payload);
|
|
528
|
-
if (parseOutput) {
|
|
529
|
-
(0, parser_1.parse)(response);
|
|
530
|
-
}
|
|
531
|
-
return response;
|
|
532
|
-
};
|
|
533
|
-
exports.usersListMFAFactors = usersListMFAFactors;
|
|
534
|
-
const usersGetMFARecoveryCodes = async ({ userId, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
535
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
536
|
-
sdk;
|
|
537
|
-
let apiPath = '/users/{userId}/mfa/recovery-codes'.replace('{userId}', userId);
|
|
538
|
-
let payload = {};
|
|
539
|
-
let response = undefined;
|
|
540
|
-
response = await client.call('get', apiPath, {}, payload);
|
|
541
|
-
if (parseOutput) {
|
|
542
|
-
(0, parser_1.parse)(response);
|
|
543
|
-
}
|
|
544
|
-
return response;
|
|
545
|
-
};
|
|
546
|
-
exports.usersGetMFARecoveryCodes = usersGetMFARecoveryCodes;
|
|
547
|
-
const usersUpdateMFARecoveryCodes = async ({ userId, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
548
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
549
|
-
sdk;
|
|
550
|
-
let apiPath = '/users/{userId}/mfa/recovery-codes'.replace('{userId}', userId);
|
|
551
|
-
let payload = {};
|
|
552
|
-
let response = undefined;
|
|
553
|
-
response = await client.call('put', apiPath, {
|
|
554
|
-
'content-type': 'application/json',
|
|
555
|
-
}, payload);
|
|
556
|
-
if (parseOutput) {
|
|
557
|
-
(0, parser_1.parse)(response);
|
|
558
|
-
}
|
|
559
|
-
return response;
|
|
560
|
-
};
|
|
561
|
-
exports.usersUpdateMFARecoveryCodes = usersUpdateMFARecoveryCodes;
|
|
562
|
-
const usersCreateMFARecoveryCodes = async ({ userId, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
563
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
564
|
-
sdk;
|
|
565
|
-
let apiPath = '/users/{userId}/mfa/recovery-codes'.replace('{userId}', userId);
|
|
566
|
-
let payload = {};
|
|
567
|
-
let response = undefined;
|
|
568
|
-
response = await client.call('patch', apiPath, {
|
|
569
|
-
'content-type': 'application/json',
|
|
570
|
-
}, payload);
|
|
571
|
-
if (parseOutput) {
|
|
572
|
-
(0, parser_1.parse)(response);
|
|
573
|
-
}
|
|
574
|
-
return response;
|
|
575
|
-
};
|
|
576
|
-
exports.usersCreateMFARecoveryCodes = usersCreateMFARecoveryCodes;
|
|
577
|
-
const usersUpdateName = async ({ userId, name, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
578
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
579
|
-
sdk;
|
|
580
|
-
let apiPath = '/users/{userId}/name'.replace('{userId}', userId);
|
|
581
|
-
let payload = {};
|
|
582
|
-
if (typeof name !== 'undefined') {
|
|
583
|
-
payload['name'] = name;
|
|
584
|
-
}
|
|
585
|
-
let response = undefined;
|
|
586
|
-
response = await client.call('patch', apiPath, {
|
|
587
|
-
'content-type': 'application/json',
|
|
588
|
-
}, payload);
|
|
589
|
-
if (parseOutput) {
|
|
590
|
-
(0, parser_1.parse)(response);
|
|
591
|
-
}
|
|
592
|
-
return response;
|
|
593
|
-
};
|
|
594
|
-
exports.usersUpdateName = usersUpdateName;
|
|
595
|
-
const usersUpdatePassword = async ({ userId, password, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
596
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
597
|
-
sdk;
|
|
598
|
-
let apiPath = '/users/{userId}/password'.replace('{userId}', userId);
|
|
599
|
-
let payload = {};
|
|
600
|
-
if (typeof password !== 'undefined') {
|
|
601
|
-
payload['password'] = password;
|
|
602
|
-
}
|
|
603
|
-
let response = undefined;
|
|
604
|
-
response = await client.call('patch', apiPath, {
|
|
605
|
-
'content-type': 'application/json',
|
|
606
|
-
}, payload);
|
|
607
|
-
if (parseOutput) {
|
|
608
|
-
(0, parser_1.parse)(response);
|
|
609
|
-
}
|
|
610
|
-
return response;
|
|
611
|
-
};
|
|
612
|
-
exports.usersUpdatePassword = usersUpdatePassword;
|
|
613
|
-
const usersUpdatePhone = async ({ userId, number, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
614
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
615
|
-
sdk;
|
|
616
|
-
let apiPath = '/users/{userId}/phone'.replace('{userId}', userId);
|
|
617
|
-
let payload = {};
|
|
618
|
-
if (typeof number !== 'undefined') {
|
|
619
|
-
payload['number'] = number;
|
|
620
|
-
}
|
|
621
|
-
let response = undefined;
|
|
622
|
-
response = await client.call('patch', apiPath, {
|
|
623
|
-
'content-type': 'application/json',
|
|
624
|
-
}, payload);
|
|
625
|
-
if (parseOutput) {
|
|
626
|
-
(0, parser_1.parse)(response);
|
|
627
|
-
}
|
|
628
|
-
return response;
|
|
629
|
-
};
|
|
630
|
-
exports.usersUpdatePhone = usersUpdatePhone;
|
|
631
|
-
const usersGetPrefs = async ({ userId, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
632
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
633
|
-
sdk;
|
|
634
|
-
let apiPath = '/users/{userId}/prefs'.replace('{userId}', userId);
|
|
635
|
-
let payload = {};
|
|
636
|
-
let response = undefined;
|
|
637
|
-
response = await client.call('get', apiPath, {}, payload);
|
|
638
|
-
if (parseOutput) {
|
|
639
|
-
(0, parser_1.parse)(response);
|
|
640
|
-
}
|
|
641
|
-
return response;
|
|
642
|
-
};
|
|
643
|
-
exports.usersGetPrefs = usersGetPrefs;
|
|
644
|
-
const usersUpdatePrefs = async ({ userId, prefs, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
645
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
646
|
-
sdk;
|
|
647
|
-
let apiPath = '/users/{userId}/prefs'.replace('{userId}', userId);
|
|
648
|
-
let payload = {};
|
|
649
|
-
if (typeof prefs !== 'undefined') {
|
|
650
|
-
payload['prefs'] = JSON.parse(prefs);
|
|
651
|
-
}
|
|
652
|
-
let response = undefined;
|
|
653
|
-
response = await client.call('patch', apiPath, {
|
|
654
|
-
'content-type': 'application/json',
|
|
655
|
-
}, payload);
|
|
656
|
-
if (parseOutput) {
|
|
657
|
-
(0, parser_1.parse)(response);
|
|
658
|
-
}
|
|
659
|
-
return response;
|
|
660
|
-
};
|
|
661
|
-
exports.usersUpdatePrefs = usersUpdatePrefs;
|
|
662
|
-
const usersListSessions = async ({ userId, total, parseOutput = true, overrideForCli = false, sdk = undefined, console: showConsole }) => {
|
|
663
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
664
|
-
sdk;
|
|
665
|
-
let apiPath = '/users/{userId}/sessions'.replace('{userId}', userId);
|
|
666
|
-
let payload = {};
|
|
667
|
-
if (typeof total !== 'undefined') {
|
|
668
|
-
payload['total'] = total;
|
|
669
|
-
}
|
|
670
|
-
let response = undefined;
|
|
671
|
-
response = await client.call('get', apiPath, {}, payload);
|
|
672
|
-
if (parseOutput) {
|
|
673
|
-
if (showConsole) {
|
|
674
|
-
(0, utils_1.showConsoleLink)('users', 'listSessions', userId);
|
|
675
|
-
}
|
|
676
|
-
else {
|
|
677
|
-
(0, parser_1.parse)(response);
|
|
678
|
-
}
|
|
679
|
-
}
|
|
680
|
-
return response;
|
|
681
|
-
};
|
|
682
|
-
exports.usersListSessions = usersListSessions;
|
|
683
|
-
const usersCreateSession = async ({ userId, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
684
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
685
|
-
sdk;
|
|
686
|
-
let apiPath = '/users/{userId}/sessions'.replace('{userId}', userId);
|
|
687
|
-
let payload = {};
|
|
688
|
-
let response = undefined;
|
|
689
|
-
response = await client.call('post', apiPath, {
|
|
690
|
-
'content-type': 'application/json',
|
|
691
|
-
}, payload);
|
|
692
|
-
if (parseOutput) {
|
|
693
|
-
(0, parser_1.parse)(response);
|
|
694
|
-
}
|
|
695
|
-
return response;
|
|
696
|
-
};
|
|
697
|
-
exports.usersCreateSession = usersCreateSession;
|
|
698
|
-
const usersDeleteSessions = async ({ userId, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
699
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
700
|
-
sdk;
|
|
701
|
-
let apiPath = '/users/{userId}/sessions'.replace('{userId}', userId);
|
|
702
|
-
let payload = {};
|
|
703
|
-
let response = undefined;
|
|
704
|
-
response = await client.call('delete', apiPath, {
|
|
705
|
-
'content-type': 'application/json',
|
|
706
|
-
}, payload);
|
|
707
|
-
if (parseOutput) {
|
|
708
|
-
(0, parser_1.parse)(response);
|
|
709
|
-
}
|
|
710
|
-
return response;
|
|
711
|
-
};
|
|
712
|
-
exports.usersDeleteSessions = usersDeleteSessions;
|
|
713
|
-
const usersDeleteSession = async ({ userId, sessionId, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
714
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
715
|
-
sdk;
|
|
716
|
-
let apiPath = '/users/{userId}/sessions/{sessionId}'.replace('{userId}', userId).replace('{sessionId}', sessionId);
|
|
717
|
-
let payload = {};
|
|
718
|
-
let response = undefined;
|
|
719
|
-
response = await client.call('delete', apiPath, {
|
|
720
|
-
'content-type': 'application/json',
|
|
721
|
-
}, payload);
|
|
722
|
-
if (parseOutput) {
|
|
723
|
-
(0, parser_1.parse)(response);
|
|
724
|
-
}
|
|
725
|
-
return response;
|
|
726
|
-
};
|
|
727
|
-
exports.usersDeleteSession = usersDeleteSession;
|
|
728
|
-
const usersUpdateStatus = async ({ userId, status, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
729
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
730
|
-
sdk;
|
|
731
|
-
let apiPath = '/users/{userId}/status'.replace('{userId}', userId);
|
|
732
|
-
let payload = {};
|
|
733
|
-
if (typeof status !== 'undefined') {
|
|
734
|
-
payload['status'] = status;
|
|
735
|
-
}
|
|
736
|
-
let response = undefined;
|
|
737
|
-
response = await client.call('patch', apiPath, {
|
|
738
|
-
'content-type': 'application/json',
|
|
739
|
-
}, payload);
|
|
740
|
-
if (parseOutput) {
|
|
741
|
-
(0, parser_1.parse)(response);
|
|
742
|
-
}
|
|
743
|
-
return response;
|
|
744
|
-
};
|
|
745
|
-
exports.usersUpdateStatus = usersUpdateStatus;
|
|
746
|
-
const usersListTargets = async ({ userId, queries, total, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
747
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
748
|
-
sdk;
|
|
749
|
-
let apiPath = '/users/{userId}/targets'.replace('{userId}', userId);
|
|
750
|
-
let payload = {};
|
|
751
|
-
if (typeof queries !== 'undefined') {
|
|
752
|
-
payload['queries'] = queries;
|
|
753
|
-
}
|
|
754
|
-
if (typeof total !== 'undefined') {
|
|
755
|
-
payload['total'] = total;
|
|
756
|
-
}
|
|
757
|
-
let response = undefined;
|
|
758
|
-
response = await client.call('get', apiPath, {}, payload);
|
|
759
|
-
if (parseOutput) {
|
|
760
|
-
(0, parser_1.parse)(response);
|
|
761
|
-
}
|
|
762
|
-
return response;
|
|
763
|
-
};
|
|
764
|
-
exports.usersListTargets = usersListTargets;
|
|
765
|
-
const usersCreateTarget = async ({ userId, targetId, providerType, identifier, providerId, name, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
766
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
767
|
-
sdk;
|
|
768
|
-
let apiPath = '/users/{userId}/targets'.replace('{userId}', userId);
|
|
769
|
-
let payload = {};
|
|
770
|
-
if (typeof targetId !== 'undefined') {
|
|
771
|
-
payload['targetId'] = targetId;
|
|
772
|
-
}
|
|
773
|
-
if (typeof providerType !== 'undefined') {
|
|
774
|
-
payload['providerType'] = providerType;
|
|
775
|
-
}
|
|
776
|
-
if (typeof identifier !== 'undefined') {
|
|
777
|
-
payload['identifier'] = identifier;
|
|
778
|
-
}
|
|
779
|
-
if (typeof providerId !== 'undefined') {
|
|
780
|
-
payload['providerId'] = providerId;
|
|
781
|
-
}
|
|
782
|
-
if (typeof name !== 'undefined') {
|
|
783
|
-
payload['name'] = name;
|
|
784
|
-
}
|
|
785
|
-
let response = undefined;
|
|
786
|
-
response = await client.call('post', apiPath, {
|
|
787
|
-
'content-type': 'application/json',
|
|
788
|
-
}, payload);
|
|
789
|
-
if (parseOutput) {
|
|
790
|
-
(0, parser_1.parse)(response);
|
|
791
|
-
}
|
|
792
|
-
return response;
|
|
793
|
-
};
|
|
794
|
-
exports.usersCreateTarget = usersCreateTarget;
|
|
795
|
-
const usersGetTarget = async ({ userId, targetId, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
796
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
797
|
-
sdk;
|
|
798
|
-
let apiPath = '/users/{userId}/targets/{targetId}'.replace('{userId}', userId).replace('{targetId}', targetId);
|
|
799
|
-
let payload = {};
|
|
800
|
-
let response = undefined;
|
|
801
|
-
response = await client.call('get', apiPath, {}, payload);
|
|
802
|
-
if (parseOutput) {
|
|
803
|
-
(0, parser_1.parse)(response);
|
|
804
|
-
}
|
|
805
|
-
return response;
|
|
806
|
-
};
|
|
807
|
-
exports.usersGetTarget = usersGetTarget;
|
|
808
|
-
const usersUpdateTarget = async ({ userId, targetId, identifier, providerId, name, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
809
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
810
|
-
sdk;
|
|
811
|
-
let apiPath = '/users/{userId}/targets/{targetId}'.replace('{userId}', userId).replace('{targetId}', targetId);
|
|
812
|
-
let payload = {};
|
|
813
|
-
if (typeof identifier !== 'undefined') {
|
|
814
|
-
payload['identifier'] = identifier;
|
|
815
|
-
}
|
|
816
|
-
if (typeof providerId !== 'undefined') {
|
|
817
|
-
payload['providerId'] = providerId;
|
|
818
|
-
}
|
|
819
|
-
if (typeof name !== 'undefined') {
|
|
820
|
-
payload['name'] = name;
|
|
821
|
-
}
|
|
822
|
-
let response = undefined;
|
|
823
|
-
response = await client.call('patch', apiPath, {
|
|
824
|
-
'content-type': 'application/json',
|
|
825
|
-
}, payload);
|
|
826
|
-
if (parseOutput) {
|
|
827
|
-
(0, parser_1.parse)(response);
|
|
828
|
-
}
|
|
829
|
-
return response;
|
|
830
|
-
};
|
|
831
|
-
exports.usersUpdateTarget = usersUpdateTarget;
|
|
832
|
-
const usersDeleteTarget = async ({ userId, targetId, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
833
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
834
|
-
sdk;
|
|
835
|
-
let apiPath = '/users/{userId}/targets/{targetId}'.replace('{userId}', userId).replace('{targetId}', targetId);
|
|
836
|
-
let payload = {};
|
|
837
|
-
let response = undefined;
|
|
838
|
-
response = await client.call('delete', apiPath, {
|
|
839
|
-
'content-type': 'application/json',
|
|
840
|
-
}, payload);
|
|
841
|
-
if (parseOutput) {
|
|
842
|
-
(0, parser_1.parse)(response);
|
|
843
|
-
}
|
|
844
|
-
return response;
|
|
845
|
-
};
|
|
846
|
-
exports.usersDeleteTarget = usersDeleteTarget;
|
|
847
|
-
const usersCreateToken = async ({ userId, length, expire, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
848
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
849
|
-
sdk;
|
|
850
|
-
let apiPath = '/users/{userId}/tokens'.replace('{userId}', userId);
|
|
851
|
-
let payload = {};
|
|
852
|
-
if (typeof length !== 'undefined') {
|
|
853
|
-
payload['length'] = length;
|
|
854
|
-
}
|
|
855
|
-
if (typeof expire !== 'undefined') {
|
|
856
|
-
payload['expire'] = expire;
|
|
857
|
-
}
|
|
858
|
-
let response = undefined;
|
|
859
|
-
response = await client.call('post', apiPath, {
|
|
860
|
-
'content-type': 'application/json',
|
|
861
|
-
}, payload);
|
|
862
|
-
if (parseOutput) {
|
|
863
|
-
(0, parser_1.parse)(response);
|
|
864
|
-
}
|
|
865
|
-
return response;
|
|
866
|
-
};
|
|
867
|
-
exports.usersCreateToken = usersCreateToken;
|
|
868
|
-
const usersUpdateEmailVerification = async ({ userId, emailVerification, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
869
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
870
|
-
sdk;
|
|
871
|
-
let apiPath = '/users/{userId}/verification'.replace('{userId}', userId);
|
|
872
|
-
let payload = {};
|
|
873
|
-
if (typeof emailVerification !== 'undefined') {
|
|
874
|
-
payload['emailVerification'] = emailVerification;
|
|
875
|
-
}
|
|
876
|
-
let response = undefined;
|
|
877
|
-
response = await client.call('patch', apiPath, {
|
|
878
|
-
'content-type': 'application/json',
|
|
879
|
-
}, payload);
|
|
880
|
-
if (parseOutput) {
|
|
881
|
-
(0, parser_1.parse)(response);
|
|
882
|
-
}
|
|
883
|
-
return response;
|
|
884
|
-
};
|
|
885
|
-
exports.usersUpdateEmailVerification = usersUpdateEmailVerification;
|
|
886
|
-
const usersUpdatePhoneVerification = async ({ userId, phoneVerification, parseOutput = true, overrideForCli = false, sdk = undefined }) => {
|
|
887
|
-
let client = !sdk ? await (0, sdks_1.sdkForProject)() :
|
|
888
|
-
sdk;
|
|
889
|
-
let apiPath = '/users/{userId}/verification/phone'.replace('{userId}', userId);
|
|
890
|
-
let payload = {};
|
|
891
|
-
if (typeof phoneVerification !== 'undefined') {
|
|
892
|
-
payload['phoneVerification'] = phoneVerification;
|
|
893
|
-
}
|
|
894
|
-
let response = undefined;
|
|
895
|
-
response = await client.call('patch', apiPath, {
|
|
896
|
-
'content-type': 'application/json',
|
|
897
|
-
}, payload);
|
|
898
|
-
if (parseOutput) {
|
|
899
|
-
(0, parser_1.parse)(response);
|
|
900
|
-
}
|
|
901
|
-
return response;
|
|
902
|
-
};
|
|
903
|
-
exports.usersUpdatePhoneVerification = usersUpdatePhoneVerification;
|
|
904
|
-
exports.users
|
|
905
|
-
.command(`list`)
|
|
906
|
-
.description(`Get a list of all the project's users. You can use the query params to filter your results.`)
|
|
907
|
-
.option(`--queries [queries...]`, `Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, email, phone, status, passwordUpdate, registration, emailVerification, phoneVerification, labels`)
|
|
908
|
-
.option(`--search <search>`, `Search term to filter your list results. Max length: 256 chars.`)
|
|
909
|
-
.option(`--total [value]`, `When set to false, the total count returned will be 0 and will not be calculated.`, (value) => value === undefined ? true : (0, parser_1.parseBool)(value))
|
|
910
|
-
.option(`--console`, `Get the resource console url`)
|
|
911
|
-
.action((0, parser_1.actionRunner)(exports.usersList));
|
|
912
|
-
exports.users
|
|
913
|
-
.command(`create`)
|
|
914
|
-
.description(`Create a new user.`)
|
|
915
|
-
.requiredOption(`--user-id <user-id>`, `User ID. Choose a custom ID or generate a random ID with 'ID.unique()'. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.`)
|
|
916
|
-
.option(`--email <email>`, `User email.`)
|
|
917
|
-
.option(`--phone <phone>`, `Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.`)
|
|
918
|
-
.option(`--password <password>`, `Plain text user password. Must be at least 8 chars.`)
|
|
919
|
-
.option(`--name <name>`, `User name. Max length: 128 chars.`)
|
|
920
|
-
.action((0, parser_1.actionRunner)(exports.usersCreate));
|
|
921
|
-
exports.users
|
|
922
|
-
.command(`create-argon-2-user`)
|
|
923
|
-
.description(`Create a new user. Password provided must be hashed with the [Argon2](https://en.wikipedia.org/wiki/Argon2) algorithm. Use the [POST /users](https://appwrite.io/docs/server/users#usersCreate) endpoint to create users with a plain text password.`)
|
|
924
|
-
.requiredOption(`--user-id <user-id>`, `User ID. Choose a custom ID or generate a random ID with 'ID.unique()'. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.`)
|
|
925
|
-
.requiredOption(`--email <email>`, `User email.`)
|
|
926
|
-
.requiredOption(`--password <password>`, `User password hashed using Argon2.`)
|
|
927
|
-
.option(`--name <name>`, `User name. Max length: 128 chars.`)
|
|
928
|
-
.action((0, parser_1.actionRunner)(exports.usersCreateArgon2User));
|
|
929
|
-
exports.users
|
|
930
|
-
.command(`create-bcrypt-user`)
|
|
931
|
-
.description(`Create a new user. Password provided must be hashed with the [Bcrypt](https://en.wikipedia.org/wiki/Bcrypt) algorithm. Use the [POST /users](https://appwrite.io/docs/server/users#usersCreate) endpoint to create users with a plain text password.`)
|
|
932
|
-
.requiredOption(`--user-id <user-id>`, `User ID. Choose a custom ID or generate a random ID with 'ID.unique()'. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.`)
|
|
933
|
-
.requiredOption(`--email <email>`, `User email.`)
|
|
934
|
-
.requiredOption(`--password <password>`, `User password hashed using Bcrypt.`)
|
|
935
|
-
.option(`--name <name>`, `User name. Max length: 128 chars.`)
|
|
936
|
-
.action((0, parser_1.actionRunner)(exports.usersCreateBcryptUser));
|
|
937
|
-
exports.users
|
|
938
|
-
.command(`list-identities`)
|
|
939
|
-
.description(`Get identities for all users.`)
|
|
940
|
-
.option(`--queries [queries...]`, `Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: userId, provider, providerUid, providerEmail, providerAccessTokenExpiry`)
|
|
941
|
-
.option(`--search <search>`, `Search term to filter your list results. Max length: 256 chars.`)
|
|
942
|
-
.option(`--total [value]`, `When set to false, the total count returned will be 0 and will not be calculated.`, (value) => value === undefined ? true : (0, parser_1.parseBool)(value))
|
|
943
|
-
.action((0, parser_1.actionRunner)(exports.usersListIdentities));
|
|
944
|
-
exports.users
|
|
945
|
-
.command(`delete-identity`)
|
|
946
|
-
.description(`Delete an identity by its unique ID.`)
|
|
947
|
-
.requiredOption(`--identity-id <identity-id>`, `Identity ID.`)
|
|
948
|
-
.action((0, parser_1.actionRunner)(exports.usersDeleteIdentity));
|
|
949
|
-
exports.users
|
|
950
|
-
.command(`create-md-5-user`)
|
|
951
|
-
.description(`Create a new user. Password provided must be hashed with the [MD5](https://en.wikipedia.org/wiki/MD5) algorithm. Use the [POST /users](https://appwrite.io/docs/server/users#usersCreate) endpoint to create users with a plain text password.`)
|
|
952
|
-
.requiredOption(`--user-id <user-id>`, `User ID. Choose a custom ID or generate a random ID with 'ID.unique()'. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.`)
|
|
953
|
-
.requiredOption(`--email <email>`, `User email.`)
|
|
954
|
-
.requiredOption(`--password <password>`, `User password hashed using MD5.`)
|
|
955
|
-
.option(`--name <name>`, `User name. Max length: 128 chars.`)
|
|
956
|
-
.action((0, parser_1.actionRunner)(exports.usersCreateMD5User));
|
|
957
|
-
exports.users
|
|
958
|
-
.command(`create-ph-pass-user`)
|
|
959
|
-
.description(`Create a new user. Password provided must be hashed with the [PHPass](https://www.openwall.com/phpass/) algorithm. Use the [POST /users](https://appwrite.io/docs/server/users#usersCreate) endpoint to create users with a plain text password.`)
|
|
960
|
-
.requiredOption(`--user-id <user-id>`, `User ID. Choose a custom ID or pass the string 'ID.unique()'to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.`)
|
|
961
|
-
.requiredOption(`--email <email>`, `User email.`)
|
|
962
|
-
.requiredOption(`--password <password>`, `User password hashed using PHPass.`)
|
|
963
|
-
.option(`--name <name>`, `User name. Max length: 128 chars.`)
|
|
964
|
-
.action((0, parser_1.actionRunner)(exports.usersCreatePHPassUser));
|
|
965
|
-
exports.users
|
|
966
|
-
.command(`create-scrypt-user`)
|
|
967
|
-
.description(`Create a new user. Password provided must be hashed with the [Scrypt](https://github.com/Tarsnap/scrypt) algorithm. Use the [POST /users](https://appwrite.io/docs/server/users#usersCreate) endpoint to create users with a plain text password.`)
|
|
968
|
-
.requiredOption(`--user-id <user-id>`, `User ID. Choose a custom ID or generate a random ID with 'ID.unique()'. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.`)
|
|
969
|
-
.requiredOption(`--email <email>`, `User email.`)
|
|
970
|
-
.requiredOption(`--password <password>`, `User password hashed using Scrypt.`)
|
|
971
|
-
.requiredOption(`--password-salt <password-salt>`, `Optional salt used to hash password.`)
|
|
972
|
-
.requiredOption(`--password-cpu <password-cpu>`, `Optional CPU cost used to hash password.`, parser_1.parseInteger)
|
|
973
|
-
.requiredOption(`--password-memory <password-memory>`, `Optional memory cost used to hash password.`, parser_1.parseInteger)
|
|
974
|
-
.requiredOption(`--password-parallel <password-parallel>`, `Optional parallelization cost used to hash password.`, parser_1.parseInteger)
|
|
975
|
-
.requiredOption(`--password-length <password-length>`, `Optional hash length used to hash password.`, parser_1.parseInteger)
|
|
976
|
-
.option(`--name <name>`, `User name. Max length: 128 chars.`)
|
|
977
|
-
.action((0, parser_1.actionRunner)(exports.usersCreateScryptUser));
|
|
978
|
-
exports.users
|
|
979
|
-
.command(`create-scrypt-modified-user`)
|
|
980
|
-
.description(`Create a new user. Password provided must be hashed with the [Scrypt Modified](https://gist.github.com/Meldiron/eecf84a0225eccb5a378d45bb27462cc) algorithm. Use the [POST /users](https://appwrite.io/docs/server/users#usersCreate) endpoint to create users with a plain text password.`)
|
|
981
|
-
.requiredOption(`--user-id <user-id>`, `User ID. Choose a custom ID or generate a random ID with 'ID.unique()'. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.`)
|
|
982
|
-
.requiredOption(`--email <email>`, `User email.`)
|
|
983
|
-
.requiredOption(`--password <password>`, `User password hashed using Scrypt Modified.`)
|
|
984
|
-
.requiredOption(`--password-salt <password-salt>`, `Salt used to hash password.`)
|
|
985
|
-
.requiredOption(`--password-salt-separator <password-salt-separator>`, `Salt separator used to hash password.`)
|
|
986
|
-
.requiredOption(`--password-signer-key <password-signer-key>`, `Signer key used to hash password.`)
|
|
987
|
-
.option(`--name <name>`, `User name. Max length: 128 chars.`)
|
|
988
|
-
.action((0, parser_1.actionRunner)(exports.usersCreateScryptModifiedUser));
|
|
989
|
-
exports.users
|
|
990
|
-
.command(`create-sha-user`)
|
|
991
|
-
.description(`Create a new user. Password provided must be hashed with the [SHA](https://en.wikipedia.org/wiki/Secure_Hash_Algorithm) algorithm. Use the [POST /users](https://appwrite.io/docs/server/users#usersCreate) endpoint to create users with a plain text password.`)
|
|
992
|
-
.requiredOption(`--user-id <user-id>`, `User ID. Choose a custom ID or generate a random ID with 'ID.unique()'. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.`)
|
|
993
|
-
.requiredOption(`--email <email>`, `User email.`)
|
|
994
|
-
.requiredOption(`--password <password>`, `User password hashed using SHA.`)
|
|
995
|
-
.option(`--password-version <password-version>`, `Optional SHA version used to hash password. Allowed values are: 'sha1', 'sha224', 'sha256', 'sha384', 'sha512/224', 'sha512/256', 'sha512', 'sha3-224', 'sha3-256', 'sha3-384', 'sha3-512'`)
|
|
996
|
-
.option(`--name <name>`, `User name. Max length: 128 chars.`)
|
|
997
|
-
.action((0, parser_1.actionRunner)(exports.usersCreateSHAUser));
|
|
998
|
-
exports.users
|
|
999
|
-
.command(`get-usage`)
|
|
1000
|
-
.description(`Get usage metrics and statistics for all users in the project. You can view the total number of users and sessions. The response includes both current totals and historical data over time. Use the optional range parameter to specify the time window for historical data: 24h (last 24 hours), 30d (last 30 days), or 90d (last 90 days). If not specified, range defaults to 30 days. `)
|
|
1001
|
-
.option(`--range <range>`, `Date range.`)
|
|
1002
|
-
.action((0, parser_1.actionRunner)(exports.usersGetUsage));
|
|
1003
|
-
exports.users
|
|
1004
|
-
.command(`get`)
|
|
1005
|
-
.description(`Get a user by its unique ID.`)
|
|
1006
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1007
|
-
.option(`--console`, `Get the resource console url`)
|
|
1008
|
-
.action((0, parser_1.actionRunner)(exports.usersGet));
|
|
1009
|
-
exports.users
|
|
1010
|
-
.command(`delete`)
|
|
1011
|
-
.description(`Delete a user by its unique ID, thereby releasing it's ID. Since ID is released and can be reused, all user-related resources like documents or storage files should be deleted before user deletion. If you want to keep ID reserved, use the [updateStatus](https://appwrite.io/docs/server/users#usersUpdateStatus) endpoint instead.`)
|
|
1012
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1013
|
-
.action((0, parser_1.actionRunner)(exports.usersDelete));
|
|
1014
|
-
exports.users
|
|
1015
|
-
.command(`update-email`)
|
|
1016
|
-
.description(`Update the user email by its unique ID.`)
|
|
1017
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1018
|
-
.requiredOption(`--email <email>`, `User email.`)
|
|
1019
|
-
.action((0, parser_1.actionRunner)(exports.usersUpdateEmail));
|
|
1020
|
-
exports.users
|
|
1021
|
-
.command(`create-jwt`)
|
|
1022
|
-
.description(`Use this endpoint to create a JSON Web Token for user by its unique ID. You can use the resulting JWT to authenticate on behalf of the user. The JWT secret will become invalid if the session it uses gets deleted.`)
|
|
1023
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1024
|
-
.option(`--session-id <session-id>`, `Session ID. Use the string 'recent' to use the most recent session. Defaults to the most recent session.`)
|
|
1025
|
-
.option(`--duration <duration>`, `Time in seconds before JWT expires. Default duration is 900 seconds, and maximum is 3600 seconds.`, parser_1.parseInteger)
|
|
1026
|
-
.action((0, parser_1.actionRunner)(exports.usersCreateJWT));
|
|
1027
|
-
exports.users
|
|
1028
|
-
.command(`update-labels`)
|
|
1029
|
-
.description(`Update the user labels by its unique ID. Labels can be used to grant access to resources. While teams are a way for user's to share access to a resource, labels can be defined by the developer to grant access without an invitation. See the [Permissions docs](https://appwrite.io/docs/permissions) for more info.`)
|
|
1030
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1031
|
-
.requiredOption(`--labels [labels...]`, `Array of user labels. Replaces the previous labels. Maximum of 1000 labels are allowed, each up to 36 alphanumeric characters long.`)
|
|
1032
|
-
.action((0, parser_1.actionRunner)(exports.usersUpdateLabels));
|
|
1033
|
-
exports.users
|
|
1034
|
-
.command(`list-logs`)
|
|
1035
|
-
.description(`Get the user activity logs list by its unique ID.`)
|
|
1036
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1037
|
-
.option(`--queries [queries...]`, `Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Only supported methods are limit and offset`)
|
|
1038
|
-
.option(`--total [value]`, `When set to false, the total count returned will be 0 and will not be calculated.`, (value) => value === undefined ? true : (0, parser_1.parseBool)(value))
|
|
1039
|
-
.action((0, parser_1.actionRunner)(exports.usersListLogs));
|
|
1040
|
-
exports.users
|
|
1041
|
-
.command(`list-memberships`)
|
|
1042
|
-
.description(`Get the user membership list by its unique ID.`)
|
|
1043
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1044
|
-
.option(`--queries [queries...]`, `Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: userId, teamId, invited, joined, confirm, roles`)
|
|
1045
|
-
.option(`--search <search>`, `Search term to filter your list results. Max length: 256 chars.`)
|
|
1046
|
-
.option(`--total [value]`, `When set to false, the total count returned will be 0 and will not be calculated.`, (value) => value === undefined ? true : (0, parser_1.parseBool)(value))
|
|
1047
|
-
.action((0, parser_1.actionRunner)(exports.usersListMemberships));
|
|
1048
|
-
exports.users
|
|
1049
|
-
.command(`update-mfa`)
|
|
1050
|
-
.description(`Enable or disable MFA on a user account.`)
|
|
1051
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1052
|
-
.requiredOption(`--mfa [value]`, `Enable or disable MFA.`, (value) => value === undefined ? true : (0, parser_1.parseBool)(value))
|
|
1053
|
-
.action((0, parser_1.actionRunner)(exports.usersUpdateMFA));
|
|
1054
|
-
exports.users
|
|
1055
|
-
.command(`delete-mfa-authenticator`)
|
|
1056
|
-
.description(`Delete an authenticator app.`)
|
|
1057
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1058
|
-
.requiredOption(`--type <type>`, `Type of authenticator.`)
|
|
1059
|
-
.action((0, parser_1.actionRunner)(exports.usersDeleteMFAAuthenticator));
|
|
1060
|
-
exports.users
|
|
1061
|
-
.command(`list-mfa-factors`)
|
|
1062
|
-
.description(`List the factors available on the account to be used as a MFA challange.`)
|
|
1063
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1064
|
-
.action((0, parser_1.actionRunner)(exports.usersListMFAFactors));
|
|
1065
|
-
exports.users
|
|
1066
|
-
.command(`get-mfa-recovery-codes`)
|
|
1067
|
-
.description(`Get recovery codes that can be used as backup for MFA flow by User ID. Before getting codes, they must be generated using [createMfaRecoveryCodes](/docs/references/cloud/client-web/account#createMfaRecoveryCodes) method.`)
|
|
1068
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1069
|
-
.action((0, parser_1.actionRunner)(exports.usersGetMFARecoveryCodes));
|
|
1070
|
-
exports.users
|
|
1071
|
-
.command(`update-mfa-recovery-codes`)
|
|
1072
|
-
.description(`Regenerate recovery codes that can be used as backup for MFA flow by User ID. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](/docs/references/cloud/client-web/account#createMfaRecoveryCodes) method.`)
|
|
1073
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1074
|
-
.action((0, parser_1.actionRunner)(exports.usersUpdateMFARecoveryCodes));
|
|
1075
|
-
exports.users
|
|
1076
|
-
.command(`create-mfa-recovery-codes`)
|
|
1077
|
-
.description(`Generate recovery codes used as backup for MFA flow for User ID. Recovery codes can be used as a MFA verification type in [createMfaChallenge](/docs/references/cloud/client-web/account#createMfaChallenge) method by client SDK.`)
|
|
1078
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1079
|
-
.action((0, parser_1.actionRunner)(exports.usersCreateMFARecoveryCodes));
|
|
1080
|
-
exports.users
|
|
1081
|
-
.command(`update-name`)
|
|
1082
|
-
.description(`Update the user name by its unique ID.`)
|
|
1083
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1084
|
-
.requiredOption(`--name <name>`, `User name. Max length: 128 chars.`)
|
|
1085
|
-
.action((0, parser_1.actionRunner)(exports.usersUpdateName));
|
|
1086
|
-
exports.users
|
|
1087
|
-
.command(`update-password`)
|
|
1088
|
-
.description(`Update the user password by its unique ID.`)
|
|
1089
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1090
|
-
.requiredOption(`--password <password>`, `New user password. Must be at least 8 chars.`)
|
|
1091
|
-
.action((0, parser_1.actionRunner)(exports.usersUpdatePassword));
|
|
1092
|
-
exports.users
|
|
1093
|
-
.command(`update-phone`)
|
|
1094
|
-
.description(`Update the user phone by its unique ID.`)
|
|
1095
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1096
|
-
.requiredOption(`--number <number>`, `User phone number.`)
|
|
1097
|
-
.action((0, parser_1.actionRunner)(exports.usersUpdatePhone));
|
|
1098
|
-
exports.users
|
|
1099
|
-
.command(`get-prefs`)
|
|
1100
|
-
.description(`Get the user preferences by its unique ID.`)
|
|
1101
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1102
|
-
.action((0, parser_1.actionRunner)(exports.usersGetPrefs));
|
|
1103
|
-
exports.users
|
|
1104
|
-
.command(`update-prefs`)
|
|
1105
|
-
.description(`Update the user preferences by its unique ID. The object you pass is stored as is, and replaces any previous value. The maximum allowed prefs size is 64kB and throws error if exceeded.`)
|
|
1106
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1107
|
-
.requiredOption(`--prefs <prefs>`, `Prefs key-value JSON object.`)
|
|
1108
|
-
.action((0, parser_1.actionRunner)(exports.usersUpdatePrefs));
|
|
1109
|
-
exports.users
|
|
1110
|
-
.command(`list-sessions`)
|
|
1111
|
-
.description(`Get the user sessions list by its unique ID.`)
|
|
1112
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1113
|
-
.option(`--total [value]`, `When set to false, the total count returned will be 0 and will not be calculated.`, (value) => value === undefined ? true : (0, parser_1.parseBool)(value))
|
|
1114
|
-
.option(`--console`, `Get the resource console url`)
|
|
1115
|
-
.action((0, parser_1.actionRunner)(exports.usersListSessions));
|
|
1116
|
-
exports.users
|
|
1117
|
-
.command(`create-session`)
|
|
1118
|
-
.description(`Creates a session for a user. Returns an immediately usable session object. If you want to generate a token for a custom authentication flow, use the [POST /users/{userId}/tokens](https://appwrite.io/docs/server/users#createToken) endpoint.`)
|
|
1119
|
-
.requiredOption(`--user-id <user-id>`, `User ID. Choose a custom ID or generate a random ID with 'ID.unique()'. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.`)
|
|
1120
|
-
.action((0, parser_1.actionRunner)(exports.usersCreateSession));
|
|
1121
|
-
exports.users
|
|
1122
|
-
.command(`delete-sessions`)
|
|
1123
|
-
.description(`Delete all user's sessions by using the user's unique ID.`)
|
|
1124
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1125
|
-
.action((0, parser_1.actionRunner)(exports.usersDeleteSessions));
|
|
1126
|
-
exports.users
|
|
1127
|
-
.command(`delete-session`)
|
|
1128
|
-
.description(`Delete a user sessions by its unique ID.`)
|
|
1129
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1130
|
-
.requiredOption(`--session-id <session-id>`, `Session ID.`)
|
|
1131
|
-
.action((0, parser_1.actionRunner)(exports.usersDeleteSession));
|
|
1132
|
-
exports.users
|
|
1133
|
-
.command(`update-status`)
|
|
1134
|
-
.description(`Update the user status by its unique ID. Use this endpoint as an alternative to deleting a user if you want to keep user's ID reserved.`)
|
|
1135
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1136
|
-
.requiredOption(`--status [value]`, `User Status. To activate the user pass 'true' and to block the user pass 'false'.`, (value) => value === undefined ? true : (0, parser_1.parseBool)(value))
|
|
1137
|
-
.action((0, parser_1.actionRunner)(exports.usersUpdateStatus));
|
|
1138
|
-
exports.users
|
|
1139
|
-
.command(`list-targets`)
|
|
1140
|
-
.description(`List the messaging targets that are associated with a user.`)
|
|
1141
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1142
|
-
.option(`--queries [queries...]`, `Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: userId, providerId, identifier, providerType`)
|
|
1143
|
-
.option(`--total [value]`, `When set to false, the total count returned will be 0 and will not be calculated.`, (value) => value === undefined ? true : (0, parser_1.parseBool)(value))
|
|
1144
|
-
.action((0, parser_1.actionRunner)(exports.usersListTargets));
|
|
1145
|
-
exports.users
|
|
1146
|
-
.command(`create-target`)
|
|
1147
|
-
.description(`Create a messaging target.`)
|
|
1148
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1149
|
-
.requiredOption(`--target-id <target-id>`, `Target ID. Choose a custom ID or generate a random ID with 'ID.unique()'. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.`)
|
|
1150
|
-
.requiredOption(`--provider-type <provider-type>`, `The target provider type. Can be one of the following: 'email', 'sms' or 'push'.`)
|
|
1151
|
-
.requiredOption(`--identifier <identifier>`, `The target identifier (token, email, phone etc.)`)
|
|
1152
|
-
.option(`--provider-id <provider-id>`, `Provider ID. Message will be sent to this target from the specified provider ID. If no provider ID is set the first setup provider will be used.`)
|
|
1153
|
-
.option(`--name <name>`, `Target name. Max length: 128 chars. For example: My Awesome App Galaxy S23.`)
|
|
1154
|
-
.action((0, parser_1.actionRunner)(exports.usersCreateTarget));
|
|
1155
|
-
exports.users
|
|
1156
|
-
.command(`get-target`)
|
|
1157
|
-
.description(`Get a user's push notification target by ID.`)
|
|
1158
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1159
|
-
.requiredOption(`--target-id <target-id>`, `Target ID.`)
|
|
1160
|
-
.action((0, parser_1.actionRunner)(exports.usersGetTarget));
|
|
1161
|
-
exports.users
|
|
1162
|
-
.command(`update-target`)
|
|
1163
|
-
.description(`Update a messaging target.`)
|
|
1164
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1165
|
-
.requiredOption(`--target-id <target-id>`, `Target ID.`)
|
|
1166
|
-
.option(`--identifier <identifier>`, `The target identifier (token, email, phone etc.)`)
|
|
1167
|
-
.option(`--provider-id <provider-id>`, `Provider ID. Message will be sent to this target from the specified provider ID. If no provider ID is set the first setup provider will be used.`)
|
|
1168
|
-
.option(`--name <name>`, `Target name. Max length: 128 chars. For example: My Awesome App Galaxy S23.`)
|
|
1169
|
-
.action((0, parser_1.actionRunner)(exports.usersUpdateTarget));
|
|
1170
|
-
exports.users
|
|
1171
|
-
.command(`delete-target`)
|
|
1172
|
-
.description(`Delete a messaging target.`)
|
|
1173
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1174
|
-
.requiredOption(`--target-id <target-id>`, `Target ID.`)
|
|
1175
|
-
.action((0, parser_1.actionRunner)(exports.usersDeleteTarget));
|
|
1176
|
-
exports.users
|
|
1177
|
-
.command(`create-token`)
|
|
1178
|
-
.description(`Returns a token with a secret key for creating a session. Use the user ID and secret and submit a request to the [PUT /account/sessions/token](https://appwrite.io/docs/references/cloud/client-web/account#createSession) endpoint to complete the login process. `)
|
|
1179
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1180
|
-
.option(`--length <length>`, `Token length in characters. The default length is 6 characters`, parser_1.parseInteger)
|
|
1181
|
-
.option(`--expire <expire>`, `Token expiration period in seconds. The default expiration is 15 minutes.`, parser_1.parseInteger)
|
|
1182
|
-
.action((0, parser_1.actionRunner)(exports.usersCreateToken));
|
|
1183
|
-
exports.users
|
|
1184
|
-
.command(`update-email-verification`)
|
|
1185
|
-
.description(`Update the user email verification status by its unique ID.`)
|
|
1186
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1187
|
-
.requiredOption(`--email-verification [value]`, `User email verification status.`, (value) => value === undefined ? true : (0, parser_1.parseBool)(value))
|
|
1188
|
-
.action((0, parser_1.actionRunner)(exports.usersUpdateEmailVerification));
|
|
1189
|
-
exports.users
|
|
1190
|
-
.command(`update-phone-verification`)
|
|
1191
|
-
.description(`Update the user phone verification status by its unique ID.`)
|
|
1192
|
-
.requiredOption(`--user-id <user-id>`, `User ID.`)
|
|
1193
|
-
.requiredOption(`--phone-verification [value]`, `User phone verification status.`, (value) => value === undefined ? true : (0, parser_1.parseBool)(value))
|
|
1194
|
-
.action((0, parser_1.actionRunner)(exports.usersUpdatePhoneVerification));
|
|
1195
|
-
//# sourceMappingURL=users.js.map
|