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: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,9 @@
1
1
# Change Log
2
2
3
+
## 11.1.1
4
+
5
+
* Fix duplicate `enums` during type generation by prefixing them with table name. For example, `enum MyEnum` will now be generated as `enum MyTableMyEnum` to avoid conflicts.
6
+
3
7
## 11.1.0
4
8
5
9
* Add `total` parameter to list queries allowing skipping counting rows in a table for improved performance
Copy file name to clipboardExpand all lines: lib/commands/sites.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1478,7 +1478,7 @@ sites
1478
1478
1479
1479
sites
1480
1480
.command(`create-deployment`)
1481
-
.description(`Create a new site code deployment. Use this endpoint to upload a new version of your site code. To activate your newly uploaded code, you'll need to update the function's deployment to use your new deployment ID.`)
1481
+
.description(`Create a new site code deployment. Use this endpoint to upload a new version of your site code. To activate your newly uploaded code, you'll need to update the site's deployment to use your new deployment ID.`)
1482
1482
.requiredOption(`--site-id <site-id>`,`Site ID.`)
1483
1483
.requiredOption(`--code <code>`,`Gzip file with your code package. When used with the Appwrite CLI, pass the path to your code directory, and the CLI will automatically package your code. Use a path that is within the current directory.`)
1484
1484
.requiredOption(`--activate [value]`,`Automatically activate the deployment when it is finished building.`,(value)=>value===undefined ? true : parseBool(value))
0 commit comments