@appwrite.io/console 1.4.0 → 1.4.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 +3 -3
- package/dist/cjs/sdk.js.map +1 -1
- package/dist/esm/sdk.js +3 -3
- package/dist/esm/sdk.js.map +1 -1
- package/dist/iife/sdk.js +3 -3
- package/package.json +1 -1
- package/src/client.ts +1 -1
- package/src/services/account.ts +4 -4
- package/types/services/account.d.ts +4 -4
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.4.
|
|
36
|
+
<script src="https://cdn.jsdelivr.net/npm/@appwrite.io/console@1.4.1"></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.4.
|
|
283
|
+
'x-sdk-version': '1.4.1',
|
|
284
284
|
'X-Appwrite-Response-Format': '1.6.0',
|
|
285
285
|
};
|
|
286
286
|
this.realtime = {
|
|
@@ -820,7 +820,7 @@ class Account {
|
|
|
820
820
|
* @param {string} postalCode
|
|
821
821
|
* @param {string} addressLine2
|
|
822
822
|
* @throws {AppwriteException}
|
|
823
|
-
* @returns {Promise<
|
|
823
|
+
* @returns {Promise<Models.BillingAddress>}
|
|
824
824
|
*/
|
|
825
825
|
createBillingAddress(country, streetAddress, city, state, postalCode, addressLine2) {
|
|
826
826
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -897,7 +897,7 @@ class Account {
|
|
|
897
897
|
* @param {string} postalCode
|
|
898
898
|
* @param {string} addressLine2
|
|
899
899
|
* @throws {AppwriteException}
|
|
900
|
-
* @returns {Promise<
|
|
900
|
+
* @returns {Promise<Models.BillingAddress>}
|
|
901
901
|
*/
|
|
902
902
|
updateBillingAddress(billingAddressId, country, streetAddress, city, state, postalCode, addressLine2) {
|
|
903
903
|
return __awaiter(this, void 0, void 0, function* () {
|