@appwrite.io/console 2.1.1 → 2.1.2

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.
Files changed (59) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/README.md +1 -1
  3. package/dist/cjs/sdk.js +99 -7
  4. package/dist/cjs/sdk.js.map +1 -1
  5. package/dist/esm/sdk.js +100 -8
  6. package/dist/esm/sdk.js.map +1 -1
  7. package/dist/iife/sdk.js +99 -7
  8. package/docs/examples/domains/list-suggestions.md +18 -0
  9. package/docs/examples/health/get-queue-audits.md +13 -0
  10. package/docs/examples/organizations/create.md +2 -2
  11. package/docs/examples/organizations/estimation-create-organization.md +2 -2
  12. package/docs/examples/organizations/estimation-update-plan.md +2 -2
  13. package/docs/examples/organizations/update-plan.md +2 -2
  14. package/package.json +1 -1
  15. package/src/client.ts +1 -1
  16. package/src/enums/billing-plan.ts +17 -0
  17. package/src/enums/filter-type.ts +4 -0
  18. package/src/enums/name.ts +1 -0
  19. package/src/enums/o-auth-provider.ts +0 -2
  20. package/src/index.ts +2 -0
  21. package/src/models.ts +437 -375
  22. package/src/services/account.ts +20 -20
  23. package/src/services/avatars.ts +117 -117
  24. package/src/services/backups.ts +18 -18
  25. package/src/services/console.ts +24 -24
  26. package/src/services/databases.ts +89 -89
  27. package/src/services/domains.ts +295 -204
  28. package/src/services/functions.ts +30 -30
  29. package/src/services/health.ts +201 -152
  30. package/src/services/messaging.ts +54 -54
  31. package/src/services/migrations.ts +36 -36
  32. package/src/services/organizations.ts +67 -66
  33. package/src/services/projects.ts +81 -81
  34. package/src/services/sites.ts +30 -30
  35. package/src/services/storage.ts +45 -45
  36. package/src/services/tables-db.ts +89 -89
  37. package/src/services/users.ts +39 -39
  38. package/types/enums/billing-plan.d.ts +17 -0
  39. package/types/enums/filter-type.d.ts +4 -0
  40. package/types/enums/name.d.ts +1 -0
  41. package/types/enums/o-auth-provider.d.ts +0 -2
  42. package/types/index.d.ts +2 -0
  43. package/types/models.d.ts +434 -375
  44. package/types/services/account.d.ts +11 -11
  45. package/types/services/avatars.d.ts +82 -82
  46. package/types/services/backups.d.ts +8 -8
  47. package/types/services/console.d.ts +14 -14
  48. package/types/services/databases.d.ts +50 -50
  49. package/types/services/domains.d.ts +139 -104
  50. package/types/services/functions.d.ts +15 -15
  51. package/types/services/health.d.ts +95 -78
  52. package/types/services/messaging.d.ts +24 -24
  53. package/types/services/migrations.d.ts +16 -16
  54. package/types/services/organizations.d.ts +37 -36
  55. package/types/services/projects.d.ts +36 -36
  56. package/types/services/sites.d.ts +15 -15
  57. package/types/services/storage.d.ts +30 -30
  58. package/types/services/tables-db.d.ts +50 -50
  59. package/types/services/users.d.ts +24 -24
@@ -9,6 +9,7 @@ export declare enum Name {
9
9
  V1webhooks = "v1-webhooks",
10
10
  V1certificates = "v1-certificates",
11
11
  V1builds = "v1-builds",
12
+ V1screenshots = "v1-screenshots",
12
13
  V1messaging = "v1-messaging",
13
14
  V1migrations = "v1-migrations"
14
15
  }
@@ -38,8 +38,6 @@ export declare enum OAuthProvider {
38
38
  Yandex = "yandex",
39
39
  Zoho = "zoho",
40
40
  Zoom = "zoom",
41
- Mock = "mock",
42
- Mockunverified = "mock-unverified",
43
41
  GithubImagine = "githubImagine",
44
42
  GoogleImagine = "googleImagine"
45
43
  }
package/types/index.d.ts CHANGED
@@ -52,6 +52,7 @@ export { UsageRange } from './enums/usage-range';
52
52
  export { RelationshipType } from './enums/relationship-type';
53
53
  export { RelationMutate } from './enums/relation-mutate';
54
54
  export { IndexType } from './enums/index-type';
55
+ export { FilterType } from './enums/filter-type';
55
56
  export { Runtime } from './enums/runtime';
56
57
  export { TemplateReferenceType } from './enums/template-reference-type';
57
58
  export { VCSReferenceType } from './enums/vcs-reference-type';
@@ -60,6 +61,7 @@ export { ExecutionMethod } from './enums/execution-method';
60
61
  export { Name } from './enums/name';
61
62
  export { MessagePriority } from './enums/message-priority';
62
63
  export { SmtpEncryption } from './enums/smtp-encryption';
64
+ export { BillingPlan } from './enums/billing-plan';
63
65
  export { ProjectUsageRange } from './enums/project-usage-range';
64
66
  export { Region } from './enums/region';
65
67
  export { Api } from './enums/api';