@bussolabs/closeyourit-cli 0.0.10 → 0.0.12
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/README.md +2 -0
- package/dist/commands/tickets/approve.d.ts +12 -0
- package/dist/commands/tickets/approve.js +24 -0
- package/dist/commands/tickets/attachment-download.js +3 -3
- package/dist/commands/tickets/comments.js +9 -4
- package/dist/commands/tickets/reject.d.ts +13 -0
- package/dist/commands/tickets/reject.js +29 -0
- package/dist/commands/tickets/show.d.ts +5 -0
- package/dist/commands/tickets/show.js +90 -6
- package/dist/lib/output.d.ts +13 -0
- package/dist/lib/output.js +13 -0
- package/oclif.manifest.json +810 -706
- package/opencli.json +149 -3
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -880,19 +880,13 @@
|
|
|
880
880
|
"update.js"
|
|
881
881
|
]
|
|
882
882
|
},
|
|
883
|
-
"
|
|
883
|
+
"errors:list": {
|
|
884
884
|
"aliases": [],
|
|
885
|
-
"args": {
|
|
886
|
-
|
|
887
|
-
"description": "Email address to invite",
|
|
888
|
-
"name": "email",
|
|
889
|
-
"required": true
|
|
890
|
-
}
|
|
891
|
-
},
|
|
892
|
-
"description": "Invite a person to the organization. Prints the acceptance link (shown only once).",
|
|
885
|
+
"args": {},
|
|
886
|
+
"description": "List error groups for a project",
|
|
893
887
|
"examples": [
|
|
894
|
-
"<%= config.bin %>
|
|
895
|
-
"<%= config.bin %>
|
|
888
|
+
"<%= config.bin %> errors list --project acme-api",
|
|
889
|
+
"<%= config.bin %> errors list -p acme-api --status unresolved --json"
|
|
896
890
|
],
|
|
897
891
|
"flags": {
|
|
898
892
|
"json": {
|
|
@@ -902,23 +896,34 @@
|
|
|
902
896
|
"allowNo": false,
|
|
903
897
|
"type": "boolean"
|
|
904
898
|
},
|
|
905
|
-
"
|
|
906
|
-
"
|
|
907
|
-
"
|
|
908
|
-
"
|
|
899
|
+
"project": {
|
|
900
|
+
"char": "p",
|
|
901
|
+
"description": "Project id (UUID) or key",
|
|
902
|
+
"name": "project",
|
|
903
|
+
"required": true,
|
|
904
|
+
"hasDynamicHelp": false,
|
|
905
|
+
"multiple": false,
|
|
906
|
+
"type": "option"
|
|
907
|
+
},
|
|
908
|
+
"page": {
|
|
909
|
+
"description": "Page number",
|
|
910
|
+
"name": "page",
|
|
911
|
+
"default": 1,
|
|
912
|
+
"hasDynamicHelp": false,
|
|
913
|
+
"multiple": false,
|
|
914
|
+
"type": "option"
|
|
915
|
+
},
|
|
916
|
+
"status": {
|
|
917
|
+
"description": "Filter by status (e.g. unresolved, resolved, muted)",
|
|
918
|
+
"name": "status",
|
|
909
919
|
"hasDynamicHelp": false,
|
|
910
920
|
"multiple": false,
|
|
911
|
-
"options": [
|
|
912
|
-
"customer",
|
|
913
|
-
"member",
|
|
914
|
-
"admin"
|
|
915
|
-
],
|
|
916
921
|
"type": "option"
|
|
917
922
|
}
|
|
918
923
|
},
|
|
919
924
|
"hasDynamicHelp": false,
|
|
920
925
|
"hiddenAliases": [],
|
|
921
|
-
"id": "
|
|
926
|
+
"id": "errors:list",
|
|
922
927
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
923
928
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
924
929
|
"pluginType": "core",
|
|
@@ -928,17 +933,22 @@
|
|
|
928
933
|
"relativePath": [
|
|
929
934
|
"dist",
|
|
930
935
|
"commands",
|
|
931
|
-
"
|
|
932
|
-
"
|
|
936
|
+
"errors",
|
|
937
|
+
"list.js"
|
|
933
938
|
]
|
|
934
939
|
},
|
|
935
|
-
"
|
|
940
|
+
"errors:mute": {
|
|
936
941
|
"aliases": [],
|
|
937
|
-
"args": {
|
|
938
|
-
|
|
942
|
+
"args": {
|
|
943
|
+
"id": {
|
|
944
|
+
"description": "Error group id",
|
|
945
|
+
"name": "id",
|
|
946
|
+
"required": true
|
|
947
|
+
}
|
|
948
|
+
},
|
|
949
|
+
"description": "Mute an error group",
|
|
939
950
|
"examples": [
|
|
940
|
-
"<%= config.bin %>
|
|
941
|
-
"<%= config.bin %> invitations list --json"
|
|
951
|
+
"<%= config.bin %> errors mute <group-id> --project acme-api"
|
|
942
952
|
],
|
|
943
953
|
"flags": {
|
|
944
954
|
"json": {
|
|
@@ -948,10 +958,11 @@
|
|
|
948
958
|
"allowNo": false,
|
|
949
959
|
"type": "boolean"
|
|
950
960
|
},
|
|
951
|
-
"
|
|
952
|
-
"
|
|
953
|
-
"
|
|
954
|
-
"
|
|
961
|
+
"project": {
|
|
962
|
+
"char": "p",
|
|
963
|
+
"description": "Project id (UUID) or key",
|
|
964
|
+
"name": "project",
|
|
965
|
+
"required": true,
|
|
955
966
|
"hasDynamicHelp": false,
|
|
956
967
|
"multiple": false,
|
|
957
968
|
"type": "option"
|
|
@@ -959,7 +970,7 @@
|
|
|
959
970
|
},
|
|
960
971
|
"hasDynamicHelp": false,
|
|
961
972
|
"hiddenAliases": [],
|
|
962
|
-
"id": "
|
|
973
|
+
"id": "errors:mute",
|
|
963
974
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
964
975
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
965
976
|
"pluginType": "core",
|
|
@@ -969,22 +980,22 @@
|
|
|
969
980
|
"relativePath": [
|
|
970
981
|
"dist",
|
|
971
982
|
"commands",
|
|
972
|
-
"
|
|
973
|
-
"
|
|
983
|
+
"errors",
|
|
984
|
+
"mute.js"
|
|
974
985
|
]
|
|
975
986
|
},
|
|
976
|
-
"
|
|
987
|
+
"errors:promote": {
|
|
977
988
|
"aliases": [],
|
|
978
989
|
"args": {
|
|
979
990
|
"id": {
|
|
980
|
-
"description": "
|
|
991
|
+
"description": "Error group id",
|
|
981
992
|
"name": "id",
|
|
982
993
|
"required": true
|
|
983
994
|
}
|
|
984
995
|
},
|
|
985
|
-
"description": "
|
|
996
|
+
"description": "Promote an error group to a ticket",
|
|
986
997
|
"examples": [
|
|
987
|
-
"<%= config.bin %>
|
|
998
|
+
"<%= config.bin %> errors promote <group-id> --project acme-api"
|
|
988
999
|
],
|
|
989
1000
|
"flags": {
|
|
990
1001
|
"json": {
|
|
@@ -993,11 +1004,20 @@
|
|
|
993
1004
|
"name": "json",
|
|
994
1005
|
"allowNo": false,
|
|
995
1006
|
"type": "boolean"
|
|
1007
|
+
},
|
|
1008
|
+
"project": {
|
|
1009
|
+
"char": "p",
|
|
1010
|
+
"description": "Project id (UUID) or key",
|
|
1011
|
+
"name": "project",
|
|
1012
|
+
"required": true,
|
|
1013
|
+
"hasDynamicHelp": false,
|
|
1014
|
+
"multiple": false,
|
|
1015
|
+
"type": "option"
|
|
996
1016
|
}
|
|
997
1017
|
},
|
|
998
1018
|
"hasDynamicHelp": false,
|
|
999
1019
|
"hiddenAliases": [],
|
|
1000
|
-
"id": "
|
|
1020
|
+
"id": "errors:promote",
|
|
1001
1021
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1002
1022
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1003
1023
|
"pluginType": "core",
|
|
@@ -1007,22 +1027,22 @@
|
|
|
1007
1027
|
"relativePath": [
|
|
1008
1028
|
"dist",
|
|
1009
1029
|
"commands",
|
|
1010
|
-
"
|
|
1011
|
-
"
|
|
1030
|
+
"errors",
|
|
1031
|
+
"promote.js"
|
|
1012
1032
|
]
|
|
1013
1033
|
},
|
|
1014
|
-
"
|
|
1034
|
+
"errors:reopen": {
|
|
1015
1035
|
"aliases": [],
|
|
1016
1036
|
"args": {
|
|
1017
1037
|
"id": {
|
|
1018
|
-
"description": "
|
|
1038
|
+
"description": "Error group id",
|
|
1019
1039
|
"name": "id",
|
|
1020
1040
|
"required": true
|
|
1021
1041
|
}
|
|
1022
1042
|
},
|
|
1023
|
-
"description": "
|
|
1043
|
+
"description": "Reopen a resolved error group",
|
|
1024
1044
|
"examples": [
|
|
1025
|
-
"<%= config.bin %>
|
|
1045
|
+
"<%= config.bin %> errors reopen <group-id> --project acme-api"
|
|
1026
1046
|
],
|
|
1027
1047
|
"flags": {
|
|
1028
1048
|
"json": {
|
|
@@ -1031,11 +1051,20 @@
|
|
|
1031
1051
|
"name": "json",
|
|
1032
1052
|
"allowNo": false,
|
|
1033
1053
|
"type": "boolean"
|
|
1054
|
+
},
|
|
1055
|
+
"project": {
|
|
1056
|
+
"char": "p",
|
|
1057
|
+
"description": "Project id (UUID) or key",
|
|
1058
|
+
"name": "project",
|
|
1059
|
+
"required": true,
|
|
1060
|
+
"hasDynamicHelp": false,
|
|
1061
|
+
"multiple": false,
|
|
1062
|
+
"type": "option"
|
|
1034
1063
|
}
|
|
1035
1064
|
},
|
|
1036
1065
|
"hasDynamicHelp": false,
|
|
1037
1066
|
"hiddenAliases": [],
|
|
1038
|
-
"id": "
|
|
1067
|
+
"id": "errors:reopen",
|
|
1039
1068
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1040
1069
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1041
1070
|
"pluginType": "core",
|
|
@@ -1045,17 +1074,22 @@
|
|
|
1045
1074
|
"relativePath": [
|
|
1046
1075
|
"dist",
|
|
1047
1076
|
"commands",
|
|
1048
|
-
"
|
|
1049
|
-
"
|
|
1077
|
+
"errors",
|
|
1078
|
+
"reopen.js"
|
|
1050
1079
|
]
|
|
1051
1080
|
},
|
|
1052
|
-
"errors:
|
|
1081
|
+
"errors:resolve": {
|
|
1053
1082
|
"aliases": [],
|
|
1054
|
-
"args": {
|
|
1055
|
-
|
|
1083
|
+
"args": {
|
|
1084
|
+
"id": {
|
|
1085
|
+
"description": "Error group id",
|
|
1086
|
+
"name": "id",
|
|
1087
|
+
"required": true
|
|
1088
|
+
}
|
|
1089
|
+
},
|
|
1090
|
+
"description": "Mark an error group as resolved",
|
|
1056
1091
|
"examples": [
|
|
1057
|
-
"<%= config.bin %> errors
|
|
1058
|
-
"<%= config.bin %> errors list -p acme-api --status unresolved --json"
|
|
1092
|
+
"<%= config.bin %> errors resolve <group-id> --project acme-api"
|
|
1059
1093
|
],
|
|
1060
1094
|
"flags": {
|
|
1061
1095
|
"json": {
|
|
@@ -1073,26 +1107,11 @@
|
|
|
1073
1107
|
"hasDynamicHelp": false,
|
|
1074
1108
|
"multiple": false,
|
|
1075
1109
|
"type": "option"
|
|
1076
|
-
},
|
|
1077
|
-
"page": {
|
|
1078
|
-
"description": "Page number",
|
|
1079
|
-
"name": "page",
|
|
1080
|
-
"default": 1,
|
|
1081
|
-
"hasDynamicHelp": false,
|
|
1082
|
-
"multiple": false,
|
|
1083
|
-
"type": "option"
|
|
1084
|
-
},
|
|
1085
|
-
"status": {
|
|
1086
|
-
"description": "Filter by status (e.g. unresolved, resolved, muted)",
|
|
1087
|
-
"name": "status",
|
|
1088
|
-
"hasDynamicHelp": false,
|
|
1089
|
-
"multiple": false,
|
|
1090
|
-
"type": "option"
|
|
1091
1110
|
}
|
|
1092
1111
|
},
|
|
1093
1112
|
"hasDynamicHelp": false,
|
|
1094
1113
|
"hiddenAliases": [],
|
|
1095
|
-
"id": "errors:
|
|
1114
|
+
"id": "errors:resolve",
|
|
1096
1115
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1097
1116
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1098
1117
|
"pluginType": "core",
|
|
@@ -1103,10 +1122,10 @@
|
|
|
1103
1122
|
"dist",
|
|
1104
1123
|
"commands",
|
|
1105
1124
|
"errors",
|
|
1106
|
-
"
|
|
1125
|
+
"resolve.js"
|
|
1107
1126
|
]
|
|
1108
1127
|
},
|
|
1109
|
-
"errors:
|
|
1128
|
+
"errors:show": {
|
|
1110
1129
|
"aliases": [],
|
|
1111
1130
|
"args": {
|
|
1112
1131
|
"id": {
|
|
@@ -1115,9 +1134,9 @@
|
|
|
1115
1134
|
"required": true
|
|
1116
1135
|
}
|
|
1117
1136
|
},
|
|
1118
|
-
"description": "
|
|
1137
|
+
"description": "Show a single error group",
|
|
1119
1138
|
"examples": [
|
|
1120
|
-
"<%= config.bin %> errors
|
|
1139
|
+
"<%= config.bin %> errors show <group-id> --project acme-api"
|
|
1121
1140
|
],
|
|
1122
1141
|
"flags": {
|
|
1123
1142
|
"json": {
|
|
@@ -1139,7 +1158,7 @@
|
|
|
1139
1158
|
},
|
|
1140
1159
|
"hasDynamicHelp": false,
|
|
1141
1160
|
"hiddenAliases": [],
|
|
1142
|
-
"id": "errors:
|
|
1161
|
+
"id": "errors:show",
|
|
1143
1162
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1144
1163
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1145
1164
|
"pluginType": "core",
|
|
@@ -1150,10 +1169,10 @@
|
|
|
1150
1169
|
"dist",
|
|
1151
1170
|
"commands",
|
|
1152
1171
|
"errors",
|
|
1153
|
-
"
|
|
1172
|
+
"show.js"
|
|
1154
1173
|
]
|
|
1155
1174
|
},
|
|
1156
|
-
"errors:
|
|
1175
|
+
"errors:unmute": {
|
|
1157
1176
|
"aliases": [],
|
|
1158
1177
|
"args": {
|
|
1159
1178
|
"id": {
|
|
@@ -1162,9 +1181,9 @@
|
|
|
1162
1181
|
"required": true
|
|
1163
1182
|
}
|
|
1164
1183
|
},
|
|
1165
|
-
"description": "
|
|
1184
|
+
"description": "Unmute an error group",
|
|
1166
1185
|
"examples": [
|
|
1167
|
-
"<%= config.bin %> errors
|
|
1186
|
+
"<%= config.bin %> errors unmute <group-id> --project acme-api"
|
|
1168
1187
|
],
|
|
1169
1188
|
"flags": {
|
|
1170
1189
|
"json": {
|
|
@@ -1186,7 +1205,7 @@
|
|
|
1186
1205
|
},
|
|
1187
1206
|
"hasDynamicHelp": false,
|
|
1188
1207
|
"hiddenAliases": [],
|
|
1189
|
-
"id": "errors:
|
|
1208
|
+
"id": "errors:unmute",
|
|
1190
1209
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1191
1210
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1192
1211
|
"pluginType": "core",
|
|
@@ -1197,21 +1216,22 @@
|
|
|
1197
1216
|
"dist",
|
|
1198
1217
|
"commands",
|
|
1199
1218
|
"errors",
|
|
1200
|
-
"
|
|
1219
|
+
"unmute.js"
|
|
1201
1220
|
]
|
|
1202
1221
|
},
|
|
1203
|
-
"
|
|
1222
|
+
"invitations:create": {
|
|
1204
1223
|
"aliases": [],
|
|
1205
1224
|
"args": {
|
|
1206
|
-
"
|
|
1207
|
-
"description": "
|
|
1208
|
-
"name": "
|
|
1225
|
+
"email": {
|
|
1226
|
+
"description": "Email address to invite",
|
|
1227
|
+
"name": "email",
|
|
1209
1228
|
"required": true
|
|
1210
1229
|
}
|
|
1211
1230
|
},
|
|
1212
|
-
"description": "
|
|
1231
|
+
"description": "Invite a person to the organization. Prints the acceptance link (shown only once).",
|
|
1213
1232
|
"examples": [
|
|
1214
|
-
"<%= config.bin %>
|
|
1233
|
+
"<%= config.bin %> invitations create client@acme.com",
|
|
1234
|
+
"<%= config.bin %> invitations create teammate@acme.com --role member"
|
|
1215
1235
|
],
|
|
1216
1236
|
"flags": {
|
|
1217
1237
|
"json": {
|
|
@@ -1221,19 +1241,23 @@
|
|
|
1221
1241
|
"allowNo": false,
|
|
1222
1242
|
"type": "boolean"
|
|
1223
1243
|
},
|
|
1224
|
-
"
|
|
1225
|
-
"
|
|
1226
|
-
"
|
|
1227
|
-
"
|
|
1228
|
-
"required": true,
|
|
1244
|
+
"role": {
|
|
1245
|
+
"description": "Membership role",
|
|
1246
|
+
"name": "role",
|
|
1247
|
+
"default": "customer",
|
|
1229
1248
|
"hasDynamicHelp": false,
|
|
1230
1249
|
"multiple": false,
|
|
1250
|
+
"options": [
|
|
1251
|
+
"customer",
|
|
1252
|
+
"member",
|
|
1253
|
+
"admin"
|
|
1254
|
+
],
|
|
1231
1255
|
"type": "option"
|
|
1232
1256
|
}
|
|
1233
1257
|
},
|
|
1234
1258
|
"hasDynamicHelp": false,
|
|
1235
1259
|
"hiddenAliases": [],
|
|
1236
|
-
"id": "
|
|
1260
|
+
"id": "invitations:create",
|
|
1237
1261
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1238
1262
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1239
1263
|
"pluginType": "core",
|
|
@@ -1243,22 +1267,17 @@
|
|
|
1243
1267
|
"relativePath": [
|
|
1244
1268
|
"dist",
|
|
1245
1269
|
"commands",
|
|
1246
|
-
"
|
|
1247
|
-
"
|
|
1270
|
+
"invitations",
|
|
1271
|
+
"create.js"
|
|
1248
1272
|
]
|
|
1249
1273
|
},
|
|
1250
|
-
"
|
|
1274
|
+
"invitations:list": {
|
|
1251
1275
|
"aliases": [],
|
|
1252
|
-
"args": {
|
|
1253
|
-
|
|
1254
|
-
"description": "Error group id",
|
|
1255
|
-
"name": "id",
|
|
1256
|
-
"required": true
|
|
1257
|
-
}
|
|
1258
|
-
},
|
|
1259
|
-
"description": "Mark an error group as resolved",
|
|
1276
|
+
"args": {},
|
|
1277
|
+
"description": "List the pending/accepted invitations of your organization",
|
|
1260
1278
|
"examples": [
|
|
1261
|
-
"<%= config.bin %>
|
|
1279
|
+
"<%= config.bin %> invitations list",
|
|
1280
|
+
"<%= config.bin %> invitations list --json"
|
|
1262
1281
|
],
|
|
1263
1282
|
"flags": {
|
|
1264
1283
|
"json": {
|
|
@@ -1268,11 +1287,10 @@
|
|
|
1268
1287
|
"allowNo": false,
|
|
1269
1288
|
"type": "boolean"
|
|
1270
1289
|
},
|
|
1271
|
-
"
|
|
1272
|
-
"
|
|
1273
|
-
"
|
|
1274
|
-
"
|
|
1275
|
-
"required": true,
|
|
1290
|
+
"page": {
|
|
1291
|
+
"description": "Page number",
|
|
1292
|
+
"name": "page",
|
|
1293
|
+
"default": 1,
|
|
1276
1294
|
"hasDynamicHelp": false,
|
|
1277
1295
|
"multiple": false,
|
|
1278
1296
|
"type": "option"
|
|
@@ -1280,7 +1298,7 @@
|
|
|
1280
1298
|
},
|
|
1281
1299
|
"hasDynamicHelp": false,
|
|
1282
1300
|
"hiddenAliases": [],
|
|
1283
|
-
"id": "
|
|
1301
|
+
"id": "invitations:list",
|
|
1284
1302
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1285
1303
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1286
1304
|
"pluginType": "core",
|
|
@@ -1290,22 +1308,22 @@
|
|
|
1290
1308
|
"relativePath": [
|
|
1291
1309
|
"dist",
|
|
1292
1310
|
"commands",
|
|
1293
|
-
"
|
|
1294
|
-
"
|
|
1311
|
+
"invitations",
|
|
1312
|
+
"list.js"
|
|
1295
1313
|
]
|
|
1296
1314
|
},
|
|
1297
|
-
"
|
|
1315
|
+
"invitations:resend": {
|
|
1298
1316
|
"aliases": [],
|
|
1299
1317
|
"args": {
|
|
1300
1318
|
"id": {
|
|
1301
|
-
"description": "
|
|
1319
|
+
"description": "Invitation id (UUID)",
|
|
1302
1320
|
"name": "id",
|
|
1303
1321
|
"required": true
|
|
1304
1322
|
}
|
|
1305
1323
|
},
|
|
1306
|
-
"description": "
|
|
1324
|
+
"description": "Resend a pending invitation. Prints the acceptance link (shown only once).",
|
|
1307
1325
|
"examples": [
|
|
1308
|
-
"<%= config.bin %>
|
|
1326
|
+
"<%= config.bin %> invitations resend <invitation-uuid>"
|
|
1309
1327
|
],
|
|
1310
1328
|
"flags": {
|
|
1311
1329
|
"json": {
|
|
@@ -1314,20 +1332,11 @@
|
|
|
1314
1332
|
"name": "json",
|
|
1315
1333
|
"allowNo": false,
|
|
1316
1334
|
"type": "boolean"
|
|
1317
|
-
},
|
|
1318
|
-
"project": {
|
|
1319
|
-
"char": "p",
|
|
1320
|
-
"description": "Project id (UUID) or key",
|
|
1321
|
-
"name": "project",
|
|
1322
|
-
"required": true,
|
|
1323
|
-
"hasDynamicHelp": false,
|
|
1324
|
-
"multiple": false,
|
|
1325
|
-
"type": "option"
|
|
1326
1335
|
}
|
|
1327
1336
|
},
|
|
1328
1337
|
"hasDynamicHelp": false,
|
|
1329
1338
|
"hiddenAliases": [],
|
|
1330
|
-
"id": "
|
|
1339
|
+
"id": "invitations:resend",
|
|
1331
1340
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1332
1341
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1333
1342
|
"pluginType": "core",
|
|
@@ -1337,22 +1346,22 @@
|
|
|
1337
1346
|
"relativePath": [
|
|
1338
1347
|
"dist",
|
|
1339
1348
|
"commands",
|
|
1340
|
-
"
|
|
1341
|
-
"
|
|
1349
|
+
"invitations",
|
|
1350
|
+
"resend.js"
|
|
1342
1351
|
]
|
|
1343
1352
|
},
|
|
1344
|
-
"
|
|
1353
|
+
"invitations:revoke": {
|
|
1345
1354
|
"aliases": [],
|
|
1346
1355
|
"args": {
|
|
1347
1356
|
"id": {
|
|
1348
|
-
"description": "
|
|
1357
|
+
"description": "Invitation id (UUID)",
|
|
1349
1358
|
"name": "id",
|
|
1350
1359
|
"required": true
|
|
1351
1360
|
}
|
|
1352
1361
|
},
|
|
1353
|
-
"description": "
|
|
1362
|
+
"description": "Revoke a pending invitation",
|
|
1354
1363
|
"examples": [
|
|
1355
|
-
"<%= config.bin %>
|
|
1364
|
+
"<%= config.bin %> invitations revoke <invitation-uuid>"
|
|
1356
1365
|
],
|
|
1357
1366
|
"flags": {
|
|
1358
1367
|
"json": {
|
|
@@ -1361,20 +1370,11 @@
|
|
|
1361
1370
|
"name": "json",
|
|
1362
1371
|
"allowNo": false,
|
|
1363
1372
|
"type": "boolean"
|
|
1364
|
-
},
|
|
1365
|
-
"project": {
|
|
1366
|
-
"char": "p",
|
|
1367
|
-
"description": "Project id (UUID) or key",
|
|
1368
|
-
"name": "project",
|
|
1369
|
-
"required": true,
|
|
1370
|
-
"hasDynamicHelp": false,
|
|
1371
|
-
"multiple": false,
|
|
1372
|
-
"type": "option"
|
|
1373
1373
|
}
|
|
1374
1374
|
},
|
|
1375
1375
|
"hasDynamicHelp": false,
|
|
1376
1376
|
"hiddenAliases": [],
|
|
1377
|
-
"id": "
|
|
1377
|
+
"id": "invitations:revoke",
|
|
1378
1378
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1379
1379
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1380
1380
|
"pluginType": "core",
|
|
@@ -1384,8 +1384,8 @@
|
|
|
1384
1384
|
"relativePath": [
|
|
1385
1385
|
"dist",
|
|
1386
1386
|
"commands",
|
|
1387
|
-
"
|
|
1388
|
-
"
|
|
1387
|
+
"invitations",
|
|
1388
|
+
"revoke.js"
|
|
1389
1389
|
]
|
|
1390
1390
|
},
|
|
1391
1391
|
"logs:list": {
|
|
@@ -1459,13 +1459,13 @@
|
|
|
1459
1459
|
"list.js"
|
|
1460
1460
|
]
|
|
1461
1461
|
},
|
|
1462
|
-
"
|
|
1462
|
+
"members:list": {
|
|
1463
1463
|
"aliases": [],
|
|
1464
1464
|
"args": {},
|
|
1465
|
-
"description": "List
|
|
1465
|
+
"description": "List the members of your organization (to resolve emails to account ids)",
|
|
1466
1466
|
"examples": [
|
|
1467
|
-
"<%= config.bin %>
|
|
1468
|
-
"<%= config.bin %>
|
|
1467
|
+
"<%= config.bin %> members list",
|
|
1468
|
+
"<%= config.bin %> members list --json"
|
|
1469
1469
|
],
|
|
1470
1470
|
"flags": {
|
|
1471
1471
|
"json": {
|
|
@@ -1475,15 +1475,6 @@
|
|
|
1475
1475
|
"allowNo": false,
|
|
1476
1476
|
"type": "boolean"
|
|
1477
1477
|
},
|
|
1478
|
-
"project": {
|
|
1479
|
-
"char": "p",
|
|
1480
|
-
"description": "Project id (UUID) or key",
|
|
1481
|
-
"name": "project",
|
|
1482
|
-
"required": true,
|
|
1483
|
-
"hasDynamicHelp": false,
|
|
1484
|
-
"multiple": false,
|
|
1485
|
-
"type": "option"
|
|
1486
|
-
},
|
|
1487
1478
|
"page": {
|
|
1488
1479
|
"description": "Page number",
|
|
1489
1480
|
"name": "page",
|
|
@@ -1491,18 +1482,11 @@
|
|
|
1491
1482
|
"hasDynamicHelp": false,
|
|
1492
1483
|
"multiple": false,
|
|
1493
1484
|
"type": "option"
|
|
1494
|
-
},
|
|
1495
|
-
"kind": {
|
|
1496
|
-
"description": "Filter by metric kind (e.g. sql, method)",
|
|
1497
|
-
"name": "kind",
|
|
1498
|
-
"hasDynamicHelp": false,
|
|
1499
|
-
"multiple": false,
|
|
1500
|
-
"type": "option"
|
|
1501
1485
|
}
|
|
1502
1486
|
},
|
|
1503
1487
|
"hasDynamicHelp": false,
|
|
1504
1488
|
"hiddenAliases": [],
|
|
1505
|
-
"id": "
|
|
1489
|
+
"id": "members:list",
|
|
1506
1490
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1507
1491
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1508
1492
|
"pluginType": "core",
|
|
@@ -1512,22 +1496,24 @@
|
|
|
1512
1496
|
"relativePath": [
|
|
1513
1497
|
"dist",
|
|
1514
1498
|
"commands",
|
|
1515
|
-
"
|
|
1499
|
+
"members",
|
|
1516
1500
|
"list.js"
|
|
1517
1501
|
]
|
|
1518
1502
|
},
|
|
1519
|
-
"
|
|
1503
|
+
"members:set-access": {
|
|
1520
1504
|
"aliases": [],
|
|
1521
1505
|
"args": {
|
|
1522
1506
|
"id": {
|
|
1523
|
-
"description": "
|
|
1507
|
+
"description": "Membership id",
|
|
1524
1508
|
"name": "id",
|
|
1525
1509
|
"required": true
|
|
1526
1510
|
}
|
|
1527
1511
|
},
|
|
1528
|
-
"description": "
|
|
1512
|
+
"description": "Set a member's group and project access (replaces the current set; omit a flag to clear it)",
|
|
1529
1513
|
"examples": [
|
|
1530
|
-
"<%= config.bin %>
|
|
1514
|
+
"<%= config.bin %> members set-access <membership-id> --project acme-api --project acme-web",
|
|
1515
|
+
"<%= config.bin %> members set-access <membership-id> --group DriverOne",
|
|
1516
|
+
"<%= config.bin %> members set-access <membership-id>"
|
|
1531
1517
|
],
|
|
1532
1518
|
"flags": {
|
|
1533
1519
|
"json": {
|
|
@@ -1537,19 +1523,26 @@
|
|
|
1537
1523
|
"allowNo": false,
|
|
1538
1524
|
"type": "boolean"
|
|
1539
1525
|
},
|
|
1526
|
+
"group": {
|
|
1527
|
+
"description": "Group id or name to grant access to (repeatable; omit to clear group access)",
|
|
1528
|
+
"name": "group",
|
|
1529
|
+
"default": [],
|
|
1530
|
+
"hasDynamicHelp": false,
|
|
1531
|
+
"multiple": true,
|
|
1532
|
+
"type": "option"
|
|
1533
|
+
},
|
|
1540
1534
|
"project": {
|
|
1541
|
-
"
|
|
1542
|
-
"description": "Project id (UUID) or key",
|
|
1535
|
+
"description": "Project id or key to grant access to (repeatable; omit to clear project access)",
|
|
1543
1536
|
"name": "project",
|
|
1544
|
-
"
|
|
1537
|
+
"default": [],
|
|
1545
1538
|
"hasDynamicHelp": false,
|
|
1546
|
-
"multiple":
|
|
1539
|
+
"multiple": true,
|
|
1547
1540
|
"type": "option"
|
|
1548
1541
|
}
|
|
1549
1542
|
},
|
|
1550
1543
|
"hasDynamicHelp": false,
|
|
1551
1544
|
"hiddenAliases": [],
|
|
1552
|
-
"id": "
|
|
1545
|
+
"id": "members:set-access",
|
|
1553
1546
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1554
1547
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1555
1548
|
"pluginType": "core",
|
|
@@ -1559,22 +1552,23 @@
|
|
|
1559
1552
|
"relativePath": [
|
|
1560
1553
|
"dist",
|
|
1561
1554
|
"commands",
|
|
1562
|
-
"
|
|
1563
|
-
"
|
|
1555
|
+
"members",
|
|
1556
|
+
"set-access.js"
|
|
1564
1557
|
]
|
|
1565
1558
|
},
|
|
1566
|
-
"
|
|
1559
|
+
"members:set-role": {
|
|
1567
1560
|
"aliases": [],
|
|
1568
1561
|
"args": {
|
|
1569
1562
|
"id": {
|
|
1570
|
-
"description": "
|
|
1563
|
+
"description": "Membership id",
|
|
1571
1564
|
"name": "id",
|
|
1572
1565
|
"required": true
|
|
1573
1566
|
}
|
|
1574
1567
|
},
|
|
1575
|
-
"description": "
|
|
1568
|
+
"description": "Change a member's organization role",
|
|
1576
1569
|
"examples": [
|
|
1577
|
-
"<%= config.bin %>
|
|
1570
|
+
"<%= config.bin %> members set-role <membership-id> --role admin",
|
|
1571
|
+
"<%= config.bin %> members set-role <membership-id> --role customer"
|
|
1578
1572
|
],
|
|
1579
1573
|
"flags": {
|
|
1580
1574
|
"json": {
|
|
@@ -1584,19 +1578,24 @@
|
|
|
1584
1578
|
"allowNo": false,
|
|
1585
1579
|
"type": "boolean"
|
|
1586
1580
|
},
|
|
1587
|
-
"
|
|
1588
|
-
"
|
|
1589
|
-
"
|
|
1590
|
-
"name": "project",
|
|
1581
|
+
"role": {
|
|
1582
|
+
"description": "Organization role",
|
|
1583
|
+
"name": "role",
|
|
1591
1584
|
"required": true,
|
|
1592
1585
|
"hasDynamicHelp": false,
|
|
1593
1586
|
"multiple": false,
|
|
1587
|
+
"options": [
|
|
1588
|
+
"member",
|
|
1589
|
+
"admin",
|
|
1590
|
+
"owner",
|
|
1591
|
+
"customer"
|
|
1592
|
+
],
|
|
1594
1593
|
"type": "option"
|
|
1595
1594
|
}
|
|
1596
1595
|
},
|
|
1597
1596
|
"hasDynamicHelp": false,
|
|
1598
1597
|
"hiddenAliases": [],
|
|
1599
|
-
"id": "
|
|
1598
|
+
"id": "members:set-role",
|
|
1600
1599
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1601
1600
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1602
1601
|
"pluginType": "core",
|
|
@@ -1606,17 +1605,17 @@
|
|
|
1606
1605
|
"relativePath": [
|
|
1607
1606
|
"dist",
|
|
1608
1607
|
"commands",
|
|
1609
|
-
"
|
|
1610
|
-
"
|
|
1608
|
+
"members",
|
|
1609
|
+
"set-role.js"
|
|
1611
1610
|
]
|
|
1612
1611
|
},
|
|
1613
|
-
"
|
|
1612
|
+
"metrics:list": {
|
|
1614
1613
|
"aliases": [],
|
|
1615
1614
|
"args": {},
|
|
1616
|
-
"description": "List
|
|
1615
|
+
"description": "List performance metric groups (slow queries/methods) for a project",
|
|
1617
1616
|
"examples": [
|
|
1618
|
-
"<%= config.bin %>
|
|
1619
|
-
"<%= config.bin %>
|
|
1617
|
+
"<%= config.bin %> metrics list --project acme-api",
|
|
1618
|
+
"<%= config.bin %> metrics list -p acme-api --kind sql --json"
|
|
1620
1619
|
],
|
|
1621
1620
|
"flags": {
|
|
1622
1621
|
"json": {
|
|
@@ -1626,6 +1625,15 @@
|
|
|
1626
1625
|
"allowNo": false,
|
|
1627
1626
|
"type": "boolean"
|
|
1628
1627
|
},
|
|
1628
|
+
"project": {
|
|
1629
|
+
"char": "p",
|
|
1630
|
+
"description": "Project id (UUID) or key",
|
|
1631
|
+
"name": "project",
|
|
1632
|
+
"required": true,
|
|
1633
|
+
"hasDynamicHelp": false,
|
|
1634
|
+
"multiple": false,
|
|
1635
|
+
"type": "option"
|
|
1636
|
+
},
|
|
1629
1637
|
"page": {
|
|
1630
1638
|
"description": "Page number",
|
|
1631
1639
|
"name": "page",
|
|
@@ -1633,11 +1641,18 @@
|
|
|
1633
1641
|
"hasDynamicHelp": false,
|
|
1634
1642
|
"multiple": false,
|
|
1635
1643
|
"type": "option"
|
|
1644
|
+
},
|
|
1645
|
+
"kind": {
|
|
1646
|
+
"description": "Filter by metric kind (e.g. sql, method)",
|
|
1647
|
+
"name": "kind",
|
|
1648
|
+
"hasDynamicHelp": false,
|
|
1649
|
+
"multiple": false,
|
|
1650
|
+
"type": "option"
|
|
1636
1651
|
}
|
|
1637
1652
|
},
|
|
1638
1653
|
"hasDynamicHelp": false,
|
|
1639
1654
|
"hiddenAliases": [],
|
|
1640
|
-
"id": "
|
|
1655
|
+
"id": "metrics:list",
|
|
1641
1656
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1642
1657
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1643
1658
|
"pluginType": "core",
|
|
@@ -1647,24 +1662,22 @@
|
|
|
1647
1662
|
"relativePath": [
|
|
1648
1663
|
"dist",
|
|
1649
1664
|
"commands",
|
|
1650
|
-
"
|
|
1665
|
+
"metrics",
|
|
1651
1666
|
"list.js"
|
|
1652
1667
|
]
|
|
1653
1668
|
},
|
|
1654
|
-
"
|
|
1669
|
+
"metrics:promote": {
|
|
1655
1670
|
"aliases": [],
|
|
1656
1671
|
"args": {
|
|
1657
1672
|
"id": {
|
|
1658
|
-
"description": "
|
|
1673
|
+
"description": "Metric group id",
|
|
1659
1674
|
"name": "id",
|
|
1660
1675
|
"required": true
|
|
1661
1676
|
}
|
|
1662
1677
|
},
|
|
1663
|
-
"description": "
|
|
1678
|
+
"description": "Promote a metric group (slow query/method) to a ticket",
|
|
1664
1679
|
"examples": [
|
|
1665
|
-
"<%= config.bin %>
|
|
1666
|
-
"<%= config.bin %> members set-access <membership-id> --group DriverOne",
|
|
1667
|
-
"<%= config.bin %> members set-access <membership-id>"
|
|
1680
|
+
"<%= config.bin %> metrics promote <group-id> --project acme-api"
|
|
1668
1681
|
],
|
|
1669
1682
|
"flags": {
|
|
1670
1683
|
"json": {
|
|
@@ -1674,26 +1687,19 @@
|
|
|
1674
1687
|
"allowNo": false,
|
|
1675
1688
|
"type": "boolean"
|
|
1676
1689
|
},
|
|
1677
|
-
"group": {
|
|
1678
|
-
"description": "Group id or name to grant access to (repeatable; omit to clear group access)",
|
|
1679
|
-
"name": "group",
|
|
1680
|
-
"default": [],
|
|
1681
|
-
"hasDynamicHelp": false,
|
|
1682
|
-
"multiple": true,
|
|
1683
|
-
"type": "option"
|
|
1684
|
-
},
|
|
1685
1690
|
"project": {
|
|
1686
|
-
"
|
|
1691
|
+
"char": "p",
|
|
1692
|
+
"description": "Project id (UUID) or key",
|
|
1687
1693
|
"name": "project",
|
|
1688
|
-
"
|
|
1694
|
+
"required": true,
|
|
1689
1695
|
"hasDynamicHelp": false,
|
|
1690
|
-
"multiple":
|
|
1696
|
+
"multiple": false,
|
|
1691
1697
|
"type": "option"
|
|
1692
1698
|
}
|
|
1693
1699
|
},
|
|
1694
1700
|
"hasDynamicHelp": false,
|
|
1695
1701
|
"hiddenAliases": [],
|
|
1696
|
-
"id": "
|
|
1702
|
+
"id": "metrics:promote",
|
|
1697
1703
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1698
1704
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1699
1705
|
"pluginType": "core",
|
|
@@ -1703,23 +1709,22 @@
|
|
|
1703
1709
|
"relativePath": [
|
|
1704
1710
|
"dist",
|
|
1705
1711
|
"commands",
|
|
1706
|
-
"
|
|
1707
|
-
"
|
|
1712
|
+
"metrics",
|
|
1713
|
+
"promote.js"
|
|
1708
1714
|
]
|
|
1709
1715
|
},
|
|
1710
|
-
"
|
|
1716
|
+
"metrics:show": {
|
|
1711
1717
|
"aliases": [],
|
|
1712
1718
|
"args": {
|
|
1713
1719
|
"id": {
|
|
1714
|
-
"description": "
|
|
1720
|
+
"description": "Metric group id",
|
|
1715
1721
|
"name": "id",
|
|
1716
1722
|
"required": true
|
|
1717
1723
|
}
|
|
1718
1724
|
},
|
|
1719
|
-
"description": "
|
|
1725
|
+
"description": "Show a single metric group",
|
|
1720
1726
|
"examples": [
|
|
1721
|
-
"<%= config.bin %>
|
|
1722
|
-
"<%= config.bin %> members set-role <membership-id> --role customer"
|
|
1727
|
+
"<%= config.bin %> metrics show <group-id> --project acme-api"
|
|
1723
1728
|
],
|
|
1724
1729
|
"flags": {
|
|
1725
1730
|
"json": {
|
|
@@ -1729,24 +1734,19 @@
|
|
|
1729
1734
|
"allowNo": false,
|
|
1730
1735
|
"type": "boolean"
|
|
1731
1736
|
},
|
|
1732
|
-
"
|
|
1733
|
-
"
|
|
1734
|
-
"
|
|
1737
|
+
"project": {
|
|
1738
|
+
"char": "p",
|
|
1739
|
+
"description": "Project id (UUID) or key",
|
|
1740
|
+
"name": "project",
|
|
1735
1741
|
"required": true,
|
|
1736
1742
|
"hasDynamicHelp": false,
|
|
1737
1743
|
"multiple": false,
|
|
1738
|
-
"options": [
|
|
1739
|
-
"member",
|
|
1740
|
-
"admin",
|
|
1741
|
-
"owner",
|
|
1742
|
-
"customer"
|
|
1743
|
-
],
|
|
1744
1744
|
"type": "option"
|
|
1745
1745
|
}
|
|
1746
1746
|
},
|
|
1747
1747
|
"hasDynamicHelp": false,
|
|
1748
1748
|
"hiddenAliases": [],
|
|
1749
|
-
"id": "
|
|
1749
|
+
"id": "metrics:show",
|
|
1750
1750
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1751
1751
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1752
1752
|
"pluginType": "core",
|
|
@@ -1756,8 +1756,8 @@
|
|
|
1756
1756
|
"relativePath": [
|
|
1757
1757
|
"dist",
|
|
1758
1758
|
"commands",
|
|
1759
|
-
"
|
|
1760
|
-
"
|
|
1759
|
+
"metrics",
|
|
1760
|
+
"show.js"
|
|
1761
1761
|
]
|
|
1762
1762
|
},
|
|
1763
1763
|
"milestones:create": {
|
|
@@ -2435,295 +2435,68 @@
|
|
|
2435
2435
|
"allowNo": false,
|
|
2436
2436
|
"type": "boolean"
|
|
2437
2437
|
},
|
|
2438
|
-
"project": {
|
|
2439
|
-
"char": "p",
|
|
2440
|
-
"description": "Project id (UUID) or key",
|
|
2441
|
-
"name": "project",
|
|
2442
|
-
"required": true,
|
|
2443
|
-
"hasDynamicHelp": false,
|
|
2444
|
-
"multiple": false,
|
|
2445
|
-
"type": "option"
|
|
2446
|
-
},
|
|
2447
|
-
"url": {
|
|
2448
|
-
"description": "URL to probe",
|
|
2449
|
-
"name": "url",
|
|
2450
|
-
"hasDynamicHelp": false,
|
|
2451
|
-
"multiple": false,
|
|
2452
|
-
"type": "option"
|
|
2453
|
-
},
|
|
2454
|
-
"http-method": {
|
|
2455
|
-
"description": "HTTP method",
|
|
2456
|
-
"name": "http-method",
|
|
2457
|
-
"hasDynamicHelp": false,
|
|
2458
|
-
"multiple": false,
|
|
2459
|
-
"type": "option"
|
|
2460
|
-
},
|
|
2461
|
-
"interval-seconds": {
|
|
2462
|
-
"description": "Seconds between checks",
|
|
2463
|
-
"name": "interval-seconds",
|
|
2464
|
-
"hasDynamicHelp": false,
|
|
2465
|
-
"multiple": false,
|
|
2466
|
-
"type": "option"
|
|
2467
|
-
},
|
|
2468
|
-
"expected-status": {
|
|
2469
|
-
"description": "Expected HTTP status code",
|
|
2470
|
-
"name": "expected-status",
|
|
2471
|
-
"hasDynamicHelp": false,
|
|
2472
|
-
"multiple": false,
|
|
2473
|
-
"type": "option"
|
|
2474
|
-
},
|
|
2475
|
-
"timeout-seconds": {
|
|
2476
|
-
"description": "Request timeout in seconds",
|
|
2477
|
-
"name": "timeout-seconds",
|
|
2478
|
-
"hasDynamicHelp": false,
|
|
2479
|
-
"multiple": false,
|
|
2480
|
-
"type": "option"
|
|
2481
|
-
},
|
|
2482
|
-
"expected-body-keyword": {
|
|
2483
|
-
"description": "Keyword expected in the response body (check fails without it; not with HEAD)",
|
|
2484
|
-
"name": "expected-body-keyword",
|
|
2485
|
-
"hasDynamicHelp": false,
|
|
2486
|
-
"multiple": false,
|
|
2487
|
-
"type": "option"
|
|
2488
|
-
},
|
|
2489
|
-
"ssl-expiry-warn-days": {
|
|
2490
|
-
"description": "Alert when the TLS certificate has at most N days left (empty = off)",
|
|
2491
|
-
"name": "ssl-expiry-warn-days",
|
|
2492
|
-
"hasDynamicHelp": false,
|
|
2493
|
-
"multiple": false,
|
|
2494
|
-
"type": "option"
|
|
2495
|
-
}
|
|
2496
|
-
},
|
|
2497
|
-
"hasDynamicHelp": false,
|
|
2498
|
-
"hiddenAliases": [],
|
|
2499
|
-
"id": "monitors:update",
|
|
2500
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2501
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2502
|
-
"pluginType": "core",
|
|
2503
|
-
"strict": true,
|
|
2504
|
-
"enableJsonFlag": true,
|
|
2505
|
-
"isESM": false,
|
|
2506
|
-
"relativePath": [
|
|
2507
|
-
"dist",
|
|
2508
|
-
"commands",
|
|
2509
|
-
"monitors",
|
|
2510
|
-
"update.js"
|
|
2511
|
-
]
|
|
2512
|
-
},
|
|
2513
|
-
"platforms:create": {
|
|
2514
|
-
"aliases": [],
|
|
2515
|
-
"args": {
|
|
2516
|
-
"code": {
|
|
2517
|
-
"description": "Platform code (e.g. \"ios\", \"android\", \"web\")",
|
|
2518
|
-
"name": "code",
|
|
2519
|
-
"required": true
|
|
2520
|
-
}
|
|
2521
|
-
},
|
|
2522
|
-
"description": "Create a platform (a device/system your projects run on)",
|
|
2523
|
-
"examples": [
|
|
2524
|
-
"<%= config.bin %> platforms create ios --label iOS",
|
|
2525
|
-
"<%= config.bin %> platforms create android --label Android --color emerald --position 2"
|
|
2526
|
-
],
|
|
2527
|
-
"flags": {
|
|
2528
|
-
"json": {
|
|
2529
|
-
"description": "Format output as json.",
|
|
2530
|
-
"helpGroup": "GLOBAL",
|
|
2531
|
-
"name": "json",
|
|
2532
|
-
"allowNo": false,
|
|
2533
|
-
"type": "boolean"
|
|
2534
|
-
},
|
|
2535
|
-
"label": {
|
|
2536
|
-
"description": "Human-readable label",
|
|
2537
|
-
"name": "label",
|
|
2538
|
-
"required": true,
|
|
2539
|
-
"hasDynamicHelp": false,
|
|
2540
|
-
"multiple": false,
|
|
2541
|
-
"type": "option"
|
|
2542
|
-
},
|
|
2543
|
-
"color": {
|
|
2544
|
-
"description": "Color label",
|
|
2545
|
-
"name": "color",
|
|
2546
|
-
"default": "sky",
|
|
2547
|
-
"hasDynamicHelp": false,
|
|
2548
|
-
"multiple": false,
|
|
2549
|
-
"type": "option"
|
|
2550
|
-
},
|
|
2551
|
-
"position": {
|
|
2552
|
-
"description": "Sort position",
|
|
2553
|
-
"name": "position",
|
|
2554
|
-
"hasDynamicHelp": false,
|
|
2555
|
-
"multiple": false,
|
|
2556
|
-
"type": "option"
|
|
2557
|
-
},
|
|
2558
|
-
"active": {
|
|
2559
|
-
"description": "Whether the platform is active",
|
|
2560
|
-
"name": "active",
|
|
2561
|
-
"allowNo": true,
|
|
2562
|
-
"type": "boolean"
|
|
2563
|
-
}
|
|
2564
|
-
},
|
|
2565
|
-
"hasDynamicHelp": false,
|
|
2566
|
-
"hiddenAliases": [],
|
|
2567
|
-
"id": "platforms:create",
|
|
2568
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2569
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2570
|
-
"pluginType": "core",
|
|
2571
|
-
"strict": true,
|
|
2572
|
-
"enableJsonFlag": true,
|
|
2573
|
-
"isESM": false,
|
|
2574
|
-
"relativePath": [
|
|
2575
|
-
"dist",
|
|
2576
|
-
"commands",
|
|
2577
|
-
"platforms",
|
|
2578
|
-
"create.js"
|
|
2579
|
-
]
|
|
2580
|
-
},
|
|
2581
|
-
"platforms:delete": {
|
|
2582
|
-
"aliases": [],
|
|
2583
|
-
"args": {
|
|
2584
|
-
"platform": {
|
|
2585
|
-
"description": "Platform id (UUID) or code",
|
|
2586
|
-
"name": "platform",
|
|
2587
|
-
"required": true
|
|
2588
|
-
}
|
|
2589
|
-
},
|
|
2590
|
-
"description": "Delete a platform (blocked if any project or ticket still references it)",
|
|
2591
|
-
"examples": [
|
|
2592
|
-
"<%= config.bin %> platforms delete legacy --confirm"
|
|
2593
|
-
],
|
|
2594
|
-
"flags": {
|
|
2595
|
-
"json": {
|
|
2596
|
-
"description": "Format output as json.",
|
|
2597
|
-
"helpGroup": "GLOBAL",
|
|
2598
|
-
"name": "json",
|
|
2599
|
-
"allowNo": false,
|
|
2600
|
-
"type": "boolean"
|
|
2601
|
-
},
|
|
2602
|
-
"confirm": {
|
|
2603
|
-
"description": "Required: confirm the deletion",
|
|
2604
|
-
"name": "confirm",
|
|
2605
|
-
"allowNo": false,
|
|
2606
|
-
"type": "boolean"
|
|
2607
|
-
}
|
|
2608
|
-
},
|
|
2609
|
-
"hasDynamicHelp": false,
|
|
2610
|
-
"hiddenAliases": [],
|
|
2611
|
-
"id": "platforms:delete",
|
|
2612
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2613
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2614
|
-
"pluginType": "core",
|
|
2615
|
-
"strict": true,
|
|
2616
|
-
"enableJsonFlag": true,
|
|
2617
|
-
"isESM": false,
|
|
2618
|
-
"relativePath": [
|
|
2619
|
-
"dist",
|
|
2620
|
-
"commands",
|
|
2621
|
-
"platforms",
|
|
2622
|
-
"delete.js"
|
|
2623
|
-
]
|
|
2624
|
-
},
|
|
2625
|
-
"platforms:list": {
|
|
2626
|
-
"aliases": [],
|
|
2627
|
-
"args": {},
|
|
2628
|
-
"description": "List the platforms (devices/systems) in your organization",
|
|
2629
|
-
"examples": [
|
|
2630
|
-
"<%= config.bin %> platforms list",
|
|
2631
|
-
"<%= config.bin %> platforms list --page 2 --json"
|
|
2632
|
-
],
|
|
2633
|
-
"flags": {
|
|
2634
|
-
"json": {
|
|
2635
|
-
"description": "Format output as json.",
|
|
2636
|
-
"helpGroup": "GLOBAL",
|
|
2637
|
-
"name": "json",
|
|
2638
|
-
"allowNo": false,
|
|
2639
|
-
"type": "boolean"
|
|
2640
|
-
},
|
|
2641
|
-
"page": {
|
|
2642
|
-
"description": "Page number",
|
|
2643
|
-
"name": "page",
|
|
2644
|
-
"default": 1,
|
|
2645
|
-
"hasDynamicHelp": false,
|
|
2646
|
-
"multiple": false,
|
|
2647
|
-
"type": "option"
|
|
2648
|
-
}
|
|
2649
|
-
},
|
|
2650
|
-
"hasDynamicHelp": false,
|
|
2651
|
-
"hiddenAliases": [],
|
|
2652
|
-
"id": "platforms:list",
|
|
2653
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2654
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2655
|
-
"pluginType": "core",
|
|
2656
|
-
"strict": true,
|
|
2657
|
-
"enableJsonFlag": true,
|
|
2658
|
-
"isESM": false,
|
|
2659
|
-
"relativePath": [
|
|
2660
|
-
"dist",
|
|
2661
|
-
"commands",
|
|
2662
|
-
"platforms",
|
|
2663
|
-
"list.js"
|
|
2664
|
-
]
|
|
2665
|
-
},
|
|
2666
|
-
"platforms:update": {
|
|
2667
|
-
"aliases": [],
|
|
2668
|
-
"args": {
|
|
2669
|
-
"platform": {
|
|
2670
|
-
"description": "Platform id (UUID) or code",
|
|
2671
|
-
"name": "platform",
|
|
2672
|
-
"required": true
|
|
2673
|
-
}
|
|
2674
|
-
},
|
|
2675
|
-
"description": "Update a platform (relabel, recolor, reorder, activate/deactivate)",
|
|
2676
|
-
"examples": [
|
|
2677
|
-
"<%= config.bin %> platforms update ios --label \"iOS / iPadOS\"",
|
|
2678
|
-
"<%= config.bin %> platforms update web --color indigo --position 1",
|
|
2679
|
-
"<%= config.bin %> platforms update legacy --no-active"
|
|
2680
|
-
],
|
|
2681
|
-
"flags": {
|
|
2682
|
-
"json": {
|
|
2683
|
-
"description": "Format output as json.",
|
|
2684
|
-
"helpGroup": "GLOBAL",
|
|
2685
|
-
"name": "json",
|
|
2686
|
-
"allowNo": false,
|
|
2687
|
-
"type": "boolean"
|
|
2688
|
-
},
|
|
2689
|
-
"code": {
|
|
2690
|
-
"description": "New code",
|
|
2691
|
-
"name": "code",
|
|
2438
|
+
"project": {
|
|
2439
|
+
"char": "p",
|
|
2440
|
+
"description": "Project id (UUID) or key",
|
|
2441
|
+
"name": "project",
|
|
2442
|
+
"required": true,
|
|
2692
2443
|
"hasDynamicHelp": false,
|
|
2693
2444
|
"multiple": false,
|
|
2694
2445
|
"type": "option"
|
|
2695
2446
|
},
|
|
2696
|
-
"
|
|
2697
|
-
"description": "
|
|
2698
|
-
"name": "
|
|
2447
|
+
"url": {
|
|
2448
|
+
"description": "URL to probe",
|
|
2449
|
+
"name": "url",
|
|
2699
2450
|
"hasDynamicHelp": false,
|
|
2700
2451
|
"multiple": false,
|
|
2701
2452
|
"type": "option"
|
|
2702
2453
|
},
|
|
2703
|
-
"
|
|
2704
|
-
"description": "
|
|
2705
|
-
"name": "
|
|
2454
|
+
"http-method": {
|
|
2455
|
+
"description": "HTTP method",
|
|
2456
|
+
"name": "http-method",
|
|
2706
2457
|
"hasDynamicHelp": false,
|
|
2707
2458
|
"multiple": false,
|
|
2708
2459
|
"type": "option"
|
|
2709
2460
|
},
|
|
2710
|
-
"
|
|
2711
|
-
"description": "
|
|
2712
|
-
"name": "
|
|
2461
|
+
"interval-seconds": {
|
|
2462
|
+
"description": "Seconds between checks",
|
|
2463
|
+
"name": "interval-seconds",
|
|
2713
2464
|
"hasDynamicHelp": false,
|
|
2714
2465
|
"multiple": false,
|
|
2715
2466
|
"type": "option"
|
|
2716
2467
|
},
|
|
2717
|
-
"
|
|
2718
|
-
"description": "
|
|
2719
|
-
"name": "
|
|
2720
|
-
"
|
|
2721
|
-
"
|
|
2468
|
+
"expected-status": {
|
|
2469
|
+
"description": "Expected HTTP status code",
|
|
2470
|
+
"name": "expected-status",
|
|
2471
|
+
"hasDynamicHelp": false,
|
|
2472
|
+
"multiple": false,
|
|
2473
|
+
"type": "option"
|
|
2474
|
+
},
|
|
2475
|
+
"timeout-seconds": {
|
|
2476
|
+
"description": "Request timeout in seconds",
|
|
2477
|
+
"name": "timeout-seconds",
|
|
2478
|
+
"hasDynamicHelp": false,
|
|
2479
|
+
"multiple": false,
|
|
2480
|
+
"type": "option"
|
|
2481
|
+
},
|
|
2482
|
+
"expected-body-keyword": {
|
|
2483
|
+
"description": "Keyword expected in the response body (check fails without it; not with HEAD)",
|
|
2484
|
+
"name": "expected-body-keyword",
|
|
2485
|
+
"hasDynamicHelp": false,
|
|
2486
|
+
"multiple": false,
|
|
2487
|
+
"type": "option"
|
|
2488
|
+
},
|
|
2489
|
+
"ssl-expiry-warn-days": {
|
|
2490
|
+
"description": "Alert when the TLS certificate has at most N days left (empty = off)",
|
|
2491
|
+
"name": "ssl-expiry-warn-days",
|
|
2492
|
+
"hasDynamicHelp": false,
|
|
2493
|
+
"multiple": false,
|
|
2494
|
+
"type": "option"
|
|
2722
2495
|
}
|
|
2723
2496
|
},
|
|
2724
2497
|
"hasDynamicHelp": false,
|
|
2725
2498
|
"hiddenAliases": [],
|
|
2726
|
-
"id": "
|
|
2499
|
+
"id": "monitors:update",
|
|
2727
2500
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2728
2501
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2729
2502
|
"pluginType": "core",
|
|
@@ -2733,7 +2506,7 @@
|
|
|
2733
2506
|
"relativePath": [
|
|
2734
2507
|
"dist",
|
|
2735
2508
|
"commands",
|
|
2736
|
-
"
|
|
2509
|
+
"monitors",
|
|
2737
2510
|
"update.js"
|
|
2738
2511
|
]
|
|
2739
2512
|
},
|
|
@@ -3220,36 +2993,220 @@
|
|
|
3220
2993
|
"update.js"
|
|
3221
2994
|
]
|
|
3222
2995
|
},
|
|
3223
|
-
"
|
|
2996
|
+
"platforms:create": {
|
|
3224
2997
|
"aliases": [],
|
|
3225
2998
|
"args": {
|
|
3226
|
-
"
|
|
3227
|
-
"description": "
|
|
3228
|
-
"name": "
|
|
2999
|
+
"code": {
|
|
3000
|
+
"description": "Platform code (e.g. \"ios\", \"android\", \"web\")",
|
|
3001
|
+
"name": "code",
|
|
3002
|
+
"required": true
|
|
3003
|
+
}
|
|
3004
|
+
},
|
|
3005
|
+
"description": "Create a platform (a device/system your projects run on)",
|
|
3006
|
+
"examples": [
|
|
3007
|
+
"<%= config.bin %> platforms create ios --label iOS",
|
|
3008
|
+
"<%= config.bin %> platforms create android --label Android --color emerald --position 2"
|
|
3009
|
+
],
|
|
3010
|
+
"flags": {
|
|
3011
|
+
"json": {
|
|
3012
|
+
"description": "Format output as json.",
|
|
3013
|
+
"helpGroup": "GLOBAL",
|
|
3014
|
+
"name": "json",
|
|
3015
|
+
"allowNo": false,
|
|
3016
|
+
"type": "boolean"
|
|
3017
|
+
},
|
|
3018
|
+
"label": {
|
|
3019
|
+
"description": "Human-readable label",
|
|
3020
|
+
"name": "label",
|
|
3021
|
+
"required": true,
|
|
3022
|
+
"hasDynamicHelp": false,
|
|
3023
|
+
"multiple": false,
|
|
3024
|
+
"type": "option"
|
|
3025
|
+
},
|
|
3026
|
+
"color": {
|
|
3027
|
+
"description": "Color label",
|
|
3028
|
+
"name": "color",
|
|
3029
|
+
"default": "sky",
|
|
3030
|
+
"hasDynamicHelp": false,
|
|
3031
|
+
"multiple": false,
|
|
3032
|
+
"type": "option"
|
|
3033
|
+
},
|
|
3034
|
+
"position": {
|
|
3035
|
+
"description": "Sort position",
|
|
3036
|
+
"name": "position",
|
|
3037
|
+
"hasDynamicHelp": false,
|
|
3038
|
+
"multiple": false,
|
|
3039
|
+
"type": "option"
|
|
3040
|
+
},
|
|
3041
|
+
"active": {
|
|
3042
|
+
"description": "Whether the platform is active",
|
|
3043
|
+
"name": "active",
|
|
3044
|
+
"allowNo": true,
|
|
3045
|
+
"type": "boolean"
|
|
3046
|
+
}
|
|
3047
|
+
},
|
|
3048
|
+
"hasDynamicHelp": false,
|
|
3049
|
+
"hiddenAliases": [],
|
|
3050
|
+
"id": "platforms:create",
|
|
3051
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3052
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3053
|
+
"pluginType": "core",
|
|
3054
|
+
"strict": true,
|
|
3055
|
+
"enableJsonFlag": true,
|
|
3056
|
+
"isESM": false,
|
|
3057
|
+
"relativePath": [
|
|
3058
|
+
"dist",
|
|
3059
|
+
"commands",
|
|
3060
|
+
"platforms",
|
|
3061
|
+
"create.js"
|
|
3062
|
+
]
|
|
3063
|
+
},
|
|
3064
|
+
"platforms:delete": {
|
|
3065
|
+
"aliases": [],
|
|
3066
|
+
"args": {
|
|
3067
|
+
"platform": {
|
|
3068
|
+
"description": "Platform id (UUID) or code",
|
|
3069
|
+
"name": "platform",
|
|
3070
|
+
"required": true
|
|
3071
|
+
}
|
|
3072
|
+
},
|
|
3073
|
+
"description": "Delete a platform (blocked if any project or ticket still references it)",
|
|
3074
|
+
"examples": [
|
|
3075
|
+
"<%= config.bin %> platforms delete legacy --confirm"
|
|
3076
|
+
],
|
|
3077
|
+
"flags": {
|
|
3078
|
+
"json": {
|
|
3079
|
+
"description": "Format output as json.",
|
|
3080
|
+
"helpGroup": "GLOBAL",
|
|
3081
|
+
"name": "json",
|
|
3082
|
+
"allowNo": false,
|
|
3083
|
+
"type": "boolean"
|
|
3084
|
+
},
|
|
3085
|
+
"confirm": {
|
|
3086
|
+
"description": "Required: confirm the deletion",
|
|
3087
|
+
"name": "confirm",
|
|
3088
|
+
"allowNo": false,
|
|
3089
|
+
"type": "boolean"
|
|
3090
|
+
}
|
|
3091
|
+
},
|
|
3092
|
+
"hasDynamicHelp": false,
|
|
3093
|
+
"hiddenAliases": [],
|
|
3094
|
+
"id": "platforms:delete",
|
|
3095
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3096
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3097
|
+
"pluginType": "core",
|
|
3098
|
+
"strict": true,
|
|
3099
|
+
"enableJsonFlag": true,
|
|
3100
|
+
"isESM": false,
|
|
3101
|
+
"relativePath": [
|
|
3102
|
+
"dist",
|
|
3103
|
+
"commands",
|
|
3104
|
+
"platforms",
|
|
3105
|
+
"delete.js"
|
|
3106
|
+
]
|
|
3107
|
+
},
|
|
3108
|
+
"platforms:list": {
|
|
3109
|
+
"aliases": [],
|
|
3110
|
+
"args": {},
|
|
3111
|
+
"description": "List the platforms (devices/systems) in your organization",
|
|
3112
|
+
"examples": [
|
|
3113
|
+
"<%= config.bin %> platforms list",
|
|
3114
|
+
"<%= config.bin %> platforms list --page 2 --json"
|
|
3115
|
+
],
|
|
3116
|
+
"flags": {
|
|
3117
|
+
"json": {
|
|
3118
|
+
"description": "Format output as json.",
|
|
3119
|
+
"helpGroup": "GLOBAL",
|
|
3120
|
+
"name": "json",
|
|
3121
|
+
"allowNo": false,
|
|
3122
|
+
"type": "boolean"
|
|
3123
|
+
},
|
|
3124
|
+
"page": {
|
|
3125
|
+
"description": "Page number",
|
|
3126
|
+
"name": "page",
|
|
3127
|
+
"default": 1,
|
|
3128
|
+
"hasDynamicHelp": false,
|
|
3129
|
+
"multiple": false,
|
|
3130
|
+
"type": "option"
|
|
3131
|
+
}
|
|
3132
|
+
},
|
|
3133
|
+
"hasDynamicHelp": false,
|
|
3134
|
+
"hiddenAliases": [],
|
|
3135
|
+
"id": "platforms:list",
|
|
3136
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3137
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3138
|
+
"pluginType": "core",
|
|
3139
|
+
"strict": true,
|
|
3140
|
+
"enableJsonFlag": true,
|
|
3141
|
+
"isESM": false,
|
|
3142
|
+
"relativePath": [
|
|
3143
|
+
"dist",
|
|
3144
|
+
"commands",
|
|
3145
|
+
"platforms",
|
|
3146
|
+
"list.js"
|
|
3147
|
+
]
|
|
3148
|
+
},
|
|
3149
|
+
"platforms:update": {
|
|
3150
|
+
"aliases": [],
|
|
3151
|
+
"args": {
|
|
3152
|
+
"platform": {
|
|
3153
|
+
"description": "Platform id (UUID) or code",
|
|
3154
|
+
"name": "platform",
|
|
3229
3155
|
"required": true
|
|
3156
|
+
}
|
|
3157
|
+
},
|
|
3158
|
+
"description": "Update a platform (relabel, recolor, reorder, activate/deactivate)",
|
|
3159
|
+
"examples": [
|
|
3160
|
+
"<%= config.bin %> platforms update ios --label \"iOS / iPadOS\"",
|
|
3161
|
+
"<%= config.bin %> platforms update web --color indigo --position 1",
|
|
3162
|
+
"<%= config.bin %> platforms update legacy --no-active"
|
|
3163
|
+
],
|
|
3164
|
+
"flags": {
|
|
3165
|
+
"json": {
|
|
3166
|
+
"description": "Format output as json.",
|
|
3167
|
+
"helpGroup": "GLOBAL",
|
|
3168
|
+
"name": "json",
|
|
3169
|
+
"allowNo": false,
|
|
3170
|
+
"type": "boolean"
|
|
3171
|
+
},
|
|
3172
|
+
"code": {
|
|
3173
|
+
"description": "New code",
|
|
3174
|
+
"name": "code",
|
|
3175
|
+
"hasDynamicHelp": false,
|
|
3176
|
+
"multiple": false,
|
|
3177
|
+
"type": "option"
|
|
3178
|
+
},
|
|
3179
|
+
"label": {
|
|
3180
|
+
"description": "New label",
|
|
3181
|
+
"name": "label",
|
|
3182
|
+
"hasDynamicHelp": false,
|
|
3183
|
+
"multiple": false,
|
|
3184
|
+
"type": "option"
|
|
3185
|
+
},
|
|
3186
|
+
"color": {
|
|
3187
|
+
"description": "Color label",
|
|
3188
|
+
"name": "color",
|
|
3189
|
+
"hasDynamicHelp": false,
|
|
3190
|
+
"multiple": false,
|
|
3191
|
+
"type": "option"
|
|
3230
3192
|
},
|
|
3231
|
-
"
|
|
3232
|
-
"description": "
|
|
3233
|
-
"name": "
|
|
3234
|
-
"
|
|
3235
|
-
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
|
|
3242
|
-
"json": {
|
|
3243
|
-
"description": "Format output as json.",
|
|
3244
|
-
"helpGroup": "GLOBAL",
|
|
3245
|
-
"name": "json",
|
|
3246
|
-
"allowNo": false,
|
|
3193
|
+
"position": {
|
|
3194
|
+
"description": "Sort position",
|
|
3195
|
+
"name": "position",
|
|
3196
|
+
"hasDynamicHelp": false,
|
|
3197
|
+
"multiple": false,
|
|
3198
|
+
"type": "option"
|
|
3199
|
+
},
|
|
3200
|
+
"active": {
|
|
3201
|
+
"description": "Whether the platform is active",
|
|
3202
|
+
"name": "active",
|
|
3203
|
+
"allowNo": true,
|
|
3247
3204
|
"type": "boolean"
|
|
3248
3205
|
}
|
|
3249
3206
|
},
|
|
3250
3207
|
"hasDynamicHelp": false,
|
|
3251
3208
|
"hiddenAliases": [],
|
|
3252
|
-
"id": "
|
|
3209
|
+
"id": "platforms:update",
|
|
3253
3210
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3254
3211
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3255
3212
|
"pluginType": "core",
|
|
@@ -3259,23 +3216,22 @@
|
|
|
3259
3216
|
"relativePath": [
|
|
3260
3217
|
"dist",
|
|
3261
3218
|
"commands",
|
|
3262
|
-
"
|
|
3263
|
-
"
|
|
3219
|
+
"platforms",
|
|
3220
|
+
"update.js"
|
|
3264
3221
|
]
|
|
3265
3222
|
},
|
|
3266
|
-
"
|
|
3223
|
+
"roles:create": {
|
|
3267
3224
|
"aliases": [],
|
|
3268
3225
|
"args": {
|
|
3269
3226
|
"name": {
|
|
3270
|
-
"description": "
|
|
3227
|
+
"description": "Role name",
|
|
3271
3228
|
"name": "name",
|
|
3272
3229
|
"required": true
|
|
3273
3230
|
}
|
|
3274
3231
|
},
|
|
3275
|
-
"description": "Create
|
|
3232
|
+
"description": "Create an RBAC role (a named bundle of permission keys)",
|
|
3276
3233
|
"examples": [
|
|
3277
|
-
"<%= config.bin %>
|
|
3278
|
-
"<%= config.bin %> teams create DriverOne --role Client --group DriverOne --member client@acme.com"
|
|
3234
|
+
"<%= config.bin %> roles create Client --permission tickets.edit --permission tickets.assign"
|
|
3279
3235
|
],
|
|
3280
3236
|
"flags": {
|
|
3281
3237
|
"json": {
|
|
@@ -3292,30 +3248,9 @@
|
|
|
3292
3248
|
"multiple": false,
|
|
3293
3249
|
"type": "option"
|
|
3294
3250
|
},
|
|
3295
|
-
"
|
|
3296
|
-
"description": "
|
|
3297
|
-
"name": "
|
|
3298
|
-
"hasDynamicHelp": false,
|
|
3299
|
-
"multiple": true,
|
|
3300
|
-
"type": "option"
|
|
3301
|
-
},
|
|
3302
|
-
"member": {
|
|
3303
|
-
"description": "Member account id or email (repeatable; must be an org member)",
|
|
3304
|
-
"name": "member",
|
|
3305
|
-
"hasDynamicHelp": false,
|
|
3306
|
-
"multiple": true,
|
|
3307
|
-
"type": "option"
|
|
3308
|
-
},
|
|
3309
|
-
"project": {
|
|
3310
|
-
"description": "Project id or key to scope the team to (repeatable)",
|
|
3311
|
-
"name": "project",
|
|
3312
|
-
"hasDynamicHelp": false,
|
|
3313
|
-
"multiple": true,
|
|
3314
|
-
"type": "option"
|
|
3315
|
-
},
|
|
3316
|
-
"role": {
|
|
3317
|
-
"description": "Role id or name to grant to the team (repeatable)",
|
|
3318
|
-
"name": "role",
|
|
3251
|
+
"permission": {
|
|
3252
|
+
"description": "Permission key from the catalog (repeatable)",
|
|
3253
|
+
"name": "permission",
|
|
3319
3254
|
"hasDynamicHelp": false,
|
|
3320
3255
|
"multiple": true,
|
|
3321
3256
|
"type": "option"
|
|
@@ -3323,7 +3258,7 @@
|
|
|
3323
3258
|
},
|
|
3324
3259
|
"hasDynamicHelp": false,
|
|
3325
3260
|
"hiddenAliases": [],
|
|
3326
|
-
"id": "
|
|
3261
|
+
"id": "roles:create",
|
|
3327
3262
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3328
3263
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3329
3264
|
"pluginType": "core",
|
|
@@ -3333,22 +3268,22 @@
|
|
|
3333
3268
|
"relativePath": [
|
|
3334
3269
|
"dist",
|
|
3335
3270
|
"commands",
|
|
3336
|
-
"
|
|
3271
|
+
"roles",
|
|
3337
3272
|
"create.js"
|
|
3338
3273
|
]
|
|
3339
3274
|
},
|
|
3340
|
-
"
|
|
3275
|
+
"roles:delete": {
|
|
3341
3276
|
"aliases": [],
|
|
3342
3277
|
"args": {
|
|
3343
|
-
"
|
|
3344
|
-
"description": "
|
|
3345
|
-
"name": "
|
|
3278
|
+
"role": {
|
|
3279
|
+
"description": "Role id (UUID) or name",
|
|
3280
|
+
"name": "role",
|
|
3346
3281
|
"required": true
|
|
3347
3282
|
}
|
|
3348
3283
|
},
|
|
3349
|
-
"description": "Delete a
|
|
3284
|
+
"description": "Delete a role (its assignments to teams and accounts are removed)",
|
|
3350
3285
|
"examples": [
|
|
3351
|
-
"<%= config.bin %>
|
|
3286
|
+
"<%= config.bin %> roles delete Client"
|
|
3352
3287
|
],
|
|
3353
3288
|
"flags": {
|
|
3354
3289
|
"json": {
|
|
@@ -3361,7 +3296,7 @@
|
|
|
3361
3296
|
},
|
|
3362
3297
|
"hasDynamicHelp": false,
|
|
3363
3298
|
"hiddenAliases": [],
|
|
3364
|
-
"id": "
|
|
3299
|
+
"id": "roles:delete",
|
|
3365
3300
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3366
3301
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3367
3302
|
"pluginType": "core",
|
|
@@ -3371,17 +3306,17 @@
|
|
|
3371
3306
|
"relativePath": [
|
|
3372
3307
|
"dist",
|
|
3373
3308
|
"commands",
|
|
3374
|
-
"
|
|
3309
|
+
"roles",
|
|
3375
3310
|
"delete.js"
|
|
3376
3311
|
]
|
|
3377
3312
|
},
|
|
3378
|
-
"
|
|
3313
|
+
"roles:list": {
|
|
3379
3314
|
"aliases": [],
|
|
3380
3315
|
"args": {},
|
|
3381
|
-
"description": "List the
|
|
3316
|
+
"description": "List the RBAC roles in your organization",
|
|
3382
3317
|
"examples": [
|
|
3383
|
-
"<%= config.bin %>
|
|
3384
|
-
"<%= config.bin %>
|
|
3318
|
+
"<%= config.bin %> roles list",
|
|
3319
|
+
"<%= config.bin %> roles list --json"
|
|
3385
3320
|
],
|
|
3386
3321
|
"flags": {
|
|
3387
3322
|
"json": {
|
|
@@ -3402,7 +3337,7 @@
|
|
|
3402
3337
|
},
|
|
3403
3338
|
"hasDynamicHelp": false,
|
|
3404
3339
|
"hiddenAliases": [],
|
|
3405
|
-
"id": "
|
|
3340
|
+
"id": "roles:list",
|
|
3406
3341
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3407
3342
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3408
3343
|
"pluginType": "core",
|
|
@@ -3412,65 +3347,22 @@
|
|
|
3412
3347
|
"relativePath": [
|
|
3413
3348
|
"dist",
|
|
3414
3349
|
"commands",
|
|
3415
|
-
"
|
|
3350
|
+
"roles",
|
|
3416
3351
|
"list.js"
|
|
3417
3352
|
]
|
|
3418
3353
|
},
|
|
3419
|
-
"
|
|
3420
|
-
"aliases": [],
|
|
3421
|
-
"args": {
|
|
3422
|
-
"team": {
|
|
3423
|
-
"description": "Team id (UUID) or name",
|
|
3424
|
-
"name": "team",
|
|
3425
|
-
"required": true
|
|
3426
|
-
},
|
|
3427
|
-
"member": {
|
|
3428
|
-
"description": "Member account id or email",
|
|
3429
|
-
"name": "member",
|
|
3430
|
-
"required": true
|
|
3431
|
-
}
|
|
3432
|
-
},
|
|
3433
|
-
"description": "Remove a person from a team, keeping the other members",
|
|
3434
|
-
"examples": [
|
|
3435
|
-
"<%= config.bin %> teams remove-member DriverOne client@acme.com"
|
|
3436
|
-
],
|
|
3437
|
-
"flags": {
|
|
3438
|
-
"json": {
|
|
3439
|
-
"description": "Format output as json.",
|
|
3440
|
-
"helpGroup": "GLOBAL",
|
|
3441
|
-
"name": "json",
|
|
3442
|
-
"allowNo": false,
|
|
3443
|
-
"type": "boolean"
|
|
3444
|
-
}
|
|
3445
|
-
},
|
|
3446
|
-
"hasDynamicHelp": false,
|
|
3447
|
-
"hiddenAliases": [],
|
|
3448
|
-
"id": "teams:remove-member",
|
|
3449
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3450
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3451
|
-
"pluginType": "core",
|
|
3452
|
-
"strict": true,
|
|
3453
|
-
"enableJsonFlag": true,
|
|
3454
|
-
"isESM": false,
|
|
3455
|
-
"relativePath": [
|
|
3456
|
-
"dist",
|
|
3457
|
-
"commands",
|
|
3458
|
-
"teams",
|
|
3459
|
-
"remove-member.js"
|
|
3460
|
-
]
|
|
3461
|
-
},
|
|
3462
|
-
"teams:show": {
|
|
3354
|
+
"roles:show": {
|
|
3463
3355
|
"aliases": [],
|
|
3464
3356
|
"args": {
|
|
3465
|
-
"
|
|
3466
|
-
"description": "
|
|
3467
|
-
"name": "
|
|
3357
|
+
"role": {
|
|
3358
|
+
"description": "Role id (UUID) or name",
|
|
3359
|
+
"name": "role",
|
|
3468
3360
|
"required": true
|
|
3469
3361
|
}
|
|
3470
3362
|
},
|
|
3471
|
-
"description": "Show a
|
|
3363
|
+
"description": "Show a role by id or name (with its permission keys)",
|
|
3472
3364
|
"examples": [
|
|
3473
|
-
"<%= config.bin %>
|
|
3365
|
+
"<%= config.bin %> roles show Client"
|
|
3474
3366
|
],
|
|
3475
3367
|
"flags": {
|
|
3476
3368
|
"json": {
|
|
@@ -3483,7 +3375,7 @@
|
|
|
3483
3375
|
},
|
|
3484
3376
|
"hasDynamicHelp": false,
|
|
3485
3377
|
"hiddenAliases": [],
|
|
3486
|
-
"id": "
|
|
3378
|
+
"id": "roles:show",
|
|
3487
3379
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3488
3380
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3489
3381
|
"pluginType": "core",
|
|
@@ -3493,23 +3385,23 @@
|
|
|
3493
3385
|
"relativePath": [
|
|
3494
3386
|
"dist",
|
|
3495
3387
|
"commands",
|
|
3496
|
-
"
|
|
3388
|
+
"roles",
|
|
3497
3389
|
"show.js"
|
|
3498
3390
|
]
|
|
3499
3391
|
},
|
|
3500
|
-
"
|
|
3392
|
+
"roles:update": {
|
|
3501
3393
|
"aliases": [],
|
|
3502
3394
|
"args": {
|
|
3503
|
-
"
|
|
3504
|
-
"description": "
|
|
3505
|
-
"name": "
|
|
3395
|
+
"role": {
|
|
3396
|
+
"description": "Role id (UUID) or name",
|
|
3397
|
+
"name": "role",
|
|
3506
3398
|
"required": true
|
|
3507
3399
|
}
|
|
3508
3400
|
},
|
|
3509
|
-
"description": "Update a
|
|
3401
|
+
"description": "Update a role (rename, recolor, or replace its permission keys)",
|
|
3510
3402
|
"examples": [
|
|
3511
|
-
"<%= config.bin %>
|
|
3512
|
-
"<%= config.bin %>
|
|
3403
|
+
"<%= config.bin %> roles update Client --permission tickets.edit --permission tickets.assign",
|
|
3404
|
+
"<%= config.bin %> roles update Client --name \"Client manager\""
|
|
3513
3405
|
],
|
|
3514
3406
|
"flags": {
|
|
3515
3407
|
"json": {
|
|
@@ -3526,20 +3418,6 @@
|
|
|
3526
3418
|
"multiple": false,
|
|
3527
3419
|
"type": "option"
|
|
3528
3420
|
},
|
|
3529
|
-
"group": {
|
|
3530
|
-
"description": "Group id or name (repeatable; replaces the group scope)",
|
|
3531
|
-
"name": "group",
|
|
3532
|
-
"hasDynamicHelp": false,
|
|
3533
|
-
"multiple": true,
|
|
3534
|
-
"type": "option"
|
|
3535
|
-
},
|
|
3536
|
-
"member": {
|
|
3537
|
-
"description": "Member account id or email (repeatable; replaces the members)",
|
|
3538
|
-
"name": "member",
|
|
3539
|
-
"hasDynamicHelp": false,
|
|
3540
|
-
"multiple": true,
|
|
3541
|
-
"type": "option"
|
|
3542
|
-
},
|
|
3543
3421
|
"name": {
|
|
3544
3422
|
"description": "New name",
|
|
3545
3423
|
"name": "name",
|
|
@@ -3547,16 +3425,9 @@
|
|
|
3547
3425
|
"multiple": false,
|
|
3548
3426
|
"type": "option"
|
|
3549
3427
|
},
|
|
3550
|
-
"
|
|
3551
|
-
"description": "
|
|
3552
|
-
"name": "
|
|
3553
|
-
"hasDynamicHelp": false,
|
|
3554
|
-
"multiple": true,
|
|
3555
|
-
"type": "option"
|
|
3556
|
-
},
|
|
3557
|
-
"role": {
|
|
3558
|
-
"description": "Role id or name (repeatable; replaces the roles)",
|
|
3559
|
-
"name": "role",
|
|
3428
|
+
"permission": {
|
|
3429
|
+
"description": "Permission key (repeatable); when given, REPLACES the whole set",
|
|
3430
|
+
"name": "permission",
|
|
3560
3431
|
"hasDynamicHelp": false,
|
|
3561
3432
|
"multiple": true,
|
|
3562
3433
|
"type": "option"
|
|
@@ -3564,7 +3435,7 @@
|
|
|
3564
3435
|
},
|
|
3565
3436
|
"hasDynamicHelp": false,
|
|
3566
3437
|
"hiddenAliases": [],
|
|
3567
|
-
"id": "
|
|
3438
|
+
"id": "roles:update",
|
|
3568
3439
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3569
3440
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3570
3441
|
"pluginType": "core",
|
|
@@ -3574,7 +3445,7 @@
|
|
|
3574
3445
|
"relativePath": [
|
|
3575
3446
|
"dist",
|
|
3576
3447
|
"commands",
|
|
3577
|
-
"
|
|
3448
|
+
"roles",
|
|
3578
3449
|
"update.js"
|
|
3579
3450
|
]
|
|
3580
3451
|
},
|
|
@@ -3918,18 +3789,62 @@
|
|
|
3918
3789
|
"unrevoke.js"
|
|
3919
3790
|
]
|
|
3920
3791
|
},
|
|
3921
|
-
"
|
|
3792
|
+
"teams:add-member": {
|
|
3793
|
+
"aliases": [],
|
|
3794
|
+
"args": {
|
|
3795
|
+
"team": {
|
|
3796
|
+
"description": "Team id (UUID) or name",
|
|
3797
|
+
"name": "team",
|
|
3798
|
+
"required": true
|
|
3799
|
+
},
|
|
3800
|
+
"member": {
|
|
3801
|
+
"description": "Member account id or email (must be an org member)",
|
|
3802
|
+
"name": "member",
|
|
3803
|
+
"required": true
|
|
3804
|
+
}
|
|
3805
|
+
},
|
|
3806
|
+
"description": "Add a person to a team, keeping the existing members",
|
|
3807
|
+
"examples": [
|
|
3808
|
+
"<%= config.bin %> teams add-member DriverOne client@acme.com"
|
|
3809
|
+
],
|
|
3810
|
+
"flags": {
|
|
3811
|
+
"json": {
|
|
3812
|
+
"description": "Format output as json.",
|
|
3813
|
+
"helpGroup": "GLOBAL",
|
|
3814
|
+
"name": "json",
|
|
3815
|
+
"allowNo": false,
|
|
3816
|
+
"type": "boolean"
|
|
3817
|
+
}
|
|
3818
|
+
},
|
|
3819
|
+
"hasDynamicHelp": false,
|
|
3820
|
+
"hiddenAliases": [],
|
|
3821
|
+
"id": "teams:add-member",
|
|
3822
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3823
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3824
|
+
"pluginType": "core",
|
|
3825
|
+
"strict": true,
|
|
3826
|
+
"enableJsonFlag": true,
|
|
3827
|
+
"isESM": false,
|
|
3828
|
+
"relativePath": [
|
|
3829
|
+
"dist",
|
|
3830
|
+
"commands",
|
|
3831
|
+
"teams",
|
|
3832
|
+
"add-member.js"
|
|
3833
|
+
]
|
|
3834
|
+
},
|
|
3835
|
+
"teams:create": {
|
|
3922
3836
|
"aliases": [],
|
|
3923
3837
|
"args": {
|
|
3924
3838
|
"name": {
|
|
3925
|
-
"description": "
|
|
3839
|
+
"description": "Team name",
|
|
3926
3840
|
"name": "name",
|
|
3927
3841
|
"required": true
|
|
3928
3842
|
}
|
|
3929
3843
|
},
|
|
3930
|
-
"description": "Create
|
|
3844
|
+
"description": "Create a team and (optionally) set its roles, group/project scope and members",
|
|
3931
3845
|
"examples": [
|
|
3932
|
-
"<%= config.bin %>
|
|
3846
|
+
"<%= config.bin %> teams create DriverOne --role Client --group DriverOne",
|
|
3847
|
+
"<%= config.bin %> teams create DriverOne --role Client --group DriverOne --member client@acme.com"
|
|
3933
3848
|
],
|
|
3934
3849
|
"flags": {
|
|
3935
3850
|
"json": {
|
|
@@ -3946,9 +3861,30 @@
|
|
|
3946
3861
|
"multiple": false,
|
|
3947
3862
|
"type": "option"
|
|
3948
3863
|
},
|
|
3949
|
-
"
|
|
3950
|
-
"description": "
|
|
3951
|
-
"name": "
|
|
3864
|
+
"group": {
|
|
3865
|
+
"description": "Group id or name to scope the team to (repeatable)",
|
|
3866
|
+
"name": "group",
|
|
3867
|
+
"hasDynamicHelp": false,
|
|
3868
|
+
"multiple": true,
|
|
3869
|
+
"type": "option"
|
|
3870
|
+
},
|
|
3871
|
+
"member": {
|
|
3872
|
+
"description": "Member account id or email (repeatable; must be an org member)",
|
|
3873
|
+
"name": "member",
|
|
3874
|
+
"hasDynamicHelp": false,
|
|
3875
|
+
"multiple": true,
|
|
3876
|
+
"type": "option"
|
|
3877
|
+
},
|
|
3878
|
+
"project": {
|
|
3879
|
+
"description": "Project id or key to scope the team to (repeatable)",
|
|
3880
|
+
"name": "project",
|
|
3881
|
+
"hasDynamicHelp": false,
|
|
3882
|
+
"multiple": true,
|
|
3883
|
+
"type": "option"
|
|
3884
|
+
},
|
|
3885
|
+
"role": {
|
|
3886
|
+
"description": "Role id or name to grant to the team (repeatable)",
|
|
3887
|
+
"name": "role",
|
|
3952
3888
|
"hasDynamicHelp": false,
|
|
3953
3889
|
"multiple": true,
|
|
3954
3890
|
"type": "option"
|
|
@@ -3956,7 +3892,7 @@
|
|
|
3956
3892
|
},
|
|
3957
3893
|
"hasDynamicHelp": false,
|
|
3958
3894
|
"hiddenAliases": [],
|
|
3959
|
-
"id": "
|
|
3895
|
+
"id": "teams:create",
|
|
3960
3896
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3961
3897
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3962
3898
|
"pluginType": "core",
|
|
@@ -3966,22 +3902,22 @@
|
|
|
3966
3902
|
"relativePath": [
|
|
3967
3903
|
"dist",
|
|
3968
3904
|
"commands",
|
|
3969
|
-
"
|
|
3905
|
+
"teams",
|
|
3970
3906
|
"create.js"
|
|
3971
3907
|
]
|
|
3972
3908
|
},
|
|
3973
|
-
"
|
|
3909
|
+
"teams:delete": {
|
|
3974
3910
|
"aliases": [],
|
|
3975
3911
|
"args": {
|
|
3976
|
-
"
|
|
3977
|
-
"description": "
|
|
3978
|
-
"name": "
|
|
3912
|
+
"team": {
|
|
3913
|
+
"description": "Team id (UUID) or name",
|
|
3914
|
+
"name": "team",
|
|
3979
3915
|
"required": true
|
|
3980
3916
|
}
|
|
3981
3917
|
},
|
|
3982
|
-
"description": "Delete a
|
|
3918
|
+
"description": "Delete a team (its members lose the access this team granted)",
|
|
3983
3919
|
"examples": [
|
|
3984
|
-
"<%= config.bin %>
|
|
3920
|
+
"<%= config.bin %> teams delete DriverOne"
|
|
3985
3921
|
],
|
|
3986
3922
|
"flags": {
|
|
3987
3923
|
"json": {
|
|
@@ -3994,7 +3930,7 @@
|
|
|
3994
3930
|
},
|
|
3995
3931
|
"hasDynamicHelp": false,
|
|
3996
3932
|
"hiddenAliases": [],
|
|
3997
|
-
"id": "
|
|
3933
|
+
"id": "teams:delete",
|
|
3998
3934
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3999
3935
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4000
3936
|
"pluginType": "core",
|
|
@@ -4004,17 +3940,17 @@
|
|
|
4004
3940
|
"relativePath": [
|
|
4005
3941
|
"dist",
|
|
4006
3942
|
"commands",
|
|
4007
|
-
"
|
|
3943
|
+
"teams",
|
|
4008
3944
|
"delete.js"
|
|
4009
3945
|
]
|
|
4010
3946
|
},
|
|
4011
|
-
"
|
|
3947
|
+
"teams:list": {
|
|
4012
3948
|
"aliases": [],
|
|
4013
3949
|
"args": {},
|
|
4014
|
-
"description": "List the
|
|
3950
|
+
"description": "List the teams (people with scope) in your organization",
|
|
4015
3951
|
"examples": [
|
|
4016
|
-
"<%= config.bin %>
|
|
4017
|
-
"<%= config.bin %>
|
|
3952
|
+
"<%= config.bin %> teams list",
|
|
3953
|
+
"<%= config.bin %> teams list --json"
|
|
4018
3954
|
],
|
|
4019
3955
|
"flags": {
|
|
4020
3956
|
"json": {
|
|
@@ -4035,7 +3971,7 @@
|
|
|
4035
3971
|
},
|
|
4036
3972
|
"hasDynamicHelp": false,
|
|
4037
3973
|
"hiddenAliases": [],
|
|
4038
|
-
"id": "
|
|
3974
|
+
"id": "teams:list",
|
|
4039
3975
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4040
3976
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4041
3977
|
"pluginType": "core",
|
|
@@ -4045,22 +3981,27 @@
|
|
|
4045
3981
|
"relativePath": [
|
|
4046
3982
|
"dist",
|
|
4047
3983
|
"commands",
|
|
4048
|
-
"
|
|
3984
|
+
"teams",
|
|
4049
3985
|
"list.js"
|
|
4050
3986
|
]
|
|
4051
3987
|
},
|
|
4052
|
-
"
|
|
3988
|
+
"teams:remove-member": {
|
|
4053
3989
|
"aliases": [],
|
|
4054
3990
|
"args": {
|
|
4055
|
-
"
|
|
4056
|
-
"description": "
|
|
4057
|
-
"name": "
|
|
3991
|
+
"team": {
|
|
3992
|
+
"description": "Team id (UUID) or name",
|
|
3993
|
+
"name": "team",
|
|
3994
|
+
"required": true
|
|
3995
|
+
},
|
|
3996
|
+
"member": {
|
|
3997
|
+
"description": "Member account id or email",
|
|
3998
|
+
"name": "member",
|
|
4058
3999
|
"required": true
|
|
4059
4000
|
}
|
|
4060
4001
|
},
|
|
4061
|
-
"description": "
|
|
4002
|
+
"description": "Remove a person from a team, keeping the other members",
|
|
4062
4003
|
"examples": [
|
|
4063
|
-
"<%= config.bin %>
|
|
4004
|
+
"<%= config.bin %> teams remove-member DriverOne client@acme.com"
|
|
4064
4005
|
],
|
|
4065
4006
|
"flags": {
|
|
4066
4007
|
"json": {
|
|
@@ -4073,7 +4014,7 @@
|
|
|
4073
4014
|
},
|
|
4074
4015
|
"hasDynamicHelp": false,
|
|
4075
4016
|
"hiddenAliases": [],
|
|
4076
|
-
"id": "
|
|
4017
|
+
"id": "teams:remove-member",
|
|
4077
4018
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4078
4019
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4079
4020
|
"pluginType": "core",
|
|
@@ -4083,23 +4024,61 @@
|
|
|
4083
4024
|
"relativePath": [
|
|
4084
4025
|
"dist",
|
|
4085
4026
|
"commands",
|
|
4086
|
-
"
|
|
4027
|
+
"teams",
|
|
4028
|
+
"remove-member.js"
|
|
4029
|
+
]
|
|
4030
|
+
},
|
|
4031
|
+
"teams:show": {
|
|
4032
|
+
"aliases": [],
|
|
4033
|
+
"args": {
|
|
4034
|
+
"team": {
|
|
4035
|
+
"description": "Team id (UUID) or name",
|
|
4036
|
+
"name": "team",
|
|
4037
|
+
"required": true
|
|
4038
|
+
}
|
|
4039
|
+
},
|
|
4040
|
+
"description": "Show a team by id or name (roles, group/project scope, members)",
|
|
4041
|
+
"examples": [
|
|
4042
|
+
"<%= config.bin %> teams show DriverOne"
|
|
4043
|
+
],
|
|
4044
|
+
"flags": {
|
|
4045
|
+
"json": {
|
|
4046
|
+
"description": "Format output as json.",
|
|
4047
|
+
"helpGroup": "GLOBAL",
|
|
4048
|
+
"name": "json",
|
|
4049
|
+
"allowNo": false,
|
|
4050
|
+
"type": "boolean"
|
|
4051
|
+
}
|
|
4052
|
+
},
|
|
4053
|
+
"hasDynamicHelp": false,
|
|
4054
|
+
"hiddenAliases": [],
|
|
4055
|
+
"id": "teams:show",
|
|
4056
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4057
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4058
|
+
"pluginType": "core",
|
|
4059
|
+
"strict": true,
|
|
4060
|
+
"enableJsonFlag": true,
|
|
4061
|
+
"isESM": false,
|
|
4062
|
+
"relativePath": [
|
|
4063
|
+
"dist",
|
|
4064
|
+
"commands",
|
|
4065
|
+
"teams",
|
|
4087
4066
|
"show.js"
|
|
4088
4067
|
]
|
|
4089
4068
|
},
|
|
4090
|
-
"
|
|
4069
|
+
"teams:update": {
|
|
4091
4070
|
"aliases": [],
|
|
4092
4071
|
"args": {
|
|
4093
|
-
"
|
|
4094
|
-
"description": "
|
|
4095
|
-
"name": "
|
|
4072
|
+
"team": {
|
|
4073
|
+
"description": "Team id (UUID) or name",
|
|
4074
|
+
"name": "team",
|
|
4096
4075
|
"required": true
|
|
4097
4076
|
}
|
|
4098
4077
|
},
|
|
4099
|
-
"description": "Update a
|
|
4078
|
+
"description": "Update a team. Each given dimension REPLACES the whole set for that dimension.",
|
|
4100
4079
|
"examples": [
|
|
4101
|
-
"<%= config.bin %>
|
|
4102
|
-
"<%= config.bin %>
|
|
4080
|
+
"<%= config.bin %> teams update DriverOne --role Client --group DriverOne",
|
|
4081
|
+
"<%= config.bin %> teams update DriverOne --name \"DriverOne clients\""
|
|
4103
4082
|
],
|
|
4104
4083
|
"flags": {
|
|
4105
4084
|
"json": {
|
|
@@ -4116,6 +4095,20 @@
|
|
|
4116
4095
|
"multiple": false,
|
|
4117
4096
|
"type": "option"
|
|
4118
4097
|
},
|
|
4098
|
+
"group": {
|
|
4099
|
+
"description": "Group id or name (repeatable; replaces the group scope)",
|
|
4100
|
+
"name": "group",
|
|
4101
|
+
"hasDynamicHelp": false,
|
|
4102
|
+
"multiple": true,
|
|
4103
|
+
"type": "option"
|
|
4104
|
+
},
|
|
4105
|
+
"member": {
|
|
4106
|
+
"description": "Member account id or email (repeatable; replaces the members)",
|
|
4107
|
+
"name": "member",
|
|
4108
|
+
"hasDynamicHelp": false,
|
|
4109
|
+
"multiple": true,
|
|
4110
|
+
"type": "option"
|
|
4111
|
+
},
|
|
4119
4112
|
"name": {
|
|
4120
4113
|
"description": "New name",
|
|
4121
4114
|
"name": "name",
|
|
@@ -4123,9 +4116,16 @@
|
|
|
4123
4116
|
"multiple": false,
|
|
4124
4117
|
"type": "option"
|
|
4125
4118
|
},
|
|
4126
|
-
"
|
|
4127
|
-
"description": "
|
|
4128
|
-
"name": "
|
|
4119
|
+
"project": {
|
|
4120
|
+
"description": "Project id or key (repeatable; replaces the project scope)",
|
|
4121
|
+
"name": "project",
|
|
4122
|
+
"hasDynamicHelp": false,
|
|
4123
|
+
"multiple": true,
|
|
4124
|
+
"type": "option"
|
|
4125
|
+
},
|
|
4126
|
+
"role": {
|
|
4127
|
+
"description": "Role id or name (repeatable; replaces the roles)",
|
|
4128
|
+
"name": "role",
|
|
4129
4129
|
"hasDynamicHelp": false,
|
|
4130
4130
|
"multiple": true,
|
|
4131
4131
|
"type": "option"
|
|
@@ -4133,7 +4133,7 @@
|
|
|
4133
4133
|
},
|
|
4134
4134
|
"hasDynamicHelp": false,
|
|
4135
4135
|
"hiddenAliases": [],
|
|
4136
|
-
"id": "
|
|
4136
|
+
"id": "teams:update",
|
|
4137
4137
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4138
4138
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4139
4139
|
"pluginType": "core",
|
|
@@ -4143,7 +4143,7 @@
|
|
|
4143
4143
|
"relativePath": [
|
|
4144
4144
|
"dist",
|
|
4145
4145
|
"commands",
|
|
4146
|
-
"
|
|
4146
|
+
"teams",
|
|
4147
4147
|
"update.js"
|
|
4148
4148
|
]
|
|
4149
4149
|
},
|
|
@@ -4340,6 +4340,53 @@
|
|
|
4340
4340
|
"rotate.js"
|
|
4341
4341
|
]
|
|
4342
4342
|
},
|
|
4343
|
+
"tickets:approve": {
|
|
4344
|
+
"aliases": [],
|
|
4345
|
+
"args": {
|
|
4346
|
+
"id": {
|
|
4347
|
+
"description": "Ticket id or code (e.g. DRFL-3)",
|
|
4348
|
+
"name": "id",
|
|
4349
|
+
"required": true
|
|
4350
|
+
}
|
|
4351
|
+
},
|
|
4352
|
+
"description": "Approve a ticket review: move it to the first done status",
|
|
4353
|
+
"examples": [
|
|
4354
|
+
"<%= config.bin %> tickets approve <ticket-id> --project acme-api"
|
|
4355
|
+
],
|
|
4356
|
+
"flags": {
|
|
4357
|
+
"json": {
|
|
4358
|
+
"description": "Format output as json.",
|
|
4359
|
+
"helpGroup": "GLOBAL",
|
|
4360
|
+
"name": "json",
|
|
4361
|
+
"allowNo": false,
|
|
4362
|
+
"type": "boolean"
|
|
4363
|
+
},
|
|
4364
|
+
"project": {
|
|
4365
|
+
"char": "p",
|
|
4366
|
+
"description": "Project id (UUID) or key",
|
|
4367
|
+
"name": "project",
|
|
4368
|
+
"required": true,
|
|
4369
|
+
"hasDynamicHelp": false,
|
|
4370
|
+
"multiple": false,
|
|
4371
|
+
"type": "option"
|
|
4372
|
+
}
|
|
4373
|
+
},
|
|
4374
|
+
"hasDynamicHelp": false,
|
|
4375
|
+
"hiddenAliases": [],
|
|
4376
|
+
"id": "tickets:approve",
|
|
4377
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4378
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4379
|
+
"pluginType": "core",
|
|
4380
|
+
"strict": true,
|
|
4381
|
+
"enableJsonFlag": true,
|
|
4382
|
+
"isESM": false,
|
|
4383
|
+
"relativePath": [
|
|
4384
|
+
"dist",
|
|
4385
|
+
"commands",
|
|
4386
|
+
"tickets",
|
|
4387
|
+
"approve.js"
|
|
4388
|
+
]
|
|
4389
|
+
},
|
|
4343
4390
|
"tickets:assign": {
|
|
4344
4391
|
"aliases": [],
|
|
4345
4392
|
"args": {
|
|
@@ -4467,17 +4514,17 @@
|
|
|
4467
4514
|
"aliases": [],
|
|
4468
4515
|
"args": {
|
|
4469
4516
|
"id": {
|
|
4470
|
-
"description": "Ticket id",
|
|
4517
|
+
"description": "Ticket id or code (e.g. DRFL-3)",
|
|
4471
4518
|
"name": "id",
|
|
4472
4519
|
"required": true
|
|
4473
4520
|
},
|
|
4474
4521
|
"attachment": {
|
|
4475
|
-
"description": "Attachment id",
|
|
4522
|
+
"description": "Attachment id (ticket attachment or comment file)",
|
|
4476
4523
|
"name": "attachment",
|
|
4477
4524
|
"required": true
|
|
4478
4525
|
}
|
|
4479
4526
|
},
|
|
4480
|
-
"description": "Download a ticket
|
|
4527
|
+
"description": "Download a ticket binary to disk: works for ticket attachments AND files attached to its comments",
|
|
4481
4528
|
"examples": [
|
|
4482
4529
|
"<%= config.bin %> tickets attachment-download <ticket-id> <attachment-id> --project acme-api",
|
|
4483
4530
|
"<%= config.bin %> tickets attachment-download <ticket-id> <attachment-id> -p acme-api --out ./downloads"
|
|
@@ -4699,12 +4746,12 @@
|
|
|
4699
4746
|
"aliases": [],
|
|
4700
4747
|
"args": {
|
|
4701
4748
|
"id": {
|
|
4702
|
-
"description": "Ticket id",
|
|
4749
|
+
"description": "Ticket id or code (e.g. DRFL-3)",
|
|
4703
4750
|
"name": "id",
|
|
4704
4751
|
"required": true
|
|
4705
4752
|
}
|
|
4706
4753
|
},
|
|
4707
|
-
"description": "List all comments of a ticket (oldest first)",
|
|
4754
|
+
"description": "List all comments of a ticket (oldest first), including attached files — download them with tickets attachment-download",
|
|
4708
4755
|
"examples": [
|
|
4709
4756
|
"<%= config.bin %> tickets comments <ticket-id> --project acme-api",
|
|
4710
4757
|
"<%= config.bin %> tickets comments <ticket-id> -p acme-api --json"
|
|
@@ -5081,18 +5128,75 @@
|
|
|
5081
5128
|
"milestone.js"
|
|
5082
5129
|
]
|
|
5083
5130
|
},
|
|
5131
|
+
"tickets:reject": {
|
|
5132
|
+
"aliases": [],
|
|
5133
|
+
"args": {
|
|
5134
|
+
"id": {
|
|
5135
|
+
"description": "Ticket id or code (e.g. DRFL-3)",
|
|
5136
|
+
"name": "id",
|
|
5137
|
+
"required": true
|
|
5138
|
+
}
|
|
5139
|
+
},
|
|
5140
|
+
"description": "Reject a ticket review: send it back to work with a reason",
|
|
5141
|
+
"examples": [
|
|
5142
|
+
"<%= config.bin %> tickets reject <ticket-id> --project acme-api --reason \"Edge case not covered\""
|
|
5143
|
+
],
|
|
5144
|
+
"flags": {
|
|
5145
|
+
"json": {
|
|
5146
|
+
"description": "Format output as json.",
|
|
5147
|
+
"helpGroup": "GLOBAL",
|
|
5148
|
+
"name": "json",
|
|
5149
|
+
"allowNo": false,
|
|
5150
|
+
"type": "boolean"
|
|
5151
|
+
},
|
|
5152
|
+
"project": {
|
|
5153
|
+
"char": "p",
|
|
5154
|
+
"description": "Project id (UUID) or key",
|
|
5155
|
+
"name": "project",
|
|
5156
|
+
"required": true,
|
|
5157
|
+
"hasDynamicHelp": false,
|
|
5158
|
+
"multiple": false,
|
|
5159
|
+
"type": "option"
|
|
5160
|
+
},
|
|
5161
|
+
"reason": {
|
|
5162
|
+
"description": "Why the review is rejected (posted as a comment)",
|
|
5163
|
+
"name": "reason",
|
|
5164
|
+
"required": true,
|
|
5165
|
+
"hasDynamicHelp": false,
|
|
5166
|
+
"multiple": false,
|
|
5167
|
+
"type": "option"
|
|
5168
|
+
}
|
|
5169
|
+
},
|
|
5170
|
+
"hasDynamicHelp": false,
|
|
5171
|
+
"hiddenAliases": [],
|
|
5172
|
+
"id": "tickets:reject",
|
|
5173
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5174
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5175
|
+
"pluginType": "core",
|
|
5176
|
+
"strict": true,
|
|
5177
|
+
"enableJsonFlag": true,
|
|
5178
|
+
"isESM": false,
|
|
5179
|
+
"relativePath": [
|
|
5180
|
+
"dist",
|
|
5181
|
+
"commands",
|
|
5182
|
+
"tickets",
|
|
5183
|
+
"reject.js"
|
|
5184
|
+
]
|
|
5185
|
+
},
|
|
5084
5186
|
"tickets:show": {
|
|
5085
5187
|
"aliases": [],
|
|
5086
5188
|
"args": {
|
|
5087
5189
|
"id": {
|
|
5088
|
-
"description": "Ticket id or code",
|
|
5190
|
+
"description": "Ticket id or code (e.g. DRFL-3)",
|
|
5089
5191
|
"name": "id",
|
|
5090
5192
|
"required": true
|
|
5091
5193
|
}
|
|
5092
5194
|
},
|
|
5093
|
-
"description": "Show a single ticket",
|
|
5195
|
+
"description": "Show a single ticket in full: body (description + Given/When/Then/Expected), comments (with their files) and attachments",
|
|
5094
5196
|
"examples": [
|
|
5095
|
-
"<%= config.bin %> tickets show <ticket-id> --project acme-api"
|
|
5197
|
+
"<%= config.bin %> tickets show <ticket-id> --project acme-api",
|
|
5198
|
+
"<%= config.bin %> tickets show DRFL-3 --project driverone-flutter",
|
|
5199
|
+
"<%= config.bin %> tickets show DRFL-3 -p driverone-flutter --json"
|
|
5096
5200
|
],
|
|
5097
5201
|
"flags": {
|
|
5098
5202
|
"json": {
|
|
@@ -5708,5 +5812,5 @@
|
|
|
5708
5812
|
]
|
|
5709
5813
|
}
|
|
5710
5814
|
},
|
|
5711
|
-
"version": "0.0.
|
|
5815
|
+
"version": "0.0.12"
|
|
5712
5816
|
}
|