node-appwrite 20.0.0 → 20.2.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/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/models.d.mts +42 -0
- package/dist/models.d.ts +42 -0
- package/dist/services/account.d.mts +49 -0
- package/dist/services/account.d.ts +49 -0
- package/dist/services/account.js +70 -4
- package/dist/services/account.js.map +1 -1
- package/dist/services/account.mjs +70 -4
- package/dist/services/account.mjs.map +1 -1
- package/dist/services/databases.d.mts +173 -14
- package/dist/services/databases.d.ts +173 -14
- package/dist/services/databases.js +239 -12
- package/dist/services/databases.js.map +1 -1
- package/dist/services/databases.mjs +239 -12
- 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/sites.d.mts +2 -2
- package/dist/services/sites.d.ts +2 -2
- package/dist/services/sites.js.map +1 -1
- package/dist/services/sites.mjs.map +1 -1
- package/dist/services/tables-db.d.mts +221 -62
- package/dist/services/tables-db.d.ts +221 -62
- package/dist/services/tables-db.js +239 -12
- package/dist/services/tables-db.js.map +1 -1
- package/dist/services/tables-db.mjs +239 -12
- package/dist/services/tables-db.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -348,7 +348,7 @@ declare class Functions {
|
|
|
348
348
|
/**
|
|
349
349
|
* Create a deployment based on a template.
|
|
350
350
|
*
|
|
351
|
-
* Use this endpoint with combination of [listTemplates](https://appwrite.io/docs/
|
|
351
|
+
* Use this endpoint with combination of [listTemplates](https://appwrite.io/docs/products/functions/templates) to find the template details.
|
|
352
352
|
*
|
|
353
353
|
* @param {string} params.functionId - Function ID.
|
|
354
354
|
* @param {string} params.repository - Repository name of the template.
|
|
@@ -370,7 +370,7 @@ declare class Functions {
|
|
|
370
370
|
/**
|
|
371
371
|
* Create a deployment based on a template.
|
|
372
372
|
*
|
|
373
|
-
* Use this endpoint with combination of [listTemplates](https://appwrite.io/docs/
|
|
373
|
+
* Use this endpoint with combination of [listTemplates](https://appwrite.io/docs/products/functions/templates) to find the template details.
|
|
374
374
|
*
|
|
375
375
|
* @param {string} functionId - Function ID.
|
|
376
376
|
* @param {string} repository - Repository name of the template.
|
|
@@ -348,7 +348,7 @@ declare class Functions {
|
|
|
348
348
|
/**
|
|
349
349
|
* Create a deployment based on a template.
|
|
350
350
|
*
|
|
351
|
-
* Use this endpoint with combination of [listTemplates](https://appwrite.io/docs/
|
|
351
|
+
* Use this endpoint with combination of [listTemplates](https://appwrite.io/docs/products/functions/templates) to find the template details.
|
|
352
352
|
*
|
|
353
353
|
* @param {string} params.functionId - Function ID.
|
|
354
354
|
* @param {string} params.repository - Repository name of the template.
|
|
@@ -370,7 +370,7 @@ declare class Functions {
|
|
|
370
370
|
/**
|
|
371
371
|
* Create a deployment based on a template.
|
|
372
372
|
*
|
|
373
|
-
* Use this endpoint with combination of [listTemplates](https://appwrite.io/docs/
|
|
373
|
+
* Use this endpoint with combination of [listTemplates](https://appwrite.io/docs/products/functions/templates) to find the template details.
|
|
374
374
|
*
|
|
375
375
|
* @param {string} functionId - Function ID.
|
|
376
376
|
* @param {string} repository - Repository name of the template.
|