-
Notifications
You must be signed in to change notification settings - Fork 45
feat: Command Line SDK update for version 21.0.0 #307
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 8 commits
9ae8c4f
fe081e2
1f49ed7
c5a44e3
c5047b5
47ee300
fa46fdc
6e397d0
11f70e3
37682f3
b3197fe
9959105
b6f9921
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| ```bash | ||
| appwrite databases create-big-int-attribute \ | ||
| --database-id <DATABASE_ID> \ | ||
| --collection-id <COLLECTION_ID> \ | ||
| --key '' \ | ||
| --required false | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| ```bash | ||
| appwrite databases update-big-int-attribute \ | ||
| --database-id <DATABASE_ID> \ | ||
| --collection-id <COLLECTION_ID> \ | ||
| --key '' \ | ||
| --required false \ | ||
| --default null | ||
| ``` | ||
|
Comment on lines
+1
to
+8
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The example uses |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| ```bash | ||
| appwrite functions create-variable \ | ||
| --function-id <FUNCTION_ID> \ | ||
| --variable-id <VARIABLE_ID> \ | ||
| --key <KEY> \ | ||
| --value <VALUE> | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| ```bash | ||
| appwrite functions list-variables \ | ||
| --function-id <FUNCTION_ID> | ||
| --function-id <FUNCTION_ID> \ | ||
| --limit 25 | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,5 @@ | ||
| ```bash | ||
| appwrite functions update-variable \ | ||
| --function-id <FUNCTION_ID> \ | ||
| --variable-id <VARIABLE_ID> \ | ||
| --key <KEY> | ||
| --variable-id <VARIABLE_ID> | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| ```bash | ||
| appwrite presences delete \ | ||
| --presence-id <PRESENCE_ID> | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| ```bash | ||
| appwrite presences get-usage | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| ```bash | ||
| appwrite presences get \ | ||
| --presence-id <PRESENCE_ID> | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| ```bash | ||
| appwrite presences list \ | ||
| --limit 25 | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| ```bash | ||
| appwrite presences update-presence \ | ||
| --presence-id <PRESENCE_ID> \ | ||
| --user-id <USER_ID> | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| ```bash | ||
| appwrite presences upsert \ | ||
| --presence-id <PRESENCE_ID> \ | ||
| --user-id <USER_ID> \ | ||
| --status <STATUS> | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| ```bash | ||
| appwrite project create-ephemeral-key \ | ||
| --scopes one two three \ | ||
| --duration 1 | ||
| --duration 600 | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| ```bash | ||
| appwrite project get-o-auth-2-provider \ | ||
| --provider <PROVIDER> | ||
| --provider-id amazon | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| ```bash | ||
| appwrite project list-o-auth-2-providers | ||
| appwrite project list-o-auth-2-providers \ | ||
| --limit 25 | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| ```bash | ||
| appwrite proxy update-rule-status \ | ||
| --rule-id <RULE_ID> | ||
| ``` |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| ```bash | ||
| appwrite sites create-variable \ | ||
| --site-id <SITE_ID> \ | ||
| --variable-id <VARIABLE_ID> \ | ||
| --key <KEY> \ | ||
| --value <VALUE> | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| ```bash | ||
| appwrite sites list-variables \ | ||
| --site-id <SITE_ID> | ||
| --site-id <SITE_ID> \ | ||
| --limit 25 | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,5 @@ | ||
| ```bash | ||
| appwrite sites update-variable \ | ||
| --site-id <SITE_ID> \ | ||
| --variable-id <VARIABLE_ID> \ | ||
| --key <KEY> | ||
| --variable-id <VARIABLE_ID> | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| ```bash | ||
| appwrite tables-db create-big-int-column \ | ||
| --database-id <DATABASE_ID> \ | ||
| --table-id <TABLE_ID> \ | ||
| --key '' \ | ||
| --required false | ||
| ``` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| ```bash | ||
| appwrite tables-db update-big-int-column \ | ||
| --database-id <DATABASE_ID> \ | ||
| --table-id <TABLE_ID> \ | ||
| --key '' \ | ||
| --required false \ | ||
| --default null | ||
| ``` |
Uh oh!
There was an error while loading. Please reload this page.