You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update bulk operation methods to reflect warning message
9
+
* Fix file parameter handling in chunked upload method
10
+
3
11
## 17.0.0
4
12
5
-
* Add `<REGION>` to doc examples due to the new multi region endpoints
13
+
* Add `REGION` to doc examples due to the new multi region endpoints
6
14
* Add doc examples and methods for bulk api transactions: `createDocuments`, `deleteDocuments` etc.
7
15
* Add doc examples, class and methods for new `Sites` service
8
16
* Add doc examples, class and methods for new `Tokens` service
9
-
* Add enums for `BuildRuntime`, `Adapter`, `Framework`, `DeploymentDownloadType` and `VCSDeploymentType`
17
+
* Add enums for `BuildRuntime`, `Adapter`, `Framework`, `DeploymentDownloadType` and `VCSDeploymentType`
10
18
* Updates enum for `runtimes` with Pythonml312, Dart219, Flutter327 and Flutter329
11
19
* Add `token` param to `getFilePreview` and `getFileView` for File tokens usage
12
20
* Add `queries` and `search` params to `listMemberships` method
13
-
* Removes `search` param from `listExecutions` method
21
+
* Removes `search` param from `listExecutions` method
22
+
23
+
## 16.0.0
24
+
25
+
* Fix: remove content-type from GET requests
26
+
* Update (breaking): min and max params are now optional in `updateFloatAttribute` and `updateIntegerAttribute` methods (changes their positioning in method definition)
27
+
28
+
## 15.0.1
29
+
30
+
* Remove titles from all function descriptions
31
+
* Fix typing for collection "attribute" key
32
+
* Remove unnecessary awaits and asyncs
33
+
* Ensure `AppwriteException` response is always string
34
+
35
+
## 15.0.0
36
+
37
+
* Fix: pong response & chunked upload
38
+
39
+
## 14.2.0
40
+
41
+
* Add new push message parameters
42
+
43
+
## 14.1.0
44
+
45
+
* Support updating attribute name and size
46
+
47
+
## 14.0.0
48
+
49
+
* Support for Appwrite 1.6
50
+
* Add `key` attribute to `Runtime` response model.
51
+
* Add `buildSize` attribute to `Deployments` response model
52
+
* Add `scheduledAt` attribute to `Executions` response model
53
+
* Add `scopes` attribute to `Functions` response model
54
+
* Add `specifications` attribute to `Functions` response model
55
+
* Add new response model for `Specifications`
56
+
* Add new response model for `Builds`
57
+
* Add `createJWT()` : Enables creating a JWT using the `userId`
58
+
* Add `listSpecifications()`: Enables listing available runtime specifications
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
"name": "node-appwrite",
3
3
"homepage": "https://appwrite.io/support",
4
4
"description": "Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API",
Copy file name to clipboardExpand all lines: src/services/databases.ts
+62-5Lines changed: 62 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1660,7 +1660,9 @@ export class Databases {
1660
1660
);
1661
1661
}
1662
1662
/**
1663
-
* Create new Documents. Before using this route, you should create a new collection resource using either a [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection) API or directly from your database console.
1663
+
* **WARNING: Experimental Feature** - This endpoint is experimental and not yet officially supported. It may be subject to breaking changes or removal in future versions.
1664
+
1665
+
Create new Documents. Before using this route, you should create a new collection resource using either a [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection) API or directly from your database console.
1664
1666
*
1665
1667
* @param {string} databaseId
1666
1668
* @param {string} collectionId
@@ -1697,22 +1699,26 @@ export class Databases {
1697
1699
);
1698
1700
}
1699
1701
/**
1700
-
* Create or update Documents. Before using this route, you should create a new collection resource using either a [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection) API or directly from your database console.
1702
+
* **WARNING: Experimental Feature** - This endpoint is experimental and not yet officially supported. It may be subject to breaking changes or removal in future versions.
1701
1703
1704
+
Create or update Documents. Before using this route, you should create a new collection resource using either a [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection) API or directly from your database console.
* Update all documents that match your queries, if no queries are submitted then all documents are updated. You can pass only specific fields to be updated.
1741
+
* **WARNING: Experimental Feature** - This endpoint is experimental and not yet officially supported. It may be subject to breaking changes or removal in future versions.
1742
+
1743
+
Update all documents that match your queries, if no queries are submitted then all documents are updated. You can pass only specific fields to be updated.
1736
1744
*
1737
1745
* @param {string} databaseId
1738
1746
* @param {string} collectionId
@@ -1770,7 +1778,9 @@ export class Databases {
1770
1778
);
1771
1779
}
1772
1780
/**
1773
-
* Bulk delete documents using queries, if no queries are passed then all documents are deleted.
1781
+
* **WARNING: Experimental Feature** - This endpoint is experimental and not yet officially supported. It may be subject to breaking changes or removal in future versions.
1782
+
1783
+
Bulk delete documents using queries, if no queries are passed then all documents are deleted.
1774
1784
*
1775
1785
* @param {string} databaseId
1776
1786
* @param {string} collectionId
@@ -1840,6 +1850,53 @@ export class Databases {
1840
1850
payload,
1841
1851
);
1842
1852
}
1853
+
/**
1854
+
* **WARNING: Experimental Feature** - This endpoint is experimental and not yet officially supported. It may be subject to breaking changes or removal in future versions.
1855
+
1856
+
Create or update a Document. Before using this route, you should create a new collection resource using either a [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection) API or directly from your database console.
0 commit comments