@appwrite.io/console 8.1.0 → 8.1.1
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/README.md +1 -1
- package/dist/cjs/sdk.js +1 -1
- package/dist/cjs/sdk.js.map +1 -0
- package/dist/esm/sdk.js +29705 -0
- package/dist/esm/sdk.js.map +1 -0
- package/dist/iife/sdk.js +33515 -0
- package/package.json +5 -1
- package/types/channel.d.ts +74 -0
- package/types/client.d.ts +302 -0
- package/types/enums/adapter.d.ts +4 -0
- package/types/enums/api-service.d.ts +15 -0
- package/types/enums/api.d.ts +5 -0
- package/types/enums/appwrite-migration-resource.d.ts +27 -0
- package/types/enums/attribute-status.d.ts +7 -0
- package/types/enums/auth-method.d.ts +9 -0
- package/types/enums/authentication-factor.d.ts +6 -0
- package/types/enums/authenticator-type.d.ts +3 -0
- package/types/enums/backup-services.d.ts +8 -0
- package/types/enums/billing-plan-group.d.ts +5 -0
- package/types/enums/browser-permission.d.ts +22 -0
- package/types/enums/browser.d.ts +16 -0
- package/types/enums/build-runtime.d.ts +88 -0
- package/types/enums/column-status.d.ts +7 -0
- package/types/enums/compression.d.ts +5 -0
- package/types/enums/console-resource-type.d.ts +3 -0
- package/types/enums/credit-card.d.ts +19 -0
- package/types/enums/database-type.d.ts +6 -0
- package/types/enums/databases-index-type.d.ts +6 -0
- package/types/enums/deployment-download-type.d.ts +4 -0
- package/types/enums/deployment-status.d.ts +8 -0
- package/types/enums/domain-purchase-status.d.ts +6 -0
- package/types/enums/domain-transfer-status-enum.d.ts +10 -0
- package/types/enums/email-template-locale.d.ts +133 -0
- package/types/enums/email-template-type.d.ts +9 -0
- package/types/enums/execution-method.d.ts +9 -0
- package/types/enums/execution-status.d.ts +7 -0
- package/types/enums/execution-trigger.d.ts +5 -0
- package/types/enums/filter-type.d.ts +4 -0
- package/types/enums/firebase-migration-resource.d.ts +12 -0
- package/types/enums/flag.d.ts +197 -0
- package/types/enums/framework.d.ts +17 -0
- package/types/enums/frameworks.d.ts +17 -0
- package/types/enums/health-antivirus-status.d.ts +5 -0
- package/types/enums/health-check-status.d.ts +4 -0
- package/types/enums/image-format.d.ts +9 -0
- package/types/enums/image-gravity.d.ts +11 -0
- package/types/enums/index-status.d.ts +7 -0
- package/types/enums/message-priority.d.ts +4 -0
- package/types/enums/message-status.d.ts +7 -0
- package/types/enums/messaging-provider-type.d.ts +5 -0
- package/types/enums/n-host-migration-resource.d.ts +13 -0
- package/types/enums/name.d.ts +15 -0
- package/types/enums/o-auth-provider.d.ts +41 -0
- package/types/enums/order-by.d.ts +4 -0
- package/types/enums/password-hash.d.ts +13 -0
- package/types/enums/platform-type.d.ts +17 -0
- package/types/enums/platform.d.ts +4 -0
- package/types/enums/project-usage-range.d.ts +4 -0
- package/types/enums/proxy-resource-type.d.ts +4 -0
- package/types/enums/proxy-rule-deployment-resource-type.d.ts +4 -0
- package/types/enums/proxy-rule-status.d.ts +6 -0
- package/types/enums/region.d.ts +8 -0
- package/types/enums/registration-type.d.ts +6 -0
- package/types/enums/relation-mutate.d.ts +5 -0
- package/types/enums/relationship-type.d.ts +6 -0
- package/types/enums/resource-type.d.ts +6 -0
- package/types/enums/runtime.d.ts +88 -0
- package/types/enums/runtimes.d.ts +88 -0
- package/types/enums/scopes.d.ts +81 -0
- package/types/enums/sms-template-locale.d.ts +133 -0
- package/types/enums/sms-template-type.d.ts +6 -0
- package/types/enums/smtp-encryption.d.ts +5 -0
- package/types/enums/smtp-secure.d.ts +4 -0
- package/types/enums/status-code.d.ts +6 -0
- package/types/enums/status.d.ts +3 -0
- package/types/enums/supabase-migration-resource.d.ts +13 -0
- package/types/enums/tables-db-index-type.d.ts +6 -0
- package/types/enums/template-reference-type.d.ts +5 -0
- package/types/enums/theme.d.ts +4 -0
- package/types/enums/timezone.d.ts +421 -0
- package/types/enums/usage-range.d.ts +5 -0
- package/types/enums/use-cases.d.ts +16 -0
- package/types/enums/vcs-detection-type.d.ts +4 -0
- package/types/enums/vcs-reference-type.d.ts +5 -0
- package/types/id.d.ts +20 -0
- package/{src/index.ts → types/index.d.ts} +1 -1
- package/{src/models.ts → types/models.d.ts} +268 -518
- package/types/operator.d.ts +180 -0
- package/{src/permission.ts → types/permission.d.ts} +6 -20
- package/types/query.d.ts +442 -0
- package/{src/role.ts → types/role.d.ts} +28 -58
- package/types/service.d.ts +11 -0
- package/types/services/account.d.ts +1536 -0
- package/types/services/activities.d.ts +46 -0
- package/types/services/assistant.d.ts +24 -0
- package/{src/services/avatars.ts → types/services/avatars.d.ts} +91 -525
- package/types/services/backups.d.ts +277 -0
- package/types/services/console.d.ts +248 -0
- package/types/services/databases.d.ts +2435 -0
- package/types/services/domains.d.ts +1527 -0
- package/types/services/functions.d.ts +842 -0
- package/types/services/graphql.d.ts +43 -0
- package/types/services/health.d.ts +475 -0
- package/types/services/locale.d.ts +64 -0
- package/types/services/messaging.d.ts +1989 -0
- package/types/services/migrations.d.ts +417 -0
- package/types/services/organizations.d.ts +1009 -0
- package/types/services/project.d.ts +148 -0
- package/types/services/projects.d.ts +1626 -0
- package/types/services/proxy.d.ts +190 -0
- package/types/services/realtime.d.ts +134 -0
- package/types/services/sites.d.ts +800 -0
- package/types/services/storage.d.ts +467 -0
- package/types/services/tables-db.d.ts +2352 -0
- package/types/services/teams.d.ts +366 -0
- package/types/services/tokens.d.ts +119 -0
- package/types/services/users.d.ts +1208 -0
- package/types/services/vcs.d.ts +252 -0
- package/types/services/webhooks.d.ts +165 -0
- package/.github/workflows/autoclose.yml +0 -11
- package/.github/workflows/publish.yml +0 -43
- package/CHANGELOG.md +0 -169
- package/docs/examples/account/create-anonymous-session.md +0 -13
- package/docs/examples/account/create-billing-address.md +0 -20
- package/docs/examples/account/create-email-password-session.md +0 -16
- package/docs/examples/account/create-email-token.md +0 -17
- package/docs/examples/account/create-email-verification.md +0 -15
- package/docs/examples/account/create-jwt.md +0 -15
- package/docs/examples/account/create-key.md +0 -17
- package/docs/examples/account/create-magic-url-token.md +0 -18
- package/docs/examples/account/create-mfa-authenticator.md +0 -15
- package/docs/examples/account/create-mfa-challenge.md +0 -15
- package/docs/examples/account/create-mfa-recovery-codes.md +0 -13
- package/docs/examples/account/create-o-auth-2-session.md +0 -17
- package/docs/examples/account/create-o-auth-2-token.md +0 -17
- package/docs/examples/account/create-payment-method.md +0 -13
- package/docs/examples/account/create-phone-token.md +0 -16
- package/docs/examples/account/create-phone-verification.md +0 -13
- package/docs/examples/account/create-push-target.md +0 -17
- package/docs/examples/account/create-recovery.md +0 -16
- package/docs/examples/account/create-session.md +0 -16
- package/docs/examples/account/create-verification.md +0 -15
- package/docs/examples/account/create.md +0 -18
- package/docs/examples/account/delete-billing-address.md +0 -15
- package/docs/examples/account/delete-identity.md +0 -15
- package/docs/examples/account/delete-key.md +0 -15
- package/docs/examples/account/delete-mfa-authenticator.md +0 -15
- package/docs/examples/account/delete-payment-method.md +0 -15
- package/docs/examples/account/delete-push-target.md +0 -15
- package/docs/examples/account/delete-session.md +0 -15
- package/docs/examples/account/delete-sessions.md +0 -13
- package/docs/examples/account/delete.md +0 -13
- package/docs/examples/account/get-billing-address.md +0 -15
- package/docs/examples/account/get-coupon.md +0 -15
- package/docs/examples/account/get-key.md +0 -15
- package/docs/examples/account/get-mfa-recovery-codes.md +0 -13
- package/docs/examples/account/get-payment-method.md +0 -15
- package/docs/examples/account/get-prefs.md +0 -13
- package/docs/examples/account/get-session.md +0 -15
- package/docs/examples/account/get.md +0 -13
- package/docs/examples/account/list-billing-addresses.md +0 -15
- package/docs/examples/account/list-identities.md +0 -16
- package/docs/examples/account/list-invoices.md +0 -15
- package/docs/examples/account/list-keys.md +0 -15
- package/docs/examples/account/list-logs.md +0 -16
- package/docs/examples/account/list-mfa-factors.md +0 -13
- package/docs/examples/account/list-payment-methods.md +0 -15
- package/docs/examples/account/list-sessions.md +0 -13
- package/docs/examples/account/update-billing-address.md +0 -21
- package/docs/examples/account/update-email-verification.md +0 -16
- package/docs/examples/account/update-email.md +0 -16
- package/docs/examples/account/update-key.md +0 -18
- package/docs/examples/account/update-magic-url-session.md +0 -16
- package/docs/examples/account/update-mfa-authenticator.md +0 -16
- package/docs/examples/account/update-mfa-challenge.md +0 -16
- package/docs/examples/account/update-mfa-recovery-codes.md +0 -13
- package/docs/examples/account/update-mfa.md +0 -15
- package/docs/examples/account/update-name.md +0 -15
- package/docs/examples/account/update-password.md +0 -16
- package/docs/examples/account/update-payment-method-mandate-options.md +0 -15
- package/docs/examples/account/update-payment-method-provider.md +0 -18
- package/docs/examples/account/update-payment-method.md +0 -18
- package/docs/examples/account/update-phone-session.md +0 -16
- package/docs/examples/account/update-phone-verification.md +0 -16
- package/docs/examples/account/update-phone.md +0 -16
- package/docs/examples/account/update-prefs.md +0 -19
- package/docs/examples/account/update-push-target.md +0 -16
- package/docs/examples/account/update-recovery.md +0 -17
- package/docs/examples/account/update-session.md +0 -15
- package/docs/examples/account/update-status.md +0 -13
- package/docs/examples/account/update-verification.md +0 -16
- package/docs/examples/activities/get-event.md +0 -15
- package/docs/examples/activities/list-events.md +0 -15
- package/docs/examples/assistant/chat.md +0 -15
- package/docs/examples/avatars/get-browser.md +0 -18
- package/docs/examples/avatars/get-credit-card.md +0 -18
- package/docs/examples/avatars/get-favicon.md +0 -15
- package/docs/examples/avatars/get-flag.md +0 -18
- package/docs/examples/avatars/get-image.md +0 -17
- package/docs/examples/avatars/get-initials.md +0 -18
- package/docs/examples/avatars/get-qr.md +0 -18
- package/docs/examples/avatars/get-screenshot.md +0 -37
- package/docs/examples/backups/create-archive.md +0 -16
- package/docs/examples/backups/create-policy.md +0 -21
- package/docs/examples/backups/create-restoration.md +0 -18
- package/docs/examples/backups/delete-archive.md +0 -15
- package/docs/examples/backups/delete-policy.md +0 -15
- package/docs/examples/backups/get-archive.md +0 -15
- package/docs/examples/backups/get-policy.md +0 -15
- package/docs/examples/backups/get-restoration.md +0 -15
- package/docs/examples/backups/list-archives.md +0 -15
- package/docs/examples/backups/list-policies.md +0 -15
- package/docs/examples/backups/list-restorations.md +0 -15
- package/docs/examples/backups/update-policy.md +0 -19
- package/docs/examples/console/create-program-membership.md +0 -15
- package/docs/examples/console/create-source.md +0 -19
- package/docs/examples/console/get-campaign.md +0 -15
- package/docs/examples/console/get-coupon.md +0 -15
- package/docs/examples/console/get-plan.md +0 -15
- package/docs/examples/console/get-plans.md +0 -15
- package/docs/examples/console/get-program.md +0 -15
- package/docs/examples/console/get-resource.md +0 -16
- package/docs/examples/console/list-regions.md +0 -13
- package/docs/examples/console/suggest-columns.md +0 -19
- package/docs/examples/console/suggest-indexes.md +0 -18
- package/docs/examples/console/variables.md +0 -13
- package/docs/examples/databases/create-boolean-attribute.md +0 -20
- package/docs/examples/databases/create-collection.md +0 -22
- package/docs/examples/databases/create-datetime-attribute.md +0 -20
- package/docs/examples/databases/create-document.md +0 -26
- package/docs/examples/databases/create-documents.md +0 -18
- package/docs/examples/databases/create-email-attribute.md +0 -20
- package/docs/examples/databases/create-enum-attribute.md +0 -21
- package/docs/examples/databases/create-float-attribute.md +0 -22
- package/docs/examples/databases/create-index.md +0 -21
- package/docs/examples/databases/create-integer-attribute.md +0 -22
- package/docs/examples/databases/create-ip-attribute.md +0 -20
- package/docs/examples/databases/create-line-attribute.md +0 -19
- package/docs/examples/databases/create-longtext-attribute.md +0 -21
- package/docs/examples/databases/create-mediumtext-attribute.md +0 -21
- package/docs/examples/databases/create-operations.md +0 -26
- package/docs/examples/databases/create-point-attribute.md +0 -19
- package/docs/examples/databases/create-polygon-attribute.md +0 -19
- package/docs/examples/databases/create-relationship-attribute.md +0 -22
- package/docs/examples/databases/create-string-attribute.md +0 -22
- package/docs/examples/databases/create-text-attribute.md +0 -21
- package/docs/examples/databases/create-transaction.md +0 -15
- package/docs/examples/databases/create-url-attribute.md +0 -20
- package/docs/examples/databases/create-varchar-attribute.md +0 -22
- package/docs/examples/databases/create.md +0 -17
- package/docs/examples/databases/decrement-document-attribute.md +0 -21
- package/docs/examples/databases/delete-attribute.md +0 -17
- package/docs/examples/databases/delete-collection.md +0 -16
- package/docs/examples/databases/delete-document.md +0 -18
- package/docs/examples/databases/delete-documents.md +0 -18
- package/docs/examples/databases/delete-index.md +0 -17
- package/docs/examples/databases/delete-transaction.md +0 -15
- package/docs/examples/databases/delete.md +0 -15
- package/docs/examples/databases/get-attribute.md +0 -17
- package/docs/examples/databases/get-collection-usage.md +0 -17
- package/docs/examples/databases/get-collection.md +0 -16
- package/docs/examples/databases/get-document.md +0 -19
- package/docs/examples/databases/get-index.md +0 -17
- package/docs/examples/databases/get-transaction.md +0 -15
- package/docs/examples/databases/get-usage.md +0 -16
- package/docs/examples/databases/get.md +0 -15
- package/docs/examples/databases/increment-document-attribute.md +0 -21
- package/docs/examples/databases/list-attributes.md +0 -18
- package/docs/examples/databases/list-collection-logs.md +0 -17
- package/docs/examples/databases/list-collections.md +0 -18
- package/docs/examples/databases/list-document-logs.md +0 -18
- package/docs/examples/databases/list-documents.md +0 -20
- package/docs/examples/databases/list-indexes.md +0 -18
- package/docs/examples/databases/list-logs.md +0 -16
- package/docs/examples/databases/list-transactions.md +0 -15
- package/docs/examples/databases/list-usage.md +0 -15
- package/docs/examples/databases/list.md +0 -17
- package/docs/examples/databases/update-boolean-attribute.md +0 -20
- package/docs/examples/databases/update-collection.md +0 -20
- package/docs/examples/databases/update-datetime-attribute.md +0 -20
- package/docs/examples/databases/update-document.md +0 -26
- package/docs/examples/databases/update-documents.md +0 -25
- package/docs/examples/databases/update-email-attribute.md +0 -20
- package/docs/examples/databases/update-enum-attribute.md +0 -21
- package/docs/examples/databases/update-float-attribute.md +0 -22
- package/docs/examples/databases/update-integer-attribute.md +0 -22
- package/docs/examples/databases/update-ip-attribute.md +0 -20
- package/docs/examples/databases/update-line-attribute.md +0 -20
- package/docs/examples/databases/update-longtext-attribute.md +0 -20
- package/docs/examples/databases/update-mediumtext-attribute.md +0 -20
- package/docs/examples/databases/update-point-attribute.md +0 -20
- package/docs/examples/databases/update-polygon-attribute.md +0 -20
- package/docs/examples/databases/update-relationship-attribute.md +0 -19
- package/docs/examples/databases/update-string-attribute.md +0 -21
- package/docs/examples/databases/update-text-attribute.md +0 -20
- package/docs/examples/databases/update-transaction.md +0 -17
- package/docs/examples/databases/update-url-attribute.md +0 -20
- package/docs/examples/databases/update-varchar-attribute.md +0 -21
- package/docs/examples/databases/update.md +0 -17
- package/docs/examples/databases/upsert-document.md +0 -26
- package/docs/examples/databases/upsert-documents.md +0 -18
- package/docs/examples/domains/create-preset-google-workspace.md +0 -15
- package/docs/examples/domains/create-preset-i-cloud.md +0 -15
- package/docs/examples/domains/create-preset-mailgun.md +0 -15
- package/docs/examples/domains/create-preset-outlook.md +0 -15
- package/docs/examples/domains/create-preset-proton-mail.md +0 -15
- package/docs/examples/domains/create-preset-zoho.md +0 -15
- package/docs/examples/domains/create-purchase.md +0 -26
- package/docs/examples/domains/create-record-a.md +0 -19
- package/docs/examples/domains/create-record-aaaa.md +0 -19
- package/docs/examples/domains/create-record-alias.md +0 -19
- package/docs/examples/domains/create-record-caa.md +0 -19
- package/docs/examples/domains/create-record-cname.md +0 -19
- package/docs/examples/domains/create-record-https.md +0 -19
- package/docs/examples/domains/create-record-mx.md +0 -20
- package/docs/examples/domains/create-record-ns.md +0 -19
- package/docs/examples/domains/create-record-srv.md +0 -22
- package/docs/examples/domains/create-record-txt.md +0 -19
- package/docs/examples/domains/create-transfer-in.md +0 -19
- package/docs/examples/domains/create-transfer-out.md +0 -16
- package/docs/examples/domains/create.md +0 -16
- package/docs/examples/domains/delete-record.md +0 -16
- package/docs/examples/domains/delete.md +0 -15
- package/docs/examples/domains/get-preset-google-workspace.md +0 -15
- package/docs/examples/domains/get-preset-i-cloud.md +0 -15
- package/docs/examples/domains/get-preset-mailgun.md +0 -15
- package/docs/examples/domains/get-preset-outlook.md +0 -15
- package/docs/examples/domains/get-preset-proton-mail.md +0 -15
- package/docs/examples/domains/get-preset-zoho.md +0 -15
- package/docs/examples/domains/get-price.md +0 -17
- package/docs/examples/domains/get-record.md +0 -16
- package/docs/examples/domains/get-transfer-status.md +0 -15
- package/docs/examples/domains/get-zone.md +0 -15
- package/docs/examples/domains/get.md +0 -15
- package/docs/examples/domains/list-records.md +0 -16
- package/docs/examples/domains/list-suggestions.md +0 -20
- package/docs/examples/domains/list.md +0 -16
- package/docs/examples/domains/update-auto-renewal.md +0 -16
- package/docs/examples/domains/update-nameservers.md +0 -15
- package/docs/examples/domains/update-purchase.md +0 -16
- package/docs/examples/domains/update-record-a.md +0 -20
- package/docs/examples/domains/update-record-aaaa.md +0 -20
- package/docs/examples/domains/update-record-alias.md +0 -20
- package/docs/examples/domains/update-record-caa.md +0 -20
- package/docs/examples/domains/update-record-cname.md +0 -20
- package/docs/examples/domains/update-record-https.md +0 -20
- package/docs/examples/domains/update-record-mx.md +0 -21
- package/docs/examples/domains/update-record-ns.md +0 -20
- package/docs/examples/domains/update-record-srv.md +0 -23
- package/docs/examples/domains/update-record-txt.md +0 -20
- package/docs/examples/domains/update-team.md +0 -16
- package/docs/examples/domains/update-transfer-in.md +0 -16
- package/docs/examples/domains/update-zone.md +0 -16
- package/docs/examples/functions/create-deployment.md +0 -19
- package/docs/examples/functions/create-duplicate-deployment.md +0 -17
- package/docs/examples/functions/create-execution.md +0 -21
- package/docs/examples/functions/create-template-deployment.md +0 -21
- package/docs/examples/functions/create-variable.md +0 -18
- package/docs/examples/functions/create-vcs-deployment.md +0 -18
- package/docs/examples/functions/create.md +0 -34
- package/docs/examples/functions/delete-deployment.md +0 -16
- package/docs/examples/functions/delete-execution.md +0 -16
- package/docs/examples/functions/delete-variable.md +0 -16
- package/docs/examples/functions/delete.md +0 -15
- package/docs/examples/functions/get-deployment-download.md +0 -17
- package/docs/examples/functions/get-deployment.md +0 -16
- package/docs/examples/functions/get-execution.md +0 -16
- package/docs/examples/functions/get-template.md +0 -15
- package/docs/examples/functions/get-usage.md +0 -16
- package/docs/examples/functions/get-variable.md +0 -16
- package/docs/examples/functions/get.md +0 -15
- package/docs/examples/functions/list-deployments.md +0 -18
- package/docs/examples/functions/list-executions.md +0 -17
- package/docs/examples/functions/list-runtimes.md +0 -13
- package/docs/examples/functions/list-specifications.md +0 -13
- package/docs/examples/functions/list-templates.md +0 -19
- package/docs/examples/functions/list-usage.md +0 -15
- package/docs/examples/functions/list-variables.md +0 -15
- package/docs/examples/functions/list.md +0 -17
- package/docs/examples/functions/update-deployment-status.md +0 -16
- package/docs/examples/functions/update-function-deployment.md +0 -16
- package/docs/examples/functions/update-variable.md +0 -19
- package/docs/examples/functions/update.md +0 -34
- package/docs/examples/graphql/mutation.md +0 -15
- package/docs/examples/graphql/query.md +0 -15
- package/docs/examples/health/get-antivirus.md +0 -13
- package/docs/examples/health/get-cache.md +0 -13
- package/docs/examples/health/get-certificate.md +0 -15
- package/docs/examples/health/get-console-pausing.md +0 -16
- package/docs/examples/health/get-db.md +0 -13
- package/docs/examples/health/get-failed-jobs.md +0 -16
- package/docs/examples/health/get-pub-sub.md +0 -13
- package/docs/examples/health/get-queue-audits.md +0 -15
- package/docs/examples/health/get-queue-billing-project-aggregation.md +0 -15
- package/docs/examples/health/get-queue-billing-team-aggregation.md +0 -15
- package/docs/examples/health/get-queue-builds.md +0 -15
- package/docs/examples/health/get-queue-certificates.md +0 -15
- package/docs/examples/health/get-queue-databases.md +0 -16
- package/docs/examples/health/get-queue-deletes.md +0 -15
- package/docs/examples/health/get-queue-functions.md +0 -15
- package/docs/examples/health/get-queue-logs.md +0 -15
- package/docs/examples/health/get-queue-mails.md +0 -15
- package/docs/examples/health/get-queue-messaging.md +0 -15
- package/docs/examples/health/get-queue-migrations.md +0 -15
- package/docs/examples/health/get-queue-priority-builds.md +0 -15
- package/docs/examples/health/get-queue-region-manager.md +0 -15
- package/docs/examples/health/get-queue-stats-resources.md +0 -15
- package/docs/examples/health/get-queue-threats.md +0 -15
- package/docs/examples/health/get-queue-usage.md +0 -15
- package/docs/examples/health/get-queue-webhooks.md +0 -15
- package/docs/examples/health/get-storage-local.md +0 -13
- package/docs/examples/health/get-storage.md +0 -13
- package/docs/examples/health/get-time.md +0 -13
- package/docs/examples/health/get.md +0 -13
- package/docs/examples/locale/get.md +0 -13
- package/docs/examples/locale/list-codes.md +0 -13
- package/docs/examples/locale/list-continents.md +0 -13
- package/docs/examples/locale/list-countries-eu.md +0 -13
- package/docs/examples/locale/list-countries-phones.md +0 -13
- package/docs/examples/locale/list-countries.md +0 -13
- package/docs/examples/locale/list-currencies.md +0 -13
- package/docs/examples/locale/list-languages.md +0 -13
- package/docs/examples/messaging/create-apns-provider.md +0 -22
- package/docs/examples/messaging/create-email.md +0 -26
- package/docs/examples/messaging/create-fcm-provider.md +0 -18
- package/docs/examples/messaging/create-mailgun-provider.md +0 -24
- package/docs/examples/messaging/create-msg-91-provider.md +0 -20
- package/docs/examples/messaging/create-push.md +0 -33
- package/docs/examples/messaging/create-resend-provider.md +0 -22
- package/docs/examples/messaging/create-sendgrid-provider.md +0 -22
- package/docs/examples/messaging/create-sms.md +0 -21
- package/docs/examples/messaging/create-smtp-provider.md +0 -28
- package/docs/examples/messaging/create-subscriber.md +0 -17
- package/docs/examples/messaging/create-telesign-provider.md +0 -20
- package/docs/examples/messaging/create-textmagic-provider.md +0 -20
- package/docs/examples/messaging/create-topic.md +0 -17
- package/docs/examples/messaging/create-twilio-provider.md +0 -20
- package/docs/examples/messaging/create-vonage-provider.md +0 -20
- package/docs/examples/messaging/delete-provider.md +0 -15
- package/docs/examples/messaging/delete-subscriber.md +0 -16
- package/docs/examples/messaging/delete-topic.md +0 -15
- package/docs/examples/messaging/delete.md +0 -15
- package/docs/examples/messaging/get-message.md +0 -15
- package/docs/examples/messaging/get-provider.md +0 -15
- package/docs/examples/messaging/get-subscriber.md +0 -16
- package/docs/examples/messaging/get-topic.md +0 -15
- package/docs/examples/messaging/list-message-logs.md +0 -17
- package/docs/examples/messaging/list-messages.md +0 -17
- package/docs/examples/messaging/list-provider-logs.md +0 -17
- package/docs/examples/messaging/list-providers.md +0 -17
- package/docs/examples/messaging/list-subscriber-logs.md +0 -17
- package/docs/examples/messaging/list-subscribers.md +0 -18
- package/docs/examples/messaging/list-targets.md +0 -17
- package/docs/examples/messaging/list-topic-logs.md +0 -17
- package/docs/examples/messaging/list-topics.md +0 -17
- package/docs/examples/messaging/update-apns-provider.md +0 -22
- package/docs/examples/messaging/update-email.md +0 -26
- package/docs/examples/messaging/update-fcm-provider.md +0 -18
- package/docs/examples/messaging/update-mailgun-provider.md +0 -24
- package/docs/examples/messaging/update-msg-91-provider.md +0 -20
- package/docs/examples/messaging/update-push.md +0 -33
- package/docs/examples/messaging/update-resend-provider.md +0 -22
- package/docs/examples/messaging/update-sendgrid-provider.md +0 -22
- package/docs/examples/messaging/update-sms.md +0 -21
- package/docs/examples/messaging/update-smtp-provider.md +0 -28
- package/docs/examples/messaging/update-telesign-provider.md +0 -20
- package/docs/examples/messaging/update-textmagic-provider.md +0 -20
- package/docs/examples/messaging/update-topic.md +0 -17
- package/docs/examples/messaging/update-twilio-provider.md +0 -20
- package/docs/examples/messaging/update-vonage-provider.md +0 -20
- package/docs/examples/migrations/create-appwrite-migration.md +0 -18
- package/docs/examples/migrations/create-csv-export.md +0 -23
- package/docs/examples/migrations/create-csv-import.md +0 -18
- package/docs/examples/migrations/create-firebase-migration.md +0 -16
- package/docs/examples/migrations/create-n-host-migration.md +0 -22
- package/docs/examples/migrations/create-supabase-migration.md +0 -21
- package/docs/examples/migrations/delete.md +0 -15
- package/docs/examples/migrations/get-appwrite-report.md +0 -18
- package/docs/examples/migrations/get-firebase-report.md +0 -16
- package/docs/examples/migrations/get-n-host-report.md +0 -22
- package/docs/examples/migrations/get-supabase-report.md +0 -21
- package/docs/examples/migrations/get.md +0 -15
- package/docs/examples/migrations/list.md +0 -17
- package/docs/examples/migrations/retry.md +0 -15
- package/docs/examples/organizations/add-credit.md +0 -16
- package/docs/examples/organizations/cancel-downgrade.md +0 -15
- package/docs/examples/organizations/create-downgrade-feedback.md +0 -19
- package/docs/examples/organizations/create-invoice-payment.md +0 -17
- package/docs/examples/organizations/create-key.md +0 -18
- package/docs/examples/organizations/create.md +0 -24
- package/docs/examples/organizations/delete-backup-payment-method.md +0 -15
- package/docs/examples/organizations/delete-billing-address.md +0 -15
- package/docs/examples/organizations/delete-default-payment-method.md +0 -15
- package/docs/examples/organizations/delete-key.md +0 -16
- package/docs/examples/organizations/delete.md +0 -15
- package/docs/examples/organizations/estimation-create-organization.md +0 -19
- package/docs/examples/organizations/estimation-delete-organization.md +0 -15
- package/docs/examples/organizations/estimation-update-plan.md +0 -18
- package/docs/examples/organizations/get-aggregation.md +0 -18
- package/docs/examples/organizations/get-available-credits.md +0 -15
- package/docs/examples/organizations/get-billing-address.md +0 -16
- package/docs/examples/organizations/get-credit.md +0 -16
- package/docs/examples/organizations/get-invoice-download.md +0 -16
- package/docs/examples/organizations/get-invoice-view.md +0 -16
- package/docs/examples/organizations/get-invoice.md +0 -16
- package/docs/examples/organizations/get-key.md +0 -16
- package/docs/examples/organizations/get-payment-method.md +0 -16
- package/docs/examples/organizations/get-plan.md +0 -15
- package/docs/examples/organizations/get-scopes.md +0 -16
- package/docs/examples/organizations/get-usage.md +0 -17
- package/docs/examples/organizations/list-aggregations.md +0 -16
- package/docs/examples/organizations/list-credits.md +0 -16
- package/docs/examples/organizations/list-invoices.md +0 -16
- package/docs/examples/organizations/list-keys.md +0 -16
- package/docs/examples/organizations/list-regions.md +0 -15
- package/docs/examples/organizations/list.md +0 -16
- package/docs/examples/organizations/set-backup-payment-method.md +0 -16
- package/docs/examples/organizations/set-billing-address.md +0 -16
- package/docs/examples/organizations/set-billing-email.md +0 -16
- package/docs/examples/organizations/set-billing-tax-id.md +0 -16
- package/docs/examples/organizations/set-default-payment-method.md +0 -16
- package/docs/examples/organizations/update-budget.md +0 -17
- package/docs/examples/organizations/update-key.md +0 -19
- package/docs/examples/organizations/update-plan.md +0 -22
- package/docs/examples/organizations/validate-invoice.md +0 -16
- package/docs/examples/organizations/validate-payment.md +0 -16
- package/docs/examples/project/create-variable.md +0 -18
- package/docs/examples/project/delete-variable.md +0 -15
- package/docs/examples/project/get-usage.md +0 -17
- package/docs/examples/project/get-variable.md +0 -15
- package/docs/examples/project/list-variables.md +0 -16
- package/docs/examples/project/update-variable.md +0 -18
- package/docs/examples/projects/create-dev-key.md +0 -17
- package/docs/examples/projects/create-jwt.md +0 -17
- package/docs/examples/projects/create-key.md +0 -19
- package/docs/examples/projects/create-platform.md +0 -20
- package/docs/examples/projects/create-schedule.md +0 -20
- package/docs/examples/projects/create-smtp-test.md +0 -24
- package/docs/examples/projects/create.md +0 -27
- package/docs/examples/projects/delete-dev-key.md +0 -16
- package/docs/examples/projects/delete-email-template.md +0 -17
- package/docs/examples/projects/delete-key.md +0 -16
- package/docs/examples/projects/delete-platform.md +0 -16
- package/docs/examples/projects/delete-sms-template.md +0 -17
- package/docs/examples/projects/delete.md +0 -15
- package/docs/examples/projects/get-dev-key.md +0 -16
- package/docs/examples/projects/get-email-template.md +0 -17
- package/docs/examples/projects/get-key.md +0 -16
- package/docs/examples/projects/get-platform.md +0 -16
- package/docs/examples/projects/get-schedule.md +0 -16
- package/docs/examples/projects/get-sms-template.md +0 -17
- package/docs/examples/projects/get.md +0 -15
- package/docs/examples/projects/list-dev-keys.md +0 -16
- package/docs/examples/projects/list-keys.md +0 -17
- package/docs/examples/projects/list-platforms.md +0 -16
- package/docs/examples/projects/list-schedules.md +0 -17
- package/docs/examples/projects/list.md +0 -17
- package/docs/examples/projects/update-api-status-all.md +0 -16
- package/docs/examples/projects/update-api-status.md +0 -17
- package/docs/examples/projects/update-auth-duration.md +0 -16
- package/docs/examples/projects/update-auth-limit.md +0 -16
- package/docs/examples/projects/update-auth-password-dictionary.md +0 -16
- package/docs/examples/projects/update-auth-password-history.md +0 -16
- package/docs/examples/projects/update-auth-sessions-limit.md +0 -16
- package/docs/examples/projects/update-auth-status.md +0 -17
- package/docs/examples/projects/update-console-access.md +0 -15
- package/docs/examples/projects/update-dev-key.md +0 -18
- package/docs/examples/projects/update-email-template.md +0 -22
- package/docs/examples/projects/update-key.md +0 -19
- package/docs/examples/projects/update-labels.md +0 -16
- package/docs/examples/projects/update-memberships-privacy.md +0 -18
- package/docs/examples/projects/update-mock-numbers.md +0 -16
- package/docs/examples/projects/update-o-auth-2.md +0 -19
- package/docs/examples/projects/update-personal-data-check.md +0 -16
- package/docs/examples/projects/update-platform.md +0 -20
- package/docs/examples/projects/update-service-status-all.md +0 -16
- package/docs/examples/projects/update-service-status.md +0 -17
- package/docs/examples/projects/update-session-alerts.md +0 -16
- package/docs/examples/projects/update-session-invalidation.md +0 -16
- package/docs/examples/projects/update-sms-template.md +0 -18
- package/docs/examples/projects/update-smtp.md +0 -24
- package/docs/examples/projects/update-status.md +0 -16
- package/docs/examples/projects/update-team.md +0 -16
- package/docs/examples/projects/update.md +0 -25
- package/docs/examples/proxy/create-api-rule.md +0 -15
- package/docs/examples/proxy/create-function-rule.md +0 -17
- package/docs/examples/proxy/create-redirect-rule.md +0 -19
- package/docs/examples/proxy/create-site-rule.md +0 -17
- package/docs/examples/proxy/delete-rule.md +0 -15
- package/docs/examples/proxy/get-rule.md +0 -15
- package/docs/examples/proxy/list-rules.md +0 -17
- package/docs/examples/proxy/update-rule-verification.md +0 -15
- package/docs/examples/sites/create-deployment.md +0 -20
- package/docs/examples/sites/create-duplicate-deployment.md +0 -16
- package/docs/examples/sites/create-template-deployment.md +0 -21
- package/docs/examples/sites/create-variable.md +0 -18
- package/docs/examples/sites/create-vcs-deployment.md +0 -18
- package/docs/examples/sites/create.md +0 -35
- package/docs/examples/sites/delete-deployment.md +0 -16
- package/docs/examples/sites/delete-log.md +0 -16
- package/docs/examples/sites/delete-variable.md +0 -16
- package/docs/examples/sites/delete.md +0 -15
- package/docs/examples/sites/get-deployment-download.md +0 -17
- package/docs/examples/sites/get-deployment.md +0 -16
- package/docs/examples/sites/get-log.md +0 -16
- package/docs/examples/sites/get-template.md +0 -15
- package/docs/examples/sites/get-usage.md +0 -16
- package/docs/examples/sites/get-variable.md +0 -16
- package/docs/examples/sites/get.md +0 -15
- package/docs/examples/sites/list-deployments.md +0 -18
- package/docs/examples/sites/list-frameworks.md +0 -13
- package/docs/examples/sites/list-logs.md +0 -17
- package/docs/examples/sites/list-specifications.md +0 -13
- package/docs/examples/sites/list-templates.md +0 -18
- package/docs/examples/sites/list-usage.md +0 -15
- package/docs/examples/sites/list-variables.md +0 -15
- package/docs/examples/sites/list.md +0 -17
- package/docs/examples/sites/update-deployment-status.md +0 -16
- package/docs/examples/sites/update-site-deployment.md +0 -16
- package/docs/examples/sites/update-variable.md +0 -19
- package/docs/examples/sites/update.md +0 -35
- package/docs/examples/storage/create-bucket.md +0 -25
- package/docs/examples/storage/create-file.md +0 -18
- package/docs/examples/storage/delete-bucket.md +0 -15
- package/docs/examples/storage/delete-file.md +0 -16
- package/docs/examples/storage/get-bucket-usage.md +0 -16
- package/docs/examples/storage/get-bucket.md +0 -15
- package/docs/examples/storage/get-file-download.md +0 -17
- package/docs/examples/storage/get-file-preview.md +0 -28
- package/docs/examples/storage/get-file-view.md +0 -17
- package/docs/examples/storage/get-file.md +0 -16
- package/docs/examples/storage/get-usage.md +0 -15
- package/docs/examples/storage/list-buckets.md +0 -17
- package/docs/examples/storage/list-files.md +0 -18
- package/docs/examples/storage/update-bucket.md +0 -25
- package/docs/examples/storage/update-file.md +0 -18
- package/docs/examples/tablesdb/create-boolean-column.md +0 -20
- package/docs/examples/tablesdb/create-datetime-column.md +0 -20
- package/docs/examples/tablesdb/create-email-column.md +0 -20
- package/docs/examples/tablesdb/create-enum-column.md +0 -21
- package/docs/examples/tablesdb/create-float-column.md +0 -22
- package/docs/examples/tablesdb/create-index.md +0 -21
- package/docs/examples/tablesdb/create-integer-column.md +0 -22
- package/docs/examples/tablesdb/create-ip-column.md +0 -20
- package/docs/examples/tablesdb/create-line-column.md +0 -19
- package/docs/examples/tablesdb/create-longtext-column.md +0 -21
- package/docs/examples/tablesdb/create-mediumtext-column.md +0 -21
- package/docs/examples/tablesdb/create-operations.md +0 -26
- package/docs/examples/tablesdb/create-point-column.md +0 -19
- package/docs/examples/tablesdb/create-polygon-column.md +0 -19
- package/docs/examples/tablesdb/create-relationship-column.md +0 -22
- package/docs/examples/tablesdb/create-row.md +0 -26
- package/docs/examples/tablesdb/create-rows.md +0 -18
- package/docs/examples/tablesdb/create-string-column.md +0 -22
- package/docs/examples/tablesdb/create-table.md +0 -22
- package/docs/examples/tablesdb/create-text-column.md +0 -21
- package/docs/examples/tablesdb/create-transaction.md +0 -15
- package/docs/examples/tablesdb/create-url-column.md +0 -20
- package/docs/examples/tablesdb/create-varchar-column.md +0 -22
- package/docs/examples/tablesdb/create.md +0 -17
- package/docs/examples/tablesdb/decrement-row-column.md +0 -21
- package/docs/examples/tablesdb/delete-column.md +0 -17
- package/docs/examples/tablesdb/delete-index.md +0 -17
- package/docs/examples/tablesdb/delete-row.md +0 -18
- package/docs/examples/tablesdb/delete-rows.md +0 -18
- package/docs/examples/tablesdb/delete-table.md +0 -16
- package/docs/examples/tablesdb/delete-transaction.md +0 -15
- package/docs/examples/tablesdb/delete.md +0 -15
- package/docs/examples/tablesdb/get-column.md +0 -17
- package/docs/examples/tablesdb/get-index.md +0 -17
- package/docs/examples/tablesdb/get-row.md +0 -19
- package/docs/examples/tablesdb/get-table-usage.md +0 -17
- package/docs/examples/tablesdb/get-table.md +0 -16
- package/docs/examples/tablesdb/get-transaction.md +0 -15
- package/docs/examples/tablesdb/get-usage.md +0 -16
- package/docs/examples/tablesdb/get.md +0 -15
- package/docs/examples/tablesdb/increment-row-column.md +0 -21
- package/docs/examples/tablesdb/list-columns.md +0 -18
- package/docs/examples/tablesdb/list-indexes.md +0 -18
- package/docs/examples/tablesdb/list-row-logs.md +0 -18
- package/docs/examples/tablesdb/list-rows.md +0 -20
- package/docs/examples/tablesdb/list-table-logs.md +0 -17
- package/docs/examples/tablesdb/list-tables.md +0 -18
- package/docs/examples/tablesdb/list-transactions.md +0 -15
- package/docs/examples/tablesdb/list-usage.md +0 -15
- package/docs/examples/tablesdb/list.md +0 -17
- package/docs/examples/tablesdb/update-boolean-column.md +0 -20
- package/docs/examples/tablesdb/update-datetime-column.md +0 -20
- package/docs/examples/tablesdb/update-email-column.md +0 -20
- package/docs/examples/tablesdb/update-enum-column.md +0 -21
- package/docs/examples/tablesdb/update-float-column.md +0 -22
- package/docs/examples/tablesdb/update-integer-column.md +0 -22
- package/docs/examples/tablesdb/update-ip-column.md +0 -20
- package/docs/examples/tablesdb/update-line-column.md +0 -20
- package/docs/examples/tablesdb/update-longtext-column.md +0 -20
- package/docs/examples/tablesdb/update-mediumtext-column.md +0 -20
- package/docs/examples/tablesdb/update-point-column.md +0 -20
- package/docs/examples/tablesdb/update-polygon-column.md +0 -20
- package/docs/examples/tablesdb/update-relationship-column.md +0 -19
- package/docs/examples/tablesdb/update-row.md +0 -26
- package/docs/examples/tablesdb/update-rows.md +0 -25
- package/docs/examples/tablesdb/update-string-column.md +0 -21
- package/docs/examples/tablesdb/update-table.md +0 -20
- package/docs/examples/tablesdb/update-text-column.md +0 -20
- package/docs/examples/tablesdb/update-transaction.md +0 -17
- package/docs/examples/tablesdb/update-url-column.md +0 -20
- package/docs/examples/tablesdb/update-varchar-column.md +0 -21
- package/docs/examples/tablesdb/update.md +0 -17
- package/docs/examples/tablesdb/upsert-row.md +0 -26
- package/docs/examples/tablesdb/upsert-rows.md +0 -18
- package/docs/examples/teams/create-membership.md +0 -21
- package/docs/examples/teams/create.md +0 -17
- package/docs/examples/teams/delete-membership.md +0 -16
- package/docs/examples/teams/delete.md +0 -15
- package/docs/examples/teams/get-membership.md +0 -16
- package/docs/examples/teams/get-prefs.md +0 -15
- package/docs/examples/teams/get.md +0 -15
- package/docs/examples/teams/list-logs.md +0 -17
- package/docs/examples/teams/list-memberships.md +0 -18
- package/docs/examples/teams/list.md +0 -17
- package/docs/examples/teams/update-membership-status.md +0 -18
- package/docs/examples/teams/update-membership.md +0 -17
- package/docs/examples/teams/update-name.md +0 -16
- package/docs/examples/teams/update-prefs.md +0 -16
- package/docs/examples/tokens/create-file-token.md +0 -17
- package/docs/examples/tokens/delete.md +0 -15
- package/docs/examples/tokens/get.md +0 -15
- package/docs/examples/tokens/list.md +0 -18
- package/docs/examples/tokens/update.md +0 -16
- package/docs/examples/users/create-argon-2-user.md +0 -18
- package/docs/examples/users/create-bcrypt-user.md +0 -18
- package/docs/examples/users/create-jwt.md +0 -17
- package/docs/examples/users/create-md-5-user.md +0 -18
- package/docs/examples/users/create-mfa-recovery-codes.md +0 -15
- package/docs/examples/users/create-ph-pass-user.md +0 -18
- package/docs/examples/users/create-scrypt-modified-user.md +0 -21
- package/docs/examples/users/create-scrypt-user.md +0 -23
- package/docs/examples/users/create-session.md +0 -15
- package/docs/examples/users/create-sha-user.md +0 -19
- package/docs/examples/users/create-target.md +0 -20
- package/docs/examples/users/create-token.md +0 -17
- package/docs/examples/users/create.md +0 -19
- package/docs/examples/users/delete-identity.md +0 -15
- package/docs/examples/users/delete-mfa-authenticator.md +0 -16
- package/docs/examples/users/delete-session.md +0 -16
- package/docs/examples/users/delete-sessions.md +0 -15
- package/docs/examples/users/delete-target.md +0 -16
- package/docs/examples/users/delete.md +0 -15
- package/docs/examples/users/get-mfa-recovery-codes.md +0 -15
- package/docs/examples/users/get-prefs.md +0 -15
- package/docs/examples/users/get-target.md +0 -16
- package/docs/examples/users/get-usage.md +0 -15
- package/docs/examples/users/get.md +0 -15
- package/docs/examples/users/list-identities.md +0 -17
- package/docs/examples/users/list-logs.md +0 -17
- package/docs/examples/users/list-memberships.md +0 -18
- package/docs/examples/users/list-mfa-factors.md +0 -15
- package/docs/examples/users/list-sessions.md +0 -16
- package/docs/examples/users/list-targets.md +0 -17
- package/docs/examples/users/list.md +0 -17
- package/docs/examples/users/update-email-verification.md +0 -16
- package/docs/examples/users/update-email.md +0 -16
- package/docs/examples/users/update-impersonator.md +0 -16
- package/docs/examples/users/update-labels.md +0 -16
- package/docs/examples/users/update-mfa-recovery-codes.md +0 -15
- package/docs/examples/users/update-mfa.md +0 -16
- package/docs/examples/users/update-name.md +0 -16
- package/docs/examples/users/update-password.md +0 -16
- package/docs/examples/users/update-phone-verification.md +0 -16
- package/docs/examples/users/update-phone.md +0 -16
- package/docs/examples/users/update-prefs.md +0 -16
- package/docs/examples/users/update-status.md +0 -16
- package/docs/examples/users/update-target.md +0 -19
- package/docs/examples/vcs/create-repository-detection.md +0 -18
- package/docs/examples/vcs/create-repository.md +0 -17
- package/docs/examples/vcs/delete-installation.md +0 -15
- package/docs/examples/vcs/get-installation.md +0 -15
- package/docs/examples/vcs/get-repository-contents.md +0 -18
- package/docs/examples/vcs/get-repository.md +0 -16
- package/docs/examples/vcs/list-installations.md +0 -17
- package/docs/examples/vcs/list-repositories.md +0 -18
- package/docs/examples/vcs/list-repository-branches.md +0 -16
- package/docs/examples/vcs/update-external-deployments.md +0 -17
- package/docs/examples/webhooks/create.md +0 -22
- package/docs/examples/webhooks/delete.md +0 -15
- package/docs/examples/webhooks/get.md +0 -15
- package/docs/examples/webhooks/list.md +0 -16
- package/docs/examples/webhooks/update-signature.md +0 -15
- package/docs/examples/webhooks/update.md +0 -22
- package/rollup.config.js +0 -44
- package/src/channel.ts +0 -158
- package/src/client.ts +0 -1085
- package/src/enums/adapter.ts +0 -4
- package/src/enums/api-service.ts +0 -15
- package/src/enums/api.ts +0 -5
- package/src/enums/appwrite-migration-resource.ts +0 -27
- package/src/enums/attribute-status.ts +0 -7
- package/src/enums/auth-method.ts +0 -9
- package/src/enums/authentication-factor.ts +0 -6
- package/src/enums/authenticator-type.ts +0 -3
- package/src/enums/backup-services.ts +0 -8
- package/src/enums/billing-plan-group.ts +0 -5
- package/src/enums/browser-permission.ts +0 -22
- package/src/enums/browser.ts +0 -16
- package/src/enums/build-runtime.ts +0 -88
- package/src/enums/column-status.ts +0 -7
- package/src/enums/compression.ts +0 -5
- package/src/enums/console-resource-type.ts +0 -3
- package/src/enums/credit-card.ts +0 -19
- package/src/enums/database-type.ts +0 -6
- package/src/enums/databases-index-type.ts +0 -6
- package/src/enums/deployment-download-type.ts +0 -4
- package/src/enums/deployment-status.ts +0 -8
- package/src/enums/domain-purchase-status.ts +0 -6
- package/src/enums/domain-transfer-status-enum.ts +0 -10
- package/src/enums/email-template-locale.ts +0 -133
- package/src/enums/email-template-type.ts +0 -9
- package/src/enums/execution-method.ts +0 -9
- package/src/enums/execution-status.ts +0 -7
- package/src/enums/execution-trigger.ts +0 -5
- package/src/enums/filter-type.ts +0 -4
- package/src/enums/firebase-migration-resource.ts +0 -12
- package/src/enums/flag.ts +0 -197
- package/src/enums/framework.ts +0 -17
- package/src/enums/frameworks.ts +0 -17
- package/src/enums/health-antivirus-status.ts +0 -5
- package/src/enums/health-check-status.ts +0 -4
- package/src/enums/image-format.ts +0 -9
- package/src/enums/image-gravity.ts +0 -11
- package/src/enums/index-status.ts +0 -7
- package/src/enums/message-priority.ts +0 -4
- package/src/enums/message-status.ts +0 -7
- package/src/enums/messaging-provider-type.ts +0 -5
- package/src/enums/n-host-migration-resource.ts +0 -13
- package/src/enums/name.ts +0 -15
- package/src/enums/o-auth-provider.ts +0 -41
- package/src/enums/order-by.ts +0 -4
- package/src/enums/password-hash.ts +0 -13
- package/src/enums/platform-type.ts +0 -17
- package/src/enums/platform.ts +0 -4
- package/src/enums/project-usage-range.ts +0 -4
- package/src/enums/proxy-resource-type.ts +0 -4
- package/src/enums/proxy-rule-deployment-resource-type.ts +0 -4
- package/src/enums/proxy-rule-status.ts +0 -6
- package/src/enums/region.ts +0 -8
- package/src/enums/registration-type.ts +0 -6
- package/src/enums/relation-mutate.ts +0 -5
- package/src/enums/relationship-type.ts +0 -6
- package/src/enums/resource-type.ts +0 -6
- package/src/enums/runtime.ts +0 -88
- package/src/enums/runtimes.ts +0 -88
- package/src/enums/scopes.ts +0 -81
- package/src/enums/sms-template-locale.ts +0 -133
- package/src/enums/sms-template-type.ts +0 -6
- package/src/enums/smtp-encryption.ts +0 -5
- package/src/enums/smtp-secure.ts +0 -4
- package/src/enums/status-code.ts +0 -6
- package/src/enums/status.ts +0 -3
- package/src/enums/supabase-migration-resource.ts +0 -13
- package/src/enums/tables-db-index-type.ts +0 -6
- package/src/enums/template-reference-type.ts +0 -5
- package/src/enums/theme.ts +0 -4
- package/src/enums/timezone.ts +0 -421
- package/src/enums/usage-range.ts +0 -5
- package/src/enums/use-cases.ts +0 -16
- package/src/enums/vcs-detection-type.ts +0 -4
- package/src/enums/vcs-reference-type.ts +0 -5
- package/src/id.ts +0 -47
- package/src/operator.ts +0 -308
- package/src/query.ts +0 -576
- package/src/service.ts +0 -30
- package/src/services/account.ts +0 -4293
- package/src/services/activities.ts +0 -116
- package/src/services/assistant.ts +0 -67
- package/src/services/backups.ts +0 -754
- package/src/services/console.ts +0 -678
- package/src/services/databases.ts +0 -6376
- package/src/services/domains.ts +0 -4064
- package/src/services/functions.ts +0 -2224
- package/src/services/graphql.ts +0 -124
- package/src/services/health.ts +0 -1296
- package/src/services/locale.ts +0 -198
- package/src/services/messaging.ts +0 -5194
- package/src/services/migrations.ts +0 -1207
- package/src/services/organizations.ts +0 -2742
- package/src/services/project.ts +0 -404
- package/src/services/projects.ts +0 -4431
- package/src/services/proxy.ts +0 -532
- package/src/services/realtime.ts +0 -537
- package/src/services/sites.ts +0 -2131
- package/src/services/storage.ts +0 -1196
- package/src/services/tables-db.ts +0 -6256
- package/src/services/teams.ts +0 -959
- package/src/services/tokens.ts +0 -315
- package/src/services/users.ts +0 -3324
- package/src/services/vcs.ts +0 -676
- package/src/services/webhooks.ts +0 -451
- package/tsconfig.json +0 -24
|
@@ -1,1207 +0,0 @@
|
|
|
1
|
-
import { Service } from '../service';
|
|
2
|
-
import { AppwriteException, Client, type Payload, UploadProgress } from '../client';
|
|
3
|
-
import type { Models } from '../models';
|
|
4
|
-
|
|
5
|
-
import { AppwriteMigrationResource } from '../enums/appwrite-migration-resource';
|
|
6
|
-
import { FirebaseMigrationResource } from '../enums/firebase-migration-resource';
|
|
7
|
-
import { NHostMigrationResource } from '../enums/n-host-migration-resource';
|
|
8
|
-
import { SupabaseMigrationResource } from '../enums/supabase-migration-resource';
|
|
9
|
-
|
|
10
|
-
export class Migrations {
|
|
11
|
-
client: Client;
|
|
12
|
-
|
|
13
|
-
constructor(client: Client) {
|
|
14
|
-
this.client = client;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* List all migrations in the current project. This endpoint returns a list of all migrations including their status, progress, and any errors that occurred during the migration process.
|
|
19
|
-
*
|
|
20
|
-
* @param {string[]} params.queries - Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/databases#querying-documents). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: status, stage, source, destination, resources, resourceId, resourceType, statusCounters, resourceData, errors
|
|
21
|
-
* @param {string} params.search - Search term to filter your list results. Max length: 256 chars.
|
|
22
|
-
* @param {boolean} params.total - When set to false, the total count returned will be 0 and will not be calculated.
|
|
23
|
-
* @throws {AppwriteException}
|
|
24
|
-
* @returns {Promise<Models.MigrationList>}
|
|
25
|
-
*/
|
|
26
|
-
list(params?: { queries?: string[], search?: string, total?: boolean }): Promise<Models.MigrationList>;
|
|
27
|
-
/**
|
|
28
|
-
* List all migrations in the current project. This endpoint returns a list of all migrations including their status, progress, and any errors that occurred during the migration process.
|
|
29
|
-
*
|
|
30
|
-
* @param {string[]} queries - Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/databases#querying-documents). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: status, stage, source, destination, resources, resourceId, resourceType, statusCounters, resourceData, errors
|
|
31
|
-
* @param {string} search - Search term to filter your list results. Max length: 256 chars.
|
|
32
|
-
* @param {boolean} total - When set to false, the total count returned will be 0 and will not be calculated.
|
|
33
|
-
* @throws {AppwriteException}
|
|
34
|
-
* @returns {Promise<Models.MigrationList>}
|
|
35
|
-
* @deprecated Use the object parameter style method for a better developer experience.
|
|
36
|
-
*/
|
|
37
|
-
list(queries?: string[], search?: string, total?: boolean): Promise<Models.MigrationList>;
|
|
38
|
-
list(
|
|
39
|
-
paramsOrFirst?: { queries?: string[], search?: string, total?: boolean } | string[],
|
|
40
|
-
...rest: [(string)?, (boolean)?]
|
|
41
|
-
): Promise<Models.MigrationList> {
|
|
42
|
-
let params: { queries?: string[], search?: string, total?: boolean };
|
|
43
|
-
|
|
44
|
-
if (!paramsOrFirst || (paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
|
|
45
|
-
params = (paramsOrFirst || {}) as { queries?: string[], search?: string, total?: boolean };
|
|
46
|
-
} else {
|
|
47
|
-
params = {
|
|
48
|
-
queries: paramsOrFirst as string[],
|
|
49
|
-
search: rest[0] as string,
|
|
50
|
-
total: rest[1] as boolean
|
|
51
|
-
};
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
const queries = params.queries;
|
|
55
|
-
const search = params.search;
|
|
56
|
-
const total = params.total;
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
const apiPath = '/migrations';
|
|
60
|
-
const payload: Payload = {};
|
|
61
|
-
if (typeof queries !== 'undefined') {
|
|
62
|
-
payload['queries'] = queries;
|
|
63
|
-
}
|
|
64
|
-
if (typeof search !== 'undefined') {
|
|
65
|
-
payload['search'] = search;
|
|
66
|
-
}
|
|
67
|
-
if (typeof total !== 'undefined') {
|
|
68
|
-
payload['total'] = total;
|
|
69
|
-
}
|
|
70
|
-
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
71
|
-
|
|
72
|
-
const apiHeaders: { [header: string]: string } = {
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
return this.client.call(
|
|
76
|
-
'get',
|
|
77
|
-
uri,
|
|
78
|
-
apiHeaders,
|
|
79
|
-
payload
|
|
80
|
-
);
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
/**
|
|
84
|
-
* Migrate data from another Appwrite project to your current project. This endpoint allows you to migrate resources like databases, collections, documents, users, and files from an existing Appwrite project.
|
|
85
|
-
*
|
|
86
|
-
* @param {AppwriteMigrationResource[]} params.resources - List of resources to migrate
|
|
87
|
-
* @param {string} params.endpoint - Source Appwrite endpoint
|
|
88
|
-
* @param {string} params.projectId - Source Project ID
|
|
89
|
-
* @param {string} params.apiKey - Source API Key
|
|
90
|
-
* @throws {AppwriteException}
|
|
91
|
-
* @returns {Promise<Models.Migration>}
|
|
92
|
-
*/
|
|
93
|
-
createAppwriteMigration(params: { resources: AppwriteMigrationResource[], endpoint: string, projectId: string, apiKey: string }): Promise<Models.Migration>;
|
|
94
|
-
/**
|
|
95
|
-
* Migrate data from another Appwrite project to your current project. This endpoint allows you to migrate resources like databases, collections, documents, users, and files from an existing Appwrite project.
|
|
96
|
-
*
|
|
97
|
-
* @param {AppwriteMigrationResource[]} resources - List of resources to migrate
|
|
98
|
-
* @param {string} endpoint - Source Appwrite endpoint
|
|
99
|
-
* @param {string} projectId - Source Project ID
|
|
100
|
-
* @param {string} apiKey - Source API Key
|
|
101
|
-
* @throws {AppwriteException}
|
|
102
|
-
* @returns {Promise<Models.Migration>}
|
|
103
|
-
* @deprecated Use the object parameter style method for a better developer experience.
|
|
104
|
-
*/
|
|
105
|
-
createAppwriteMigration(resources: AppwriteMigrationResource[], endpoint: string, projectId: string, apiKey: string): Promise<Models.Migration>;
|
|
106
|
-
createAppwriteMigration(
|
|
107
|
-
paramsOrFirst: { resources: AppwriteMigrationResource[], endpoint: string, projectId: string, apiKey: string } | AppwriteMigrationResource[],
|
|
108
|
-
...rest: [(string)?, (string)?, (string)?]
|
|
109
|
-
): Promise<Models.Migration> {
|
|
110
|
-
let params: { resources: AppwriteMigrationResource[], endpoint: string, projectId: string, apiKey: string };
|
|
111
|
-
|
|
112
|
-
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst) && ('resources' in paramsOrFirst || 'endpoint' in paramsOrFirst || 'projectId' in paramsOrFirst || 'apiKey' in paramsOrFirst))) {
|
|
113
|
-
params = (paramsOrFirst || {}) as { resources: AppwriteMigrationResource[], endpoint: string, projectId: string, apiKey: string };
|
|
114
|
-
} else {
|
|
115
|
-
params = {
|
|
116
|
-
resources: paramsOrFirst as AppwriteMigrationResource[],
|
|
117
|
-
endpoint: rest[0] as string,
|
|
118
|
-
projectId: rest[1] as string,
|
|
119
|
-
apiKey: rest[2] as string
|
|
120
|
-
};
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
const resources = params.resources;
|
|
124
|
-
const endpoint = params.endpoint;
|
|
125
|
-
const projectId = params.projectId;
|
|
126
|
-
const apiKey = params.apiKey;
|
|
127
|
-
|
|
128
|
-
if (typeof resources === 'undefined') {
|
|
129
|
-
throw new AppwriteException('Missing required parameter: "resources"');
|
|
130
|
-
}
|
|
131
|
-
if (typeof endpoint === 'undefined') {
|
|
132
|
-
throw new AppwriteException('Missing required parameter: "endpoint"');
|
|
133
|
-
}
|
|
134
|
-
if (typeof projectId === 'undefined') {
|
|
135
|
-
throw new AppwriteException('Missing required parameter: "projectId"');
|
|
136
|
-
}
|
|
137
|
-
if (typeof apiKey === 'undefined') {
|
|
138
|
-
throw new AppwriteException('Missing required parameter: "apiKey"');
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
const apiPath = '/migrations/appwrite';
|
|
142
|
-
const payload: Payload = {};
|
|
143
|
-
if (typeof resources !== 'undefined') {
|
|
144
|
-
payload['resources'] = resources;
|
|
145
|
-
}
|
|
146
|
-
if (typeof endpoint !== 'undefined') {
|
|
147
|
-
payload['endpoint'] = endpoint;
|
|
148
|
-
}
|
|
149
|
-
if (typeof projectId !== 'undefined') {
|
|
150
|
-
payload['projectId'] = projectId;
|
|
151
|
-
}
|
|
152
|
-
if (typeof apiKey !== 'undefined') {
|
|
153
|
-
payload['apiKey'] = apiKey;
|
|
154
|
-
}
|
|
155
|
-
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
156
|
-
|
|
157
|
-
const apiHeaders: { [header: string]: string } = {
|
|
158
|
-
'content-type': 'application/json',
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
return this.client.call(
|
|
162
|
-
'post',
|
|
163
|
-
uri,
|
|
164
|
-
apiHeaders,
|
|
165
|
-
payload
|
|
166
|
-
);
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
/**
|
|
170
|
-
* Generate a report of the data in an Appwrite project before migrating. This endpoint analyzes the source project and returns information about the resources that can be migrated.
|
|
171
|
-
*
|
|
172
|
-
* @param {AppwriteMigrationResource[]} params.resources - List of resources to migrate
|
|
173
|
-
* @param {string} params.endpoint - Source's Appwrite Endpoint
|
|
174
|
-
* @param {string} params.projectID - Source's Project ID
|
|
175
|
-
* @param {string} params.key - Source's API Key
|
|
176
|
-
* @throws {AppwriteException}
|
|
177
|
-
* @returns {Promise<Models.MigrationReport>}
|
|
178
|
-
*/
|
|
179
|
-
getAppwriteReport(params: { resources: AppwriteMigrationResource[], endpoint: string, projectID: string, key: string }): Promise<Models.MigrationReport>;
|
|
180
|
-
/**
|
|
181
|
-
* Generate a report of the data in an Appwrite project before migrating. This endpoint analyzes the source project and returns information about the resources that can be migrated.
|
|
182
|
-
*
|
|
183
|
-
* @param {AppwriteMigrationResource[]} resources - List of resources to migrate
|
|
184
|
-
* @param {string} endpoint - Source's Appwrite Endpoint
|
|
185
|
-
* @param {string} projectID - Source's Project ID
|
|
186
|
-
* @param {string} key - Source's API Key
|
|
187
|
-
* @throws {AppwriteException}
|
|
188
|
-
* @returns {Promise<Models.MigrationReport>}
|
|
189
|
-
* @deprecated Use the object parameter style method for a better developer experience.
|
|
190
|
-
*/
|
|
191
|
-
getAppwriteReport(resources: AppwriteMigrationResource[], endpoint: string, projectID: string, key: string): Promise<Models.MigrationReport>;
|
|
192
|
-
getAppwriteReport(
|
|
193
|
-
paramsOrFirst: { resources: AppwriteMigrationResource[], endpoint: string, projectID: string, key: string } | AppwriteMigrationResource[],
|
|
194
|
-
...rest: [(string)?, (string)?, (string)?]
|
|
195
|
-
): Promise<Models.MigrationReport> {
|
|
196
|
-
let params: { resources: AppwriteMigrationResource[], endpoint: string, projectID: string, key: string };
|
|
197
|
-
|
|
198
|
-
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst) && ('resources' in paramsOrFirst || 'endpoint' in paramsOrFirst || 'projectID' in paramsOrFirst || 'key' in paramsOrFirst))) {
|
|
199
|
-
params = (paramsOrFirst || {}) as { resources: AppwriteMigrationResource[], endpoint: string, projectID: string, key: string };
|
|
200
|
-
} else {
|
|
201
|
-
params = {
|
|
202
|
-
resources: paramsOrFirst as AppwriteMigrationResource[],
|
|
203
|
-
endpoint: rest[0] as string,
|
|
204
|
-
projectID: rest[1] as string,
|
|
205
|
-
key: rest[2] as string
|
|
206
|
-
};
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
const resources = params.resources;
|
|
210
|
-
const endpoint = params.endpoint;
|
|
211
|
-
const projectID = params.projectID;
|
|
212
|
-
const key = params.key;
|
|
213
|
-
|
|
214
|
-
if (typeof resources === 'undefined') {
|
|
215
|
-
throw new AppwriteException('Missing required parameter: "resources"');
|
|
216
|
-
}
|
|
217
|
-
if (typeof endpoint === 'undefined') {
|
|
218
|
-
throw new AppwriteException('Missing required parameter: "endpoint"');
|
|
219
|
-
}
|
|
220
|
-
if (typeof projectID === 'undefined') {
|
|
221
|
-
throw new AppwriteException('Missing required parameter: "projectID"');
|
|
222
|
-
}
|
|
223
|
-
if (typeof key === 'undefined') {
|
|
224
|
-
throw new AppwriteException('Missing required parameter: "key"');
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
const apiPath = '/migrations/appwrite/report';
|
|
228
|
-
const payload: Payload = {};
|
|
229
|
-
if (typeof resources !== 'undefined') {
|
|
230
|
-
payload['resources'] = resources;
|
|
231
|
-
}
|
|
232
|
-
if (typeof endpoint !== 'undefined') {
|
|
233
|
-
payload['endpoint'] = endpoint;
|
|
234
|
-
}
|
|
235
|
-
if (typeof projectID !== 'undefined') {
|
|
236
|
-
payload['projectID'] = projectID;
|
|
237
|
-
}
|
|
238
|
-
if (typeof key !== 'undefined') {
|
|
239
|
-
payload['key'] = key;
|
|
240
|
-
}
|
|
241
|
-
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
242
|
-
|
|
243
|
-
const apiHeaders: { [header: string]: string } = {
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
return this.client.call(
|
|
247
|
-
'get',
|
|
248
|
-
uri,
|
|
249
|
-
apiHeaders,
|
|
250
|
-
payload
|
|
251
|
-
);
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
/**
|
|
255
|
-
* Export documents to a CSV file from your Appwrite database. This endpoint allows you to export documents to a CSV file stored in a secure internal bucket. You'll receive an email with a download link when the export is complete.
|
|
256
|
-
*
|
|
257
|
-
* @param {string} params.resourceId - Composite ID in the format {databaseId:collectionId}, identifying a collection within a database to export.
|
|
258
|
-
* @param {string} params.filename - The name of the file to be created for the export, excluding the .csv extension.
|
|
259
|
-
* @param {string[]} params.columns - List of attributes to export. If empty, all attributes will be exported. You can use the `*` wildcard to export all attributes from the collection.
|
|
260
|
-
* @param {string[]} params.queries - Array of query strings generated using the Query class provided by the SDK to filter documents to export. [Learn more about queries](https://appwrite.io/docs/databases#querying-documents). Maximum of 100 queries are allowed, each 4096 characters long.
|
|
261
|
-
* @param {string} params.delimiter - The character that separates each column value. Default is comma.
|
|
262
|
-
* @param {string} params.enclosure - The character that encloses each column value. Default is double quotes.
|
|
263
|
-
* @param {string} params.escape - The escape character for the enclosure character. Default is double quotes.
|
|
264
|
-
* @param {boolean} params.header - Whether to include the header row with column names. Default is true.
|
|
265
|
-
* @param {boolean} params.notify - Set to true to receive an email when the export is complete. Default is true.
|
|
266
|
-
* @throws {AppwriteException}
|
|
267
|
-
* @returns {Promise<Models.Migration>}
|
|
268
|
-
*/
|
|
269
|
-
createCSVExport(params: { resourceId: string, filename: string, columns?: string[], queries?: string[], delimiter?: string, enclosure?: string, escape?: string, header?: boolean, notify?: boolean }): Promise<Models.Migration>;
|
|
270
|
-
/**
|
|
271
|
-
* Export documents to a CSV file from your Appwrite database. This endpoint allows you to export documents to a CSV file stored in a secure internal bucket. You'll receive an email with a download link when the export is complete.
|
|
272
|
-
*
|
|
273
|
-
* @param {string} resourceId - Composite ID in the format {databaseId:collectionId}, identifying a collection within a database to export.
|
|
274
|
-
* @param {string} filename - The name of the file to be created for the export, excluding the .csv extension.
|
|
275
|
-
* @param {string[]} columns - List of attributes to export. If empty, all attributes will be exported. You can use the `*` wildcard to export all attributes from the collection.
|
|
276
|
-
* @param {string[]} queries - Array of query strings generated using the Query class provided by the SDK to filter documents to export. [Learn more about queries](https://appwrite.io/docs/databases#querying-documents). Maximum of 100 queries are allowed, each 4096 characters long.
|
|
277
|
-
* @param {string} delimiter - The character that separates each column value. Default is comma.
|
|
278
|
-
* @param {string} enclosure - The character that encloses each column value. Default is double quotes.
|
|
279
|
-
* @param {string} escape - The escape character for the enclosure character. Default is double quotes.
|
|
280
|
-
* @param {boolean} header - Whether to include the header row with column names. Default is true.
|
|
281
|
-
* @param {boolean} notify - Set to true to receive an email when the export is complete. Default is true.
|
|
282
|
-
* @throws {AppwriteException}
|
|
283
|
-
* @returns {Promise<Models.Migration>}
|
|
284
|
-
* @deprecated Use the object parameter style method for a better developer experience.
|
|
285
|
-
*/
|
|
286
|
-
createCSVExport(resourceId: string, filename: string, columns?: string[], queries?: string[], delimiter?: string, enclosure?: string, escape?: string, header?: boolean, notify?: boolean): Promise<Models.Migration>;
|
|
287
|
-
createCSVExport(
|
|
288
|
-
paramsOrFirst: { resourceId: string, filename: string, columns?: string[], queries?: string[], delimiter?: string, enclosure?: string, escape?: string, header?: boolean, notify?: boolean } | string,
|
|
289
|
-
...rest: [(string)?, (string[])?, (string[])?, (string)?, (string)?, (string)?, (boolean)?, (boolean)?]
|
|
290
|
-
): Promise<Models.Migration> {
|
|
291
|
-
let params: { resourceId: string, filename: string, columns?: string[], queries?: string[], delimiter?: string, enclosure?: string, escape?: string, header?: boolean, notify?: boolean };
|
|
292
|
-
|
|
293
|
-
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
|
|
294
|
-
params = (paramsOrFirst || {}) as { resourceId: string, filename: string, columns?: string[], queries?: string[], delimiter?: string, enclosure?: string, escape?: string, header?: boolean, notify?: boolean };
|
|
295
|
-
} else {
|
|
296
|
-
params = {
|
|
297
|
-
resourceId: paramsOrFirst as string,
|
|
298
|
-
filename: rest[0] as string,
|
|
299
|
-
columns: rest[1] as string[],
|
|
300
|
-
queries: rest[2] as string[],
|
|
301
|
-
delimiter: rest[3] as string,
|
|
302
|
-
enclosure: rest[4] as string,
|
|
303
|
-
escape: rest[5] as string,
|
|
304
|
-
header: rest[6] as boolean,
|
|
305
|
-
notify: rest[7] as boolean
|
|
306
|
-
};
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
const resourceId = params.resourceId;
|
|
310
|
-
const filename = params.filename;
|
|
311
|
-
const columns = params.columns;
|
|
312
|
-
const queries = params.queries;
|
|
313
|
-
const delimiter = params.delimiter;
|
|
314
|
-
const enclosure = params.enclosure;
|
|
315
|
-
const escape = params.escape;
|
|
316
|
-
const header = params.header;
|
|
317
|
-
const notify = params.notify;
|
|
318
|
-
|
|
319
|
-
if (typeof resourceId === 'undefined') {
|
|
320
|
-
throw new AppwriteException('Missing required parameter: "resourceId"');
|
|
321
|
-
}
|
|
322
|
-
if (typeof filename === 'undefined') {
|
|
323
|
-
throw new AppwriteException('Missing required parameter: "filename"');
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
const apiPath = '/migrations/csv/exports';
|
|
327
|
-
const payload: Payload = {};
|
|
328
|
-
if (typeof resourceId !== 'undefined') {
|
|
329
|
-
payload['resourceId'] = resourceId;
|
|
330
|
-
}
|
|
331
|
-
if (typeof filename !== 'undefined') {
|
|
332
|
-
payload['filename'] = filename;
|
|
333
|
-
}
|
|
334
|
-
if (typeof columns !== 'undefined') {
|
|
335
|
-
payload['columns'] = columns;
|
|
336
|
-
}
|
|
337
|
-
if (typeof queries !== 'undefined') {
|
|
338
|
-
payload['queries'] = queries;
|
|
339
|
-
}
|
|
340
|
-
if (typeof delimiter !== 'undefined') {
|
|
341
|
-
payload['delimiter'] = delimiter;
|
|
342
|
-
}
|
|
343
|
-
if (typeof enclosure !== 'undefined') {
|
|
344
|
-
payload['enclosure'] = enclosure;
|
|
345
|
-
}
|
|
346
|
-
if (typeof escape !== 'undefined') {
|
|
347
|
-
payload['escape'] = escape;
|
|
348
|
-
}
|
|
349
|
-
if (typeof header !== 'undefined') {
|
|
350
|
-
payload['header'] = header;
|
|
351
|
-
}
|
|
352
|
-
if (typeof notify !== 'undefined') {
|
|
353
|
-
payload['notify'] = notify;
|
|
354
|
-
}
|
|
355
|
-
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
356
|
-
|
|
357
|
-
const apiHeaders: { [header: string]: string } = {
|
|
358
|
-
'content-type': 'application/json',
|
|
359
|
-
}
|
|
360
|
-
|
|
361
|
-
return this.client.call(
|
|
362
|
-
'post',
|
|
363
|
-
uri,
|
|
364
|
-
apiHeaders,
|
|
365
|
-
payload
|
|
366
|
-
);
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
/**
|
|
370
|
-
* Import documents from a CSV file into your Appwrite database. This endpoint allows you to import documents from a CSV file uploaded to Appwrite Storage bucket.
|
|
371
|
-
*
|
|
372
|
-
* @param {string} params.bucketId - Storage bucket unique ID. You can create a new storage bucket using the Storage service [server integration](https://appwrite.io/docs/server/storage#createBucket).
|
|
373
|
-
* @param {string} params.fileId - File ID.
|
|
374
|
-
* @param {string} params.resourceId - Composite ID in the format {databaseId:collectionId}, identifying a collection within a database.
|
|
375
|
-
* @param {boolean} params.internalFile - Is the file stored in an internal bucket?
|
|
376
|
-
* @throws {AppwriteException}
|
|
377
|
-
* @returns {Promise<Models.Migration>}
|
|
378
|
-
*/
|
|
379
|
-
createCSVImport(params: { bucketId: string, fileId: string, resourceId: string, internalFile?: boolean }): Promise<Models.Migration>;
|
|
380
|
-
/**
|
|
381
|
-
* Import documents from a CSV file into your Appwrite database. This endpoint allows you to import documents from a CSV file uploaded to Appwrite Storage bucket.
|
|
382
|
-
*
|
|
383
|
-
* @param {string} bucketId - Storage bucket unique ID. You can create a new storage bucket using the Storage service [server integration](https://appwrite.io/docs/server/storage#createBucket).
|
|
384
|
-
* @param {string} fileId - File ID.
|
|
385
|
-
* @param {string} resourceId - Composite ID in the format {databaseId:collectionId}, identifying a collection within a database.
|
|
386
|
-
* @param {boolean} internalFile - Is the file stored in an internal bucket?
|
|
387
|
-
* @throws {AppwriteException}
|
|
388
|
-
* @returns {Promise<Models.Migration>}
|
|
389
|
-
* @deprecated Use the object parameter style method for a better developer experience.
|
|
390
|
-
*/
|
|
391
|
-
createCSVImport(bucketId: string, fileId: string, resourceId: string, internalFile?: boolean): Promise<Models.Migration>;
|
|
392
|
-
createCSVImport(
|
|
393
|
-
paramsOrFirst: { bucketId: string, fileId: string, resourceId: string, internalFile?: boolean } | string,
|
|
394
|
-
...rest: [(string)?, (string)?, (boolean)?]
|
|
395
|
-
): Promise<Models.Migration> {
|
|
396
|
-
let params: { bucketId: string, fileId: string, resourceId: string, internalFile?: boolean };
|
|
397
|
-
|
|
398
|
-
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
|
|
399
|
-
params = (paramsOrFirst || {}) as { bucketId: string, fileId: string, resourceId: string, internalFile?: boolean };
|
|
400
|
-
} else {
|
|
401
|
-
params = {
|
|
402
|
-
bucketId: paramsOrFirst as string,
|
|
403
|
-
fileId: rest[0] as string,
|
|
404
|
-
resourceId: rest[1] as string,
|
|
405
|
-
internalFile: rest[2] as boolean
|
|
406
|
-
};
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
const bucketId = params.bucketId;
|
|
410
|
-
const fileId = params.fileId;
|
|
411
|
-
const resourceId = params.resourceId;
|
|
412
|
-
const internalFile = params.internalFile;
|
|
413
|
-
|
|
414
|
-
if (typeof bucketId === 'undefined') {
|
|
415
|
-
throw new AppwriteException('Missing required parameter: "bucketId"');
|
|
416
|
-
}
|
|
417
|
-
if (typeof fileId === 'undefined') {
|
|
418
|
-
throw new AppwriteException('Missing required parameter: "fileId"');
|
|
419
|
-
}
|
|
420
|
-
if (typeof resourceId === 'undefined') {
|
|
421
|
-
throw new AppwriteException('Missing required parameter: "resourceId"');
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
const apiPath = '/migrations/csv/imports';
|
|
425
|
-
const payload: Payload = {};
|
|
426
|
-
if (typeof bucketId !== 'undefined') {
|
|
427
|
-
payload['bucketId'] = bucketId;
|
|
428
|
-
}
|
|
429
|
-
if (typeof fileId !== 'undefined') {
|
|
430
|
-
payload['fileId'] = fileId;
|
|
431
|
-
}
|
|
432
|
-
if (typeof resourceId !== 'undefined') {
|
|
433
|
-
payload['resourceId'] = resourceId;
|
|
434
|
-
}
|
|
435
|
-
if (typeof internalFile !== 'undefined') {
|
|
436
|
-
payload['internalFile'] = internalFile;
|
|
437
|
-
}
|
|
438
|
-
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
439
|
-
|
|
440
|
-
const apiHeaders: { [header: string]: string } = {
|
|
441
|
-
'content-type': 'application/json',
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
return this.client.call(
|
|
445
|
-
'post',
|
|
446
|
-
uri,
|
|
447
|
-
apiHeaders,
|
|
448
|
-
payload
|
|
449
|
-
);
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
/**
|
|
453
|
-
* Migrate data from a Firebase project to your Appwrite project. This endpoint allows you to migrate resources like authentication and other supported services from a Firebase project.
|
|
454
|
-
*
|
|
455
|
-
* @param {FirebaseMigrationResource[]} params.resources - List of resources to migrate
|
|
456
|
-
* @param {string} params.serviceAccount - JSON of the Firebase service account credentials
|
|
457
|
-
* @throws {AppwriteException}
|
|
458
|
-
* @returns {Promise<Models.Migration>}
|
|
459
|
-
*/
|
|
460
|
-
createFirebaseMigration(params: { resources: FirebaseMigrationResource[], serviceAccount: string }): Promise<Models.Migration>;
|
|
461
|
-
/**
|
|
462
|
-
* Migrate data from a Firebase project to your Appwrite project. This endpoint allows you to migrate resources like authentication and other supported services from a Firebase project.
|
|
463
|
-
*
|
|
464
|
-
* @param {FirebaseMigrationResource[]} resources - List of resources to migrate
|
|
465
|
-
* @param {string} serviceAccount - JSON of the Firebase service account credentials
|
|
466
|
-
* @throws {AppwriteException}
|
|
467
|
-
* @returns {Promise<Models.Migration>}
|
|
468
|
-
* @deprecated Use the object parameter style method for a better developer experience.
|
|
469
|
-
*/
|
|
470
|
-
createFirebaseMigration(resources: FirebaseMigrationResource[], serviceAccount: string): Promise<Models.Migration>;
|
|
471
|
-
createFirebaseMigration(
|
|
472
|
-
paramsOrFirst: { resources: FirebaseMigrationResource[], serviceAccount: string } | FirebaseMigrationResource[],
|
|
473
|
-
...rest: [(string)?]
|
|
474
|
-
): Promise<Models.Migration> {
|
|
475
|
-
let params: { resources: FirebaseMigrationResource[], serviceAccount: string };
|
|
476
|
-
|
|
477
|
-
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst) && ('resources' in paramsOrFirst || 'serviceAccount' in paramsOrFirst))) {
|
|
478
|
-
params = (paramsOrFirst || {}) as { resources: FirebaseMigrationResource[], serviceAccount: string };
|
|
479
|
-
} else {
|
|
480
|
-
params = {
|
|
481
|
-
resources: paramsOrFirst as FirebaseMigrationResource[],
|
|
482
|
-
serviceAccount: rest[0] as string
|
|
483
|
-
};
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
const resources = params.resources;
|
|
487
|
-
const serviceAccount = params.serviceAccount;
|
|
488
|
-
|
|
489
|
-
if (typeof resources === 'undefined') {
|
|
490
|
-
throw new AppwriteException('Missing required parameter: "resources"');
|
|
491
|
-
}
|
|
492
|
-
if (typeof serviceAccount === 'undefined') {
|
|
493
|
-
throw new AppwriteException('Missing required parameter: "serviceAccount"');
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
const apiPath = '/migrations/firebase';
|
|
497
|
-
const payload: Payload = {};
|
|
498
|
-
if (typeof resources !== 'undefined') {
|
|
499
|
-
payload['resources'] = resources;
|
|
500
|
-
}
|
|
501
|
-
if (typeof serviceAccount !== 'undefined') {
|
|
502
|
-
payload['serviceAccount'] = serviceAccount;
|
|
503
|
-
}
|
|
504
|
-
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
505
|
-
|
|
506
|
-
const apiHeaders: { [header: string]: string } = {
|
|
507
|
-
'content-type': 'application/json',
|
|
508
|
-
}
|
|
509
|
-
|
|
510
|
-
return this.client.call(
|
|
511
|
-
'post',
|
|
512
|
-
uri,
|
|
513
|
-
apiHeaders,
|
|
514
|
-
payload
|
|
515
|
-
);
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
/**
|
|
519
|
-
* Generate a report of the data in a Firebase project before migrating. This endpoint analyzes the source project and returns information about the resources that can be migrated.
|
|
520
|
-
*
|
|
521
|
-
* @param {FirebaseMigrationResource[]} params.resources - List of resources to migrate
|
|
522
|
-
* @param {string} params.serviceAccount - JSON of the Firebase service account credentials
|
|
523
|
-
* @throws {AppwriteException}
|
|
524
|
-
* @returns {Promise<Models.MigrationReport>}
|
|
525
|
-
*/
|
|
526
|
-
getFirebaseReport(params: { resources: FirebaseMigrationResource[], serviceAccount: string }): Promise<Models.MigrationReport>;
|
|
527
|
-
/**
|
|
528
|
-
* Generate a report of the data in a Firebase project before migrating. This endpoint analyzes the source project and returns information about the resources that can be migrated.
|
|
529
|
-
*
|
|
530
|
-
* @param {FirebaseMigrationResource[]} resources - List of resources to migrate
|
|
531
|
-
* @param {string} serviceAccount - JSON of the Firebase service account credentials
|
|
532
|
-
* @throws {AppwriteException}
|
|
533
|
-
* @returns {Promise<Models.MigrationReport>}
|
|
534
|
-
* @deprecated Use the object parameter style method for a better developer experience.
|
|
535
|
-
*/
|
|
536
|
-
getFirebaseReport(resources: FirebaseMigrationResource[], serviceAccount: string): Promise<Models.MigrationReport>;
|
|
537
|
-
getFirebaseReport(
|
|
538
|
-
paramsOrFirst: { resources: FirebaseMigrationResource[], serviceAccount: string } | FirebaseMigrationResource[],
|
|
539
|
-
...rest: [(string)?]
|
|
540
|
-
): Promise<Models.MigrationReport> {
|
|
541
|
-
let params: { resources: FirebaseMigrationResource[], serviceAccount: string };
|
|
542
|
-
|
|
543
|
-
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst) && ('resources' in paramsOrFirst || 'serviceAccount' in paramsOrFirst))) {
|
|
544
|
-
params = (paramsOrFirst || {}) as { resources: FirebaseMigrationResource[], serviceAccount: string };
|
|
545
|
-
} else {
|
|
546
|
-
params = {
|
|
547
|
-
resources: paramsOrFirst as FirebaseMigrationResource[],
|
|
548
|
-
serviceAccount: rest[0] as string
|
|
549
|
-
};
|
|
550
|
-
}
|
|
551
|
-
|
|
552
|
-
const resources = params.resources;
|
|
553
|
-
const serviceAccount = params.serviceAccount;
|
|
554
|
-
|
|
555
|
-
if (typeof resources === 'undefined') {
|
|
556
|
-
throw new AppwriteException('Missing required parameter: "resources"');
|
|
557
|
-
}
|
|
558
|
-
if (typeof serviceAccount === 'undefined') {
|
|
559
|
-
throw new AppwriteException('Missing required parameter: "serviceAccount"');
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
const apiPath = '/migrations/firebase/report';
|
|
563
|
-
const payload: Payload = {};
|
|
564
|
-
if (typeof resources !== 'undefined') {
|
|
565
|
-
payload['resources'] = resources;
|
|
566
|
-
}
|
|
567
|
-
if (typeof serviceAccount !== 'undefined') {
|
|
568
|
-
payload['serviceAccount'] = serviceAccount;
|
|
569
|
-
}
|
|
570
|
-
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
571
|
-
|
|
572
|
-
const apiHeaders: { [header: string]: string } = {
|
|
573
|
-
}
|
|
574
|
-
|
|
575
|
-
return this.client.call(
|
|
576
|
-
'get',
|
|
577
|
-
uri,
|
|
578
|
-
apiHeaders,
|
|
579
|
-
payload
|
|
580
|
-
);
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
/**
|
|
584
|
-
* Migrate data from an NHost project to your Appwrite project. This endpoint allows you to migrate resources like authentication, databases, and other supported services from an NHost project.
|
|
585
|
-
*
|
|
586
|
-
* @param {NHostMigrationResource[]} params.resources - List of resources to migrate
|
|
587
|
-
* @param {string} params.subdomain - Source's Subdomain
|
|
588
|
-
* @param {string} params.region - Source's Region
|
|
589
|
-
* @param {string} params.adminSecret - Source's Admin Secret
|
|
590
|
-
* @param {string} params.database - Source's Database Name
|
|
591
|
-
* @param {string} params.username - Source's Database Username
|
|
592
|
-
* @param {string} params.password - Source's Database Password
|
|
593
|
-
* @param {number} params.port - Source's Database Port
|
|
594
|
-
* @throws {AppwriteException}
|
|
595
|
-
* @returns {Promise<Models.Migration>}
|
|
596
|
-
*/
|
|
597
|
-
createNHostMigration(params: { resources: NHostMigrationResource[], subdomain: string, region: string, adminSecret: string, database: string, username: string, password: string, port?: number }): Promise<Models.Migration>;
|
|
598
|
-
/**
|
|
599
|
-
* Migrate data from an NHost project to your Appwrite project. This endpoint allows you to migrate resources like authentication, databases, and other supported services from an NHost project.
|
|
600
|
-
*
|
|
601
|
-
* @param {NHostMigrationResource[]} resources - List of resources to migrate
|
|
602
|
-
* @param {string} subdomain - Source's Subdomain
|
|
603
|
-
* @param {string} region - Source's Region
|
|
604
|
-
* @param {string} adminSecret - Source's Admin Secret
|
|
605
|
-
* @param {string} database - Source's Database Name
|
|
606
|
-
* @param {string} username - Source's Database Username
|
|
607
|
-
* @param {string} password - Source's Database Password
|
|
608
|
-
* @param {number} port - Source's Database Port
|
|
609
|
-
* @throws {AppwriteException}
|
|
610
|
-
* @returns {Promise<Models.Migration>}
|
|
611
|
-
* @deprecated Use the object parameter style method for a better developer experience.
|
|
612
|
-
*/
|
|
613
|
-
createNHostMigration(resources: NHostMigrationResource[], subdomain: string, region: string, adminSecret: string, database: string, username: string, password: string, port?: number): Promise<Models.Migration>;
|
|
614
|
-
createNHostMigration(
|
|
615
|
-
paramsOrFirst: { resources: NHostMigrationResource[], subdomain: string, region: string, adminSecret: string, database: string, username: string, password: string, port?: number } | NHostMigrationResource[],
|
|
616
|
-
...rest: [(string)?, (string)?, (string)?, (string)?, (string)?, (string)?, (number)?]
|
|
617
|
-
): Promise<Models.Migration> {
|
|
618
|
-
let params: { resources: NHostMigrationResource[], subdomain: string, region: string, adminSecret: string, database: string, username: string, password: string, port?: number };
|
|
619
|
-
|
|
620
|
-
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst) && ('resources' in paramsOrFirst || 'subdomain' in paramsOrFirst || 'region' in paramsOrFirst || 'adminSecret' in paramsOrFirst || 'database' in paramsOrFirst || 'username' in paramsOrFirst || 'password' in paramsOrFirst || 'port' in paramsOrFirst))) {
|
|
621
|
-
params = (paramsOrFirst || {}) as { resources: NHostMigrationResource[], subdomain: string, region: string, adminSecret: string, database: string, username: string, password: string, port?: number };
|
|
622
|
-
} else {
|
|
623
|
-
params = {
|
|
624
|
-
resources: paramsOrFirst as NHostMigrationResource[],
|
|
625
|
-
subdomain: rest[0] as string,
|
|
626
|
-
region: rest[1] as string,
|
|
627
|
-
adminSecret: rest[2] as string,
|
|
628
|
-
database: rest[3] as string,
|
|
629
|
-
username: rest[4] as string,
|
|
630
|
-
password: rest[5] as string,
|
|
631
|
-
port: rest[6] as number
|
|
632
|
-
};
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
const resources = params.resources;
|
|
636
|
-
const subdomain = params.subdomain;
|
|
637
|
-
const region = params.region;
|
|
638
|
-
const adminSecret = params.adminSecret;
|
|
639
|
-
const database = params.database;
|
|
640
|
-
const username = params.username;
|
|
641
|
-
const password = params.password;
|
|
642
|
-
const port = params.port;
|
|
643
|
-
|
|
644
|
-
if (typeof resources === 'undefined') {
|
|
645
|
-
throw new AppwriteException('Missing required parameter: "resources"');
|
|
646
|
-
}
|
|
647
|
-
if (typeof subdomain === 'undefined') {
|
|
648
|
-
throw new AppwriteException('Missing required parameter: "subdomain"');
|
|
649
|
-
}
|
|
650
|
-
if (typeof region === 'undefined') {
|
|
651
|
-
throw new AppwriteException('Missing required parameter: "region"');
|
|
652
|
-
}
|
|
653
|
-
if (typeof adminSecret === 'undefined') {
|
|
654
|
-
throw new AppwriteException('Missing required parameter: "adminSecret"');
|
|
655
|
-
}
|
|
656
|
-
if (typeof database === 'undefined') {
|
|
657
|
-
throw new AppwriteException('Missing required parameter: "database"');
|
|
658
|
-
}
|
|
659
|
-
if (typeof username === 'undefined') {
|
|
660
|
-
throw new AppwriteException('Missing required parameter: "username"');
|
|
661
|
-
}
|
|
662
|
-
if (typeof password === 'undefined') {
|
|
663
|
-
throw new AppwriteException('Missing required parameter: "password"');
|
|
664
|
-
}
|
|
665
|
-
|
|
666
|
-
const apiPath = '/migrations/nhost';
|
|
667
|
-
const payload: Payload = {};
|
|
668
|
-
if (typeof resources !== 'undefined') {
|
|
669
|
-
payload['resources'] = resources;
|
|
670
|
-
}
|
|
671
|
-
if (typeof subdomain !== 'undefined') {
|
|
672
|
-
payload['subdomain'] = subdomain;
|
|
673
|
-
}
|
|
674
|
-
if (typeof region !== 'undefined') {
|
|
675
|
-
payload['region'] = region;
|
|
676
|
-
}
|
|
677
|
-
if (typeof adminSecret !== 'undefined') {
|
|
678
|
-
payload['adminSecret'] = adminSecret;
|
|
679
|
-
}
|
|
680
|
-
if (typeof database !== 'undefined') {
|
|
681
|
-
payload['database'] = database;
|
|
682
|
-
}
|
|
683
|
-
if (typeof username !== 'undefined') {
|
|
684
|
-
payload['username'] = username;
|
|
685
|
-
}
|
|
686
|
-
if (typeof password !== 'undefined') {
|
|
687
|
-
payload['password'] = password;
|
|
688
|
-
}
|
|
689
|
-
if (typeof port !== 'undefined') {
|
|
690
|
-
payload['port'] = port;
|
|
691
|
-
}
|
|
692
|
-
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
693
|
-
|
|
694
|
-
const apiHeaders: { [header: string]: string } = {
|
|
695
|
-
'content-type': 'application/json',
|
|
696
|
-
}
|
|
697
|
-
|
|
698
|
-
return this.client.call(
|
|
699
|
-
'post',
|
|
700
|
-
uri,
|
|
701
|
-
apiHeaders,
|
|
702
|
-
payload
|
|
703
|
-
);
|
|
704
|
-
}
|
|
705
|
-
|
|
706
|
-
/**
|
|
707
|
-
* Generate a detailed report of the data in an NHost project before migrating. This endpoint analyzes the source project and returns information about the resources that can be migrated.
|
|
708
|
-
*
|
|
709
|
-
* @param {NHostMigrationResource[]} params.resources - List of resources to migrate.
|
|
710
|
-
* @param {string} params.subdomain - Source's Subdomain.
|
|
711
|
-
* @param {string} params.region - Source's Region.
|
|
712
|
-
* @param {string} params.adminSecret - Source's Admin Secret.
|
|
713
|
-
* @param {string} params.database - Source's Database Name.
|
|
714
|
-
* @param {string} params.username - Source's Database Username.
|
|
715
|
-
* @param {string} params.password - Source's Database Password.
|
|
716
|
-
* @param {number} params.port - Source's Database Port.
|
|
717
|
-
* @throws {AppwriteException}
|
|
718
|
-
* @returns {Promise<Models.MigrationReport>}
|
|
719
|
-
*/
|
|
720
|
-
getNHostReport(params: { resources: NHostMigrationResource[], subdomain: string, region: string, adminSecret: string, database: string, username: string, password: string, port?: number }): Promise<Models.MigrationReport>;
|
|
721
|
-
/**
|
|
722
|
-
* Generate a detailed report of the data in an NHost project before migrating. This endpoint analyzes the source project and returns information about the resources that can be migrated.
|
|
723
|
-
*
|
|
724
|
-
* @param {NHostMigrationResource[]} resources - List of resources to migrate.
|
|
725
|
-
* @param {string} subdomain - Source's Subdomain.
|
|
726
|
-
* @param {string} region - Source's Region.
|
|
727
|
-
* @param {string} adminSecret - Source's Admin Secret.
|
|
728
|
-
* @param {string} database - Source's Database Name.
|
|
729
|
-
* @param {string} username - Source's Database Username.
|
|
730
|
-
* @param {string} password - Source's Database Password.
|
|
731
|
-
* @param {number} port - Source's Database Port.
|
|
732
|
-
* @throws {AppwriteException}
|
|
733
|
-
* @returns {Promise<Models.MigrationReport>}
|
|
734
|
-
* @deprecated Use the object parameter style method for a better developer experience.
|
|
735
|
-
*/
|
|
736
|
-
getNHostReport(resources: NHostMigrationResource[], subdomain: string, region: string, adminSecret: string, database: string, username: string, password: string, port?: number): Promise<Models.MigrationReport>;
|
|
737
|
-
getNHostReport(
|
|
738
|
-
paramsOrFirst: { resources: NHostMigrationResource[], subdomain: string, region: string, adminSecret: string, database: string, username: string, password: string, port?: number } | NHostMigrationResource[],
|
|
739
|
-
...rest: [(string)?, (string)?, (string)?, (string)?, (string)?, (string)?, (number)?]
|
|
740
|
-
): Promise<Models.MigrationReport> {
|
|
741
|
-
let params: { resources: NHostMigrationResource[], subdomain: string, region: string, adminSecret: string, database: string, username: string, password: string, port?: number };
|
|
742
|
-
|
|
743
|
-
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst) && ('resources' in paramsOrFirst || 'subdomain' in paramsOrFirst || 'region' in paramsOrFirst || 'adminSecret' in paramsOrFirst || 'database' in paramsOrFirst || 'username' in paramsOrFirst || 'password' in paramsOrFirst || 'port' in paramsOrFirst))) {
|
|
744
|
-
params = (paramsOrFirst || {}) as { resources: NHostMigrationResource[], subdomain: string, region: string, adminSecret: string, database: string, username: string, password: string, port?: number };
|
|
745
|
-
} else {
|
|
746
|
-
params = {
|
|
747
|
-
resources: paramsOrFirst as NHostMigrationResource[],
|
|
748
|
-
subdomain: rest[0] as string,
|
|
749
|
-
region: rest[1] as string,
|
|
750
|
-
adminSecret: rest[2] as string,
|
|
751
|
-
database: rest[3] as string,
|
|
752
|
-
username: rest[4] as string,
|
|
753
|
-
password: rest[5] as string,
|
|
754
|
-
port: rest[6] as number
|
|
755
|
-
};
|
|
756
|
-
}
|
|
757
|
-
|
|
758
|
-
const resources = params.resources;
|
|
759
|
-
const subdomain = params.subdomain;
|
|
760
|
-
const region = params.region;
|
|
761
|
-
const adminSecret = params.adminSecret;
|
|
762
|
-
const database = params.database;
|
|
763
|
-
const username = params.username;
|
|
764
|
-
const password = params.password;
|
|
765
|
-
const port = params.port;
|
|
766
|
-
|
|
767
|
-
if (typeof resources === 'undefined') {
|
|
768
|
-
throw new AppwriteException('Missing required parameter: "resources"');
|
|
769
|
-
}
|
|
770
|
-
if (typeof subdomain === 'undefined') {
|
|
771
|
-
throw new AppwriteException('Missing required parameter: "subdomain"');
|
|
772
|
-
}
|
|
773
|
-
if (typeof region === 'undefined') {
|
|
774
|
-
throw new AppwriteException('Missing required parameter: "region"');
|
|
775
|
-
}
|
|
776
|
-
if (typeof adminSecret === 'undefined') {
|
|
777
|
-
throw new AppwriteException('Missing required parameter: "adminSecret"');
|
|
778
|
-
}
|
|
779
|
-
if (typeof database === 'undefined') {
|
|
780
|
-
throw new AppwriteException('Missing required parameter: "database"');
|
|
781
|
-
}
|
|
782
|
-
if (typeof username === 'undefined') {
|
|
783
|
-
throw new AppwriteException('Missing required parameter: "username"');
|
|
784
|
-
}
|
|
785
|
-
if (typeof password === 'undefined') {
|
|
786
|
-
throw new AppwriteException('Missing required parameter: "password"');
|
|
787
|
-
}
|
|
788
|
-
|
|
789
|
-
const apiPath = '/migrations/nhost/report';
|
|
790
|
-
const payload: Payload = {};
|
|
791
|
-
if (typeof resources !== 'undefined') {
|
|
792
|
-
payload['resources'] = resources;
|
|
793
|
-
}
|
|
794
|
-
if (typeof subdomain !== 'undefined') {
|
|
795
|
-
payload['subdomain'] = subdomain;
|
|
796
|
-
}
|
|
797
|
-
if (typeof region !== 'undefined') {
|
|
798
|
-
payload['region'] = region;
|
|
799
|
-
}
|
|
800
|
-
if (typeof adminSecret !== 'undefined') {
|
|
801
|
-
payload['adminSecret'] = adminSecret;
|
|
802
|
-
}
|
|
803
|
-
if (typeof database !== 'undefined') {
|
|
804
|
-
payload['database'] = database;
|
|
805
|
-
}
|
|
806
|
-
if (typeof username !== 'undefined') {
|
|
807
|
-
payload['username'] = username;
|
|
808
|
-
}
|
|
809
|
-
if (typeof password !== 'undefined') {
|
|
810
|
-
payload['password'] = password;
|
|
811
|
-
}
|
|
812
|
-
if (typeof port !== 'undefined') {
|
|
813
|
-
payload['port'] = port;
|
|
814
|
-
}
|
|
815
|
-
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
816
|
-
|
|
817
|
-
const apiHeaders: { [header: string]: string } = {
|
|
818
|
-
}
|
|
819
|
-
|
|
820
|
-
return this.client.call(
|
|
821
|
-
'get',
|
|
822
|
-
uri,
|
|
823
|
-
apiHeaders,
|
|
824
|
-
payload
|
|
825
|
-
);
|
|
826
|
-
}
|
|
827
|
-
|
|
828
|
-
/**
|
|
829
|
-
* Migrate data from a Supabase project to your Appwrite project. This endpoint allows you to migrate resources like authentication, databases, and other supported services from a Supabase project.
|
|
830
|
-
*
|
|
831
|
-
* @param {SupabaseMigrationResource[]} params.resources - List of resources to migrate
|
|
832
|
-
* @param {string} params.endpoint - Source's Supabase Endpoint
|
|
833
|
-
* @param {string} params.apiKey - Source's API Key
|
|
834
|
-
* @param {string} params.databaseHost - Source's Database Host
|
|
835
|
-
* @param {string} params.username - Source's Database Username
|
|
836
|
-
* @param {string} params.password - Source's Database Password
|
|
837
|
-
* @param {number} params.port - Source's Database Port
|
|
838
|
-
* @throws {AppwriteException}
|
|
839
|
-
* @returns {Promise<Models.Migration>}
|
|
840
|
-
*/
|
|
841
|
-
createSupabaseMigration(params: { resources: SupabaseMigrationResource[], endpoint: string, apiKey: string, databaseHost: string, username: string, password: string, port?: number }): Promise<Models.Migration>;
|
|
842
|
-
/**
|
|
843
|
-
* Migrate data from a Supabase project to your Appwrite project. This endpoint allows you to migrate resources like authentication, databases, and other supported services from a Supabase project.
|
|
844
|
-
*
|
|
845
|
-
* @param {SupabaseMigrationResource[]} resources - List of resources to migrate
|
|
846
|
-
* @param {string} endpoint - Source's Supabase Endpoint
|
|
847
|
-
* @param {string} apiKey - Source's API Key
|
|
848
|
-
* @param {string} databaseHost - Source's Database Host
|
|
849
|
-
* @param {string} username - Source's Database Username
|
|
850
|
-
* @param {string} password - Source's Database Password
|
|
851
|
-
* @param {number} port - Source's Database Port
|
|
852
|
-
* @throws {AppwriteException}
|
|
853
|
-
* @returns {Promise<Models.Migration>}
|
|
854
|
-
* @deprecated Use the object parameter style method for a better developer experience.
|
|
855
|
-
*/
|
|
856
|
-
createSupabaseMigration(resources: SupabaseMigrationResource[], endpoint: string, apiKey: string, databaseHost: string, username: string, password: string, port?: number): Promise<Models.Migration>;
|
|
857
|
-
createSupabaseMigration(
|
|
858
|
-
paramsOrFirst: { resources: SupabaseMigrationResource[], endpoint: string, apiKey: string, databaseHost: string, username: string, password: string, port?: number } | SupabaseMigrationResource[],
|
|
859
|
-
...rest: [(string)?, (string)?, (string)?, (string)?, (string)?, (number)?]
|
|
860
|
-
): Promise<Models.Migration> {
|
|
861
|
-
let params: { resources: SupabaseMigrationResource[], endpoint: string, apiKey: string, databaseHost: string, username: string, password: string, port?: number };
|
|
862
|
-
|
|
863
|
-
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst) && ('resources' in paramsOrFirst || 'endpoint' in paramsOrFirst || 'apiKey' in paramsOrFirst || 'databaseHost' in paramsOrFirst || 'username' in paramsOrFirst || 'password' in paramsOrFirst || 'port' in paramsOrFirst))) {
|
|
864
|
-
params = (paramsOrFirst || {}) as { resources: SupabaseMigrationResource[], endpoint: string, apiKey: string, databaseHost: string, username: string, password: string, port?: number };
|
|
865
|
-
} else {
|
|
866
|
-
params = {
|
|
867
|
-
resources: paramsOrFirst as SupabaseMigrationResource[],
|
|
868
|
-
endpoint: rest[0] as string,
|
|
869
|
-
apiKey: rest[1] as string,
|
|
870
|
-
databaseHost: rest[2] as string,
|
|
871
|
-
username: rest[3] as string,
|
|
872
|
-
password: rest[4] as string,
|
|
873
|
-
port: rest[5] as number
|
|
874
|
-
};
|
|
875
|
-
}
|
|
876
|
-
|
|
877
|
-
const resources = params.resources;
|
|
878
|
-
const endpoint = params.endpoint;
|
|
879
|
-
const apiKey = params.apiKey;
|
|
880
|
-
const databaseHost = params.databaseHost;
|
|
881
|
-
const username = params.username;
|
|
882
|
-
const password = params.password;
|
|
883
|
-
const port = params.port;
|
|
884
|
-
|
|
885
|
-
if (typeof resources === 'undefined') {
|
|
886
|
-
throw new AppwriteException('Missing required parameter: "resources"');
|
|
887
|
-
}
|
|
888
|
-
if (typeof endpoint === 'undefined') {
|
|
889
|
-
throw new AppwriteException('Missing required parameter: "endpoint"');
|
|
890
|
-
}
|
|
891
|
-
if (typeof apiKey === 'undefined') {
|
|
892
|
-
throw new AppwriteException('Missing required parameter: "apiKey"');
|
|
893
|
-
}
|
|
894
|
-
if (typeof databaseHost === 'undefined') {
|
|
895
|
-
throw new AppwriteException('Missing required parameter: "databaseHost"');
|
|
896
|
-
}
|
|
897
|
-
if (typeof username === 'undefined') {
|
|
898
|
-
throw new AppwriteException('Missing required parameter: "username"');
|
|
899
|
-
}
|
|
900
|
-
if (typeof password === 'undefined') {
|
|
901
|
-
throw new AppwriteException('Missing required parameter: "password"');
|
|
902
|
-
}
|
|
903
|
-
|
|
904
|
-
const apiPath = '/migrations/supabase';
|
|
905
|
-
const payload: Payload = {};
|
|
906
|
-
if (typeof resources !== 'undefined') {
|
|
907
|
-
payload['resources'] = resources;
|
|
908
|
-
}
|
|
909
|
-
if (typeof endpoint !== 'undefined') {
|
|
910
|
-
payload['endpoint'] = endpoint;
|
|
911
|
-
}
|
|
912
|
-
if (typeof apiKey !== 'undefined') {
|
|
913
|
-
payload['apiKey'] = apiKey;
|
|
914
|
-
}
|
|
915
|
-
if (typeof databaseHost !== 'undefined') {
|
|
916
|
-
payload['databaseHost'] = databaseHost;
|
|
917
|
-
}
|
|
918
|
-
if (typeof username !== 'undefined') {
|
|
919
|
-
payload['username'] = username;
|
|
920
|
-
}
|
|
921
|
-
if (typeof password !== 'undefined') {
|
|
922
|
-
payload['password'] = password;
|
|
923
|
-
}
|
|
924
|
-
if (typeof port !== 'undefined') {
|
|
925
|
-
payload['port'] = port;
|
|
926
|
-
}
|
|
927
|
-
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
928
|
-
|
|
929
|
-
const apiHeaders: { [header: string]: string } = {
|
|
930
|
-
'content-type': 'application/json',
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
return this.client.call(
|
|
934
|
-
'post',
|
|
935
|
-
uri,
|
|
936
|
-
apiHeaders,
|
|
937
|
-
payload
|
|
938
|
-
);
|
|
939
|
-
}
|
|
940
|
-
|
|
941
|
-
/**
|
|
942
|
-
* Generate a report of the data in a Supabase project before migrating. This endpoint analyzes the source project and returns information about the resources that can be migrated.
|
|
943
|
-
*
|
|
944
|
-
* @param {SupabaseMigrationResource[]} params.resources - List of resources to migrate
|
|
945
|
-
* @param {string} params.endpoint - Source's Supabase Endpoint.
|
|
946
|
-
* @param {string} params.apiKey - Source's API Key.
|
|
947
|
-
* @param {string} params.databaseHost - Source's Database Host.
|
|
948
|
-
* @param {string} params.username - Source's Database Username.
|
|
949
|
-
* @param {string} params.password - Source's Database Password.
|
|
950
|
-
* @param {number} params.port - Source's Database Port.
|
|
951
|
-
* @throws {AppwriteException}
|
|
952
|
-
* @returns {Promise<Models.MigrationReport>}
|
|
953
|
-
*/
|
|
954
|
-
getSupabaseReport(params: { resources: SupabaseMigrationResource[], endpoint: string, apiKey: string, databaseHost: string, username: string, password: string, port?: number }): Promise<Models.MigrationReport>;
|
|
955
|
-
/**
|
|
956
|
-
* Generate a report of the data in a Supabase project before migrating. This endpoint analyzes the source project and returns information about the resources that can be migrated.
|
|
957
|
-
*
|
|
958
|
-
* @param {SupabaseMigrationResource[]} resources - List of resources to migrate
|
|
959
|
-
* @param {string} endpoint - Source's Supabase Endpoint.
|
|
960
|
-
* @param {string} apiKey - Source's API Key.
|
|
961
|
-
* @param {string} databaseHost - Source's Database Host.
|
|
962
|
-
* @param {string} username - Source's Database Username.
|
|
963
|
-
* @param {string} password - Source's Database Password.
|
|
964
|
-
* @param {number} port - Source's Database Port.
|
|
965
|
-
* @throws {AppwriteException}
|
|
966
|
-
* @returns {Promise<Models.MigrationReport>}
|
|
967
|
-
* @deprecated Use the object parameter style method for a better developer experience.
|
|
968
|
-
*/
|
|
969
|
-
getSupabaseReport(resources: SupabaseMigrationResource[], endpoint: string, apiKey: string, databaseHost: string, username: string, password: string, port?: number): Promise<Models.MigrationReport>;
|
|
970
|
-
getSupabaseReport(
|
|
971
|
-
paramsOrFirst: { resources: SupabaseMigrationResource[], endpoint: string, apiKey: string, databaseHost: string, username: string, password: string, port?: number } | SupabaseMigrationResource[],
|
|
972
|
-
...rest: [(string)?, (string)?, (string)?, (string)?, (string)?, (number)?]
|
|
973
|
-
): Promise<Models.MigrationReport> {
|
|
974
|
-
let params: { resources: SupabaseMigrationResource[], endpoint: string, apiKey: string, databaseHost: string, username: string, password: string, port?: number };
|
|
975
|
-
|
|
976
|
-
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst) && ('resources' in paramsOrFirst || 'endpoint' in paramsOrFirst || 'apiKey' in paramsOrFirst || 'databaseHost' in paramsOrFirst || 'username' in paramsOrFirst || 'password' in paramsOrFirst || 'port' in paramsOrFirst))) {
|
|
977
|
-
params = (paramsOrFirst || {}) as { resources: SupabaseMigrationResource[], endpoint: string, apiKey: string, databaseHost: string, username: string, password: string, port?: number };
|
|
978
|
-
} else {
|
|
979
|
-
params = {
|
|
980
|
-
resources: paramsOrFirst as SupabaseMigrationResource[],
|
|
981
|
-
endpoint: rest[0] as string,
|
|
982
|
-
apiKey: rest[1] as string,
|
|
983
|
-
databaseHost: rest[2] as string,
|
|
984
|
-
username: rest[3] as string,
|
|
985
|
-
password: rest[4] as string,
|
|
986
|
-
port: rest[5] as number
|
|
987
|
-
};
|
|
988
|
-
}
|
|
989
|
-
|
|
990
|
-
const resources = params.resources;
|
|
991
|
-
const endpoint = params.endpoint;
|
|
992
|
-
const apiKey = params.apiKey;
|
|
993
|
-
const databaseHost = params.databaseHost;
|
|
994
|
-
const username = params.username;
|
|
995
|
-
const password = params.password;
|
|
996
|
-
const port = params.port;
|
|
997
|
-
|
|
998
|
-
if (typeof resources === 'undefined') {
|
|
999
|
-
throw new AppwriteException('Missing required parameter: "resources"');
|
|
1000
|
-
}
|
|
1001
|
-
if (typeof endpoint === 'undefined') {
|
|
1002
|
-
throw new AppwriteException('Missing required parameter: "endpoint"');
|
|
1003
|
-
}
|
|
1004
|
-
if (typeof apiKey === 'undefined') {
|
|
1005
|
-
throw new AppwriteException('Missing required parameter: "apiKey"');
|
|
1006
|
-
}
|
|
1007
|
-
if (typeof databaseHost === 'undefined') {
|
|
1008
|
-
throw new AppwriteException('Missing required parameter: "databaseHost"');
|
|
1009
|
-
}
|
|
1010
|
-
if (typeof username === 'undefined') {
|
|
1011
|
-
throw new AppwriteException('Missing required parameter: "username"');
|
|
1012
|
-
}
|
|
1013
|
-
if (typeof password === 'undefined') {
|
|
1014
|
-
throw new AppwriteException('Missing required parameter: "password"');
|
|
1015
|
-
}
|
|
1016
|
-
|
|
1017
|
-
const apiPath = '/migrations/supabase/report';
|
|
1018
|
-
const payload: Payload = {};
|
|
1019
|
-
if (typeof resources !== 'undefined') {
|
|
1020
|
-
payload['resources'] = resources;
|
|
1021
|
-
}
|
|
1022
|
-
if (typeof endpoint !== 'undefined') {
|
|
1023
|
-
payload['endpoint'] = endpoint;
|
|
1024
|
-
}
|
|
1025
|
-
if (typeof apiKey !== 'undefined') {
|
|
1026
|
-
payload['apiKey'] = apiKey;
|
|
1027
|
-
}
|
|
1028
|
-
if (typeof databaseHost !== 'undefined') {
|
|
1029
|
-
payload['databaseHost'] = databaseHost;
|
|
1030
|
-
}
|
|
1031
|
-
if (typeof username !== 'undefined') {
|
|
1032
|
-
payload['username'] = username;
|
|
1033
|
-
}
|
|
1034
|
-
if (typeof password !== 'undefined') {
|
|
1035
|
-
payload['password'] = password;
|
|
1036
|
-
}
|
|
1037
|
-
if (typeof port !== 'undefined') {
|
|
1038
|
-
payload['port'] = port;
|
|
1039
|
-
}
|
|
1040
|
-
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
1041
|
-
|
|
1042
|
-
const apiHeaders: { [header: string]: string } = {
|
|
1043
|
-
}
|
|
1044
|
-
|
|
1045
|
-
return this.client.call(
|
|
1046
|
-
'get',
|
|
1047
|
-
uri,
|
|
1048
|
-
apiHeaders,
|
|
1049
|
-
payload
|
|
1050
|
-
);
|
|
1051
|
-
}
|
|
1052
|
-
|
|
1053
|
-
/**
|
|
1054
|
-
* Get a migration by its unique ID. This endpoint returns detailed information about a specific migration including its current status, progress, and any errors that occurred during the migration process.
|
|
1055
|
-
*
|
|
1056
|
-
* @param {string} params.migrationId - Migration unique ID.
|
|
1057
|
-
* @throws {AppwriteException}
|
|
1058
|
-
* @returns {Promise<Models.Migration>}
|
|
1059
|
-
*/
|
|
1060
|
-
get(params: { migrationId: string }): Promise<Models.Migration>;
|
|
1061
|
-
/**
|
|
1062
|
-
* Get a migration by its unique ID. This endpoint returns detailed information about a specific migration including its current status, progress, and any errors that occurred during the migration process.
|
|
1063
|
-
*
|
|
1064
|
-
* @param {string} migrationId - Migration unique ID.
|
|
1065
|
-
* @throws {AppwriteException}
|
|
1066
|
-
* @returns {Promise<Models.Migration>}
|
|
1067
|
-
* @deprecated Use the object parameter style method for a better developer experience.
|
|
1068
|
-
*/
|
|
1069
|
-
get(migrationId: string): Promise<Models.Migration>;
|
|
1070
|
-
get(
|
|
1071
|
-
paramsOrFirst: { migrationId: string } | string
|
|
1072
|
-
): Promise<Models.Migration> {
|
|
1073
|
-
let params: { migrationId: string };
|
|
1074
|
-
|
|
1075
|
-
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
|
|
1076
|
-
params = (paramsOrFirst || {}) as { migrationId: string };
|
|
1077
|
-
} else {
|
|
1078
|
-
params = {
|
|
1079
|
-
migrationId: paramsOrFirst as string
|
|
1080
|
-
};
|
|
1081
|
-
}
|
|
1082
|
-
|
|
1083
|
-
const migrationId = params.migrationId;
|
|
1084
|
-
|
|
1085
|
-
if (typeof migrationId === 'undefined') {
|
|
1086
|
-
throw new AppwriteException('Missing required parameter: "migrationId"');
|
|
1087
|
-
}
|
|
1088
|
-
|
|
1089
|
-
const apiPath = '/migrations/{migrationId}'.replace('{migrationId}', migrationId);
|
|
1090
|
-
const payload: Payload = {};
|
|
1091
|
-
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
1092
|
-
|
|
1093
|
-
const apiHeaders: { [header: string]: string } = {
|
|
1094
|
-
}
|
|
1095
|
-
|
|
1096
|
-
return this.client.call(
|
|
1097
|
-
'get',
|
|
1098
|
-
uri,
|
|
1099
|
-
apiHeaders,
|
|
1100
|
-
payload
|
|
1101
|
-
);
|
|
1102
|
-
}
|
|
1103
|
-
|
|
1104
|
-
/**
|
|
1105
|
-
* Retry a failed migration. This endpoint allows you to retry a migration that has previously failed.
|
|
1106
|
-
*
|
|
1107
|
-
* @param {string} params.migrationId - Migration unique ID.
|
|
1108
|
-
* @throws {AppwriteException}
|
|
1109
|
-
* @returns {Promise<Models.Migration>}
|
|
1110
|
-
*/
|
|
1111
|
-
retry(params: { migrationId: string }): Promise<Models.Migration>;
|
|
1112
|
-
/**
|
|
1113
|
-
* Retry a failed migration. This endpoint allows you to retry a migration that has previously failed.
|
|
1114
|
-
*
|
|
1115
|
-
* @param {string} migrationId - Migration unique ID.
|
|
1116
|
-
* @throws {AppwriteException}
|
|
1117
|
-
* @returns {Promise<Models.Migration>}
|
|
1118
|
-
* @deprecated Use the object parameter style method for a better developer experience.
|
|
1119
|
-
*/
|
|
1120
|
-
retry(migrationId: string): Promise<Models.Migration>;
|
|
1121
|
-
retry(
|
|
1122
|
-
paramsOrFirst: { migrationId: string } | string
|
|
1123
|
-
): Promise<Models.Migration> {
|
|
1124
|
-
let params: { migrationId: string };
|
|
1125
|
-
|
|
1126
|
-
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
|
|
1127
|
-
params = (paramsOrFirst || {}) as { migrationId: string };
|
|
1128
|
-
} else {
|
|
1129
|
-
params = {
|
|
1130
|
-
migrationId: paramsOrFirst as string
|
|
1131
|
-
};
|
|
1132
|
-
}
|
|
1133
|
-
|
|
1134
|
-
const migrationId = params.migrationId;
|
|
1135
|
-
|
|
1136
|
-
if (typeof migrationId === 'undefined') {
|
|
1137
|
-
throw new AppwriteException('Missing required parameter: "migrationId"');
|
|
1138
|
-
}
|
|
1139
|
-
|
|
1140
|
-
const apiPath = '/migrations/{migrationId}'.replace('{migrationId}', migrationId);
|
|
1141
|
-
const payload: Payload = {};
|
|
1142
|
-
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
1143
|
-
|
|
1144
|
-
const apiHeaders: { [header: string]: string } = {
|
|
1145
|
-
'content-type': 'application/json',
|
|
1146
|
-
}
|
|
1147
|
-
|
|
1148
|
-
return this.client.call(
|
|
1149
|
-
'patch',
|
|
1150
|
-
uri,
|
|
1151
|
-
apiHeaders,
|
|
1152
|
-
payload
|
|
1153
|
-
);
|
|
1154
|
-
}
|
|
1155
|
-
|
|
1156
|
-
/**
|
|
1157
|
-
* Delete a migration by its unique ID. This endpoint allows you to remove a migration from your project's migration history.
|
|
1158
|
-
*
|
|
1159
|
-
* @param {string} params.migrationId - Migration ID.
|
|
1160
|
-
* @throws {AppwriteException}
|
|
1161
|
-
* @returns {Promise<{}>}
|
|
1162
|
-
*/
|
|
1163
|
-
delete(params: { migrationId: string }): Promise<{}>;
|
|
1164
|
-
/**
|
|
1165
|
-
* Delete a migration by its unique ID. This endpoint allows you to remove a migration from your project's migration history.
|
|
1166
|
-
*
|
|
1167
|
-
* @param {string} migrationId - Migration ID.
|
|
1168
|
-
* @throws {AppwriteException}
|
|
1169
|
-
* @returns {Promise<{}>}
|
|
1170
|
-
* @deprecated Use the object parameter style method for a better developer experience.
|
|
1171
|
-
*/
|
|
1172
|
-
delete(migrationId: string): Promise<{}>;
|
|
1173
|
-
delete(
|
|
1174
|
-
paramsOrFirst: { migrationId: string } | string
|
|
1175
|
-
): Promise<{}> {
|
|
1176
|
-
let params: { migrationId: string };
|
|
1177
|
-
|
|
1178
|
-
if ((paramsOrFirst && typeof paramsOrFirst === 'object' && !Array.isArray(paramsOrFirst))) {
|
|
1179
|
-
params = (paramsOrFirst || {}) as { migrationId: string };
|
|
1180
|
-
} else {
|
|
1181
|
-
params = {
|
|
1182
|
-
migrationId: paramsOrFirst as string
|
|
1183
|
-
};
|
|
1184
|
-
}
|
|
1185
|
-
|
|
1186
|
-
const migrationId = params.migrationId;
|
|
1187
|
-
|
|
1188
|
-
if (typeof migrationId === 'undefined') {
|
|
1189
|
-
throw new AppwriteException('Missing required parameter: "migrationId"');
|
|
1190
|
-
}
|
|
1191
|
-
|
|
1192
|
-
const apiPath = '/migrations/{migrationId}'.replace('{migrationId}', migrationId);
|
|
1193
|
-
const payload: Payload = {};
|
|
1194
|
-
const uri = new URL(this.client.config.endpoint + apiPath);
|
|
1195
|
-
|
|
1196
|
-
const apiHeaders: { [header: string]: string } = {
|
|
1197
|
-
'content-type': 'application/json',
|
|
1198
|
-
}
|
|
1199
|
-
|
|
1200
|
-
return this.client.call(
|
|
1201
|
-
'delete',
|
|
1202
|
-
uri,
|
|
1203
|
-
apiHeaders,
|
|
1204
|
-
payload
|
|
1205
|
-
);
|
|
1206
|
-
}
|
|
1207
|
-
}
|