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
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/models.ts
+38Lines changed: 38 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -379,6 +379,19 @@ export namespace Models {
379
379
*/
380
380
targets: Target[];
381
381
}
382
+
/**
383
+
* Specifications List
384
+
*/
385
+
exporttypeSpecificationList={
386
+
/**
387
+
* Total number of specifications documents that matched your query.
388
+
*/
389
+
total: number;
390
+
/**
391
+
* List of specifications.
392
+
*/
393
+
specifications: Specification[];
394
+
}
382
395
/**
383
396
* Database
384
397
*/
@@ -1728,6 +1741,10 @@ export namespace Models {
1728
1741
* Is VCS (Version Control System) connection is in silent mode? When in silence mode, no comments will be posted on the repository pull or merge requests
1729
1742
*/
1730
1743
providerSilentMode: boolean;
1744
+
/**
1745
+
* Machine specification for builds and executions.
0 commit comments