@appwrite.io/console 1.1.0-rc.1 → 1.1.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.
- package/README.md +1 -1
- package/dist/cjs/sdk.js +11 -11
- package/dist/cjs/sdk.js.map +1 -1
- package/dist/esm/sdk.js +11 -11
- package/dist/esm/sdk.js.map +1 -1
- package/dist/iife/sdk.js +11 -11
- package/docs/examples/account/list-billing-addresses.md +1 -1
- package/docs/examples/account/list-credits.md +1 -1
- package/docs/examples/account/list-invoices.md +1 -1
- package/docs/examples/account/list-payment-methods.md +1 -1
- package/docs/examples/backups/list-archives.md +1 -1
- package/docs/examples/backups/list-policies.md +1 -1
- package/docs/examples/backups/list-restorations.md +1 -1
- package/docs/examples/organizations/list-aggregations.md +1 -1
- package/docs/examples/organizations/list-invoices.md +1 -1
- package/docs/examples/organizations/list.md +1 -1
- package/package.json +1 -1
- package/src/client.ts +1 -1
- package/src/models.ts +4 -4
- package/src/services/account.ts +8 -8
- package/src/services/backups.ts +6 -6
- package/src/services/organizations.ts +6 -6
- package/types/models.d.ts +4 -4
- package/types/services/account.d.ts +8 -8
- package/types/services/backups.d.ts +6 -6
- package/types/services/organizations.d.ts +6 -6
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ import { Client, Account } from "@appwrite.io/console";
|
|
|
33
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
34
|
|
|
35
35
|
```html
|
|
36
|
-
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/console@1.1.0-rc.
|
|
36
|
+
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/console@1.1.0-rc.2"></script>
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
|
package/dist/cjs/sdk.js
CHANGED
|
@@ -280,7 +280,7 @@ class Client {
|
|
|
280
280
|
'x-sdk-name': 'Console',
|
|
281
281
|
'x-sdk-platform': 'console',
|
|
282
282
|
'x-sdk-language': 'web',
|
|
283
|
-
'x-sdk-version': '1.1.0-rc.
|
|
283
|
+
'x-sdk-version': '1.1.0-rc.2',
|
|
284
284
|
'X-Appwrite-Response-Format': '1.5.0',
|
|
285
285
|
};
|
|
286
286
|
this.realtime = {
|
|
@@ -785,7 +785,7 @@ class Account {
|
|
|
785
785
|
* List billing addresses
|
|
786
786
|
*
|
|
787
787
|
*
|
|
788
|
-
* @param {string} queries
|
|
788
|
+
* @param {string[]} queries
|
|
789
789
|
* @throws {AppwriteException}
|
|
790
790
|
* @returns {Promise<Models.BillingAddress>}
|
|
791
791
|
*/
|
|
@@ -910,7 +910,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
|
|
|
910
910
|
* List invoices
|
|
911
911
|
*
|
|
912
912
|
*
|
|
913
|
-
* @param {string} queries
|
|
913
|
+
* @param {string[]} queries
|
|
914
914
|
* @throws {AppwriteException}
|
|
915
915
|
* @returns {Promise<Models.InvoiceList>}
|
|
916
916
|
*/
|
|
@@ -1274,7 +1274,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
|
|
|
1274
1274
|
* List payment methods
|
|
1275
1275
|
*
|
|
1276
1276
|
*
|
|
1277
|
-
* @param {string} queries
|
|
1277
|
+
* @param {string[]} queries
|
|
1278
1278
|
* @throws {AppwriteException}
|
|
1279
1279
|
* @returns {Promise<Models.PaymentMethodList>}
|
|
1280
1280
|
*/
|
|
@@ -2297,7 +2297,7 @@ Please note that in order to avoid a [Redirect Attack](https://github.com/OWASP/
|
|
|
2297
2297
|
*
|
|
2298
2298
|
*
|
|
2299
2299
|
* @param {string} organizationId
|
|
2300
|
-
* @param {string} queries
|
|
2300
|
+
* @param {string[]} queries
|
|
2301
2301
|
* @throws {AppwriteException}
|
|
2302
2302
|
* @returns {Promise<Models.CreditList>}
|
|
2303
2303
|
*/
|
|
@@ -2664,7 +2664,7 @@ class Backups {
|
|
|
2664
2664
|
* List archives
|
|
2665
2665
|
*
|
|
2666
2666
|
*
|
|
2667
|
-
* @param {string} queries
|
|
2667
|
+
* @param {string[]} queries
|
|
2668
2668
|
* @throws {AppwriteException}
|
|
2669
2669
|
* @returns {Promise<Models.BackupArchiveList>}
|
|
2670
2670
|
*/
|
|
@@ -2708,7 +2708,7 @@ class Backups {
|
|
|
2708
2708
|
* List backup policies
|
|
2709
2709
|
*
|
|
2710
2710
|
*
|
|
2711
|
-
* @param {string} queries
|
|
2711
|
+
* @param {string[]} queries
|
|
2712
2712
|
* @throws {AppwriteException}
|
|
2713
2713
|
* @returns {Promise<Models.BackupPolicyList>}
|
|
2714
2714
|
*/
|
|
@@ -2910,7 +2910,7 @@ class Backups {
|
|
|
2910
2910
|
* List restorations
|
|
2911
2911
|
*
|
|
2912
2912
|
*
|
|
2913
|
-
* @param {string} queries
|
|
2913
|
+
* @param {string[]} queries
|
|
2914
2914
|
* @throws {AppwriteException}
|
|
2915
2915
|
* @returns {Promise<Models.BackupRestorationList>}
|
|
2916
2916
|
*/
|
|
@@ -9237,7 +9237,7 @@ class Organizations {
|
|
|
9237
9237
|
*
|
|
9238
9238
|
* Get a list of all the teams in which the current user is a member. You can use the parameters to filter your results.
|
|
9239
9239
|
*
|
|
9240
|
-
* @param {string} queries
|
|
9240
|
+
* @param {string[]} queries
|
|
9241
9241
|
* @param {string} search
|
|
9242
9242
|
* @throws {AppwriteException}
|
|
9243
9243
|
* @returns {Promise<Models.TeamList<Preferences>>}
|
|
@@ -9335,7 +9335,7 @@ class Organizations {
|
|
|
9335
9335
|
*
|
|
9336
9336
|
*
|
|
9337
9337
|
* @param {string} organizationId
|
|
9338
|
-
* @param {string} queries
|
|
9338
|
+
* @param {string[]} queries
|
|
9339
9339
|
* @throws {AppwriteException}
|
|
9340
9340
|
* @returns {Promise<Models.AggregationTeamList>}
|
|
9341
9341
|
*/
|
|
@@ -9581,7 +9581,7 @@ class Organizations {
|
|
|
9581
9581
|
*
|
|
9582
9582
|
*
|
|
9583
9583
|
* @param {string} organizationId
|
|
9584
|
-
* @param {string} queries
|
|
9584
|
+
* @param {string[]} queries
|
|
9585
9585
|
* @throws {AppwriteException}
|
|
9586
9586
|
* @returns {Promise<Models.InvoiceList>}
|
|
9587
9587
|
*/
|