@dropthis/cli 0.33.0 → 0.33.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/cli.cjs +51 -1
- package/dist/cli.cjs.map +1 -1
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -925,6 +925,56 @@ var COMMAND_ANNOTATIONS = {
|
|
|
925
925
|
"dropthis workspace use ws_team123"
|
|
926
926
|
]
|
|
927
927
|
},
|
|
928
|
+
"workspace create": {
|
|
929
|
+
auth: "required",
|
|
930
|
+
examples: ['dropthis workspace create "Acme" --slug acme --json']
|
|
931
|
+
},
|
|
932
|
+
"workspace rename": {
|
|
933
|
+
auth: "required",
|
|
934
|
+
examples: ['dropthis workspace rename ws_team123 --name "Acme Inc" --json']
|
|
935
|
+
},
|
|
936
|
+
"workspace delete": {
|
|
937
|
+
auth: "required",
|
|
938
|
+
examples: ["dropthis workspace delete ws_team123 --yes --json"]
|
|
939
|
+
},
|
|
940
|
+
members: {
|
|
941
|
+
auth: "required",
|
|
942
|
+
examples: ["dropthis members list ws_team123 --json"]
|
|
943
|
+
},
|
|
944
|
+
"members list": {
|
|
945
|
+
auth: "required",
|
|
946
|
+
examples: ["dropthis members list ws_team123 --json"]
|
|
947
|
+
},
|
|
948
|
+
"members invite": {
|
|
949
|
+
auth: "required",
|
|
950
|
+
examples: [
|
|
951
|
+
"dropthis members invite ws_team123 --email teammate@acme.com --role member --json"
|
|
952
|
+
]
|
|
953
|
+
},
|
|
954
|
+
"members role": {
|
|
955
|
+
auth: "required",
|
|
956
|
+
examples: ["dropthis members role ws_team123 acc_123 --role admin --json"]
|
|
957
|
+
},
|
|
958
|
+
"members remove": {
|
|
959
|
+
auth: "required",
|
|
960
|
+
examples: ["dropthis members remove ws_team123 acc_123 --yes --json"]
|
|
961
|
+
},
|
|
962
|
+
invitations: {
|
|
963
|
+
auth: "required",
|
|
964
|
+
examples: ["dropthis invitations --json"]
|
|
965
|
+
},
|
|
966
|
+
"invitations list": {
|
|
967
|
+
auth: "required",
|
|
968
|
+
examples: ["dropthis invitations list --json"]
|
|
969
|
+
},
|
|
970
|
+
"invitations accept": {
|
|
971
|
+
auth: "required",
|
|
972
|
+
examples: ["dropthis invitations accept --token inv_tok_abc --json"]
|
|
973
|
+
},
|
|
974
|
+
"invitations accept-by-id": {
|
|
975
|
+
auth: "required",
|
|
976
|
+
examples: ["dropthis invitations accept-by-id inv_123 --json"]
|
|
977
|
+
},
|
|
928
978
|
login: {
|
|
929
979
|
examples: [
|
|
930
980
|
"dropthis login",
|
|
@@ -1086,7 +1136,7 @@ function spreadData(data) {
|
|
|
1086
1136
|
}
|
|
1087
1137
|
|
|
1088
1138
|
// src/version.ts
|
|
1089
|
-
var CLI_VERSION = true ? "0.33.
|
|
1139
|
+
var CLI_VERSION = true ? "0.33.1" : "0.0.0-dev";
|
|
1090
1140
|
|
|
1091
1141
|
// src/commands/doctor.ts
|
|
1092
1142
|
async function onlineChecks(deps, hasCredential) {
|