@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/dist/esm/sdk.js
CHANGED
|
@@ -278,7 +278,7 @@ class Client {
|
|
|
278
278
|
'x-sdk-name': 'Console',
|
|
279
279
|
'x-sdk-platform': 'console',
|
|
280
280
|
'x-sdk-language': 'web',
|
|
281
|
-
'x-sdk-version': '1.1.0-rc.
|
|
281
|
+
'x-sdk-version': '1.1.0-rc.2',
|
|
282
282
|
'X-Appwrite-Response-Format': '1.5.0',
|
|
283
283
|
};
|
|
284
284
|
this.realtime = {
|
|
@@ -783,7 +783,7 @@ class Account {
|
|
|
783
783
|
* List billing addresses
|
|
784
784
|
*
|
|
785
785
|
*
|
|
786
|
-
* @param {string} queries
|
|
786
|
+
* @param {string[]} queries
|
|
787
787
|
* @throws {AppwriteException}
|
|
788
788
|
* @returns {Promise<Models.BillingAddress>}
|
|
789
789
|
*/
|
|
@@ -908,7 +908,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
|
|
|
908
908
|
* List invoices
|
|
909
909
|
*
|
|
910
910
|
*
|
|
911
|
-
* @param {string} queries
|
|
911
|
+
* @param {string[]} queries
|
|
912
912
|
* @throws {AppwriteException}
|
|
913
913
|
* @returns {Promise<Models.InvoiceList>}
|
|
914
914
|
*/
|
|
@@ -1272,7 +1272,7 @@ This endpoint can also be used to convert an anonymous account to a normal one,
|
|
|
1272
1272
|
* List payment methods
|
|
1273
1273
|
*
|
|
1274
1274
|
*
|
|
1275
|
-
* @param {string} queries
|
|
1275
|
+
* @param {string[]} queries
|
|
1276
1276
|
* @throws {AppwriteException}
|
|
1277
1277
|
* @returns {Promise<Models.PaymentMethodList>}
|
|
1278
1278
|
*/
|
|
@@ -2295,7 +2295,7 @@ Please note that in order to avoid a [Redirect Attack](https://github.com/OWASP/
|
|
|
2295
2295
|
*
|
|
2296
2296
|
*
|
|
2297
2297
|
* @param {string} organizationId
|
|
2298
|
-
* @param {string} queries
|
|
2298
|
+
* @param {string[]} queries
|
|
2299
2299
|
* @throws {AppwriteException}
|
|
2300
2300
|
* @returns {Promise<Models.CreditList>}
|
|
2301
2301
|
*/
|
|
@@ -2662,7 +2662,7 @@ class Backups {
|
|
|
2662
2662
|
* List archives
|
|
2663
2663
|
*
|
|
2664
2664
|
*
|
|
2665
|
-
* @param {string} queries
|
|
2665
|
+
* @param {string[]} queries
|
|
2666
2666
|
* @throws {AppwriteException}
|
|
2667
2667
|
* @returns {Promise<Models.BackupArchiveList>}
|
|
2668
2668
|
*/
|
|
@@ -2706,7 +2706,7 @@ class Backups {
|
|
|
2706
2706
|
* List backup policies
|
|
2707
2707
|
*
|
|
2708
2708
|
*
|
|
2709
|
-
* @param {string} queries
|
|
2709
|
+
* @param {string[]} queries
|
|
2710
2710
|
* @throws {AppwriteException}
|
|
2711
2711
|
* @returns {Promise<Models.BackupPolicyList>}
|
|
2712
2712
|
*/
|
|
@@ -2908,7 +2908,7 @@ class Backups {
|
|
|
2908
2908
|
* List restorations
|
|
2909
2909
|
*
|
|
2910
2910
|
*
|
|
2911
|
-
* @param {string} queries
|
|
2911
|
+
* @param {string[]} queries
|
|
2912
2912
|
* @throws {AppwriteException}
|
|
2913
2913
|
* @returns {Promise<Models.BackupRestorationList>}
|
|
2914
2914
|
*/
|
|
@@ -9235,7 +9235,7 @@ class Organizations {
|
|
|
9235
9235
|
*
|
|
9236
9236
|
* Get a list of all the teams in which the current user is a member. You can use the parameters to filter your results.
|
|
9237
9237
|
*
|
|
9238
|
-
* @param {string} queries
|
|
9238
|
+
* @param {string[]} queries
|
|
9239
9239
|
* @param {string} search
|
|
9240
9240
|
* @throws {AppwriteException}
|
|
9241
9241
|
* @returns {Promise<Models.TeamList<Preferences>>}
|
|
@@ -9333,7 +9333,7 @@ class Organizations {
|
|
|
9333
9333
|
*
|
|
9334
9334
|
*
|
|
9335
9335
|
* @param {string} organizationId
|
|
9336
|
-
* @param {string} queries
|
|
9336
|
+
* @param {string[]} queries
|
|
9337
9337
|
* @throws {AppwriteException}
|
|
9338
9338
|
* @returns {Promise<Models.AggregationTeamList>}
|
|
9339
9339
|
*/
|
|
@@ -9579,7 +9579,7 @@ class Organizations {
|
|
|
9579
9579
|
*
|
|
9580
9580
|
*
|
|
9581
9581
|
* @param {string} organizationId
|
|
9582
|
-
* @param {string} queries
|
|
9582
|
+
* @param {string[]} queries
|
|
9583
9583
|
* @throws {AppwriteException}
|
|
9584
9584
|
* @returns {Promise<Models.InvoiceList>}
|
|
9585
9585
|
*/
|