appwrite-web-server-preview-isomorphic-chiragagg5k 0.0.0-rc.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 (89) hide show
  1. package/LICENSE +1 -0
  2. package/README.md +46 -0
  3. package/dist/cjs/package.json +3 -0
  4. package/dist/cjs/sdk.js +23912 -0
  5. package/dist/cjs/sdk.js.map +1 -0
  6. package/dist/esm/package.json +3 -0
  7. package/dist/esm/sdk.js +23884 -0
  8. package/dist/esm/sdk.js.map +1 -0
  9. package/dist/iife/sdk.js +27711 -0
  10. package/package.json +50 -0
  11. package/types/channel.d.ts +74 -0
  12. package/types/client.d.ts +345 -0
  13. package/types/enums/adapter.d.ts +4 -0
  14. package/types/enums/attribute-status.d.ts +7 -0
  15. package/types/enums/authentication-factor.d.ts +6 -0
  16. package/types/enums/authenticator-type.d.ts +3 -0
  17. package/types/enums/backup-services.d.ts +8 -0
  18. package/types/enums/browser-permission.d.ts +22 -0
  19. package/types/enums/browser.d.ts +16 -0
  20. package/types/enums/build-runtime.d.ts +94 -0
  21. package/types/enums/column-status.d.ts +7 -0
  22. package/types/enums/compression.d.ts +5 -0
  23. package/types/enums/credit-card.d.ts +19 -0
  24. package/types/enums/database-type.d.ts +6 -0
  25. package/types/enums/databases-index-type.d.ts +6 -0
  26. package/types/enums/deployment-download-type.d.ts +4 -0
  27. package/types/enums/deployment-status.d.ts +8 -0
  28. package/types/enums/email-template-locale.d.ts +133 -0
  29. package/types/enums/email-template-type.d.ts +9 -0
  30. package/types/enums/execution-method.d.ts +9 -0
  31. package/types/enums/execution-status.d.ts +7 -0
  32. package/types/enums/execution-trigger.d.ts +5 -0
  33. package/types/enums/flag.d.ts +197 -0
  34. package/types/enums/framework.d.ts +17 -0
  35. package/types/enums/health-antivirus-status.d.ts +5 -0
  36. package/types/enums/health-check-status.d.ts +4 -0
  37. package/types/enums/image-format.d.ts +9 -0
  38. package/types/enums/image-gravity.d.ts +11 -0
  39. package/types/enums/index-status.d.ts +7 -0
  40. package/types/enums/message-priority.d.ts +4 -0
  41. package/types/enums/message-status.d.ts +7 -0
  42. package/types/enums/messaging-provider-type.d.ts +5 -0
  43. package/types/enums/method-id.d.ts +9 -0
  44. package/types/enums/name.d.ts +15 -0
  45. package/types/enums/o-auth-provider.d.ts +45 -0
  46. package/types/enums/order-by.d.ts +4 -0
  47. package/types/enums/password-hash.d.ts +13 -0
  48. package/types/enums/platform-type.d.ts +7 -0
  49. package/types/enums/policy-id.d.ts +11 -0
  50. package/types/enums/protocol-id.d.ts +5 -0
  51. package/types/enums/relation-mutate.d.ts +5 -0
  52. package/types/enums/relationship-type.d.ts +6 -0
  53. package/types/enums/runtime.d.ts +94 -0
  54. package/types/enums/scopes.d.ts +89 -0
  55. package/types/enums/secure.d.ts +4 -0
  56. package/types/enums/service-id.d.ts +19 -0
  57. package/types/enums/smtp-encryption.d.ts +5 -0
  58. package/types/enums/tables-db-index-type.d.ts +6 -0
  59. package/types/enums/template-reference-type.d.ts +5 -0
  60. package/types/enums/theme.d.ts +4 -0
  61. package/types/enums/timezone.d.ts +421 -0
  62. package/types/enums/vcs-reference-type.d.ts +5 -0
  63. package/types/id.d.ts +20 -0
  64. package/types/index.d.ts +85 -0
  65. package/types/models.d.ts +6555 -0
  66. package/types/operator.d.ts +180 -0
  67. package/types/permission.d.ts +43 -0
  68. package/types/query.d.ts +442 -0
  69. package/types/role.d.ts +70 -0
  70. package/types/service.d.ts +11 -0
  71. package/types/services/account.d.ts +1016 -0
  72. package/types/services/activities.d.ts +51 -0
  73. package/types/services/avatars.d.ts +327 -0
  74. package/types/services/backups.d.ts +282 -0
  75. package/types/services/databases.d.ts +2297 -0
  76. package/types/services/functions.d.ts +755 -0
  77. package/types/services/graphql.d.ts +50 -0
  78. package/types/services/health.d.ts +482 -0
  79. package/types/services/locale.d.ts +71 -0
  80. package/types/services/messaging.d.ts +1996 -0
  81. package/types/services/project.d.ts +2342 -0
  82. package/types/services/realtime.d.ts +155 -0
  83. package/types/services/sites.d.ts +714 -0
  84. package/types/services/storage.d.ts +428 -0
  85. package/types/services/tables-db.d.ts +2242 -0
  86. package/types/services/teams.d.ts +348 -0
  87. package/types/services/tokens.d.ts +124 -0
  88. package/types/services/users.d.ts +1191 -0
  89. package/types/services/webhooks.d.ts +176 -0
package/LICENSE ADDED
@@ -0,0 +1 @@
1
+ test test test
package/README.md ADDED
@@ -0,0 +1,46 @@
1
+ # Appwrite NAME SDK
2
+
3
+ ![License](https://img.shields.io/github/license/repoowner/reponame.svg?style=flat-square)
4
+ ![Version](https://img.shields.io/badge/api%20version-1.9.3-blue.svg?style=flat-square)
5
+ [![Build Status](https://img.shields.io/travis/com/appwrite/sdk-generator?style=flat-square)](https://travis-ci.com/appwrite/sdk-generator)
6
+ [![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite)
7
+ [![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)
8
+
9
+ **WORK IN PROGRESS - NOT READY FOR USAGE**
10
+
11
+ Repo description goes here
12
+
13
+ ![Appwrite](https://appwrite.io/images/logos/logo.svg)
14
+
15
+ ## Installation
16
+
17
+ ### NPM
18
+
19
+ To install via [NPM](https://www.npmjs.com/):
20
+
21
+ ```bash
22
+ npm install packageName --save
23
+ ```
24
+
25
+ If you're using a bundler (like [Rollup](https://rollupjs.org/) or [webpack](https://webpack.js.org/)), you can import the Appwrite module when you need it:
26
+
27
+ ```js
28
+ import { Client, Account } from "packageName";
29
+ ```
30
+
31
+ ### CDN
32
+
33
+ To install with a CDN (content delivery network) add the following scripts to the bottom of your <body> tag, but before you use any Appwrite services:
34
+
35
+ ```html
36
+ <script src="https://cdn.jsdelivr.net/npm/packageName@0.0.0"></script>
37
+ ```
38
+
39
+
40
+ ## Contribution
41
+
42
+ This library is auto-generated by Appwrite custom [SDK Generator](https://github.com/appwrite/sdk-generator). To learn more about how you can help us improve this SDK, please check the [contribution guide](https://github.com/appwrite/sdk-generator/blob/master/CONTRIBUTING.md) before sending a pull-request.
43
+
44
+ ## License
45
+
46
+ Please see the [BSD-3-Clause license](https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE) file for more information.
@@ -0,0 +1,3 @@
1
+ {
2
+ "type": "commonjs"
3
+ }