@bussolabs/closeyourit-cli 0.0.12 → 0.0.13
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/commands/ideas/comment-delete.d.ts +14 -0
- package/dist/commands/ideas/comment-delete.js +30 -0
- package/dist/commands/ideas/comment.d.ts +13 -0
- package/dist/commands/ideas/comment.js +29 -0
- package/dist/commands/ideas/comments.d.ts +12 -0
- package/dist/commands/ideas/comments.js +45 -0
- package/dist/commands/ideas/convert.d.ts +17 -0
- package/dist/commands/ideas/convert.js +48 -0
- package/dist/commands/ideas/create.d.ts +11 -0
- package/dist/commands/ideas/create.js +27 -0
- package/dist/commands/ideas/list.d.ts +12 -0
- package/dist/commands/ideas/list.js +40 -0
- package/dist/commands/ideas/show.d.ts +12 -0
- package/dist/commands/ideas/show.js +28 -0
- package/dist/commands/ideas/unvote.d.ts +12 -0
- package/dist/commands/ideas/unvote.js +24 -0
- package/dist/commands/ideas/vote.d.ts +12 -0
- package/dist/commands/ideas/vote.js +24 -0
- package/oclif.manifest.json +1517 -1008
- package/opencli.json +349 -1
- package/package.json +4 -1
package/oclif.manifest.json
CHANGED
|
@@ -880,13 +880,18 @@
|
|
|
880
880
|
"update.js"
|
|
881
881
|
]
|
|
882
882
|
},
|
|
883
|
-
"
|
|
883
|
+
"ideas:comment-delete": {
|
|
884
884
|
"aliases": [],
|
|
885
|
-
"args": {
|
|
886
|
-
|
|
885
|
+
"args": {
|
|
886
|
+
"id": {
|
|
887
|
+
"description": "Idea id",
|
|
888
|
+
"name": "id",
|
|
889
|
+
"required": true
|
|
890
|
+
}
|
|
891
|
+
},
|
|
892
|
+
"description": "Delete a comment from an open idea (author, or with ideas.comment.delete_any)",
|
|
887
893
|
"examples": [
|
|
888
|
-
"<%= config.bin %>
|
|
889
|
-
"<%= config.bin %> errors list -p acme-api --status unresolved --json"
|
|
894
|
+
"<%= config.bin %> ideas comment-delete <idea-id> --project acme-api --comment-id <id> --confirm"
|
|
890
895
|
],
|
|
891
896
|
"flags": {
|
|
892
897
|
"json": {
|
|
@@ -905,25 +910,24 @@
|
|
|
905
910
|
"multiple": false,
|
|
906
911
|
"type": "option"
|
|
907
912
|
},
|
|
908
|
-
"
|
|
909
|
-
"description": "
|
|
910
|
-
"name": "
|
|
911
|
-
"
|
|
913
|
+
"comment-id": {
|
|
914
|
+
"description": "Comment id to delete",
|
|
915
|
+
"name": "comment-id",
|
|
916
|
+
"required": true,
|
|
912
917
|
"hasDynamicHelp": false,
|
|
913
918
|
"multiple": false,
|
|
914
919
|
"type": "option"
|
|
915
920
|
},
|
|
916
|
-
"
|
|
917
|
-
"description": "
|
|
918
|
-
"name": "
|
|
919
|
-
"
|
|
920
|
-
"
|
|
921
|
-
"type": "option"
|
|
921
|
+
"confirm": {
|
|
922
|
+
"description": "Required: confirm the irreversible deletion",
|
|
923
|
+
"name": "confirm",
|
|
924
|
+
"allowNo": false,
|
|
925
|
+
"type": "boolean"
|
|
922
926
|
}
|
|
923
927
|
},
|
|
924
928
|
"hasDynamicHelp": false,
|
|
925
929
|
"hiddenAliases": [],
|
|
926
|
-
"id": "
|
|
930
|
+
"id": "ideas:comment-delete",
|
|
927
931
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
928
932
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
929
933
|
"pluginType": "core",
|
|
@@ -933,22 +937,22 @@
|
|
|
933
937
|
"relativePath": [
|
|
934
938
|
"dist",
|
|
935
939
|
"commands",
|
|
936
|
-
"
|
|
937
|
-
"
|
|
940
|
+
"ideas",
|
|
941
|
+
"comment-delete.js"
|
|
938
942
|
]
|
|
939
943
|
},
|
|
940
|
-
"
|
|
944
|
+
"ideas:comment": {
|
|
941
945
|
"aliases": [],
|
|
942
946
|
"args": {
|
|
943
947
|
"id": {
|
|
944
|
-
"description": "
|
|
948
|
+
"description": "Idea id",
|
|
945
949
|
"name": "id",
|
|
946
950
|
"required": true
|
|
947
951
|
}
|
|
948
952
|
},
|
|
949
|
-
"description": "
|
|
953
|
+
"description": "Add a comment to an idea (only open ideas accept comments)",
|
|
950
954
|
"examples": [
|
|
951
|
-
"<%= config.bin %>
|
|
955
|
+
"<%= config.bin %> ideas comment <idea-id> --project acme-api --body \"Also needed on mobile\""
|
|
952
956
|
],
|
|
953
957
|
"flags": {
|
|
954
958
|
"json": {
|
|
@@ -966,11 +970,19 @@
|
|
|
966
970
|
"hasDynamicHelp": false,
|
|
967
971
|
"multiple": false,
|
|
968
972
|
"type": "option"
|
|
973
|
+
},
|
|
974
|
+
"body": {
|
|
975
|
+
"description": "Comment body",
|
|
976
|
+
"name": "body",
|
|
977
|
+
"required": true,
|
|
978
|
+
"hasDynamicHelp": false,
|
|
979
|
+
"multiple": false,
|
|
980
|
+
"type": "option"
|
|
969
981
|
}
|
|
970
982
|
},
|
|
971
983
|
"hasDynamicHelp": false,
|
|
972
984
|
"hiddenAliases": [],
|
|
973
|
-
"id": "
|
|
985
|
+
"id": "ideas:comment",
|
|
974
986
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
975
987
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
976
988
|
"pluginType": "core",
|
|
@@ -980,22 +992,23 @@
|
|
|
980
992
|
"relativePath": [
|
|
981
993
|
"dist",
|
|
982
994
|
"commands",
|
|
983
|
-
"
|
|
984
|
-
"
|
|
995
|
+
"ideas",
|
|
996
|
+
"comment.js"
|
|
985
997
|
]
|
|
986
998
|
},
|
|
987
|
-
"
|
|
999
|
+
"ideas:comments": {
|
|
988
1000
|
"aliases": [],
|
|
989
1001
|
"args": {
|
|
990
1002
|
"id": {
|
|
991
|
-
"description": "
|
|
1003
|
+
"description": "Idea id",
|
|
992
1004
|
"name": "id",
|
|
993
1005
|
"required": true
|
|
994
1006
|
}
|
|
995
1007
|
},
|
|
996
|
-
"description": "
|
|
1008
|
+
"description": "List all comments of an idea (oldest first)",
|
|
997
1009
|
"examples": [
|
|
998
|
-
"<%= config.bin %>
|
|
1010
|
+
"<%= config.bin %> ideas comments <idea-id> --project acme-api",
|
|
1011
|
+
"<%= config.bin %> ideas comments <idea-id> -p acme-api --json"
|
|
999
1012
|
],
|
|
1000
1013
|
"flags": {
|
|
1001
1014
|
"json": {
|
|
@@ -1017,7 +1030,7 @@
|
|
|
1017
1030
|
},
|
|
1018
1031
|
"hasDynamicHelp": false,
|
|
1019
1032
|
"hiddenAliases": [],
|
|
1020
|
-
"id": "
|
|
1033
|
+
"id": "ideas:comments",
|
|
1021
1034
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1022
1035
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1023
1036
|
"pluginType": "core",
|
|
@@ -1027,22 +1040,23 @@
|
|
|
1027
1040
|
"relativePath": [
|
|
1028
1041
|
"dist",
|
|
1029
1042
|
"commands",
|
|
1030
|
-
"
|
|
1031
|
-
"
|
|
1043
|
+
"ideas",
|
|
1044
|
+
"comments.js"
|
|
1032
1045
|
]
|
|
1033
1046
|
},
|
|
1034
|
-
"
|
|
1047
|
+
"ideas:convert": {
|
|
1035
1048
|
"aliases": [],
|
|
1036
1049
|
"args": {
|
|
1037
1050
|
"id": {
|
|
1038
|
-
"description": "
|
|
1051
|
+
"description": "Idea id",
|
|
1039
1052
|
"name": "id",
|
|
1040
1053
|
"required": true
|
|
1041
1054
|
}
|
|
1042
1055
|
},
|
|
1043
|
-
"description": "
|
|
1056
|
+
"description": "Convert an idea into a ticket. Without --title/--description the server AI synthesizes the draft from the idea and its comments (may take ~30s). Author always allowed; others need ideas.convert.",
|
|
1044
1057
|
"examples": [
|
|
1045
|
-
"<%= config.bin %>
|
|
1058
|
+
"<%= config.bin %> ideas convert <idea-id> --project acme-api",
|
|
1059
|
+
"<%= config.bin %> ideas convert <idea-id> -p acme-api --title \"Dark mode\" --description \"Full spec…\" --kind feature"
|
|
1046
1060
|
],
|
|
1047
1061
|
"flags": {
|
|
1048
1062
|
"json": {
|
|
@@ -1060,11 +1074,46 @@
|
|
|
1060
1074
|
"hasDynamicHelp": false,
|
|
1061
1075
|
"multiple": false,
|
|
1062
1076
|
"type": "option"
|
|
1077
|
+
},
|
|
1078
|
+
"title": {
|
|
1079
|
+
"description": "Ticket title (skips AI when set together with --description)",
|
|
1080
|
+
"name": "title",
|
|
1081
|
+
"hasDynamicHelp": false,
|
|
1082
|
+
"multiple": false,
|
|
1083
|
+
"type": "option"
|
|
1084
|
+
},
|
|
1085
|
+
"description": {
|
|
1086
|
+
"description": "Ticket description (skips AI when set together with --title)",
|
|
1087
|
+
"name": "description",
|
|
1088
|
+
"hasDynamicHelp": false,
|
|
1089
|
+
"multiple": false,
|
|
1090
|
+
"type": "option"
|
|
1091
|
+
},
|
|
1092
|
+
"kind": {
|
|
1093
|
+
"description": "Ticket kind (default: feature if the project has a roadmap, else bug)",
|
|
1094
|
+
"name": "kind",
|
|
1095
|
+
"hasDynamicHelp": false,
|
|
1096
|
+
"multiple": false,
|
|
1097
|
+
"type": "option"
|
|
1098
|
+
},
|
|
1099
|
+
"status-id": {
|
|
1100
|
+
"description": "Status lookup id (default: open)",
|
|
1101
|
+
"name": "status-id",
|
|
1102
|
+
"hasDynamicHelp": false,
|
|
1103
|
+
"multiple": false,
|
|
1104
|
+
"type": "option"
|
|
1105
|
+
},
|
|
1106
|
+
"priority-id": {
|
|
1107
|
+
"description": "Priority lookup id (default: medium)",
|
|
1108
|
+
"name": "priority-id",
|
|
1109
|
+
"hasDynamicHelp": false,
|
|
1110
|
+
"multiple": false,
|
|
1111
|
+
"type": "option"
|
|
1063
1112
|
}
|
|
1064
1113
|
},
|
|
1065
1114
|
"hasDynamicHelp": false,
|
|
1066
1115
|
"hiddenAliases": [],
|
|
1067
|
-
"id": "
|
|
1116
|
+
"id": "ideas:convert",
|
|
1068
1117
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1069
1118
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1070
1119
|
"pluginType": "core",
|
|
@@ -1074,22 +1123,74 @@
|
|
|
1074
1123
|
"relativePath": [
|
|
1075
1124
|
"dist",
|
|
1076
1125
|
"commands",
|
|
1077
|
-
"
|
|
1078
|
-
"
|
|
1126
|
+
"ideas",
|
|
1127
|
+
"convert.js"
|
|
1079
1128
|
]
|
|
1080
1129
|
},
|
|
1081
|
-
"
|
|
1130
|
+
"ideas:create": {
|
|
1082
1131
|
"aliases": [],
|
|
1083
|
-
"args": {
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1132
|
+
"args": {},
|
|
1133
|
+
"description": "Propose an idea for a project",
|
|
1134
|
+
"examples": [
|
|
1135
|
+
"<%= config.bin %> ideas create --project acme-api --title \"Dark mode\" --body \"Dark theme for the dashboard\""
|
|
1136
|
+
],
|
|
1137
|
+
"flags": {
|
|
1138
|
+
"json": {
|
|
1139
|
+
"description": "Format output as json.",
|
|
1140
|
+
"helpGroup": "GLOBAL",
|
|
1141
|
+
"name": "json",
|
|
1142
|
+
"allowNo": false,
|
|
1143
|
+
"type": "boolean"
|
|
1144
|
+
},
|
|
1145
|
+
"project": {
|
|
1146
|
+
"char": "p",
|
|
1147
|
+
"description": "Project id (UUID) or key",
|
|
1148
|
+
"name": "project",
|
|
1149
|
+
"required": true,
|
|
1150
|
+
"hasDynamicHelp": false,
|
|
1151
|
+
"multiple": false,
|
|
1152
|
+
"type": "option"
|
|
1153
|
+
},
|
|
1154
|
+
"title": {
|
|
1155
|
+
"description": "Idea title",
|
|
1156
|
+
"name": "title",
|
|
1157
|
+
"required": true,
|
|
1158
|
+
"hasDynamicHelp": false,
|
|
1159
|
+
"multiple": false,
|
|
1160
|
+
"type": "option"
|
|
1161
|
+
},
|
|
1162
|
+
"body": {
|
|
1163
|
+
"description": "Idea proposal body",
|
|
1164
|
+
"name": "body",
|
|
1165
|
+
"required": true,
|
|
1166
|
+
"hasDynamicHelp": false,
|
|
1167
|
+
"multiple": false,
|
|
1168
|
+
"type": "option"
|
|
1088
1169
|
}
|
|
1089
1170
|
},
|
|
1090
|
-
"
|
|
1171
|
+
"hasDynamicHelp": false,
|
|
1172
|
+
"hiddenAliases": [],
|
|
1173
|
+
"id": "ideas:create",
|
|
1174
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1175
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1176
|
+
"pluginType": "core",
|
|
1177
|
+
"strict": true,
|
|
1178
|
+
"enableJsonFlag": true,
|
|
1179
|
+
"isESM": false,
|
|
1180
|
+
"relativePath": [
|
|
1181
|
+
"dist",
|
|
1182
|
+
"commands",
|
|
1183
|
+
"ideas",
|
|
1184
|
+
"create.js"
|
|
1185
|
+
]
|
|
1186
|
+
},
|
|
1187
|
+
"ideas:list": {
|
|
1188
|
+
"aliases": [],
|
|
1189
|
+
"args": {},
|
|
1190
|
+
"description": "List ideas for a project (sorted by votes)",
|
|
1091
1191
|
"examples": [
|
|
1092
|
-
"<%= config.bin %>
|
|
1192
|
+
"<%= config.bin %> ideas list --project acme-api",
|
|
1193
|
+
"<%= config.bin %> ideas list -p acme-api --status open --sort recent --json"
|
|
1093
1194
|
],
|
|
1094
1195
|
"flags": {
|
|
1095
1196
|
"json": {
|
|
@@ -1107,11 +1208,33 @@
|
|
|
1107
1208
|
"hasDynamicHelp": false,
|
|
1108
1209
|
"multiple": false,
|
|
1109
1210
|
"type": "option"
|
|
1211
|
+
},
|
|
1212
|
+
"page": {
|
|
1213
|
+
"description": "Page number",
|
|
1214
|
+
"name": "page",
|
|
1215
|
+
"default": 1,
|
|
1216
|
+
"hasDynamicHelp": false,
|
|
1217
|
+
"multiple": false,
|
|
1218
|
+
"type": "option"
|
|
1219
|
+
},
|
|
1220
|
+
"status": {
|
|
1221
|
+
"description": "Filter by status (open|converted|archived)",
|
|
1222
|
+
"name": "status",
|
|
1223
|
+
"hasDynamicHelp": false,
|
|
1224
|
+
"multiple": false,
|
|
1225
|
+
"type": "option"
|
|
1226
|
+
},
|
|
1227
|
+
"sort": {
|
|
1228
|
+
"description": "Sort order (votes|recent, default votes)",
|
|
1229
|
+
"name": "sort",
|
|
1230
|
+
"hasDynamicHelp": false,
|
|
1231
|
+
"multiple": false,
|
|
1232
|
+
"type": "option"
|
|
1110
1233
|
}
|
|
1111
1234
|
},
|
|
1112
1235
|
"hasDynamicHelp": false,
|
|
1113
1236
|
"hiddenAliases": [],
|
|
1114
|
-
"id": "
|
|
1237
|
+
"id": "ideas:list",
|
|
1115
1238
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1116
1239
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1117
1240
|
"pluginType": "core",
|
|
@@ -1121,22 +1244,22 @@
|
|
|
1121
1244
|
"relativePath": [
|
|
1122
1245
|
"dist",
|
|
1123
1246
|
"commands",
|
|
1124
|
-
"
|
|
1125
|
-
"
|
|
1247
|
+
"ideas",
|
|
1248
|
+
"list.js"
|
|
1126
1249
|
]
|
|
1127
1250
|
},
|
|
1128
|
-
"
|
|
1251
|
+
"ideas:show": {
|
|
1129
1252
|
"aliases": [],
|
|
1130
1253
|
"args": {
|
|
1131
1254
|
"id": {
|
|
1132
|
-
"description": "
|
|
1255
|
+
"description": "Idea id",
|
|
1133
1256
|
"name": "id",
|
|
1134
1257
|
"required": true
|
|
1135
1258
|
}
|
|
1136
1259
|
},
|
|
1137
|
-
"description": "Show
|
|
1260
|
+
"description": "Show an idea (fields + full proposal body)",
|
|
1138
1261
|
"examples": [
|
|
1139
|
-
"<%= config.bin %>
|
|
1262
|
+
"<%= config.bin %> ideas show <idea-id> --project acme-api"
|
|
1140
1263
|
],
|
|
1141
1264
|
"flags": {
|
|
1142
1265
|
"json": {
|
|
@@ -1158,7 +1281,7 @@
|
|
|
1158
1281
|
},
|
|
1159
1282
|
"hasDynamicHelp": false,
|
|
1160
1283
|
"hiddenAliases": [],
|
|
1161
|
-
"id": "
|
|
1284
|
+
"id": "ideas:show",
|
|
1162
1285
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1163
1286
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1164
1287
|
"pluginType": "core",
|
|
@@ -1168,22 +1291,22 @@
|
|
|
1168
1291
|
"relativePath": [
|
|
1169
1292
|
"dist",
|
|
1170
1293
|
"commands",
|
|
1171
|
-
"
|
|
1294
|
+
"ideas",
|
|
1172
1295
|
"show.js"
|
|
1173
1296
|
]
|
|
1174
1297
|
},
|
|
1175
|
-
"
|
|
1298
|
+
"ideas:unvote": {
|
|
1176
1299
|
"aliases": [],
|
|
1177
1300
|
"args": {
|
|
1178
1301
|
"id": {
|
|
1179
|
-
"description": "
|
|
1302
|
+
"description": "Idea id",
|
|
1180
1303
|
"name": "id",
|
|
1181
1304
|
"required": true
|
|
1182
1305
|
}
|
|
1183
1306
|
},
|
|
1184
|
-
"description": "
|
|
1307
|
+
"description": "Remove your upvote from an idea (idempotent)",
|
|
1185
1308
|
"examples": [
|
|
1186
|
-
"<%= config.bin %>
|
|
1309
|
+
"<%= config.bin %> ideas unvote <idea-id> --project acme-api"
|
|
1187
1310
|
],
|
|
1188
1311
|
"flags": {
|
|
1189
1312
|
"json": {
|
|
@@ -1205,7 +1328,7 @@
|
|
|
1205
1328
|
},
|
|
1206
1329
|
"hasDynamicHelp": false,
|
|
1207
1330
|
"hiddenAliases": [],
|
|
1208
|
-
"id": "
|
|
1331
|
+
"id": "ideas:unvote",
|
|
1209
1332
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1210
1333
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1211
1334
|
"pluginType": "core",
|
|
@@ -1215,23 +1338,22 @@
|
|
|
1215
1338
|
"relativePath": [
|
|
1216
1339
|
"dist",
|
|
1217
1340
|
"commands",
|
|
1218
|
-
"
|
|
1219
|
-
"
|
|
1341
|
+
"ideas",
|
|
1342
|
+
"unvote.js"
|
|
1220
1343
|
]
|
|
1221
1344
|
},
|
|
1222
|
-
"
|
|
1345
|
+
"ideas:vote": {
|
|
1223
1346
|
"aliases": [],
|
|
1224
1347
|
"args": {
|
|
1225
|
-
"
|
|
1226
|
-
"description": "
|
|
1227
|
-
"name": "
|
|
1348
|
+
"id": {
|
|
1349
|
+
"description": "Idea id",
|
|
1350
|
+
"name": "id",
|
|
1228
1351
|
"required": true
|
|
1229
1352
|
}
|
|
1230
1353
|
},
|
|
1231
|
-
"description": "
|
|
1354
|
+
"description": "Upvote an idea (idempotent; only open ideas accept votes)",
|
|
1232
1355
|
"examples": [
|
|
1233
|
-
"<%= config.bin %>
|
|
1234
|
-
"<%= config.bin %> invitations create teammate@acme.com --role member"
|
|
1356
|
+
"<%= config.bin %> ideas vote <idea-id> --project acme-api"
|
|
1235
1357
|
],
|
|
1236
1358
|
"flags": {
|
|
1237
1359
|
"json": {
|
|
@@ -1241,23 +1363,19 @@
|
|
|
1241
1363
|
"allowNo": false,
|
|
1242
1364
|
"type": "boolean"
|
|
1243
1365
|
},
|
|
1244
|
-
"
|
|
1245
|
-
"
|
|
1246
|
-
"
|
|
1247
|
-
"
|
|
1366
|
+
"project": {
|
|
1367
|
+
"char": "p",
|
|
1368
|
+
"description": "Project id (UUID) or key",
|
|
1369
|
+
"name": "project",
|
|
1370
|
+
"required": true,
|
|
1248
1371
|
"hasDynamicHelp": false,
|
|
1249
1372
|
"multiple": false,
|
|
1250
|
-
"options": [
|
|
1251
|
-
"customer",
|
|
1252
|
-
"member",
|
|
1253
|
-
"admin"
|
|
1254
|
-
],
|
|
1255
1373
|
"type": "option"
|
|
1256
1374
|
}
|
|
1257
1375
|
},
|
|
1258
1376
|
"hasDynamicHelp": false,
|
|
1259
1377
|
"hiddenAliases": [],
|
|
1260
|
-
"id": "
|
|
1378
|
+
"id": "ideas:vote",
|
|
1261
1379
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1262
1380
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1263
1381
|
"pluginType": "core",
|
|
@@ -1267,17 +1385,17 @@
|
|
|
1267
1385
|
"relativePath": [
|
|
1268
1386
|
"dist",
|
|
1269
1387
|
"commands",
|
|
1270
|
-
"
|
|
1271
|
-
"
|
|
1388
|
+
"ideas",
|
|
1389
|
+
"vote.js"
|
|
1272
1390
|
]
|
|
1273
1391
|
},
|
|
1274
|
-
"
|
|
1392
|
+
"errors:list": {
|
|
1275
1393
|
"aliases": [],
|
|
1276
1394
|
"args": {},
|
|
1277
|
-
"description": "List
|
|
1395
|
+
"description": "List error groups for a project",
|
|
1278
1396
|
"examples": [
|
|
1279
|
-
"<%= config.bin %>
|
|
1280
|
-
"<%= config.bin %>
|
|
1397
|
+
"<%= config.bin %> errors list --project acme-api",
|
|
1398
|
+
"<%= config.bin %> errors list -p acme-api --status unresolved --json"
|
|
1281
1399
|
],
|
|
1282
1400
|
"flags": {
|
|
1283
1401
|
"json": {
|
|
@@ -1287,6 +1405,15 @@
|
|
|
1287
1405
|
"allowNo": false,
|
|
1288
1406
|
"type": "boolean"
|
|
1289
1407
|
},
|
|
1408
|
+
"project": {
|
|
1409
|
+
"char": "p",
|
|
1410
|
+
"description": "Project id (UUID) or key",
|
|
1411
|
+
"name": "project",
|
|
1412
|
+
"required": true,
|
|
1413
|
+
"hasDynamicHelp": false,
|
|
1414
|
+
"multiple": false,
|
|
1415
|
+
"type": "option"
|
|
1416
|
+
},
|
|
1290
1417
|
"page": {
|
|
1291
1418
|
"description": "Page number",
|
|
1292
1419
|
"name": "page",
|
|
@@ -1294,11 +1421,18 @@
|
|
|
1294
1421
|
"hasDynamicHelp": false,
|
|
1295
1422
|
"multiple": false,
|
|
1296
1423
|
"type": "option"
|
|
1424
|
+
},
|
|
1425
|
+
"status": {
|
|
1426
|
+
"description": "Filter by status (e.g. unresolved, resolved, muted)",
|
|
1427
|
+
"name": "status",
|
|
1428
|
+
"hasDynamicHelp": false,
|
|
1429
|
+
"multiple": false,
|
|
1430
|
+
"type": "option"
|
|
1297
1431
|
}
|
|
1298
1432
|
},
|
|
1299
1433
|
"hasDynamicHelp": false,
|
|
1300
1434
|
"hiddenAliases": [],
|
|
1301
|
-
"id": "
|
|
1435
|
+
"id": "errors:list",
|
|
1302
1436
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1303
1437
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1304
1438
|
"pluginType": "core",
|
|
@@ -1308,22 +1442,22 @@
|
|
|
1308
1442
|
"relativePath": [
|
|
1309
1443
|
"dist",
|
|
1310
1444
|
"commands",
|
|
1311
|
-
"
|
|
1445
|
+
"errors",
|
|
1312
1446
|
"list.js"
|
|
1313
1447
|
]
|
|
1314
1448
|
},
|
|
1315
|
-
"
|
|
1449
|
+
"errors:mute": {
|
|
1316
1450
|
"aliases": [],
|
|
1317
1451
|
"args": {
|
|
1318
1452
|
"id": {
|
|
1319
|
-
"description": "
|
|
1453
|
+
"description": "Error group id",
|
|
1320
1454
|
"name": "id",
|
|
1321
1455
|
"required": true
|
|
1322
1456
|
}
|
|
1323
1457
|
},
|
|
1324
|
-
"description": "
|
|
1458
|
+
"description": "Mute an error group",
|
|
1325
1459
|
"examples": [
|
|
1326
|
-
"<%= config.bin %>
|
|
1460
|
+
"<%= config.bin %> errors mute <group-id> --project acme-api"
|
|
1327
1461
|
],
|
|
1328
1462
|
"flags": {
|
|
1329
1463
|
"json": {
|
|
@@ -1332,11 +1466,20 @@
|
|
|
1332
1466
|
"name": "json",
|
|
1333
1467
|
"allowNo": false,
|
|
1334
1468
|
"type": "boolean"
|
|
1335
|
-
}
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1469
|
+
},
|
|
1470
|
+
"project": {
|
|
1471
|
+
"char": "p",
|
|
1472
|
+
"description": "Project id (UUID) or key",
|
|
1473
|
+
"name": "project",
|
|
1474
|
+
"required": true,
|
|
1475
|
+
"hasDynamicHelp": false,
|
|
1476
|
+
"multiple": false,
|
|
1477
|
+
"type": "option"
|
|
1478
|
+
}
|
|
1479
|
+
},
|
|
1480
|
+
"hasDynamicHelp": false,
|
|
1481
|
+
"hiddenAliases": [],
|
|
1482
|
+
"id": "errors:mute",
|
|
1340
1483
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1341
1484
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1342
1485
|
"pluginType": "core",
|
|
@@ -1346,22 +1489,22 @@
|
|
|
1346
1489
|
"relativePath": [
|
|
1347
1490
|
"dist",
|
|
1348
1491
|
"commands",
|
|
1349
|
-
"
|
|
1350
|
-
"
|
|
1492
|
+
"errors",
|
|
1493
|
+
"mute.js"
|
|
1351
1494
|
]
|
|
1352
1495
|
},
|
|
1353
|
-
"
|
|
1496
|
+
"errors:promote": {
|
|
1354
1497
|
"aliases": [],
|
|
1355
1498
|
"args": {
|
|
1356
1499
|
"id": {
|
|
1357
|
-
"description": "
|
|
1500
|
+
"description": "Error group id",
|
|
1358
1501
|
"name": "id",
|
|
1359
1502
|
"required": true
|
|
1360
1503
|
}
|
|
1361
1504
|
},
|
|
1362
|
-
"description": "
|
|
1505
|
+
"description": "Promote an error group to a ticket",
|
|
1363
1506
|
"examples": [
|
|
1364
|
-
"<%= config.bin %>
|
|
1507
|
+
"<%= config.bin %> errors promote <group-id> --project acme-api"
|
|
1365
1508
|
],
|
|
1366
1509
|
"flags": {
|
|
1367
1510
|
"json": {
|
|
@@ -1370,11 +1513,20 @@
|
|
|
1370
1513
|
"name": "json",
|
|
1371
1514
|
"allowNo": false,
|
|
1372
1515
|
"type": "boolean"
|
|
1516
|
+
},
|
|
1517
|
+
"project": {
|
|
1518
|
+
"char": "p",
|
|
1519
|
+
"description": "Project id (UUID) or key",
|
|
1520
|
+
"name": "project",
|
|
1521
|
+
"required": true,
|
|
1522
|
+
"hasDynamicHelp": false,
|
|
1523
|
+
"multiple": false,
|
|
1524
|
+
"type": "option"
|
|
1373
1525
|
}
|
|
1374
1526
|
},
|
|
1375
1527
|
"hasDynamicHelp": false,
|
|
1376
1528
|
"hiddenAliases": [],
|
|
1377
|
-
"id": "
|
|
1529
|
+
"id": "errors:promote",
|
|
1378
1530
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1379
1531
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1380
1532
|
"pluginType": "core",
|
|
@@ -1384,18 +1536,22 @@
|
|
|
1384
1536
|
"relativePath": [
|
|
1385
1537
|
"dist",
|
|
1386
1538
|
"commands",
|
|
1387
|
-
"
|
|
1388
|
-
"
|
|
1539
|
+
"errors",
|
|
1540
|
+
"promote.js"
|
|
1389
1541
|
]
|
|
1390
1542
|
},
|
|
1391
|
-
"
|
|
1543
|
+
"errors:reopen": {
|
|
1392
1544
|
"aliases": [],
|
|
1393
|
-
"args": {
|
|
1394
|
-
|
|
1545
|
+
"args": {
|
|
1546
|
+
"id": {
|
|
1547
|
+
"description": "Error group id",
|
|
1548
|
+
"name": "id",
|
|
1549
|
+
"required": true
|
|
1550
|
+
}
|
|
1551
|
+
},
|
|
1552
|
+
"description": "Reopen a resolved error group",
|
|
1395
1553
|
"examples": [
|
|
1396
|
-
"<%= config.bin %>
|
|
1397
|
-
"<%= config.bin %> logs list --project acme-api --level error",
|
|
1398
|
-
"<%= config.bin %> logs list --trace-id 7f3c… --json"
|
|
1554
|
+
"<%= config.bin %> errors reopen <group-id> --project acme-api"
|
|
1399
1555
|
],
|
|
1400
1556
|
"flags": {
|
|
1401
1557
|
"json": {
|
|
@@ -1407,37 +1563,56 @@
|
|
|
1407
1563
|
},
|
|
1408
1564
|
"project": {
|
|
1409
1565
|
"char": "p",
|
|
1410
|
-
"description": "
|
|
1566
|
+
"description": "Project id (UUID) or key",
|
|
1411
1567
|
"name": "project",
|
|
1568
|
+
"required": true,
|
|
1412
1569
|
"hasDynamicHelp": false,
|
|
1413
1570
|
"multiple": false,
|
|
1414
1571
|
"type": "option"
|
|
1572
|
+
}
|
|
1573
|
+
},
|
|
1574
|
+
"hasDynamicHelp": false,
|
|
1575
|
+
"hiddenAliases": [],
|
|
1576
|
+
"id": "errors:reopen",
|
|
1577
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1578
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1579
|
+
"pluginType": "core",
|
|
1580
|
+
"strict": true,
|
|
1581
|
+
"enableJsonFlag": true,
|
|
1582
|
+
"isESM": false,
|
|
1583
|
+
"relativePath": [
|
|
1584
|
+
"dist",
|
|
1585
|
+
"commands",
|
|
1586
|
+
"errors",
|
|
1587
|
+
"reopen.js"
|
|
1588
|
+
]
|
|
1589
|
+
},
|
|
1590
|
+
"errors:resolve": {
|
|
1591
|
+
"aliases": [],
|
|
1592
|
+
"args": {
|
|
1593
|
+
"id": {
|
|
1594
|
+
"description": "Error group id",
|
|
1595
|
+
"name": "id",
|
|
1596
|
+
"required": true
|
|
1597
|
+
}
|
|
1598
|
+
},
|
|
1599
|
+
"description": "Mark an error group as resolved",
|
|
1600
|
+
"examples": [
|
|
1601
|
+
"<%= config.bin %> errors resolve <group-id> --project acme-api"
|
|
1602
|
+
],
|
|
1603
|
+
"flags": {
|
|
1604
|
+
"json": {
|
|
1605
|
+
"description": "Format output as json.",
|
|
1606
|
+
"helpGroup": "GLOBAL",
|
|
1607
|
+
"name": "json",
|
|
1608
|
+
"allowNo": false,
|
|
1609
|
+
"type": "boolean"
|
|
1415
1610
|
},
|
|
1416
|
-
"
|
|
1417
|
-
"
|
|
1418
|
-
"
|
|
1419
|
-
"
|
|
1420
|
-
"
|
|
1421
|
-
"type": "option"
|
|
1422
|
-
},
|
|
1423
|
-
"trace-id": {
|
|
1424
|
-
"description": "Filter by trace id (correlate one request)",
|
|
1425
|
-
"name": "trace-id",
|
|
1426
|
-
"hasDynamicHelp": false,
|
|
1427
|
-
"multiple": false,
|
|
1428
|
-
"type": "option"
|
|
1429
|
-
},
|
|
1430
|
-
"environment": {
|
|
1431
|
-
"description": "Filter by environment (e.g. production)",
|
|
1432
|
-
"name": "environment",
|
|
1433
|
-
"hasDynamicHelp": false,
|
|
1434
|
-
"multiple": false,
|
|
1435
|
-
"type": "option"
|
|
1436
|
-
},
|
|
1437
|
-
"page": {
|
|
1438
|
-
"description": "Page number",
|
|
1439
|
-
"name": "page",
|
|
1440
|
-
"default": 1,
|
|
1611
|
+
"project": {
|
|
1612
|
+
"char": "p",
|
|
1613
|
+
"description": "Project id (UUID) or key",
|
|
1614
|
+
"name": "project",
|
|
1615
|
+
"required": true,
|
|
1441
1616
|
"hasDynamicHelp": false,
|
|
1442
1617
|
"multiple": false,
|
|
1443
1618
|
"type": "option"
|
|
@@ -1445,7 +1620,7 @@
|
|
|
1445
1620
|
},
|
|
1446
1621
|
"hasDynamicHelp": false,
|
|
1447
1622
|
"hiddenAliases": [],
|
|
1448
|
-
"id": "
|
|
1623
|
+
"id": "errors:resolve",
|
|
1449
1624
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1450
1625
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1451
1626
|
"pluginType": "core",
|
|
@@ -1455,17 +1630,22 @@
|
|
|
1455
1630
|
"relativePath": [
|
|
1456
1631
|
"dist",
|
|
1457
1632
|
"commands",
|
|
1458
|
-
"
|
|
1459
|
-
"
|
|
1633
|
+
"errors",
|
|
1634
|
+
"resolve.js"
|
|
1460
1635
|
]
|
|
1461
1636
|
},
|
|
1462
|
-
"
|
|
1637
|
+
"errors:show": {
|
|
1463
1638
|
"aliases": [],
|
|
1464
|
-
"args": {
|
|
1465
|
-
|
|
1639
|
+
"args": {
|
|
1640
|
+
"id": {
|
|
1641
|
+
"description": "Error group id",
|
|
1642
|
+
"name": "id",
|
|
1643
|
+
"required": true
|
|
1644
|
+
}
|
|
1645
|
+
},
|
|
1646
|
+
"description": "Show a single error group",
|
|
1466
1647
|
"examples": [
|
|
1467
|
-
"<%= config.bin %>
|
|
1468
|
-
"<%= config.bin %> members list --json"
|
|
1648
|
+
"<%= config.bin %> errors show <group-id> --project acme-api"
|
|
1469
1649
|
],
|
|
1470
1650
|
"flags": {
|
|
1471
1651
|
"json": {
|
|
@@ -1475,10 +1655,11 @@
|
|
|
1475
1655
|
"allowNo": false,
|
|
1476
1656
|
"type": "boolean"
|
|
1477
1657
|
},
|
|
1478
|
-
"
|
|
1479
|
-
"
|
|
1480
|
-
"
|
|
1481
|
-
"
|
|
1658
|
+
"project": {
|
|
1659
|
+
"char": "p",
|
|
1660
|
+
"description": "Project id (UUID) or key",
|
|
1661
|
+
"name": "project",
|
|
1662
|
+
"required": true,
|
|
1482
1663
|
"hasDynamicHelp": false,
|
|
1483
1664
|
"multiple": false,
|
|
1484
1665
|
"type": "option"
|
|
@@ -1486,7 +1667,7 @@
|
|
|
1486
1667
|
},
|
|
1487
1668
|
"hasDynamicHelp": false,
|
|
1488
1669
|
"hiddenAliases": [],
|
|
1489
|
-
"id": "
|
|
1670
|
+
"id": "errors:show",
|
|
1490
1671
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1491
1672
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1492
1673
|
"pluginType": "core",
|
|
@@ -1496,24 +1677,22 @@
|
|
|
1496
1677
|
"relativePath": [
|
|
1497
1678
|
"dist",
|
|
1498
1679
|
"commands",
|
|
1499
|
-
"
|
|
1500
|
-
"
|
|
1680
|
+
"errors",
|
|
1681
|
+
"show.js"
|
|
1501
1682
|
]
|
|
1502
1683
|
},
|
|
1503
|
-
"
|
|
1684
|
+
"errors:unmute": {
|
|
1504
1685
|
"aliases": [],
|
|
1505
1686
|
"args": {
|
|
1506
1687
|
"id": {
|
|
1507
|
-
"description": "
|
|
1688
|
+
"description": "Error group id",
|
|
1508
1689
|
"name": "id",
|
|
1509
1690
|
"required": true
|
|
1510
1691
|
}
|
|
1511
1692
|
},
|
|
1512
|
-
"description": "
|
|
1693
|
+
"description": "Unmute an error group",
|
|
1513
1694
|
"examples": [
|
|
1514
|
-
"<%= config.bin %>
|
|
1515
|
-
"<%= config.bin %> members set-access <membership-id> --group DriverOne",
|
|
1516
|
-
"<%= config.bin %> members set-access <membership-id>"
|
|
1695
|
+
"<%= config.bin %> errors unmute <group-id> --project acme-api"
|
|
1517
1696
|
],
|
|
1518
1697
|
"flags": {
|
|
1519
1698
|
"json": {
|
|
@@ -1523,26 +1702,19 @@
|
|
|
1523
1702
|
"allowNo": false,
|
|
1524
1703
|
"type": "boolean"
|
|
1525
1704
|
},
|
|
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
|
-
},
|
|
1534
1705
|
"project": {
|
|
1535
|
-
"
|
|
1706
|
+
"char": "p",
|
|
1707
|
+
"description": "Project id (UUID) or key",
|
|
1536
1708
|
"name": "project",
|
|
1537
|
-
"
|
|
1709
|
+
"required": true,
|
|
1538
1710
|
"hasDynamicHelp": false,
|
|
1539
|
-
"multiple":
|
|
1711
|
+
"multiple": false,
|
|
1540
1712
|
"type": "option"
|
|
1541
1713
|
}
|
|
1542
1714
|
},
|
|
1543
1715
|
"hasDynamicHelp": false,
|
|
1544
1716
|
"hiddenAliases": [],
|
|
1545
|
-
"id": "
|
|
1717
|
+
"id": "errors:unmute",
|
|
1546
1718
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1547
1719
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1548
1720
|
"pluginType": "core",
|
|
@@ -1552,23 +1724,23 @@
|
|
|
1552
1724
|
"relativePath": [
|
|
1553
1725
|
"dist",
|
|
1554
1726
|
"commands",
|
|
1555
|
-
"
|
|
1556
|
-
"
|
|
1727
|
+
"errors",
|
|
1728
|
+
"unmute.js"
|
|
1557
1729
|
]
|
|
1558
1730
|
},
|
|
1559
|
-
"
|
|
1731
|
+
"invitations:create": {
|
|
1560
1732
|
"aliases": [],
|
|
1561
1733
|
"args": {
|
|
1562
|
-
"
|
|
1563
|
-
"description": "
|
|
1564
|
-
"name": "
|
|
1734
|
+
"email": {
|
|
1735
|
+
"description": "Email address to invite",
|
|
1736
|
+
"name": "email",
|
|
1565
1737
|
"required": true
|
|
1566
1738
|
}
|
|
1567
1739
|
},
|
|
1568
|
-
"description": "
|
|
1740
|
+
"description": "Invite a person to the organization. Prints the acceptance link (shown only once).",
|
|
1569
1741
|
"examples": [
|
|
1570
|
-
"<%= config.bin %>
|
|
1571
|
-
"<%= config.bin %>
|
|
1742
|
+
"<%= config.bin %> invitations create client@acme.com",
|
|
1743
|
+
"<%= config.bin %> invitations create teammate@acme.com --role member"
|
|
1572
1744
|
],
|
|
1573
1745
|
"flags": {
|
|
1574
1746
|
"json": {
|
|
@@ -1579,23 +1751,22 @@
|
|
|
1579
1751
|
"type": "boolean"
|
|
1580
1752
|
},
|
|
1581
1753
|
"role": {
|
|
1582
|
-
"description": "
|
|
1754
|
+
"description": "Membership role",
|
|
1583
1755
|
"name": "role",
|
|
1584
|
-
"
|
|
1756
|
+
"default": "customer",
|
|
1585
1757
|
"hasDynamicHelp": false,
|
|
1586
1758
|
"multiple": false,
|
|
1587
1759
|
"options": [
|
|
1760
|
+
"customer",
|
|
1588
1761
|
"member",
|
|
1589
|
-
"admin"
|
|
1590
|
-
"owner",
|
|
1591
|
-
"customer"
|
|
1762
|
+
"admin"
|
|
1592
1763
|
],
|
|
1593
1764
|
"type": "option"
|
|
1594
1765
|
}
|
|
1595
1766
|
},
|
|
1596
1767
|
"hasDynamicHelp": false,
|
|
1597
1768
|
"hiddenAliases": [],
|
|
1598
|
-
"id": "
|
|
1769
|
+
"id": "invitations:create",
|
|
1599
1770
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1600
1771
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1601
1772
|
"pluginType": "core",
|
|
@@ -1605,17 +1776,17 @@
|
|
|
1605
1776
|
"relativePath": [
|
|
1606
1777
|
"dist",
|
|
1607
1778
|
"commands",
|
|
1608
|
-
"
|
|
1609
|
-
"
|
|
1779
|
+
"invitations",
|
|
1780
|
+
"create.js"
|
|
1610
1781
|
]
|
|
1611
1782
|
},
|
|
1612
|
-
"
|
|
1783
|
+
"invitations:list": {
|
|
1613
1784
|
"aliases": [],
|
|
1614
1785
|
"args": {},
|
|
1615
|
-
"description": "List
|
|
1786
|
+
"description": "List the pending/accepted invitations of your organization",
|
|
1616
1787
|
"examples": [
|
|
1617
|
-
"<%= config.bin %>
|
|
1618
|
-
"<%= config.bin %>
|
|
1788
|
+
"<%= config.bin %> invitations list",
|
|
1789
|
+
"<%= config.bin %> invitations list --json"
|
|
1619
1790
|
],
|
|
1620
1791
|
"flags": {
|
|
1621
1792
|
"json": {
|
|
@@ -1625,15 +1796,6 @@
|
|
|
1625
1796
|
"allowNo": false,
|
|
1626
1797
|
"type": "boolean"
|
|
1627
1798
|
},
|
|
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
|
-
},
|
|
1637
1799
|
"page": {
|
|
1638
1800
|
"description": "Page number",
|
|
1639
1801
|
"name": "page",
|
|
@@ -1641,18 +1803,11 @@
|
|
|
1641
1803
|
"hasDynamicHelp": false,
|
|
1642
1804
|
"multiple": false,
|
|
1643
1805
|
"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"
|
|
1651
1806
|
}
|
|
1652
1807
|
},
|
|
1653
1808
|
"hasDynamicHelp": false,
|
|
1654
1809
|
"hiddenAliases": [],
|
|
1655
|
-
"id": "
|
|
1810
|
+
"id": "invitations:list",
|
|
1656
1811
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1657
1812
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1658
1813
|
"pluginType": "core",
|
|
@@ -1662,22 +1817,22 @@
|
|
|
1662
1817
|
"relativePath": [
|
|
1663
1818
|
"dist",
|
|
1664
1819
|
"commands",
|
|
1665
|
-
"
|
|
1820
|
+
"invitations",
|
|
1666
1821
|
"list.js"
|
|
1667
1822
|
]
|
|
1668
1823
|
},
|
|
1669
|
-
"
|
|
1824
|
+
"invitations:resend": {
|
|
1670
1825
|
"aliases": [],
|
|
1671
1826
|
"args": {
|
|
1672
1827
|
"id": {
|
|
1673
|
-
"description": "
|
|
1828
|
+
"description": "Invitation id (UUID)",
|
|
1674
1829
|
"name": "id",
|
|
1675
1830
|
"required": true
|
|
1676
1831
|
}
|
|
1677
1832
|
},
|
|
1678
|
-
"description": "
|
|
1833
|
+
"description": "Resend a pending invitation. Prints the acceptance link (shown only once).",
|
|
1679
1834
|
"examples": [
|
|
1680
|
-
"<%= config.bin %>
|
|
1835
|
+
"<%= config.bin %> invitations resend <invitation-uuid>"
|
|
1681
1836
|
],
|
|
1682
1837
|
"flags": {
|
|
1683
1838
|
"json": {
|
|
@@ -1686,20 +1841,11 @@
|
|
|
1686
1841
|
"name": "json",
|
|
1687
1842
|
"allowNo": false,
|
|
1688
1843
|
"type": "boolean"
|
|
1689
|
-
},
|
|
1690
|
-
"project": {
|
|
1691
|
-
"char": "p",
|
|
1692
|
-
"description": "Project id (UUID) or key",
|
|
1693
|
-
"name": "project",
|
|
1694
|
-
"required": true,
|
|
1695
|
-
"hasDynamicHelp": false,
|
|
1696
|
-
"multiple": false,
|
|
1697
|
-
"type": "option"
|
|
1698
1844
|
}
|
|
1699
1845
|
},
|
|
1700
1846
|
"hasDynamicHelp": false,
|
|
1701
1847
|
"hiddenAliases": [],
|
|
1702
|
-
"id": "
|
|
1848
|
+
"id": "invitations:resend",
|
|
1703
1849
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1704
1850
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1705
1851
|
"pluginType": "core",
|
|
@@ -1709,22 +1855,22 @@
|
|
|
1709
1855
|
"relativePath": [
|
|
1710
1856
|
"dist",
|
|
1711
1857
|
"commands",
|
|
1712
|
-
"
|
|
1713
|
-
"
|
|
1858
|
+
"invitations",
|
|
1859
|
+
"resend.js"
|
|
1714
1860
|
]
|
|
1715
1861
|
},
|
|
1716
|
-
"
|
|
1862
|
+
"invitations:revoke": {
|
|
1717
1863
|
"aliases": [],
|
|
1718
1864
|
"args": {
|
|
1719
1865
|
"id": {
|
|
1720
|
-
"description": "
|
|
1866
|
+
"description": "Invitation id (UUID)",
|
|
1721
1867
|
"name": "id",
|
|
1722
1868
|
"required": true
|
|
1723
1869
|
}
|
|
1724
1870
|
},
|
|
1725
|
-
"description": "
|
|
1871
|
+
"description": "Revoke a pending invitation",
|
|
1726
1872
|
"examples": [
|
|
1727
|
-
"<%= config.bin %>
|
|
1873
|
+
"<%= config.bin %> invitations revoke <invitation-uuid>"
|
|
1728
1874
|
],
|
|
1729
1875
|
"flags": {
|
|
1730
1876
|
"json": {
|
|
@@ -1733,20 +1879,11 @@
|
|
|
1733
1879
|
"name": "json",
|
|
1734
1880
|
"allowNo": false,
|
|
1735
1881
|
"type": "boolean"
|
|
1736
|
-
},
|
|
1737
|
-
"project": {
|
|
1738
|
-
"char": "p",
|
|
1739
|
-
"description": "Project id (UUID) or key",
|
|
1740
|
-
"name": "project",
|
|
1741
|
-
"required": true,
|
|
1742
|
-
"hasDynamicHelp": false,
|
|
1743
|
-
"multiple": false,
|
|
1744
|
-
"type": "option"
|
|
1745
1882
|
}
|
|
1746
1883
|
},
|
|
1747
1884
|
"hasDynamicHelp": false,
|
|
1748
1885
|
"hiddenAliases": [],
|
|
1749
|
-
"id": "
|
|
1886
|
+
"id": "invitations:revoke",
|
|
1750
1887
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1751
1888
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1752
1889
|
"pluginType": "core",
|
|
@@ -1756,17 +1893,18 @@
|
|
|
1756
1893
|
"relativePath": [
|
|
1757
1894
|
"dist",
|
|
1758
1895
|
"commands",
|
|
1759
|
-
"
|
|
1760
|
-
"
|
|
1896
|
+
"invitations",
|
|
1897
|
+
"revoke.js"
|
|
1761
1898
|
]
|
|
1762
1899
|
},
|
|
1763
|
-
"
|
|
1900
|
+
"logs:list": {
|
|
1764
1901
|
"aliases": [],
|
|
1765
1902
|
"args": {},
|
|
1766
|
-
"description": "
|
|
1903
|
+
"description": "List structured log entries (cross-app stream)",
|
|
1767
1904
|
"examples": [
|
|
1768
|
-
"<%= config.bin %>
|
|
1769
|
-
"<%= config.bin %>
|
|
1905
|
+
"<%= config.bin %> logs list",
|
|
1906
|
+
"<%= config.bin %> logs list --project acme-api --level error",
|
|
1907
|
+
"<%= config.bin %> logs list --trace-id 7f3c… --json"
|
|
1770
1908
|
],
|
|
1771
1909
|
"flags": {
|
|
1772
1910
|
"json": {
|
|
@@ -1778,53 +1916,45 @@
|
|
|
1778
1916
|
},
|
|
1779
1917
|
"project": {
|
|
1780
1918
|
"char": "p",
|
|
1781
|
-
"description": "
|
|
1919
|
+
"description": "Filter by project id (UUID) or key",
|
|
1782
1920
|
"name": "project",
|
|
1783
|
-
"required": true,
|
|
1784
1921
|
"hasDynamicHelp": false,
|
|
1785
1922
|
"multiple": false,
|
|
1786
1923
|
"type": "option"
|
|
1787
1924
|
},
|
|
1788
|
-
"
|
|
1789
|
-
"description": "
|
|
1790
|
-
"name": "
|
|
1791
|
-
"required": true,
|
|
1925
|
+
"level": {
|
|
1926
|
+
"description": "Filter by level (debug, info, warning, error, fatal)",
|
|
1927
|
+
"name": "level",
|
|
1792
1928
|
"hasDynamicHelp": false,
|
|
1793
1929
|
"multiple": false,
|
|
1794
1930
|
"type": "option"
|
|
1795
1931
|
},
|
|
1796
|
-
"
|
|
1797
|
-
"description": "
|
|
1798
|
-
"name": "
|
|
1799
|
-
"required": true,
|
|
1932
|
+
"trace-id": {
|
|
1933
|
+
"description": "Filter by trace id (correlate one request)",
|
|
1934
|
+
"name": "trace-id",
|
|
1800
1935
|
"hasDynamicHelp": false,
|
|
1801
1936
|
"multiple": false,
|
|
1802
1937
|
"type": "option"
|
|
1803
1938
|
},
|
|
1804
|
-
"
|
|
1805
|
-
"description": "
|
|
1806
|
-
"name": "
|
|
1939
|
+
"environment": {
|
|
1940
|
+
"description": "Filter by environment (e.g. production)",
|
|
1941
|
+
"name": "environment",
|
|
1807
1942
|
"hasDynamicHelp": false,
|
|
1808
1943
|
"multiple": false,
|
|
1809
1944
|
"type": "option"
|
|
1810
1945
|
},
|
|
1811
|
-
"
|
|
1812
|
-
"description": "
|
|
1813
|
-
"name": "
|
|
1946
|
+
"page": {
|
|
1947
|
+
"description": "Page number",
|
|
1948
|
+
"name": "page",
|
|
1949
|
+
"default": 1,
|
|
1814
1950
|
"hasDynamicHelp": false,
|
|
1815
1951
|
"multiple": false,
|
|
1816
1952
|
"type": "option"
|
|
1817
|
-
},
|
|
1818
|
-
"active": {
|
|
1819
|
-
"description": "Whether the milestone is active",
|
|
1820
|
-
"name": "active",
|
|
1821
|
-
"allowNo": true,
|
|
1822
|
-
"type": "boolean"
|
|
1823
1953
|
}
|
|
1824
1954
|
},
|
|
1825
1955
|
"hasDynamicHelp": false,
|
|
1826
1956
|
"hiddenAliases": [],
|
|
1827
|
-
"id": "
|
|
1957
|
+
"id": "logs:list",
|
|
1828
1958
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1829
1959
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1830
1960
|
"pluginType": "core",
|
|
@@ -1834,22 +1964,17 @@
|
|
|
1834
1964
|
"relativePath": [
|
|
1835
1965
|
"dist",
|
|
1836
1966
|
"commands",
|
|
1837
|
-
"
|
|
1838
|
-
"
|
|
1967
|
+
"logs",
|
|
1968
|
+
"list.js"
|
|
1839
1969
|
]
|
|
1840
1970
|
},
|
|
1841
|
-
"
|
|
1971
|
+
"members:list": {
|
|
1842
1972
|
"aliases": [],
|
|
1843
|
-
"args": {
|
|
1844
|
-
|
|
1845
|
-
"description": "Milestone id",
|
|
1846
|
-
"name": "id",
|
|
1847
|
-
"required": true
|
|
1848
|
-
}
|
|
1849
|
-
},
|
|
1850
|
-
"description": "Delete a milestone (irreversible)",
|
|
1973
|
+
"args": {},
|
|
1974
|
+
"description": "List the members of your organization (to resolve emails to account ids)",
|
|
1851
1975
|
"examples": [
|
|
1852
|
-
"<%= config.bin %>
|
|
1976
|
+
"<%= config.bin %> members list",
|
|
1977
|
+
"<%= config.bin %> members list --json"
|
|
1853
1978
|
],
|
|
1854
1979
|
"flags": {
|
|
1855
1980
|
"json": {
|
|
@@ -1859,25 +1984,18 @@
|
|
|
1859
1984
|
"allowNo": false,
|
|
1860
1985
|
"type": "boolean"
|
|
1861
1986
|
},
|
|
1862
|
-
"
|
|
1863
|
-
"
|
|
1864
|
-
"
|
|
1865
|
-
"
|
|
1866
|
-
"required": true,
|
|
1987
|
+
"page": {
|
|
1988
|
+
"description": "Page number",
|
|
1989
|
+
"name": "page",
|
|
1990
|
+
"default": 1,
|
|
1867
1991
|
"hasDynamicHelp": false,
|
|
1868
1992
|
"multiple": false,
|
|
1869
1993
|
"type": "option"
|
|
1870
|
-
},
|
|
1871
|
-
"confirm": {
|
|
1872
|
-
"description": "Required: confirm the deletion",
|
|
1873
|
-
"name": "confirm",
|
|
1874
|
-
"allowNo": false,
|
|
1875
|
-
"type": "boolean"
|
|
1876
1994
|
}
|
|
1877
1995
|
},
|
|
1878
1996
|
"hasDynamicHelp": false,
|
|
1879
1997
|
"hiddenAliases": [],
|
|
1880
|
-
"id": "
|
|
1998
|
+
"id": "members:list",
|
|
1881
1999
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1882
2000
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1883
2001
|
"pluginType": "core",
|
|
@@ -1887,17 +2005,24 @@
|
|
|
1887
2005
|
"relativePath": [
|
|
1888
2006
|
"dist",
|
|
1889
2007
|
"commands",
|
|
1890
|
-
"
|
|
1891
|
-
"
|
|
2008
|
+
"members",
|
|
2009
|
+
"list.js"
|
|
1892
2010
|
]
|
|
1893
2011
|
},
|
|
1894
|
-
"
|
|
2012
|
+
"members:set-access": {
|
|
1895
2013
|
"aliases": [],
|
|
1896
|
-
"args": {
|
|
1897
|
-
|
|
2014
|
+
"args": {
|
|
2015
|
+
"id": {
|
|
2016
|
+
"description": "Membership id",
|
|
2017
|
+
"name": "id",
|
|
2018
|
+
"required": true
|
|
2019
|
+
}
|
|
2020
|
+
},
|
|
2021
|
+
"description": "Set a member's group and project access (replaces the current set; omit a flag to clear it)",
|
|
1898
2022
|
"examples": [
|
|
1899
|
-
"<%= config.bin %>
|
|
1900
|
-
"<%= config.bin %>
|
|
2023
|
+
"<%= config.bin %> members set-access <membership-id> --project acme-api --project acme-web",
|
|
2024
|
+
"<%= config.bin %> members set-access <membership-id> --group DriverOne",
|
|
2025
|
+
"<%= config.bin %> members set-access <membership-id>"
|
|
1901
2026
|
],
|
|
1902
2027
|
"flags": {
|
|
1903
2028
|
"json": {
|
|
@@ -1907,27 +2032,26 @@
|
|
|
1907
2032
|
"allowNo": false,
|
|
1908
2033
|
"type": "boolean"
|
|
1909
2034
|
},
|
|
1910
|
-
"
|
|
1911
|
-
"
|
|
1912
|
-
"
|
|
1913
|
-
"
|
|
1914
|
-
"required": true,
|
|
2035
|
+
"group": {
|
|
2036
|
+
"description": "Group id or name to grant access to (repeatable; omit to clear group access)",
|
|
2037
|
+
"name": "group",
|
|
2038
|
+
"default": [],
|
|
1915
2039
|
"hasDynamicHelp": false,
|
|
1916
|
-
"multiple":
|
|
2040
|
+
"multiple": true,
|
|
1917
2041
|
"type": "option"
|
|
1918
2042
|
},
|
|
1919
|
-
"
|
|
1920
|
-
"description": "
|
|
1921
|
-
"name": "
|
|
1922
|
-
"default":
|
|
2043
|
+
"project": {
|
|
2044
|
+
"description": "Project id or key to grant access to (repeatable; omit to clear project access)",
|
|
2045
|
+
"name": "project",
|
|
2046
|
+
"default": [],
|
|
1923
2047
|
"hasDynamicHelp": false,
|
|
1924
|
-
"multiple":
|
|
2048
|
+
"multiple": true,
|
|
1925
2049
|
"type": "option"
|
|
1926
2050
|
}
|
|
1927
2051
|
},
|
|
1928
2052
|
"hasDynamicHelp": false,
|
|
1929
2053
|
"hiddenAliases": [],
|
|
1930
|
-
"id": "
|
|
2054
|
+
"id": "members:set-access",
|
|
1931
2055
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1932
2056
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1933
2057
|
"pluginType": "core",
|
|
@@ -1937,22 +2061,23 @@
|
|
|
1937
2061
|
"relativePath": [
|
|
1938
2062
|
"dist",
|
|
1939
2063
|
"commands",
|
|
1940
|
-
"
|
|
1941
|
-
"
|
|
2064
|
+
"members",
|
|
2065
|
+
"set-access.js"
|
|
1942
2066
|
]
|
|
1943
2067
|
},
|
|
1944
|
-
"
|
|
2068
|
+
"members:set-role": {
|
|
1945
2069
|
"aliases": [],
|
|
1946
2070
|
"args": {
|
|
1947
2071
|
"id": {
|
|
1948
|
-
"description": "
|
|
2072
|
+
"description": "Membership id",
|
|
1949
2073
|
"name": "id",
|
|
1950
2074
|
"required": true
|
|
1951
2075
|
}
|
|
1952
2076
|
},
|
|
1953
|
-
"description": "
|
|
2077
|
+
"description": "Change a member's organization role",
|
|
1954
2078
|
"examples": [
|
|
1955
|
-
"<%= config.bin %>
|
|
2079
|
+
"<%= config.bin %> members set-role <membership-id> --role admin",
|
|
2080
|
+
"<%= config.bin %> members set-role <membership-id> --role customer"
|
|
1956
2081
|
],
|
|
1957
2082
|
"flags": {
|
|
1958
2083
|
"json": {
|
|
@@ -1962,19 +2087,24 @@
|
|
|
1962
2087
|
"allowNo": false,
|
|
1963
2088
|
"type": "boolean"
|
|
1964
2089
|
},
|
|
1965
|
-
"
|
|
1966
|
-
"
|
|
1967
|
-
"
|
|
1968
|
-
"name": "project",
|
|
2090
|
+
"role": {
|
|
2091
|
+
"description": "Organization role",
|
|
2092
|
+
"name": "role",
|
|
1969
2093
|
"required": true,
|
|
1970
2094
|
"hasDynamicHelp": false,
|
|
1971
2095
|
"multiple": false,
|
|
2096
|
+
"options": [
|
|
2097
|
+
"member",
|
|
2098
|
+
"admin",
|
|
2099
|
+
"owner",
|
|
2100
|
+
"customer"
|
|
2101
|
+
],
|
|
1972
2102
|
"type": "option"
|
|
1973
2103
|
}
|
|
1974
2104
|
},
|
|
1975
2105
|
"hasDynamicHelp": false,
|
|
1976
2106
|
"hiddenAliases": [],
|
|
1977
|
-
"id": "
|
|
2107
|
+
"id": "members:set-role",
|
|
1978
2108
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1979
2109
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1980
2110
|
"pluginType": "core",
|
|
@@ -1984,23 +2114,17 @@
|
|
|
1984
2114
|
"relativePath": [
|
|
1985
2115
|
"dist",
|
|
1986
2116
|
"commands",
|
|
1987
|
-
"
|
|
1988
|
-
"
|
|
2117
|
+
"members",
|
|
2118
|
+
"set-role.js"
|
|
1989
2119
|
]
|
|
1990
2120
|
},
|
|
1991
|
-
"
|
|
2121
|
+
"metrics:list": {
|
|
1992
2122
|
"aliases": [],
|
|
1993
|
-
"args": {
|
|
1994
|
-
|
|
1995
|
-
"description": "Milestone id",
|
|
1996
|
-
"name": "id",
|
|
1997
|
-
"required": true
|
|
1998
|
-
}
|
|
1999
|
-
},
|
|
2000
|
-
"description": "Update a milestone (send only the fields you want to change)",
|
|
2123
|
+
"args": {},
|
|
2124
|
+
"description": "List performance metric groups (slow queries/methods) for a project",
|
|
2001
2125
|
"examples": [
|
|
2002
|
-
"<%= config.bin %>
|
|
2003
|
-
"<%= config.bin %>
|
|
2126
|
+
"<%= config.bin %> metrics list --project acme-api",
|
|
2127
|
+
"<%= config.bin %> metrics list -p acme-api --kind sql --json"
|
|
2004
2128
|
],
|
|
2005
2129
|
"flags": {
|
|
2006
2130
|
"json": {
|
|
@@ -2019,44 +2143,25 @@
|
|
|
2019
2143
|
"multiple": false,
|
|
2020
2144
|
"type": "option"
|
|
2021
2145
|
},
|
|
2022
|
-
"
|
|
2023
|
-
"description": "
|
|
2024
|
-
"name": "
|
|
2025
|
-
"
|
|
2026
|
-
"multiple": false,
|
|
2027
|
-
"type": "option"
|
|
2028
|
-
},
|
|
2029
|
-
"label": {
|
|
2030
|
-
"description": "Human-readable label",
|
|
2031
|
-
"name": "label",
|
|
2032
|
-
"hasDynamicHelp": false,
|
|
2033
|
-
"multiple": false,
|
|
2034
|
-
"type": "option"
|
|
2035
|
-
},
|
|
2036
|
-
"color": {
|
|
2037
|
-
"description": "Color label",
|
|
2038
|
-
"name": "color",
|
|
2146
|
+
"page": {
|
|
2147
|
+
"description": "Page number",
|
|
2148
|
+
"name": "page",
|
|
2149
|
+
"default": 1,
|
|
2039
2150
|
"hasDynamicHelp": false,
|
|
2040
2151
|
"multiple": false,
|
|
2041
2152
|
"type": "option"
|
|
2042
2153
|
},
|
|
2043
|
-
"
|
|
2044
|
-
"description": "
|
|
2045
|
-
"name": "
|
|
2154
|
+
"kind": {
|
|
2155
|
+
"description": "Filter by metric kind (e.g. sql, method)",
|
|
2156
|
+
"name": "kind",
|
|
2046
2157
|
"hasDynamicHelp": false,
|
|
2047
2158
|
"multiple": false,
|
|
2048
2159
|
"type": "option"
|
|
2049
|
-
},
|
|
2050
|
-
"active": {
|
|
2051
|
-
"description": "Whether the milestone is active",
|
|
2052
|
-
"name": "active",
|
|
2053
|
-
"allowNo": true,
|
|
2054
|
-
"type": "boolean"
|
|
2055
2160
|
}
|
|
2056
2161
|
},
|
|
2057
2162
|
"hasDynamicHelp": false,
|
|
2058
2163
|
"hiddenAliases": [],
|
|
2059
|
-
"id": "
|
|
2164
|
+
"id": "metrics:list",
|
|
2060
2165
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2061
2166
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2062
2167
|
"pluginType": "core",
|
|
@@ -2066,17 +2171,22 @@
|
|
|
2066
2171
|
"relativePath": [
|
|
2067
2172
|
"dist",
|
|
2068
2173
|
"commands",
|
|
2069
|
-
"
|
|
2070
|
-
"
|
|
2174
|
+
"metrics",
|
|
2175
|
+
"list.js"
|
|
2071
2176
|
]
|
|
2072
2177
|
},
|
|
2073
|
-
"
|
|
2178
|
+
"metrics:promote": {
|
|
2074
2179
|
"aliases": [],
|
|
2075
|
-
"args": {
|
|
2076
|
-
|
|
2180
|
+
"args": {
|
|
2181
|
+
"id": {
|
|
2182
|
+
"description": "Metric group id",
|
|
2183
|
+
"name": "id",
|
|
2184
|
+
"required": true
|
|
2185
|
+
}
|
|
2186
|
+
},
|
|
2187
|
+
"description": "Promote a metric group (slow query/method) to a ticket",
|
|
2077
2188
|
"examples": [
|
|
2078
|
-
"<%= config.bin %>
|
|
2079
|
-
"<%= config.bin %> monitors create -p acme-api --url https://acme.example.com/up --environment <env-id> --interval-seconds 60 --expected-status 200"
|
|
2189
|
+
"<%= config.bin %> metrics promote <group-id> --project acme-api"
|
|
2080
2190
|
],
|
|
2081
2191
|
"flags": {
|
|
2082
2192
|
"json": {
|
|
@@ -2094,68 +2204,11 @@
|
|
|
2094
2204
|
"hasDynamicHelp": false,
|
|
2095
2205
|
"multiple": false,
|
|
2096
2206
|
"type": "option"
|
|
2097
|
-
},
|
|
2098
|
-
"url": {
|
|
2099
|
-
"description": "URL to probe",
|
|
2100
|
-
"name": "url",
|
|
2101
|
-
"required": true,
|
|
2102
|
-
"hasDynamicHelp": false,
|
|
2103
|
-
"multiple": false,
|
|
2104
|
-
"type": "option"
|
|
2105
|
-
},
|
|
2106
|
-
"environment": {
|
|
2107
|
-
"description": "Environment id (must be declared by the project)",
|
|
2108
|
-
"name": "environment",
|
|
2109
|
-
"hasDynamicHelp": false,
|
|
2110
|
-
"multiple": false,
|
|
2111
|
-
"type": "option"
|
|
2112
|
-
},
|
|
2113
|
-
"http-method": {
|
|
2114
|
-
"description": "HTTP method (default GET)",
|
|
2115
|
-
"name": "http-method",
|
|
2116
|
-
"hasDynamicHelp": false,
|
|
2117
|
-
"multiple": false,
|
|
2118
|
-
"type": "option"
|
|
2119
|
-
},
|
|
2120
|
-
"interval-seconds": {
|
|
2121
|
-
"description": "Seconds between checks",
|
|
2122
|
-
"name": "interval-seconds",
|
|
2123
|
-
"hasDynamicHelp": false,
|
|
2124
|
-
"multiple": false,
|
|
2125
|
-
"type": "option"
|
|
2126
|
-
},
|
|
2127
|
-
"expected-status": {
|
|
2128
|
-
"description": "Expected HTTP status code",
|
|
2129
|
-
"name": "expected-status",
|
|
2130
|
-
"hasDynamicHelp": false,
|
|
2131
|
-
"multiple": false,
|
|
2132
|
-
"type": "option"
|
|
2133
|
-
},
|
|
2134
|
-
"timeout-seconds": {
|
|
2135
|
-
"description": "Request timeout in seconds",
|
|
2136
|
-
"name": "timeout-seconds",
|
|
2137
|
-
"hasDynamicHelp": false,
|
|
2138
|
-
"multiple": false,
|
|
2139
|
-
"type": "option"
|
|
2140
|
-
},
|
|
2141
|
-
"expected-body-keyword": {
|
|
2142
|
-
"description": "Keyword expected in the response body (check fails without it; not with HEAD)",
|
|
2143
|
-
"name": "expected-body-keyword",
|
|
2144
|
-
"hasDynamicHelp": false,
|
|
2145
|
-
"multiple": false,
|
|
2146
|
-
"type": "option"
|
|
2147
|
-
},
|
|
2148
|
-
"ssl-expiry-warn-days": {
|
|
2149
|
-
"description": "Alert when the TLS certificate has at most N days left (empty = off)",
|
|
2150
|
-
"name": "ssl-expiry-warn-days",
|
|
2151
|
-
"hasDynamicHelp": false,
|
|
2152
|
-
"multiple": false,
|
|
2153
|
-
"type": "option"
|
|
2154
2207
|
}
|
|
2155
2208
|
},
|
|
2156
2209
|
"hasDynamicHelp": false,
|
|
2157
2210
|
"hiddenAliases": [],
|
|
2158
|
-
"id": "
|
|
2211
|
+
"id": "metrics:promote",
|
|
2159
2212
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2160
2213
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2161
2214
|
"pluginType": "core",
|
|
@@ -2165,22 +2218,22 @@
|
|
|
2165
2218
|
"relativePath": [
|
|
2166
2219
|
"dist",
|
|
2167
2220
|
"commands",
|
|
2168
|
-
"
|
|
2169
|
-
"
|
|
2221
|
+
"metrics",
|
|
2222
|
+
"promote.js"
|
|
2170
2223
|
]
|
|
2171
2224
|
},
|
|
2172
|
-
"
|
|
2225
|
+
"metrics:show": {
|
|
2173
2226
|
"aliases": [],
|
|
2174
2227
|
"args": {
|
|
2175
2228
|
"id": {
|
|
2176
|
-
"description": "
|
|
2229
|
+
"description": "Metric group id",
|
|
2177
2230
|
"name": "id",
|
|
2178
2231
|
"required": true
|
|
2179
2232
|
}
|
|
2180
2233
|
},
|
|
2181
|
-
"description": "
|
|
2234
|
+
"description": "Show a single metric group",
|
|
2182
2235
|
"examples": [
|
|
2183
|
-
"<%= config.bin %>
|
|
2236
|
+
"<%= config.bin %> metrics show <group-id> --project acme-api"
|
|
2184
2237
|
],
|
|
2185
2238
|
"flags": {
|
|
2186
2239
|
"json": {
|
|
@@ -2198,17 +2251,11 @@
|
|
|
2198
2251
|
"hasDynamicHelp": false,
|
|
2199
2252
|
"multiple": false,
|
|
2200
2253
|
"type": "option"
|
|
2201
|
-
},
|
|
2202
|
-
"confirm": {
|
|
2203
|
-
"description": "Required: confirm the deletion",
|
|
2204
|
-
"name": "confirm",
|
|
2205
|
-
"allowNo": false,
|
|
2206
|
-
"type": "boolean"
|
|
2207
2254
|
}
|
|
2208
2255
|
},
|
|
2209
2256
|
"hasDynamicHelp": false,
|
|
2210
2257
|
"hiddenAliases": [],
|
|
2211
|
-
"id": "
|
|
2258
|
+
"id": "metrics:show",
|
|
2212
2259
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2213
2260
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2214
2261
|
"pluginType": "core",
|
|
@@ -2218,17 +2265,17 @@
|
|
|
2218
2265
|
"relativePath": [
|
|
2219
2266
|
"dist",
|
|
2220
2267
|
"commands",
|
|
2221
|
-
"
|
|
2222
|
-
"
|
|
2268
|
+
"metrics",
|
|
2269
|
+
"show.js"
|
|
2223
2270
|
]
|
|
2224
2271
|
},
|
|
2225
|
-
"
|
|
2272
|
+
"milestones:create": {
|
|
2226
2273
|
"aliases": [],
|
|
2227
2274
|
"args": {},
|
|
2228
|
-
"description": "
|
|
2275
|
+
"description": "Create a milestone for a project",
|
|
2229
2276
|
"examples": [
|
|
2230
|
-
"<%= config.bin %>
|
|
2231
|
-
"<%= config.bin %>
|
|
2277
|
+
"<%= config.bin %> milestones create --project acme-api --code v1 --label \"Version 1.0\"",
|
|
2278
|
+
"<%= config.bin %> milestones create -p acme-api --code v1 --label \"Version 1.0\" --due-on 2026-12-31"
|
|
2232
2279
|
],
|
|
2233
2280
|
"flags": {
|
|
2234
2281
|
"json": {
|
|
@@ -2247,18 +2294,46 @@
|
|
|
2247
2294
|
"multiple": false,
|
|
2248
2295
|
"type": "option"
|
|
2249
2296
|
},
|
|
2250
|
-
"
|
|
2251
|
-
"description": "
|
|
2252
|
-
"name": "
|
|
2253
|
-
"
|
|
2297
|
+
"code": {
|
|
2298
|
+
"description": "Milestone code (short identifier)",
|
|
2299
|
+
"name": "code",
|
|
2300
|
+
"required": true,
|
|
2301
|
+
"hasDynamicHelp": false,
|
|
2302
|
+
"multiple": false,
|
|
2303
|
+
"type": "option"
|
|
2304
|
+
},
|
|
2305
|
+
"label": {
|
|
2306
|
+
"description": "Human-readable label",
|
|
2307
|
+
"name": "label",
|
|
2308
|
+
"required": true,
|
|
2309
|
+
"hasDynamicHelp": false,
|
|
2310
|
+
"multiple": false,
|
|
2311
|
+
"type": "option"
|
|
2312
|
+
},
|
|
2313
|
+
"color": {
|
|
2314
|
+
"description": "Color label",
|
|
2315
|
+
"name": "color",
|
|
2316
|
+
"hasDynamicHelp": false,
|
|
2317
|
+
"multiple": false,
|
|
2318
|
+
"type": "option"
|
|
2319
|
+
},
|
|
2320
|
+
"due-on": {
|
|
2321
|
+
"description": "Due date (YYYY-MM-DD)",
|
|
2322
|
+
"name": "due-on",
|
|
2254
2323
|
"hasDynamicHelp": false,
|
|
2255
2324
|
"multiple": false,
|
|
2256
2325
|
"type": "option"
|
|
2326
|
+
},
|
|
2327
|
+
"active": {
|
|
2328
|
+
"description": "Whether the milestone is active",
|
|
2329
|
+
"name": "active",
|
|
2330
|
+
"allowNo": true,
|
|
2331
|
+
"type": "boolean"
|
|
2257
2332
|
}
|
|
2258
2333
|
},
|
|
2259
2334
|
"hasDynamicHelp": false,
|
|
2260
2335
|
"hiddenAliases": [],
|
|
2261
|
-
"id": "
|
|
2336
|
+
"id": "milestones:create",
|
|
2262
2337
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2263
2338
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2264
2339
|
"pluginType": "core",
|
|
@@ -2268,22 +2343,22 @@
|
|
|
2268
2343
|
"relativePath": [
|
|
2269
2344
|
"dist",
|
|
2270
2345
|
"commands",
|
|
2271
|
-
"
|
|
2272
|
-
"
|
|
2346
|
+
"milestones",
|
|
2347
|
+
"create.js"
|
|
2273
2348
|
]
|
|
2274
2349
|
},
|
|
2275
|
-
"
|
|
2350
|
+
"milestones:delete": {
|
|
2276
2351
|
"aliases": [],
|
|
2277
2352
|
"args": {
|
|
2278
2353
|
"id": {
|
|
2279
|
-
"description": "
|
|
2354
|
+
"description": "Milestone id",
|
|
2280
2355
|
"name": "id",
|
|
2281
2356
|
"required": true
|
|
2282
2357
|
}
|
|
2283
2358
|
},
|
|
2284
|
-
"description": "
|
|
2359
|
+
"description": "Delete a milestone (irreversible)",
|
|
2285
2360
|
"examples": [
|
|
2286
|
-
"<%= config.bin %>
|
|
2361
|
+
"<%= config.bin %> milestones delete <milestone-id> --project acme-api --confirm"
|
|
2287
2362
|
],
|
|
2288
2363
|
"flags": {
|
|
2289
2364
|
"json": {
|
|
@@ -2301,11 +2376,17 @@
|
|
|
2301
2376
|
"hasDynamicHelp": false,
|
|
2302
2377
|
"multiple": false,
|
|
2303
2378
|
"type": "option"
|
|
2379
|
+
},
|
|
2380
|
+
"confirm": {
|
|
2381
|
+
"description": "Required: confirm the deletion",
|
|
2382
|
+
"name": "confirm",
|
|
2383
|
+
"allowNo": false,
|
|
2384
|
+
"type": "boolean"
|
|
2304
2385
|
}
|
|
2305
2386
|
},
|
|
2306
2387
|
"hasDynamicHelp": false,
|
|
2307
2388
|
"hiddenAliases": [],
|
|
2308
|
-
"id": "
|
|
2389
|
+
"id": "milestones:delete",
|
|
2309
2390
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2310
2391
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2311
2392
|
"pluginType": "core",
|
|
@@ -2315,22 +2396,17 @@
|
|
|
2315
2396
|
"relativePath": [
|
|
2316
2397
|
"dist",
|
|
2317
2398
|
"commands",
|
|
2318
|
-
"
|
|
2319
|
-
"
|
|
2399
|
+
"milestones",
|
|
2400
|
+
"delete.js"
|
|
2320
2401
|
]
|
|
2321
2402
|
},
|
|
2322
|
-
"
|
|
2403
|
+
"milestones:list": {
|
|
2323
2404
|
"aliases": [],
|
|
2324
|
-
"args": {
|
|
2325
|
-
|
|
2326
|
-
"description": "Monitor id",
|
|
2327
|
-
"name": "id",
|
|
2328
|
-
"required": true
|
|
2329
|
-
}
|
|
2330
|
-
},
|
|
2331
|
-
"description": "Resume a paused uptime monitor (re-enables scheduling)",
|
|
2405
|
+
"args": {},
|
|
2406
|
+
"description": "List the milestones for a project",
|
|
2332
2407
|
"examples": [
|
|
2333
|
-
"<%= config.bin %>
|
|
2408
|
+
"<%= config.bin %> milestones list --project acme-api",
|
|
2409
|
+
"<%= config.bin %> milestones list -p acme-api --json"
|
|
2334
2410
|
],
|
|
2335
2411
|
"flags": {
|
|
2336
2412
|
"json": {
|
|
@@ -2348,11 +2424,19 @@
|
|
|
2348
2424
|
"hasDynamicHelp": false,
|
|
2349
2425
|
"multiple": false,
|
|
2350
2426
|
"type": "option"
|
|
2427
|
+
},
|
|
2428
|
+
"page": {
|
|
2429
|
+
"description": "Page number",
|
|
2430
|
+
"name": "page",
|
|
2431
|
+
"default": 1,
|
|
2432
|
+
"hasDynamicHelp": false,
|
|
2433
|
+
"multiple": false,
|
|
2434
|
+
"type": "option"
|
|
2351
2435
|
}
|
|
2352
2436
|
},
|
|
2353
2437
|
"hasDynamicHelp": false,
|
|
2354
2438
|
"hiddenAliases": [],
|
|
2355
|
-
"id": "
|
|
2439
|
+
"id": "milestones:list",
|
|
2356
2440
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2357
2441
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2358
2442
|
"pluginType": "core",
|
|
@@ -2362,22 +2446,22 @@
|
|
|
2362
2446
|
"relativePath": [
|
|
2363
2447
|
"dist",
|
|
2364
2448
|
"commands",
|
|
2365
|
-
"
|
|
2366
|
-
"
|
|
2449
|
+
"milestones",
|
|
2450
|
+
"list.js"
|
|
2367
2451
|
]
|
|
2368
2452
|
},
|
|
2369
|
-
"
|
|
2453
|
+
"milestones:show": {
|
|
2370
2454
|
"aliases": [],
|
|
2371
2455
|
"args": {
|
|
2372
2456
|
"id": {
|
|
2373
|
-
"description": "
|
|
2457
|
+
"description": "Milestone id",
|
|
2374
2458
|
"name": "id",
|
|
2375
2459
|
"required": true
|
|
2376
2460
|
}
|
|
2377
2461
|
},
|
|
2378
|
-
"description": "Show a single
|
|
2462
|
+
"description": "Show a single milestone",
|
|
2379
2463
|
"examples": [
|
|
2380
|
-
"<%= config.bin %>
|
|
2464
|
+
"<%= config.bin %> milestones show <milestone-id> --project acme-api"
|
|
2381
2465
|
],
|
|
2382
2466
|
"flags": {
|
|
2383
2467
|
"json": {
|
|
@@ -2399,7 +2483,7 @@
|
|
|
2399
2483
|
},
|
|
2400
2484
|
"hasDynamicHelp": false,
|
|
2401
2485
|
"hiddenAliases": [],
|
|
2402
|
-
"id": "
|
|
2486
|
+
"id": "milestones:show",
|
|
2403
2487
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2404
2488
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2405
2489
|
"pluginType": "core",
|
|
@@ -2409,23 +2493,23 @@
|
|
|
2409
2493
|
"relativePath": [
|
|
2410
2494
|
"dist",
|
|
2411
2495
|
"commands",
|
|
2412
|
-
"
|
|
2496
|
+
"milestones",
|
|
2413
2497
|
"show.js"
|
|
2414
2498
|
]
|
|
2415
2499
|
},
|
|
2416
|
-
"
|
|
2500
|
+
"milestones:update": {
|
|
2417
2501
|
"aliases": [],
|
|
2418
2502
|
"args": {
|
|
2419
2503
|
"id": {
|
|
2420
|
-
"description": "
|
|
2504
|
+
"description": "Milestone id",
|
|
2421
2505
|
"name": "id",
|
|
2422
2506
|
"required": true
|
|
2423
2507
|
}
|
|
2424
2508
|
},
|
|
2425
|
-
"description": "Update
|
|
2509
|
+
"description": "Update a milestone (send only the fields you want to change)",
|
|
2426
2510
|
"examples": [
|
|
2427
|
-
"<%= config.bin %>
|
|
2428
|
-
"<%= config.bin %>
|
|
2511
|
+
"<%= config.bin %> milestones update <milestone-id> --project acme-api --label \"Version 1.1\"",
|
|
2512
|
+
"<%= config.bin %> milestones update <milestone-id> -p acme-api --due-on 2027-01-15 --no-active"
|
|
2429
2513
|
],
|
|
2430
2514
|
"flags": {
|
|
2431
2515
|
"json": {
|
|
@@ -2444,47 +2528,472 @@
|
|
|
2444
2528
|
"multiple": false,
|
|
2445
2529
|
"type": "option"
|
|
2446
2530
|
},
|
|
2447
|
-
"
|
|
2448
|
-
"description": "
|
|
2449
|
-
"name": "
|
|
2450
|
-
"hasDynamicHelp": false,
|
|
2451
|
-
"multiple": false,
|
|
2452
|
-
"type": "option"
|
|
2453
|
-
},
|
|
2454
|
-
"http-method": {
|
|
2455
|
-
"description": "HTTP method",
|
|
2456
|
-
"name": "http-method",
|
|
2531
|
+
"code": {
|
|
2532
|
+
"description": "Milestone code (short identifier)",
|
|
2533
|
+
"name": "code",
|
|
2457
2534
|
"hasDynamicHelp": false,
|
|
2458
2535
|
"multiple": false,
|
|
2459
2536
|
"type": "option"
|
|
2460
2537
|
},
|
|
2461
|
-
"
|
|
2462
|
-
"description": "
|
|
2463
|
-
"name": "
|
|
2538
|
+
"label": {
|
|
2539
|
+
"description": "Human-readable label",
|
|
2540
|
+
"name": "label",
|
|
2464
2541
|
"hasDynamicHelp": false,
|
|
2465
2542
|
"multiple": false,
|
|
2466
2543
|
"type": "option"
|
|
2467
2544
|
},
|
|
2468
|
-
"
|
|
2469
|
-
"description": "
|
|
2470
|
-
"name": "
|
|
2545
|
+
"color": {
|
|
2546
|
+
"description": "Color label",
|
|
2547
|
+
"name": "color",
|
|
2471
2548
|
"hasDynamicHelp": false,
|
|
2472
2549
|
"multiple": false,
|
|
2473
2550
|
"type": "option"
|
|
2474
2551
|
},
|
|
2475
|
-
"
|
|
2476
|
-
"description": "
|
|
2477
|
-
"name": "
|
|
2552
|
+
"due-on": {
|
|
2553
|
+
"description": "Due date (YYYY-MM-DD)",
|
|
2554
|
+
"name": "due-on",
|
|
2478
2555
|
"hasDynamicHelp": false,
|
|
2479
2556
|
"multiple": false,
|
|
2480
2557
|
"type": "option"
|
|
2481
2558
|
},
|
|
2482
|
-
"
|
|
2483
|
-
"description": "
|
|
2484
|
-
"name": "
|
|
2485
|
-
"
|
|
2486
|
-
"
|
|
2487
|
-
|
|
2559
|
+
"active": {
|
|
2560
|
+
"description": "Whether the milestone is active",
|
|
2561
|
+
"name": "active",
|
|
2562
|
+
"allowNo": true,
|
|
2563
|
+
"type": "boolean"
|
|
2564
|
+
}
|
|
2565
|
+
},
|
|
2566
|
+
"hasDynamicHelp": false,
|
|
2567
|
+
"hiddenAliases": [],
|
|
2568
|
+
"id": "milestones:update",
|
|
2569
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2570
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2571
|
+
"pluginType": "core",
|
|
2572
|
+
"strict": true,
|
|
2573
|
+
"enableJsonFlag": true,
|
|
2574
|
+
"isESM": false,
|
|
2575
|
+
"relativePath": [
|
|
2576
|
+
"dist",
|
|
2577
|
+
"commands",
|
|
2578
|
+
"milestones",
|
|
2579
|
+
"update.js"
|
|
2580
|
+
]
|
|
2581
|
+
},
|
|
2582
|
+
"monitors:create": {
|
|
2583
|
+
"aliases": [],
|
|
2584
|
+
"args": {},
|
|
2585
|
+
"description": "Create an uptime monitor for a project (one per environment)",
|
|
2586
|
+
"examples": [
|
|
2587
|
+
"<%= config.bin %> monitors create --project acme-api --url https://acme.example.com/up",
|
|
2588
|
+
"<%= config.bin %> monitors create -p acme-api --url https://acme.example.com/up --environment <env-id> --interval-seconds 60 --expected-status 200"
|
|
2589
|
+
],
|
|
2590
|
+
"flags": {
|
|
2591
|
+
"json": {
|
|
2592
|
+
"description": "Format output as json.",
|
|
2593
|
+
"helpGroup": "GLOBAL",
|
|
2594
|
+
"name": "json",
|
|
2595
|
+
"allowNo": false,
|
|
2596
|
+
"type": "boolean"
|
|
2597
|
+
},
|
|
2598
|
+
"project": {
|
|
2599
|
+
"char": "p",
|
|
2600
|
+
"description": "Project id (UUID) or key",
|
|
2601
|
+
"name": "project",
|
|
2602
|
+
"required": true,
|
|
2603
|
+
"hasDynamicHelp": false,
|
|
2604
|
+
"multiple": false,
|
|
2605
|
+
"type": "option"
|
|
2606
|
+
},
|
|
2607
|
+
"url": {
|
|
2608
|
+
"description": "URL to probe",
|
|
2609
|
+
"name": "url",
|
|
2610
|
+
"required": true,
|
|
2611
|
+
"hasDynamicHelp": false,
|
|
2612
|
+
"multiple": false,
|
|
2613
|
+
"type": "option"
|
|
2614
|
+
},
|
|
2615
|
+
"environment": {
|
|
2616
|
+
"description": "Environment id (must be declared by the project)",
|
|
2617
|
+
"name": "environment",
|
|
2618
|
+
"hasDynamicHelp": false,
|
|
2619
|
+
"multiple": false,
|
|
2620
|
+
"type": "option"
|
|
2621
|
+
},
|
|
2622
|
+
"http-method": {
|
|
2623
|
+
"description": "HTTP method (default GET)",
|
|
2624
|
+
"name": "http-method",
|
|
2625
|
+
"hasDynamicHelp": false,
|
|
2626
|
+
"multiple": false,
|
|
2627
|
+
"type": "option"
|
|
2628
|
+
},
|
|
2629
|
+
"interval-seconds": {
|
|
2630
|
+
"description": "Seconds between checks",
|
|
2631
|
+
"name": "interval-seconds",
|
|
2632
|
+
"hasDynamicHelp": false,
|
|
2633
|
+
"multiple": false,
|
|
2634
|
+
"type": "option"
|
|
2635
|
+
},
|
|
2636
|
+
"expected-status": {
|
|
2637
|
+
"description": "Expected HTTP status code",
|
|
2638
|
+
"name": "expected-status",
|
|
2639
|
+
"hasDynamicHelp": false,
|
|
2640
|
+
"multiple": false,
|
|
2641
|
+
"type": "option"
|
|
2642
|
+
},
|
|
2643
|
+
"timeout-seconds": {
|
|
2644
|
+
"description": "Request timeout in seconds",
|
|
2645
|
+
"name": "timeout-seconds",
|
|
2646
|
+
"hasDynamicHelp": false,
|
|
2647
|
+
"multiple": false,
|
|
2648
|
+
"type": "option"
|
|
2649
|
+
},
|
|
2650
|
+
"expected-body-keyword": {
|
|
2651
|
+
"description": "Keyword expected in the response body (check fails without it; not with HEAD)",
|
|
2652
|
+
"name": "expected-body-keyword",
|
|
2653
|
+
"hasDynamicHelp": false,
|
|
2654
|
+
"multiple": false,
|
|
2655
|
+
"type": "option"
|
|
2656
|
+
},
|
|
2657
|
+
"ssl-expiry-warn-days": {
|
|
2658
|
+
"description": "Alert when the TLS certificate has at most N days left (empty = off)",
|
|
2659
|
+
"name": "ssl-expiry-warn-days",
|
|
2660
|
+
"hasDynamicHelp": false,
|
|
2661
|
+
"multiple": false,
|
|
2662
|
+
"type": "option"
|
|
2663
|
+
}
|
|
2664
|
+
},
|
|
2665
|
+
"hasDynamicHelp": false,
|
|
2666
|
+
"hiddenAliases": [],
|
|
2667
|
+
"id": "monitors:create",
|
|
2668
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2669
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2670
|
+
"pluginType": "core",
|
|
2671
|
+
"strict": true,
|
|
2672
|
+
"enableJsonFlag": true,
|
|
2673
|
+
"isESM": false,
|
|
2674
|
+
"relativePath": [
|
|
2675
|
+
"dist",
|
|
2676
|
+
"commands",
|
|
2677
|
+
"monitors",
|
|
2678
|
+
"create.js"
|
|
2679
|
+
]
|
|
2680
|
+
},
|
|
2681
|
+
"monitors:delete": {
|
|
2682
|
+
"aliases": [],
|
|
2683
|
+
"args": {
|
|
2684
|
+
"id": {
|
|
2685
|
+
"description": "Monitor id",
|
|
2686
|
+
"name": "id",
|
|
2687
|
+
"required": true
|
|
2688
|
+
}
|
|
2689
|
+
},
|
|
2690
|
+
"description": "Delete an uptime monitor (irreversible)",
|
|
2691
|
+
"examples": [
|
|
2692
|
+
"<%= config.bin %> monitors delete <monitor-id> --project acme-api --confirm"
|
|
2693
|
+
],
|
|
2694
|
+
"flags": {
|
|
2695
|
+
"json": {
|
|
2696
|
+
"description": "Format output as json.",
|
|
2697
|
+
"helpGroup": "GLOBAL",
|
|
2698
|
+
"name": "json",
|
|
2699
|
+
"allowNo": false,
|
|
2700
|
+
"type": "boolean"
|
|
2701
|
+
},
|
|
2702
|
+
"project": {
|
|
2703
|
+
"char": "p",
|
|
2704
|
+
"description": "Project id (UUID) or key",
|
|
2705
|
+
"name": "project",
|
|
2706
|
+
"required": true,
|
|
2707
|
+
"hasDynamicHelp": false,
|
|
2708
|
+
"multiple": false,
|
|
2709
|
+
"type": "option"
|
|
2710
|
+
},
|
|
2711
|
+
"confirm": {
|
|
2712
|
+
"description": "Required: confirm the deletion",
|
|
2713
|
+
"name": "confirm",
|
|
2714
|
+
"allowNo": false,
|
|
2715
|
+
"type": "boolean"
|
|
2716
|
+
}
|
|
2717
|
+
},
|
|
2718
|
+
"hasDynamicHelp": false,
|
|
2719
|
+
"hiddenAliases": [],
|
|
2720
|
+
"id": "monitors:delete",
|
|
2721
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2722
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2723
|
+
"pluginType": "core",
|
|
2724
|
+
"strict": true,
|
|
2725
|
+
"enableJsonFlag": true,
|
|
2726
|
+
"isESM": false,
|
|
2727
|
+
"relativePath": [
|
|
2728
|
+
"dist",
|
|
2729
|
+
"commands",
|
|
2730
|
+
"monitors",
|
|
2731
|
+
"delete.js"
|
|
2732
|
+
]
|
|
2733
|
+
},
|
|
2734
|
+
"monitors:list": {
|
|
2735
|
+
"aliases": [],
|
|
2736
|
+
"args": {},
|
|
2737
|
+
"description": "List the uptime monitors for a project",
|
|
2738
|
+
"examples": [
|
|
2739
|
+
"<%= config.bin %> monitors list --project acme-api",
|
|
2740
|
+
"<%= config.bin %> monitors list -p acme-api --json"
|
|
2741
|
+
],
|
|
2742
|
+
"flags": {
|
|
2743
|
+
"json": {
|
|
2744
|
+
"description": "Format output as json.",
|
|
2745
|
+
"helpGroup": "GLOBAL",
|
|
2746
|
+
"name": "json",
|
|
2747
|
+
"allowNo": false,
|
|
2748
|
+
"type": "boolean"
|
|
2749
|
+
},
|
|
2750
|
+
"project": {
|
|
2751
|
+
"char": "p",
|
|
2752
|
+
"description": "Project id (UUID) or key",
|
|
2753
|
+
"name": "project",
|
|
2754
|
+
"required": true,
|
|
2755
|
+
"hasDynamicHelp": false,
|
|
2756
|
+
"multiple": false,
|
|
2757
|
+
"type": "option"
|
|
2758
|
+
},
|
|
2759
|
+
"page": {
|
|
2760
|
+
"description": "Page number",
|
|
2761
|
+
"name": "page",
|
|
2762
|
+
"default": 1,
|
|
2763
|
+
"hasDynamicHelp": false,
|
|
2764
|
+
"multiple": false,
|
|
2765
|
+
"type": "option"
|
|
2766
|
+
}
|
|
2767
|
+
},
|
|
2768
|
+
"hasDynamicHelp": false,
|
|
2769
|
+
"hiddenAliases": [],
|
|
2770
|
+
"id": "monitors:list",
|
|
2771
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2772
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2773
|
+
"pluginType": "core",
|
|
2774
|
+
"strict": true,
|
|
2775
|
+
"enableJsonFlag": true,
|
|
2776
|
+
"isESM": false,
|
|
2777
|
+
"relativePath": [
|
|
2778
|
+
"dist",
|
|
2779
|
+
"commands",
|
|
2780
|
+
"monitors",
|
|
2781
|
+
"list.js"
|
|
2782
|
+
]
|
|
2783
|
+
},
|
|
2784
|
+
"monitors:pause": {
|
|
2785
|
+
"aliases": [],
|
|
2786
|
+
"args": {
|
|
2787
|
+
"id": {
|
|
2788
|
+
"description": "Monitor id",
|
|
2789
|
+
"name": "id",
|
|
2790
|
+
"required": true
|
|
2791
|
+
}
|
|
2792
|
+
},
|
|
2793
|
+
"description": "Pause an uptime monitor (stops scheduling checks)",
|
|
2794
|
+
"examples": [
|
|
2795
|
+
"<%= config.bin %> monitors pause <monitor-id> --project acme-api"
|
|
2796
|
+
],
|
|
2797
|
+
"flags": {
|
|
2798
|
+
"json": {
|
|
2799
|
+
"description": "Format output as json.",
|
|
2800
|
+
"helpGroup": "GLOBAL",
|
|
2801
|
+
"name": "json",
|
|
2802
|
+
"allowNo": false,
|
|
2803
|
+
"type": "boolean"
|
|
2804
|
+
},
|
|
2805
|
+
"project": {
|
|
2806
|
+
"char": "p",
|
|
2807
|
+
"description": "Project id (UUID) or key",
|
|
2808
|
+
"name": "project",
|
|
2809
|
+
"required": true,
|
|
2810
|
+
"hasDynamicHelp": false,
|
|
2811
|
+
"multiple": false,
|
|
2812
|
+
"type": "option"
|
|
2813
|
+
}
|
|
2814
|
+
},
|
|
2815
|
+
"hasDynamicHelp": false,
|
|
2816
|
+
"hiddenAliases": [],
|
|
2817
|
+
"id": "monitors:pause",
|
|
2818
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2819
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2820
|
+
"pluginType": "core",
|
|
2821
|
+
"strict": true,
|
|
2822
|
+
"enableJsonFlag": true,
|
|
2823
|
+
"isESM": false,
|
|
2824
|
+
"relativePath": [
|
|
2825
|
+
"dist",
|
|
2826
|
+
"commands",
|
|
2827
|
+
"monitors",
|
|
2828
|
+
"pause.js"
|
|
2829
|
+
]
|
|
2830
|
+
},
|
|
2831
|
+
"monitors:resume": {
|
|
2832
|
+
"aliases": [],
|
|
2833
|
+
"args": {
|
|
2834
|
+
"id": {
|
|
2835
|
+
"description": "Monitor id",
|
|
2836
|
+
"name": "id",
|
|
2837
|
+
"required": true
|
|
2838
|
+
}
|
|
2839
|
+
},
|
|
2840
|
+
"description": "Resume a paused uptime monitor (re-enables scheduling)",
|
|
2841
|
+
"examples": [
|
|
2842
|
+
"<%= config.bin %> monitors resume <monitor-id> --project acme-api"
|
|
2843
|
+
],
|
|
2844
|
+
"flags": {
|
|
2845
|
+
"json": {
|
|
2846
|
+
"description": "Format output as json.",
|
|
2847
|
+
"helpGroup": "GLOBAL",
|
|
2848
|
+
"name": "json",
|
|
2849
|
+
"allowNo": false,
|
|
2850
|
+
"type": "boolean"
|
|
2851
|
+
},
|
|
2852
|
+
"project": {
|
|
2853
|
+
"char": "p",
|
|
2854
|
+
"description": "Project id (UUID) or key",
|
|
2855
|
+
"name": "project",
|
|
2856
|
+
"required": true,
|
|
2857
|
+
"hasDynamicHelp": false,
|
|
2858
|
+
"multiple": false,
|
|
2859
|
+
"type": "option"
|
|
2860
|
+
}
|
|
2861
|
+
},
|
|
2862
|
+
"hasDynamicHelp": false,
|
|
2863
|
+
"hiddenAliases": [],
|
|
2864
|
+
"id": "monitors:resume",
|
|
2865
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2866
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2867
|
+
"pluginType": "core",
|
|
2868
|
+
"strict": true,
|
|
2869
|
+
"enableJsonFlag": true,
|
|
2870
|
+
"isESM": false,
|
|
2871
|
+
"relativePath": [
|
|
2872
|
+
"dist",
|
|
2873
|
+
"commands",
|
|
2874
|
+
"monitors",
|
|
2875
|
+
"resume.js"
|
|
2876
|
+
]
|
|
2877
|
+
},
|
|
2878
|
+
"monitors:show": {
|
|
2879
|
+
"aliases": [],
|
|
2880
|
+
"args": {
|
|
2881
|
+
"id": {
|
|
2882
|
+
"description": "Monitor id",
|
|
2883
|
+
"name": "id",
|
|
2884
|
+
"required": true
|
|
2885
|
+
}
|
|
2886
|
+
},
|
|
2887
|
+
"description": "Show a single uptime monitor",
|
|
2888
|
+
"examples": [
|
|
2889
|
+
"<%= config.bin %> monitors show <monitor-id> --project acme-api"
|
|
2890
|
+
],
|
|
2891
|
+
"flags": {
|
|
2892
|
+
"json": {
|
|
2893
|
+
"description": "Format output as json.",
|
|
2894
|
+
"helpGroup": "GLOBAL",
|
|
2895
|
+
"name": "json",
|
|
2896
|
+
"allowNo": false,
|
|
2897
|
+
"type": "boolean"
|
|
2898
|
+
},
|
|
2899
|
+
"project": {
|
|
2900
|
+
"char": "p",
|
|
2901
|
+
"description": "Project id (UUID) or key",
|
|
2902
|
+
"name": "project",
|
|
2903
|
+
"required": true,
|
|
2904
|
+
"hasDynamicHelp": false,
|
|
2905
|
+
"multiple": false,
|
|
2906
|
+
"type": "option"
|
|
2907
|
+
}
|
|
2908
|
+
},
|
|
2909
|
+
"hasDynamicHelp": false,
|
|
2910
|
+
"hiddenAliases": [],
|
|
2911
|
+
"id": "monitors:show",
|
|
2912
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2913
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2914
|
+
"pluginType": "core",
|
|
2915
|
+
"strict": true,
|
|
2916
|
+
"enableJsonFlag": true,
|
|
2917
|
+
"isESM": false,
|
|
2918
|
+
"relativePath": [
|
|
2919
|
+
"dist",
|
|
2920
|
+
"commands",
|
|
2921
|
+
"monitors",
|
|
2922
|
+
"show.js"
|
|
2923
|
+
]
|
|
2924
|
+
},
|
|
2925
|
+
"monitors:update": {
|
|
2926
|
+
"aliases": [],
|
|
2927
|
+
"args": {
|
|
2928
|
+
"id": {
|
|
2929
|
+
"description": "Monitor id",
|
|
2930
|
+
"name": "id",
|
|
2931
|
+
"required": true
|
|
2932
|
+
}
|
|
2933
|
+
},
|
|
2934
|
+
"description": "Update an uptime monitor (URL, method, interval, expected status, timeout)",
|
|
2935
|
+
"examples": [
|
|
2936
|
+
"<%= config.bin %> monitors update <monitor-id> --project acme-api --interval-seconds 120",
|
|
2937
|
+
"<%= config.bin %> monitors update <monitor-id> -p acme-api --url https://acme.example.com/health --expected-status 204"
|
|
2938
|
+
],
|
|
2939
|
+
"flags": {
|
|
2940
|
+
"json": {
|
|
2941
|
+
"description": "Format output as json.",
|
|
2942
|
+
"helpGroup": "GLOBAL",
|
|
2943
|
+
"name": "json",
|
|
2944
|
+
"allowNo": false,
|
|
2945
|
+
"type": "boolean"
|
|
2946
|
+
},
|
|
2947
|
+
"project": {
|
|
2948
|
+
"char": "p",
|
|
2949
|
+
"description": "Project id (UUID) or key",
|
|
2950
|
+
"name": "project",
|
|
2951
|
+
"required": true,
|
|
2952
|
+
"hasDynamicHelp": false,
|
|
2953
|
+
"multiple": false,
|
|
2954
|
+
"type": "option"
|
|
2955
|
+
},
|
|
2956
|
+
"url": {
|
|
2957
|
+
"description": "URL to probe",
|
|
2958
|
+
"name": "url",
|
|
2959
|
+
"hasDynamicHelp": false,
|
|
2960
|
+
"multiple": false,
|
|
2961
|
+
"type": "option"
|
|
2962
|
+
},
|
|
2963
|
+
"http-method": {
|
|
2964
|
+
"description": "HTTP method",
|
|
2965
|
+
"name": "http-method",
|
|
2966
|
+
"hasDynamicHelp": false,
|
|
2967
|
+
"multiple": false,
|
|
2968
|
+
"type": "option"
|
|
2969
|
+
},
|
|
2970
|
+
"interval-seconds": {
|
|
2971
|
+
"description": "Seconds between checks",
|
|
2972
|
+
"name": "interval-seconds",
|
|
2973
|
+
"hasDynamicHelp": false,
|
|
2974
|
+
"multiple": false,
|
|
2975
|
+
"type": "option"
|
|
2976
|
+
},
|
|
2977
|
+
"expected-status": {
|
|
2978
|
+
"description": "Expected HTTP status code",
|
|
2979
|
+
"name": "expected-status",
|
|
2980
|
+
"hasDynamicHelp": false,
|
|
2981
|
+
"multiple": false,
|
|
2982
|
+
"type": "option"
|
|
2983
|
+
},
|
|
2984
|
+
"timeout-seconds": {
|
|
2985
|
+
"description": "Request timeout in seconds",
|
|
2986
|
+
"name": "timeout-seconds",
|
|
2987
|
+
"hasDynamicHelp": false,
|
|
2988
|
+
"multiple": false,
|
|
2989
|
+
"type": "option"
|
|
2990
|
+
},
|
|
2991
|
+
"expected-body-keyword": {
|
|
2992
|
+
"description": "Keyword expected in the response body (check fails without it; not with HEAD)",
|
|
2993
|
+
"name": "expected-body-keyword",
|
|
2994
|
+
"hasDynamicHelp": false,
|
|
2995
|
+
"multiple": false,
|
|
2996
|
+
"type": "option"
|
|
2488
2997
|
},
|
|
2489
2998
|
"ssl-expiry-warn-days": {
|
|
2490
2999
|
"description": "Alert when the TLS certificate has at most N days left (empty = off)",
|
|
@@ -2602,6 +3111,233 @@
|
|
|
2602
3111
|
"update.js"
|
|
2603
3112
|
]
|
|
2604
3113
|
},
|
|
3114
|
+
"platforms:create": {
|
|
3115
|
+
"aliases": [],
|
|
3116
|
+
"args": {
|
|
3117
|
+
"code": {
|
|
3118
|
+
"description": "Platform code (e.g. \"ios\", \"android\", \"web\")",
|
|
3119
|
+
"name": "code",
|
|
3120
|
+
"required": true
|
|
3121
|
+
}
|
|
3122
|
+
},
|
|
3123
|
+
"description": "Create a platform (a device/system your projects run on)",
|
|
3124
|
+
"examples": [
|
|
3125
|
+
"<%= config.bin %> platforms create ios --label iOS",
|
|
3126
|
+
"<%= config.bin %> platforms create android --label Android --color emerald --position 2"
|
|
3127
|
+
],
|
|
3128
|
+
"flags": {
|
|
3129
|
+
"json": {
|
|
3130
|
+
"description": "Format output as json.",
|
|
3131
|
+
"helpGroup": "GLOBAL",
|
|
3132
|
+
"name": "json",
|
|
3133
|
+
"allowNo": false,
|
|
3134
|
+
"type": "boolean"
|
|
3135
|
+
},
|
|
3136
|
+
"label": {
|
|
3137
|
+
"description": "Human-readable label",
|
|
3138
|
+
"name": "label",
|
|
3139
|
+
"required": true,
|
|
3140
|
+
"hasDynamicHelp": false,
|
|
3141
|
+
"multiple": false,
|
|
3142
|
+
"type": "option"
|
|
3143
|
+
},
|
|
3144
|
+
"color": {
|
|
3145
|
+
"description": "Color label",
|
|
3146
|
+
"name": "color",
|
|
3147
|
+
"default": "sky",
|
|
3148
|
+
"hasDynamicHelp": false,
|
|
3149
|
+
"multiple": false,
|
|
3150
|
+
"type": "option"
|
|
3151
|
+
},
|
|
3152
|
+
"position": {
|
|
3153
|
+
"description": "Sort position",
|
|
3154
|
+
"name": "position",
|
|
3155
|
+
"hasDynamicHelp": false,
|
|
3156
|
+
"multiple": false,
|
|
3157
|
+
"type": "option"
|
|
3158
|
+
},
|
|
3159
|
+
"active": {
|
|
3160
|
+
"description": "Whether the platform is active",
|
|
3161
|
+
"name": "active",
|
|
3162
|
+
"allowNo": true,
|
|
3163
|
+
"type": "boolean"
|
|
3164
|
+
}
|
|
3165
|
+
},
|
|
3166
|
+
"hasDynamicHelp": false,
|
|
3167
|
+
"hiddenAliases": [],
|
|
3168
|
+
"id": "platforms:create",
|
|
3169
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3170
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3171
|
+
"pluginType": "core",
|
|
3172
|
+
"strict": true,
|
|
3173
|
+
"enableJsonFlag": true,
|
|
3174
|
+
"isESM": false,
|
|
3175
|
+
"relativePath": [
|
|
3176
|
+
"dist",
|
|
3177
|
+
"commands",
|
|
3178
|
+
"platforms",
|
|
3179
|
+
"create.js"
|
|
3180
|
+
]
|
|
3181
|
+
},
|
|
3182
|
+
"platforms:delete": {
|
|
3183
|
+
"aliases": [],
|
|
3184
|
+
"args": {
|
|
3185
|
+
"platform": {
|
|
3186
|
+
"description": "Platform id (UUID) or code",
|
|
3187
|
+
"name": "platform",
|
|
3188
|
+
"required": true
|
|
3189
|
+
}
|
|
3190
|
+
},
|
|
3191
|
+
"description": "Delete a platform (blocked if any project or ticket still references it)",
|
|
3192
|
+
"examples": [
|
|
3193
|
+
"<%= config.bin %> platforms delete legacy --confirm"
|
|
3194
|
+
],
|
|
3195
|
+
"flags": {
|
|
3196
|
+
"json": {
|
|
3197
|
+
"description": "Format output as json.",
|
|
3198
|
+
"helpGroup": "GLOBAL",
|
|
3199
|
+
"name": "json",
|
|
3200
|
+
"allowNo": false,
|
|
3201
|
+
"type": "boolean"
|
|
3202
|
+
},
|
|
3203
|
+
"confirm": {
|
|
3204
|
+
"description": "Required: confirm the deletion",
|
|
3205
|
+
"name": "confirm",
|
|
3206
|
+
"allowNo": false,
|
|
3207
|
+
"type": "boolean"
|
|
3208
|
+
}
|
|
3209
|
+
},
|
|
3210
|
+
"hasDynamicHelp": false,
|
|
3211
|
+
"hiddenAliases": [],
|
|
3212
|
+
"id": "platforms:delete",
|
|
3213
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3214
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3215
|
+
"pluginType": "core",
|
|
3216
|
+
"strict": true,
|
|
3217
|
+
"enableJsonFlag": true,
|
|
3218
|
+
"isESM": false,
|
|
3219
|
+
"relativePath": [
|
|
3220
|
+
"dist",
|
|
3221
|
+
"commands",
|
|
3222
|
+
"platforms",
|
|
3223
|
+
"delete.js"
|
|
3224
|
+
]
|
|
3225
|
+
},
|
|
3226
|
+
"platforms:list": {
|
|
3227
|
+
"aliases": [],
|
|
3228
|
+
"args": {},
|
|
3229
|
+
"description": "List the platforms (devices/systems) in your organization",
|
|
3230
|
+
"examples": [
|
|
3231
|
+
"<%= config.bin %> platforms list",
|
|
3232
|
+
"<%= config.bin %> platforms list --page 2 --json"
|
|
3233
|
+
],
|
|
3234
|
+
"flags": {
|
|
3235
|
+
"json": {
|
|
3236
|
+
"description": "Format output as json.",
|
|
3237
|
+
"helpGroup": "GLOBAL",
|
|
3238
|
+
"name": "json",
|
|
3239
|
+
"allowNo": false,
|
|
3240
|
+
"type": "boolean"
|
|
3241
|
+
},
|
|
3242
|
+
"page": {
|
|
3243
|
+
"description": "Page number",
|
|
3244
|
+
"name": "page",
|
|
3245
|
+
"default": 1,
|
|
3246
|
+
"hasDynamicHelp": false,
|
|
3247
|
+
"multiple": false,
|
|
3248
|
+
"type": "option"
|
|
3249
|
+
}
|
|
3250
|
+
},
|
|
3251
|
+
"hasDynamicHelp": false,
|
|
3252
|
+
"hiddenAliases": [],
|
|
3253
|
+
"id": "platforms:list",
|
|
3254
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3255
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3256
|
+
"pluginType": "core",
|
|
3257
|
+
"strict": true,
|
|
3258
|
+
"enableJsonFlag": true,
|
|
3259
|
+
"isESM": false,
|
|
3260
|
+
"relativePath": [
|
|
3261
|
+
"dist",
|
|
3262
|
+
"commands",
|
|
3263
|
+
"platforms",
|
|
3264
|
+
"list.js"
|
|
3265
|
+
]
|
|
3266
|
+
},
|
|
3267
|
+
"platforms:update": {
|
|
3268
|
+
"aliases": [],
|
|
3269
|
+
"args": {
|
|
3270
|
+
"platform": {
|
|
3271
|
+
"description": "Platform id (UUID) or code",
|
|
3272
|
+
"name": "platform",
|
|
3273
|
+
"required": true
|
|
3274
|
+
}
|
|
3275
|
+
},
|
|
3276
|
+
"description": "Update a platform (relabel, recolor, reorder, activate/deactivate)",
|
|
3277
|
+
"examples": [
|
|
3278
|
+
"<%= config.bin %> platforms update ios --label \"iOS / iPadOS\"",
|
|
3279
|
+
"<%= config.bin %> platforms update web --color indigo --position 1",
|
|
3280
|
+
"<%= config.bin %> platforms update legacy --no-active"
|
|
3281
|
+
],
|
|
3282
|
+
"flags": {
|
|
3283
|
+
"json": {
|
|
3284
|
+
"description": "Format output as json.",
|
|
3285
|
+
"helpGroup": "GLOBAL",
|
|
3286
|
+
"name": "json",
|
|
3287
|
+
"allowNo": false,
|
|
3288
|
+
"type": "boolean"
|
|
3289
|
+
},
|
|
3290
|
+
"code": {
|
|
3291
|
+
"description": "New code",
|
|
3292
|
+
"name": "code",
|
|
3293
|
+
"hasDynamicHelp": false,
|
|
3294
|
+
"multiple": false,
|
|
3295
|
+
"type": "option"
|
|
3296
|
+
},
|
|
3297
|
+
"label": {
|
|
3298
|
+
"description": "New label",
|
|
3299
|
+
"name": "label",
|
|
3300
|
+
"hasDynamicHelp": false,
|
|
3301
|
+
"multiple": false,
|
|
3302
|
+
"type": "option"
|
|
3303
|
+
},
|
|
3304
|
+
"color": {
|
|
3305
|
+
"description": "Color label",
|
|
3306
|
+
"name": "color",
|
|
3307
|
+
"hasDynamicHelp": false,
|
|
3308
|
+
"multiple": false,
|
|
3309
|
+
"type": "option"
|
|
3310
|
+
},
|
|
3311
|
+
"position": {
|
|
3312
|
+
"description": "Sort position",
|
|
3313
|
+
"name": "position",
|
|
3314
|
+
"hasDynamicHelp": false,
|
|
3315
|
+
"multiple": false,
|
|
3316
|
+
"type": "option"
|
|
3317
|
+
},
|
|
3318
|
+
"active": {
|
|
3319
|
+
"description": "Whether the platform is active",
|
|
3320
|
+
"name": "active",
|
|
3321
|
+
"allowNo": true,
|
|
3322
|
+
"type": "boolean"
|
|
3323
|
+
}
|
|
3324
|
+
},
|
|
3325
|
+
"hasDynamicHelp": false,
|
|
3326
|
+
"hiddenAliases": [],
|
|
3327
|
+
"id": "platforms:update",
|
|
3328
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3329
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3330
|
+
"pluginType": "core",
|
|
3331
|
+
"strict": true,
|
|
3332
|
+
"enableJsonFlag": true,
|
|
3333
|
+
"isESM": false,
|
|
3334
|
+
"relativePath": [
|
|
3335
|
+
"dist",
|
|
3336
|
+
"commands",
|
|
3337
|
+
"platforms",
|
|
3338
|
+
"update.js"
|
|
3339
|
+
]
|
|
3340
|
+
},
|
|
2605
3341
|
"projects:create": {
|
|
2606
3342
|
"aliases": [],
|
|
2607
3343
|
"args": {
|
|
@@ -2993,233 +3729,6 @@
|
|
|
2993
3729
|
"update.js"
|
|
2994
3730
|
]
|
|
2995
3731
|
},
|
|
2996
|
-
"platforms:create": {
|
|
2997
|
-
"aliases": [],
|
|
2998
|
-
"args": {
|
|
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",
|
|
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"
|
|
3192
|
-
},
|
|
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,
|
|
3204
|
-
"type": "boolean"
|
|
3205
|
-
}
|
|
3206
|
-
},
|
|
3207
|
-
"hasDynamicHelp": false,
|
|
3208
|
-
"hiddenAliases": [],
|
|
3209
|
-
"id": "platforms:update",
|
|
3210
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3211
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3212
|
-
"pluginType": "core",
|
|
3213
|
-
"strict": true,
|
|
3214
|
-
"enableJsonFlag": true,
|
|
3215
|
-
"isESM": false,
|
|
3216
|
-
"relativePath": [
|
|
3217
|
-
"dist",
|
|
3218
|
-
"commands",
|
|
3219
|
-
"platforms",
|
|
3220
|
-
"update.js"
|
|
3221
|
-
]
|
|
3222
|
-
},
|
|
3223
3732
|
"roles:create": {
|
|
3224
3733
|
"aliases": [],
|
|
3225
3734
|
"args": {
|
|
@@ -3449,18 +3958,23 @@
|
|
|
3449
3958
|
"update.js"
|
|
3450
3959
|
]
|
|
3451
3960
|
},
|
|
3452
|
-
"
|
|
3961
|
+
"teams:add-member": {
|
|
3453
3962
|
"aliases": [],
|
|
3454
3963
|
"args": {
|
|
3455
|
-
"
|
|
3456
|
-
"description": "
|
|
3457
|
-
"name": "
|
|
3964
|
+
"team": {
|
|
3965
|
+
"description": "Team id (UUID) or name",
|
|
3966
|
+
"name": "team",
|
|
3967
|
+
"required": true
|
|
3968
|
+
},
|
|
3969
|
+
"member": {
|
|
3970
|
+
"description": "Member account id or email (must be an org member)",
|
|
3971
|
+
"name": "member",
|
|
3458
3972
|
"required": true
|
|
3459
3973
|
}
|
|
3460
3974
|
},
|
|
3461
|
-
"description": "
|
|
3975
|
+
"description": "Add a person to a team, keeping the existing members",
|
|
3462
3976
|
"examples": [
|
|
3463
|
-
"<%= config.bin %>
|
|
3977
|
+
"<%= config.bin %> teams add-member DriverOne client@acme.com"
|
|
3464
3978
|
],
|
|
3465
3979
|
"flags": {
|
|
3466
3980
|
"json": {
|
|
@@ -3469,17 +3983,11 @@
|
|
|
3469
3983
|
"name": "json",
|
|
3470
3984
|
"allowNo": false,
|
|
3471
3985
|
"type": "boolean"
|
|
3472
|
-
},
|
|
3473
|
-
"confirm": {
|
|
3474
|
-
"description": "Required: confirm the deletion",
|
|
3475
|
-
"name": "confirm",
|
|
3476
|
-
"allowNo": false,
|
|
3477
|
-
"type": "boolean"
|
|
3478
3986
|
}
|
|
3479
3987
|
},
|
|
3480
3988
|
"hasDynamicHelp": false,
|
|
3481
3989
|
"hiddenAliases": [],
|
|
3482
|
-
"id": "
|
|
3990
|
+
"id": "teams:add-member",
|
|
3483
3991
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3484
3992
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3485
3993
|
"pluginType": "core",
|
|
@@ -3488,18 +3996,24 @@
|
|
|
3488
3996
|
"isESM": false,
|
|
3489
3997
|
"relativePath": [
|
|
3490
3998
|
"dist",
|
|
3491
|
-
"commands",
|
|
3492
|
-
"
|
|
3493
|
-
"
|
|
3999
|
+
"commands",
|
|
4000
|
+
"teams",
|
|
4001
|
+
"add-member.js"
|
|
3494
4002
|
]
|
|
3495
4003
|
},
|
|
3496
|
-
"
|
|
4004
|
+
"teams:create": {
|
|
3497
4005
|
"aliases": [],
|
|
3498
|
-
"args": {
|
|
3499
|
-
|
|
4006
|
+
"args": {
|
|
4007
|
+
"name": {
|
|
4008
|
+
"description": "Team name",
|
|
4009
|
+
"name": "name",
|
|
4010
|
+
"required": true
|
|
4011
|
+
}
|
|
4012
|
+
},
|
|
4013
|
+
"description": "Create a team and (optionally) set its roles, group/project scope and members",
|
|
3500
4014
|
"examples": [
|
|
3501
|
-
"<%= config.bin %>
|
|
3502
|
-
"<%= config.bin %>
|
|
4015
|
+
"<%= config.bin %> teams create DriverOne --role Client --group DriverOne",
|
|
4016
|
+
"<%= config.bin %> teams create DriverOne --role Client --group DriverOne --member client@acme.com"
|
|
3503
4017
|
],
|
|
3504
4018
|
"flags": {
|
|
3505
4019
|
"json": {
|
|
@@ -3509,31 +4023,45 @@
|
|
|
3509
4023
|
"allowNo": false,
|
|
3510
4024
|
"type": "boolean"
|
|
3511
4025
|
},
|
|
3512
|
-
"
|
|
3513
|
-
"description": "
|
|
3514
|
-
"name": "
|
|
3515
|
-
"default": 1,
|
|
4026
|
+
"color": {
|
|
4027
|
+
"description": "Color label",
|
|
4028
|
+
"name": "color",
|
|
3516
4029
|
"hasDynamicHelp": false,
|
|
3517
4030
|
"multiple": false,
|
|
3518
4031
|
"type": "option"
|
|
3519
4032
|
},
|
|
3520
|
-
"
|
|
3521
|
-
"description": "
|
|
3522
|
-
"name": "
|
|
4033
|
+
"group": {
|
|
4034
|
+
"description": "Group id or name to scope the team to (repeatable)",
|
|
4035
|
+
"name": "group",
|
|
4036
|
+
"hasDynamicHelp": false,
|
|
4037
|
+
"multiple": true,
|
|
4038
|
+
"type": "option"
|
|
4039
|
+
},
|
|
4040
|
+
"member": {
|
|
4041
|
+
"description": "Member account id or email (repeatable; must be an org member)",
|
|
4042
|
+
"name": "member",
|
|
4043
|
+
"hasDynamicHelp": false,
|
|
4044
|
+
"multiple": true,
|
|
4045
|
+
"type": "option"
|
|
4046
|
+
},
|
|
4047
|
+
"project": {
|
|
4048
|
+
"description": "Project id or key to scope the team to (repeatable)",
|
|
4049
|
+
"name": "project",
|
|
4050
|
+
"hasDynamicHelp": false,
|
|
4051
|
+
"multiple": true,
|
|
4052
|
+
"type": "option"
|
|
4053
|
+
},
|
|
4054
|
+
"role": {
|
|
4055
|
+
"description": "Role id or name to grant to the team (repeatable)",
|
|
4056
|
+
"name": "role",
|
|
3523
4057
|
"hasDynamicHelp": false,
|
|
3524
4058
|
"multiple": true,
|
|
3525
|
-
"options": [
|
|
3526
|
-
"pending",
|
|
3527
|
-
"up",
|
|
3528
|
-
"down",
|
|
3529
|
-
"paused"
|
|
3530
|
-
],
|
|
3531
4059
|
"type": "option"
|
|
3532
4060
|
}
|
|
3533
4061
|
},
|
|
3534
4062
|
"hasDynamicHelp": false,
|
|
3535
4063
|
"hiddenAliases": [],
|
|
3536
|
-
"id": "
|
|
4064
|
+
"id": "teams:create",
|
|
3537
4065
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3538
4066
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3539
4067
|
"pluginType": "core",
|
|
@@ -3543,22 +4071,22 @@
|
|
|
3543
4071
|
"relativePath": [
|
|
3544
4072
|
"dist",
|
|
3545
4073
|
"commands",
|
|
3546
|
-
"
|
|
3547
|
-
"
|
|
4074
|
+
"teams",
|
|
4075
|
+
"create.js"
|
|
3548
4076
|
]
|
|
3549
4077
|
},
|
|
3550
|
-
"
|
|
4078
|
+
"teams:delete": {
|
|
3551
4079
|
"aliases": [],
|
|
3552
4080
|
"args": {
|
|
3553
|
-
"
|
|
3554
|
-
"description": "
|
|
3555
|
-
"name": "
|
|
4081
|
+
"team": {
|
|
4082
|
+
"description": "Team id (UUID) or name",
|
|
4083
|
+
"name": "team",
|
|
3556
4084
|
"required": true
|
|
3557
4085
|
}
|
|
3558
4086
|
},
|
|
3559
|
-
"description": "
|
|
4087
|
+
"description": "Delete a team (its members lose the access this team granted)",
|
|
3560
4088
|
"examples": [
|
|
3561
|
-
"<%= config.bin %>
|
|
4089
|
+
"<%= config.bin %> teams delete DriverOne"
|
|
3562
4090
|
],
|
|
3563
4091
|
"flags": {
|
|
3564
4092
|
"json": {
|
|
@@ -3571,7 +4099,7 @@
|
|
|
3571
4099
|
},
|
|
3572
4100
|
"hasDynamicHelp": false,
|
|
3573
4101
|
"hiddenAliases": [],
|
|
3574
|
-
"id": "
|
|
4102
|
+
"id": "teams:delete",
|
|
3575
4103
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3576
4104
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3577
4105
|
"pluginType": "core",
|
|
@@ -3581,22 +4109,17 @@
|
|
|
3581
4109
|
"relativePath": [
|
|
3582
4110
|
"dist",
|
|
3583
4111
|
"commands",
|
|
3584
|
-
"
|
|
3585
|
-
"
|
|
4112
|
+
"teams",
|
|
4113
|
+
"delete.js"
|
|
3586
4114
|
]
|
|
3587
4115
|
},
|
|
3588
|
-
"
|
|
4116
|
+
"teams:list": {
|
|
3589
4117
|
"aliases": [],
|
|
3590
|
-
"args": {
|
|
3591
|
-
|
|
3592
|
-
"description": "Server id",
|
|
3593
|
-
"name": "id",
|
|
3594
|
-
"required": true
|
|
3595
|
-
}
|
|
3596
|
-
},
|
|
3597
|
-
"description": "Rename a monitored server (display name only)",
|
|
4118
|
+
"args": {},
|
|
4119
|
+
"description": "List the teams (people with scope) in your organization",
|
|
3598
4120
|
"examples": [
|
|
3599
|
-
"<%= config.bin %>
|
|
4121
|
+
"<%= config.bin %> teams list",
|
|
4122
|
+
"<%= config.bin %> teams list --json"
|
|
3600
4123
|
],
|
|
3601
4124
|
"flags": {
|
|
3602
4125
|
"json": {
|
|
@@ -3606,10 +4129,10 @@
|
|
|
3606
4129
|
"allowNo": false,
|
|
3607
4130
|
"type": "boolean"
|
|
3608
4131
|
},
|
|
3609
|
-
"
|
|
3610
|
-
"description": "
|
|
3611
|
-
"name": "
|
|
3612
|
-
"
|
|
4132
|
+
"page": {
|
|
4133
|
+
"description": "Page number",
|
|
4134
|
+
"name": "page",
|
|
4135
|
+
"default": 1,
|
|
3613
4136
|
"hasDynamicHelp": false,
|
|
3614
4137
|
"multiple": false,
|
|
3615
4138
|
"type": "option"
|
|
@@ -3617,7 +4140,7 @@
|
|
|
3617
4140
|
},
|
|
3618
4141
|
"hasDynamicHelp": false,
|
|
3619
4142
|
"hiddenAliases": [],
|
|
3620
|
-
"id": "
|
|
4143
|
+
"id": "teams:list",
|
|
3621
4144
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3622
4145
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3623
4146
|
"pluginType": "core",
|
|
@@ -3627,22 +4150,27 @@
|
|
|
3627
4150
|
"relativePath": [
|
|
3628
4151
|
"dist",
|
|
3629
4152
|
"commands",
|
|
3630
|
-
"
|
|
3631
|
-
"
|
|
4153
|
+
"teams",
|
|
4154
|
+
"list.js"
|
|
3632
4155
|
]
|
|
3633
4156
|
},
|
|
3634
|
-
"
|
|
4157
|
+
"teams:remove-member": {
|
|
3635
4158
|
"aliases": [],
|
|
3636
4159
|
"args": {
|
|
3637
|
-
"
|
|
3638
|
-
"description": "
|
|
3639
|
-
"name": "
|
|
4160
|
+
"team": {
|
|
4161
|
+
"description": "Team id (UUID) or name",
|
|
4162
|
+
"name": "team",
|
|
4163
|
+
"required": true
|
|
4164
|
+
},
|
|
4165
|
+
"member": {
|
|
4166
|
+
"description": "Member account id or email",
|
|
4167
|
+
"name": "member",
|
|
3640
4168
|
"required": true
|
|
3641
4169
|
}
|
|
3642
4170
|
},
|
|
3643
|
-
"description": "
|
|
4171
|
+
"description": "Remove a person from a team, keeping the other members",
|
|
3644
4172
|
"examples": [
|
|
3645
|
-
"<%= config.bin %>
|
|
4173
|
+
"<%= config.bin %> teams remove-member DriverOne client@acme.com"
|
|
3646
4174
|
],
|
|
3647
4175
|
"flags": {
|
|
3648
4176
|
"json": {
|
|
@@ -3655,7 +4183,7 @@
|
|
|
3655
4183
|
},
|
|
3656
4184
|
"hasDynamicHelp": false,
|
|
3657
4185
|
"hiddenAliases": [],
|
|
3658
|
-
"id": "
|
|
4186
|
+
"id": "teams:remove-member",
|
|
3659
4187
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3660
4188
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3661
4189
|
"pluginType": "core",
|
|
@@ -3665,22 +4193,22 @@
|
|
|
3665
4193
|
"relativePath": [
|
|
3666
4194
|
"dist",
|
|
3667
4195
|
"commands",
|
|
3668
|
-
"
|
|
3669
|
-
"
|
|
4196
|
+
"teams",
|
|
4197
|
+
"remove-member.js"
|
|
3670
4198
|
]
|
|
3671
4199
|
},
|
|
3672
|
-
"
|
|
4200
|
+
"teams:show": {
|
|
3673
4201
|
"aliases": [],
|
|
3674
4202
|
"args": {
|
|
3675
|
-
"
|
|
3676
|
-
"description": "
|
|
3677
|
-
"name": "
|
|
4203
|
+
"team": {
|
|
4204
|
+
"description": "Team id (UUID) or name",
|
|
4205
|
+
"name": "team",
|
|
3678
4206
|
"required": true
|
|
3679
4207
|
}
|
|
3680
4208
|
},
|
|
3681
|
-
"description": "
|
|
4209
|
+
"description": "Show a team by id or name (roles, group/project scope, members)",
|
|
3682
4210
|
"examples": [
|
|
3683
|
-
"<%= config.bin %>
|
|
4211
|
+
"<%= config.bin %> teams show DriverOne"
|
|
3684
4212
|
],
|
|
3685
4213
|
"flags": {
|
|
3686
4214
|
"json": {
|
|
@@ -3689,17 +4217,11 @@
|
|
|
3689
4217
|
"name": "json",
|
|
3690
4218
|
"allowNo": false,
|
|
3691
4219
|
"type": "boolean"
|
|
3692
|
-
},
|
|
3693
|
-
"confirm": {
|
|
3694
|
-
"description": "Required: confirm the revocation",
|
|
3695
|
-
"name": "confirm",
|
|
3696
|
-
"allowNo": false,
|
|
3697
|
-
"type": "boolean"
|
|
3698
4220
|
}
|
|
3699
4221
|
},
|
|
3700
4222
|
"hasDynamicHelp": false,
|
|
3701
4223
|
"hiddenAliases": [],
|
|
3702
|
-
"id": "
|
|
4224
|
+
"id": "teams:show",
|
|
3703
4225
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3704
4226
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3705
4227
|
"pluginType": "core",
|
|
@@ -3709,22 +4231,23 @@
|
|
|
3709
4231
|
"relativePath": [
|
|
3710
4232
|
"dist",
|
|
3711
4233
|
"commands",
|
|
3712
|
-
"
|
|
3713
|
-
"
|
|
4234
|
+
"teams",
|
|
4235
|
+
"show.js"
|
|
3714
4236
|
]
|
|
3715
4237
|
},
|
|
3716
|
-
"
|
|
4238
|
+
"teams:update": {
|
|
3717
4239
|
"aliases": [],
|
|
3718
4240
|
"args": {
|
|
3719
|
-
"
|
|
3720
|
-
"description": "
|
|
3721
|
-
"name": "
|
|
4241
|
+
"team": {
|
|
4242
|
+
"description": "Team id (UUID) or name",
|
|
4243
|
+
"name": "team",
|
|
3722
4244
|
"required": true
|
|
3723
4245
|
}
|
|
3724
4246
|
},
|
|
3725
|
-
"description": "
|
|
4247
|
+
"description": "Update a team. Each given dimension REPLACES the whole set for that dimension.",
|
|
3726
4248
|
"examples": [
|
|
3727
|
-
"<%= config.bin %>
|
|
4249
|
+
"<%= config.bin %> teams update DriverOne --role Client --group DriverOne",
|
|
4250
|
+
"<%= config.bin %> teams update DriverOne --name \"DriverOne clients\""
|
|
3728
4251
|
],
|
|
3729
4252
|
"flags": {
|
|
3730
4253
|
"json": {
|
|
@@ -3733,11 +4256,53 @@
|
|
|
3733
4256
|
"name": "json",
|
|
3734
4257
|
"allowNo": false,
|
|
3735
4258
|
"type": "boolean"
|
|
4259
|
+
},
|
|
4260
|
+
"color": {
|
|
4261
|
+
"description": "Color label",
|
|
4262
|
+
"name": "color",
|
|
4263
|
+
"hasDynamicHelp": false,
|
|
4264
|
+
"multiple": false,
|
|
4265
|
+
"type": "option"
|
|
4266
|
+
},
|
|
4267
|
+
"group": {
|
|
4268
|
+
"description": "Group id or name (repeatable; replaces the group scope)",
|
|
4269
|
+
"name": "group",
|
|
4270
|
+
"hasDynamicHelp": false,
|
|
4271
|
+
"multiple": true,
|
|
4272
|
+
"type": "option"
|
|
4273
|
+
},
|
|
4274
|
+
"member": {
|
|
4275
|
+
"description": "Member account id or email (repeatable; replaces the members)",
|
|
4276
|
+
"name": "member",
|
|
4277
|
+
"hasDynamicHelp": false,
|
|
4278
|
+
"multiple": true,
|
|
4279
|
+
"type": "option"
|
|
4280
|
+
},
|
|
4281
|
+
"name": {
|
|
4282
|
+
"description": "New name",
|
|
4283
|
+
"name": "name",
|
|
4284
|
+
"hasDynamicHelp": false,
|
|
4285
|
+
"multiple": false,
|
|
4286
|
+
"type": "option"
|
|
4287
|
+
},
|
|
4288
|
+
"project": {
|
|
4289
|
+
"description": "Project id or key (repeatable; replaces the project scope)",
|
|
4290
|
+
"name": "project",
|
|
4291
|
+
"hasDynamicHelp": false,
|
|
4292
|
+
"multiple": true,
|
|
4293
|
+
"type": "option"
|
|
4294
|
+
},
|
|
4295
|
+
"role": {
|
|
4296
|
+
"description": "Role id or name (repeatable; replaces the roles)",
|
|
4297
|
+
"name": "role",
|
|
4298
|
+
"hasDynamicHelp": false,
|
|
4299
|
+
"multiple": true,
|
|
4300
|
+
"type": "option"
|
|
3736
4301
|
}
|
|
3737
4302
|
},
|
|
3738
4303
|
"hasDynamicHelp": false,
|
|
3739
4304
|
"hiddenAliases": [],
|
|
3740
|
-
"id": "
|
|
4305
|
+
"id": "teams:update",
|
|
3741
4306
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3742
4307
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3743
4308
|
"pluginType": "core",
|
|
@@ -3747,11 +4312,11 @@
|
|
|
3747
4312
|
"relativePath": [
|
|
3748
4313
|
"dist",
|
|
3749
4314
|
"commands",
|
|
3750
|
-
"
|
|
3751
|
-
"
|
|
4315
|
+
"teams",
|
|
4316
|
+
"update.js"
|
|
3752
4317
|
]
|
|
3753
4318
|
},
|
|
3754
|
-
"servers:
|
|
4319
|
+
"servers:delete": {
|
|
3755
4320
|
"aliases": [],
|
|
3756
4321
|
"args": {
|
|
3757
4322
|
"id": {
|
|
@@ -3760,9 +4325,9 @@
|
|
|
3760
4325
|
"required": true
|
|
3761
4326
|
}
|
|
3762
4327
|
},
|
|
3763
|
-
"description": "
|
|
4328
|
+
"description": "Delete a server and all its metrics (a live agent would re-register it)",
|
|
3764
4329
|
"examples": [
|
|
3765
|
-
"<%= config.bin %> servers
|
|
4330
|
+
"<%= config.bin %> servers delete <server-id> --confirm"
|
|
3766
4331
|
],
|
|
3767
4332
|
"flags": {
|
|
3768
4333
|
"json": {
|
|
@@ -3771,41 +4336,37 @@
|
|
|
3771
4336
|
"name": "json",
|
|
3772
4337
|
"allowNo": false,
|
|
3773
4338
|
"type": "boolean"
|
|
4339
|
+
},
|
|
4340
|
+
"confirm": {
|
|
4341
|
+
"description": "Required: confirm the deletion",
|
|
4342
|
+
"name": "confirm",
|
|
4343
|
+
"allowNo": false,
|
|
4344
|
+
"type": "boolean"
|
|
3774
4345
|
}
|
|
3775
4346
|
},
|
|
3776
4347
|
"hasDynamicHelp": false,
|
|
3777
4348
|
"hiddenAliases": [],
|
|
3778
|
-
"id": "servers:
|
|
4349
|
+
"id": "servers:delete",
|
|
3779
4350
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3780
4351
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3781
4352
|
"pluginType": "core",
|
|
3782
4353
|
"strict": true,
|
|
3783
4354
|
"enableJsonFlag": true,
|
|
3784
4355
|
"isESM": false,
|
|
3785
|
-
"relativePath": [
|
|
3786
|
-
"dist",
|
|
3787
|
-
"commands",
|
|
3788
|
-
"servers",
|
|
3789
|
-
"
|
|
3790
|
-
]
|
|
3791
|
-
},
|
|
3792
|
-
"
|
|
3793
|
-
"aliases": [],
|
|
3794
|
-
"args": {
|
|
3795
|
-
|
|
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",
|
|
4356
|
+
"relativePath": [
|
|
4357
|
+
"dist",
|
|
4358
|
+
"commands",
|
|
4359
|
+
"servers",
|
|
4360
|
+
"delete.js"
|
|
4361
|
+
]
|
|
4362
|
+
},
|
|
4363
|
+
"servers:list": {
|
|
4364
|
+
"aliases": [],
|
|
4365
|
+
"args": {},
|
|
4366
|
+
"description": "List the monitored servers in your organization (fleet snapshot)",
|
|
3807
4367
|
"examples": [
|
|
3808
|
-
"<%= config.bin %>
|
|
4368
|
+
"<%= config.bin %> servers list",
|
|
4369
|
+
"<%= config.bin %> servers list --status down --json"
|
|
3809
4370
|
],
|
|
3810
4371
|
"flags": {
|
|
3811
4372
|
"json": {
|
|
@@ -3814,11 +4375,32 @@
|
|
|
3814
4375
|
"name": "json",
|
|
3815
4376
|
"allowNo": false,
|
|
3816
4377
|
"type": "boolean"
|
|
4378
|
+
},
|
|
4379
|
+
"page": {
|
|
4380
|
+
"description": "Page number",
|
|
4381
|
+
"name": "page",
|
|
4382
|
+
"default": 1,
|
|
4383
|
+
"hasDynamicHelp": false,
|
|
4384
|
+
"multiple": false,
|
|
4385
|
+
"type": "option"
|
|
4386
|
+
},
|
|
4387
|
+
"status": {
|
|
4388
|
+
"description": "Filter by status (repeatable)",
|
|
4389
|
+
"name": "status",
|
|
4390
|
+
"hasDynamicHelp": false,
|
|
4391
|
+
"multiple": true,
|
|
4392
|
+
"options": [
|
|
4393
|
+
"pending",
|
|
4394
|
+
"up",
|
|
4395
|
+
"down",
|
|
4396
|
+
"paused"
|
|
4397
|
+
],
|
|
4398
|
+
"type": "option"
|
|
3817
4399
|
}
|
|
3818
4400
|
},
|
|
3819
4401
|
"hasDynamicHelp": false,
|
|
3820
4402
|
"hiddenAliases": [],
|
|
3821
|
-
"id": "
|
|
4403
|
+
"id": "servers:list",
|
|
3822
4404
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3823
4405
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3824
4406
|
"pluginType": "core",
|
|
@@ -3828,23 +4410,22 @@
|
|
|
3828
4410
|
"relativePath": [
|
|
3829
4411
|
"dist",
|
|
3830
4412
|
"commands",
|
|
3831
|
-
"
|
|
3832
|
-
"
|
|
4413
|
+
"servers",
|
|
4414
|
+
"list.js"
|
|
3833
4415
|
]
|
|
3834
4416
|
},
|
|
3835
|
-
"
|
|
4417
|
+
"servers:pause": {
|
|
3836
4418
|
"aliases": [],
|
|
3837
4419
|
"args": {
|
|
3838
|
-
"
|
|
3839
|
-
"description": "
|
|
3840
|
-
"name": "
|
|
4420
|
+
"id": {
|
|
4421
|
+
"description": "Server id",
|
|
4422
|
+
"name": "id",
|
|
3841
4423
|
"required": true
|
|
3842
4424
|
}
|
|
3843
4425
|
},
|
|
3844
|
-
"description": "
|
|
4426
|
+
"description": "Pause a server (no staleness checks or alerts until resumed)",
|
|
3845
4427
|
"examples": [
|
|
3846
|
-
"<%= config.bin %>
|
|
3847
|
-
"<%= config.bin %> teams create DriverOne --role Client --group DriverOne --member client@acme.com"
|
|
4428
|
+
"<%= config.bin %> servers pause <server-id>"
|
|
3848
4429
|
],
|
|
3849
4430
|
"flags": {
|
|
3850
4431
|
"json": {
|
|
@@ -3853,46 +4434,11 @@
|
|
|
3853
4434
|
"name": "json",
|
|
3854
4435
|
"allowNo": false,
|
|
3855
4436
|
"type": "boolean"
|
|
3856
|
-
},
|
|
3857
|
-
"color": {
|
|
3858
|
-
"description": "Color label",
|
|
3859
|
-
"name": "color",
|
|
3860
|
-
"hasDynamicHelp": false,
|
|
3861
|
-
"multiple": false,
|
|
3862
|
-
"type": "option"
|
|
3863
|
-
},
|
|
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",
|
|
3888
|
-
"hasDynamicHelp": false,
|
|
3889
|
-
"multiple": true,
|
|
3890
|
-
"type": "option"
|
|
3891
4437
|
}
|
|
3892
4438
|
},
|
|
3893
4439
|
"hasDynamicHelp": false,
|
|
3894
4440
|
"hiddenAliases": [],
|
|
3895
|
-
"id": "
|
|
4441
|
+
"id": "servers:pause",
|
|
3896
4442
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3897
4443
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3898
4444
|
"pluginType": "core",
|
|
@@ -3902,22 +4448,22 @@
|
|
|
3902
4448
|
"relativePath": [
|
|
3903
4449
|
"dist",
|
|
3904
4450
|
"commands",
|
|
3905
|
-
"
|
|
3906
|
-
"
|
|
4451
|
+
"servers",
|
|
4452
|
+
"pause.js"
|
|
3907
4453
|
]
|
|
3908
4454
|
},
|
|
3909
|
-
"
|
|
4455
|
+
"servers:rename": {
|
|
3910
4456
|
"aliases": [],
|
|
3911
4457
|
"args": {
|
|
3912
|
-
"
|
|
3913
|
-
"description": "
|
|
3914
|
-
"name": "
|
|
4458
|
+
"id": {
|
|
4459
|
+
"description": "Server id",
|
|
4460
|
+
"name": "id",
|
|
3915
4461
|
"required": true
|
|
3916
4462
|
}
|
|
3917
4463
|
},
|
|
3918
|
-
"description": "
|
|
4464
|
+
"description": "Rename a monitored server (display name only)",
|
|
3919
4465
|
"examples": [
|
|
3920
|
-
"<%= config.bin %>
|
|
4466
|
+
"<%= config.bin %> servers rename <server-id> --name apps-prod"
|
|
3921
4467
|
],
|
|
3922
4468
|
"flags": {
|
|
3923
4469
|
"json": {
|
|
@@ -3926,11 +4472,19 @@
|
|
|
3926
4472
|
"name": "json",
|
|
3927
4473
|
"allowNo": false,
|
|
3928
4474
|
"type": "boolean"
|
|
4475
|
+
},
|
|
4476
|
+
"name": {
|
|
4477
|
+
"description": "New display name",
|
|
4478
|
+
"name": "name",
|
|
4479
|
+
"required": true,
|
|
4480
|
+
"hasDynamicHelp": false,
|
|
4481
|
+
"multiple": false,
|
|
4482
|
+
"type": "option"
|
|
3929
4483
|
}
|
|
3930
4484
|
},
|
|
3931
4485
|
"hasDynamicHelp": false,
|
|
3932
4486
|
"hiddenAliases": [],
|
|
3933
|
-
"id": "
|
|
4487
|
+
"id": "servers:rename",
|
|
3934
4488
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3935
4489
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3936
4490
|
"pluginType": "core",
|
|
@@ -3940,17 +4494,22 @@
|
|
|
3940
4494
|
"relativePath": [
|
|
3941
4495
|
"dist",
|
|
3942
4496
|
"commands",
|
|
3943
|
-
"
|
|
3944
|
-
"
|
|
4497
|
+
"servers",
|
|
4498
|
+
"rename.js"
|
|
3945
4499
|
]
|
|
3946
4500
|
},
|
|
3947
|
-
"
|
|
4501
|
+
"servers:resume": {
|
|
3948
4502
|
"aliases": [],
|
|
3949
|
-
"args": {
|
|
3950
|
-
|
|
4503
|
+
"args": {
|
|
4504
|
+
"id": {
|
|
4505
|
+
"description": "Server id",
|
|
4506
|
+
"name": "id",
|
|
4507
|
+
"required": true
|
|
4508
|
+
}
|
|
4509
|
+
},
|
|
4510
|
+
"description": "Resume a paused server (back up at the next agent push)",
|
|
3951
4511
|
"examples": [
|
|
3952
|
-
"<%= config.bin %>
|
|
3953
|
-
"<%= config.bin %> teams list --json"
|
|
4512
|
+
"<%= config.bin %> servers resume <server-id>"
|
|
3954
4513
|
],
|
|
3955
4514
|
"flags": {
|
|
3956
4515
|
"json": {
|
|
@@ -3959,19 +4518,11 @@
|
|
|
3959
4518
|
"name": "json",
|
|
3960
4519
|
"allowNo": false,
|
|
3961
4520
|
"type": "boolean"
|
|
3962
|
-
},
|
|
3963
|
-
"page": {
|
|
3964
|
-
"description": "Page number",
|
|
3965
|
-
"name": "page",
|
|
3966
|
-
"default": 1,
|
|
3967
|
-
"hasDynamicHelp": false,
|
|
3968
|
-
"multiple": false,
|
|
3969
|
-
"type": "option"
|
|
3970
4521
|
}
|
|
3971
4522
|
},
|
|
3972
4523
|
"hasDynamicHelp": false,
|
|
3973
4524
|
"hiddenAliases": [],
|
|
3974
|
-
"id": "
|
|
4525
|
+
"id": "servers:resume",
|
|
3975
4526
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3976
4527
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3977
4528
|
"pluginType": "core",
|
|
@@ -3981,27 +4532,22 @@
|
|
|
3981
4532
|
"relativePath": [
|
|
3982
4533
|
"dist",
|
|
3983
4534
|
"commands",
|
|
3984
|
-
"
|
|
3985
|
-
"
|
|
4535
|
+
"servers",
|
|
4536
|
+
"resume.js"
|
|
3986
4537
|
]
|
|
3987
4538
|
},
|
|
3988
|
-
"
|
|
4539
|
+
"servers:revoke": {
|
|
3989
4540
|
"aliases": [],
|
|
3990
4541
|
"args": {
|
|
3991
|
-
"
|
|
3992
|
-
"description": "
|
|
3993
|
-
"name": "
|
|
3994
|
-
"required": true
|
|
3995
|
-
},
|
|
3996
|
-
"member": {
|
|
3997
|
-
"description": "Member account id or email",
|
|
3998
|
-
"name": "member",
|
|
4542
|
+
"id": {
|
|
4543
|
+
"description": "Server id",
|
|
4544
|
+
"name": "id",
|
|
3999
4545
|
"required": true
|
|
4000
4546
|
}
|
|
4001
4547
|
},
|
|
4002
|
-
"description": "
|
|
4548
|
+
"description": "Revoke a server: its agent gets 403 and stops (host stays, reversible)",
|
|
4003
4549
|
"examples": [
|
|
4004
|
-
"<%= config.bin %>
|
|
4550
|
+
"<%= config.bin %> servers revoke <server-id> --confirm"
|
|
4005
4551
|
],
|
|
4006
4552
|
"flags": {
|
|
4007
4553
|
"json": {
|
|
@@ -4010,11 +4556,17 @@
|
|
|
4010
4556
|
"name": "json",
|
|
4011
4557
|
"allowNo": false,
|
|
4012
4558
|
"type": "boolean"
|
|
4559
|
+
},
|
|
4560
|
+
"confirm": {
|
|
4561
|
+
"description": "Required: confirm the revocation",
|
|
4562
|
+
"name": "confirm",
|
|
4563
|
+
"allowNo": false,
|
|
4564
|
+
"type": "boolean"
|
|
4013
4565
|
}
|
|
4014
4566
|
},
|
|
4015
4567
|
"hasDynamicHelp": false,
|
|
4016
4568
|
"hiddenAliases": [],
|
|
4017
|
-
"id": "
|
|
4569
|
+
"id": "servers:revoke",
|
|
4018
4570
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4019
4571
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4020
4572
|
"pluginType": "core",
|
|
@@ -4024,22 +4576,22 @@
|
|
|
4024
4576
|
"relativePath": [
|
|
4025
4577
|
"dist",
|
|
4026
4578
|
"commands",
|
|
4027
|
-
"
|
|
4028
|
-
"
|
|
4579
|
+
"servers",
|
|
4580
|
+
"revoke.js"
|
|
4029
4581
|
]
|
|
4030
4582
|
},
|
|
4031
|
-
"
|
|
4583
|
+
"servers:show": {
|
|
4032
4584
|
"aliases": [],
|
|
4033
4585
|
"args": {
|
|
4034
|
-
"
|
|
4035
|
-
"description": "
|
|
4036
|
-
"name": "
|
|
4586
|
+
"id": {
|
|
4587
|
+
"description": "Server id",
|
|
4588
|
+
"name": "id",
|
|
4037
4589
|
"required": true
|
|
4038
4590
|
}
|
|
4039
4591
|
},
|
|
4040
|
-
"description": "Show a
|
|
4592
|
+
"description": "Show a monitored server (latest snapshot)",
|
|
4041
4593
|
"examples": [
|
|
4042
|
-
"<%= config.bin %>
|
|
4594
|
+
"<%= config.bin %> servers show <server-id>"
|
|
4043
4595
|
],
|
|
4044
4596
|
"flags": {
|
|
4045
4597
|
"json": {
|
|
@@ -4052,7 +4604,7 @@
|
|
|
4052
4604
|
},
|
|
4053
4605
|
"hasDynamicHelp": false,
|
|
4054
4606
|
"hiddenAliases": [],
|
|
4055
|
-
"id": "
|
|
4607
|
+
"id": "servers:show",
|
|
4056
4608
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4057
4609
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4058
4610
|
"pluginType": "core",
|
|
@@ -4062,23 +4614,22 @@
|
|
|
4062
4614
|
"relativePath": [
|
|
4063
4615
|
"dist",
|
|
4064
4616
|
"commands",
|
|
4065
|
-
"
|
|
4617
|
+
"servers",
|
|
4066
4618
|
"show.js"
|
|
4067
4619
|
]
|
|
4068
4620
|
},
|
|
4069
|
-
"
|
|
4621
|
+
"servers:unrevoke": {
|
|
4070
4622
|
"aliases": [],
|
|
4071
4623
|
"args": {
|
|
4072
|
-
"
|
|
4073
|
-
"description": "
|
|
4074
|
-
"name": "
|
|
4624
|
+
"id": {
|
|
4625
|
+
"description": "Server id",
|
|
4626
|
+
"name": "id",
|
|
4075
4627
|
"required": true
|
|
4076
4628
|
}
|
|
4077
4629
|
},
|
|
4078
|
-
"description": "
|
|
4630
|
+
"description": "Restore a revoked server (its agent can push again)",
|
|
4079
4631
|
"examples": [
|
|
4080
|
-
"<%= config.bin %>
|
|
4081
|
-
"<%= config.bin %> teams update DriverOne --name \"DriverOne clients\""
|
|
4632
|
+
"<%= config.bin %> servers unrevoke <server-id>"
|
|
4082
4633
|
],
|
|
4083
4634
|
"flags": {
|
|
4084
4635
|
"json": {
|
|
@@ -4087,53 +4638,11 @@
|
|
|
4087
4638
|
"name": "json",
|
|
4088
4639
|
"allowNo": false,
|
|
4089
4640
|
"type": "boolean"
|
|
4090
|
-
},
|
|
4091
|
-
"color": {
|
|
4092
|
-
"description": "Color label",
|
|
4093
|
-
"name": "color",
|
|
4094
|
-
"hasDynamicHelp": false,
|
|
4095
|
-
"multiple": false,
|
|
4096
|
-
"type": "option"
|
|
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
|
-
},
|
|
4112
|
-
"name": {
|
|
4113
|
-
"description": "New name",
|
|
4114
|
-
"name": "name",
|
|
4115
|
-
"hasDynamicHelp": false,
|
|
4116
|
-
"multiple": false,
|
|
4117
|
-
"type": "option"
|
|
4118
|
-
},
|
|
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
|
-
"hasDynamicHelp": false,
|
|
4130
|
-
"multiple": true,
|
|
4131
|
-
"type": "option"
|
|
4132
4641
|
}
|
|
4133
4642
|
},
|
|
4134
4643
|
"hasDynamicHelp": false,
|
|
4135
4644
|
"hiddenAliases": [],
|
|
4136
|
-
"id": "
|
|
4645
|
+
"id": "servers:unrevoke",
|
|
4137
4646
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4138
4647
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4139
4648
|
"pluginType": "core",
|
|
@@ -4143,8 +4652,8 @@
|
|
|
4143
4652
|
"relativePath": [
|
|
4144
4653
|
"dist",
|
|
4145
4654
|
"commands",
|
|
4146
|
-
"
|
|
4147
|
-
"
|
|
4655
|
+
"servers",
|
|
4656
|
+
"unrevoke.js"
|
|
4148
4657
|
]
|
|
4149
4658
|
},
|
|
4150
4659
|
"tokens:create": {
|
|
@@ -5812,5 +6321,5 @@
|
|
|
5812
6321
|
]
|
|
5813
6322
|
}
|
|
5814
6323
|
},
|
|
5815
|
-
"version": "0.0.
|
|
6324
|
+
"version": "0.0.13"
|
|
5816
6325
|
}
|