node-appwrite 18.0.0 → 19.0.0
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/dist/client.js +2 -2
- package/dist/client.js.map +1 -1
- package/dist/client.mjs +2 -2
- package/dist/client.mjs.map +1 -1
- package/dist/enums/credit-card.d.mts +1 -1
- package/dist/enums/credit-card.d.ts +1 -1
- package/dist/enums/credit-card.js +1 -1
- package/dist/enums/credit-card.js.map +1 -1
- package/dist/enums/credit-card.mjs +1 -1
- package/dist/enums/credit-card.mjs.map +1 -1
- package/dist/enums/execution-method.d.mts +2 -1
- package/dist/enums/execution-method.d.ts +2 -1
- package/dist/enums/execution-method.js +1 -0
- package/dist/enums/execution-method.js.map +1 -1
- package/dist/enums/execution-method.mjs +1 -0
- package/dist/enums/execution-method.mjs.map +1 -1
- package/dist/enums/index-type.d.mts +2 -1
- package/dist/enums/index-type.d.ts +2 -1
- package/dist/enums/index-type.js +1 -0
- package/dist/enums/index-type.js.map +1 -1
- package/dist/enums/index-type.mjs +1 -0
- package/dist/enums/index-type.mjs.map +1 -1
- package/dist/models.d.mts +250 -4
- package/dist/models.d.ts +250 -4
- package/dist/query.d.mts +128 -8
- package/dist/query.d.ts +128 -8
- package/dist/query.js +123 -3
- package/dist/query.js.map +1 -1
- package/dist/query.mjs +123 -3
- package/dist/query.mjs.map +1 -1
- package/dist/services/account.d.mts +2 -2
- package/dist/services/account.d.ts +2 -2
- package/dist/services/account.js.map +1 -1
- package/dist/services/account.mjs.map +1 -1
- package/dist/services/avatars.d.mts +2 -2
- package/dist/services/avatars.d.ts +2 -2
- package/dist/services/avatars.js.map +1 -1
- package/dist/services/avatars.mjs.map +1 -1
- package/dist/services/databases.d.mts +202 -1
- package/dist/services/databases.d.ts +202 -1
- package/dist/services/databases.js +318 -9
- package/dist/services/databases.js.map +1 -1
- package/dist/services/databases.mjs +318 -9
- package/dist/services/databases.mjs.map +1 -1
- package/dist/services/functions.d.mts +2 -2
- package/dist/services/functions.d.ts +2 -2
- package/dist/services/functions.js.map +1 -1
- package/dist/services/functions.mjs.map +1 -1
- package/dist/services/tables-db.d.mts +195 -0
- package/dist/services/tables-db.d.ts +195 -0
- package/dist/services/tables-db.js +318 -0
- package/dist/services/tables-db.js.map +1 -1
- package/dist/services/tables-db.mjs +318 -0
- package/dist/services/tables-db.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -525,7 +525,7 @@ declare class Functions {
|
|
|
525
525
|
* @param {string} params.body - HTTP body of execution. Default value is empty string.
|
|
526
526
|
* @param {boolean} params.async - Execute code in the background. Default value is false.
|
|
527
527
|
* @param {string} params.xpath - HTTP path of execution. Path can include query params. Default value is /
|
|
528
|
-
* @param {ExecutionMethod} params.method - HTTP method of execution. Default value is
|
|
528
|
+
* @param {ExecutionMethod} params.method - HTTP method of execution. Default value is POST.
|
|
529
529
|
* @param {object} params.headers - HTTP headers of execution. Defaults to empty.
|
|
530
530
|
* @param {string} params.scheduledAt - Scheduled execution time in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. DateTime value must be in future with precision in minutes.
|
|
531
531
|
* @throws {AppwriteException}
|
|
@@ -547,7 +547,7 @@ declare class Functions {
|
|
|
547
547
|
* @param {string} body - HTTP body of execution. Default value is empty string.
|
|
548
548
|
* @param {boolean} async - Execute code in the background. Default value is false.
|
|
549
549
|
* @param {string} xpath - HTTP path of execution. Path can include query params. Default value is /
|
|
550
|
-
* @param {ExecutionMethod} method - HTTP method of execution. Default value is
|
|
550
|
+
* @param {ExecutionMethod} method - HTTP method of execution. Default value is POST.
|
|
551
551
|
* @param {object} headers - HTTP headers of execution. Defaults to empty.
|
|
552
552
|
* @param {string} scheduledAt - Scheduled execution time in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. DateTime value must be in future with precision in minutes.
|
|
553
553
|
* @throws {AppwriteException}
|
|
@@ -525,7 +525,7 @@ declare class Functions {
|
|
|
525
525
|
* @param {string} params.body - HTTP body of execution. Default value is empty string.
|
|
526
526
|
* @param {boolean} params.async - Execute code in the background. Default value is false.
|
|
527
527
|
* @param {string} params.xpath - HTTP path of execution. Path can include query params. Default value is /
|
|
528
|
-
* @param {ExecutionMethod} params.method - HTTP method of execution. Default value is
|
|
528
|
+
* @param {ExecutionMethod} params.method - HTTP method of execution. Default value is POST.
|
|
529
529
|
* @param {object} params.headers - HTTP headers of execution. Defaults to empty.
|
|
530
530
|
* @param {string} params.scheduledAt - Scheduled execution time in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. DateTime value must be in future with precision in minutes.
|
|
531
531
|
* @throws {AppwriteException}
|
|
@@ -547,7 +547,7 @@ declare class Functions {
|
|
|
547
547
|
* @param {string} body - HTTP body of execution. Default value is empty string.
|
|
548
548
|
* @param {boolean} async - Execute code in the background. Default value is false.
|
|
549
549
|
* @param {string} xpath - HTTP path of execution. Path can include query params. Default value is /
|
|
550
|
-
* @param {ExecutionMethod} method - HTTP method of execution. Default value is
|
|
550
|
+
* @param {ExecutionMethod} method - HTTP method of execution. Default value is POST.
|
|
551
551
|
* @param {object} headers - HTTP headers of execution. Defaults to empty.
|
|
552
552
|
* @param {string} scheduledAt - Scheduled execution time in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. DateTime value must be in future with precision in minutes.
|
|
553
553
|
* @throws {AppwriteException}
|