@bussolabs/closeyourit-cli 0.0.13 → 0.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/dist/commands/ideas/create.d.ts +3 -1
- package/dist/commands/ideas/create.js +10 -3
- package/dist/commands/ideas/show.js +12 -5
- package/dist/commands/kb/ask.d.ts +10 -0
- package/dist/commands/kb/ask.js +45 -0
- package/dist/commands/kb/create.d.ts +13 -0
- package/dist/commands/kb/create.js +48 -0
- package/dist/commands/kb/delete.d.ts +12 -0
- package/dist/commands/kb/delete.js +25 -0
- package/dist/commands/kb/list.d.ts +12 -0
- package/dist/commands/kb/list.js +35 -0
- package/dist/commands/kb/search.d.ts +16 -0
- package/dist/commands/kb/search.js +48 -0
- package/dist/commands/kb/show.d.ts +9 -0
- package/dist/commands/kb/show.js +40 -0
- package/dist/commands/kb/update.d.ts +15 -0
- package/dist/commands/kb/update.js +53 -0
- package/dist/lib/knowledge.d.ts +22 -0
- package/dist/lib/knowledge.js +54 -0
- package/oclif.manifest.json +1659 -1252
- package/package.json +4 -1
package/oclif.manifest.json
CHANGED
|
@@ -469,233 +469,6 @@
|
|
|
469
469
|
"update.js"
|
|
470
470
|
]
|
|
471
471
|
},
|
|
472
|
-
"environments:create": {
|
|
473
|
-
"aliases": [],
|
|
474
|
-
"args": {
|
|
475
|
-
"code": {
|
|
476
|
-
"description": "Environment code (lowercase, e.g. production)",
|
|
477
|
-
"name": "code",
|
|
478
|
-
"required": true
|
|
479
|
-
}
|
|
480
|
-
},
|
|
481
|
-
"description": "Create an environment (production, staging, …) in your organization",
|
|
482
|
-
"examples": [
|
|
483
|
-
"<%= config.bin %> environments create production --label Production",
|
|
484
|
-
"<%= config.bin %> environments create staging --label Staging --color amber"
|
|
485
|
-
],
|
|
486
|
-
"flags": {
|
|
487
|
-
"json": {
|
|
488
|
-
"description": "Format output as json.",
|
|
489
|
-
"helpGroup": "GLOBAL",
|
|
490
|
-
"name": "json",
|
|
491
|
-
"allowNo": false,
|
|
492
|
-
"type": "boolean"
|
|
493
|
-
},
|
|
494
|
-
"label": {
|
|
495
|
-
"description": "Human-readable label",
|
|
496
|
-
"name": "label",
|
|
497
|
-
"required": true,
|
|
498
|
-
"hasDynamicHelp": false,
|
|
499
|
-
"multiple": false,
|
|
500
|
-
"type": "option"
|
|
501
|
-
},
|
|
502
|
-
"color": {
|
|
503
|
-
"description": "Color label",
|
|
504
|
-
"name": "color",
|
|
505
|
-
"default": "emerald",
|
|
506
|
-
"hasDynamicHelp": false,
|
|
507
|
-
"multiple": false,
|
|
508
|
-
"type": "option"
|
|
509
|
-
},
|
|
510
|
-
"position": {
|
|
511
|
-
"description": "Sort position",
|
|
512
|
-
"name": "position",
|
|
513
|
-
"hasDynamicHelp": false,
|
|
514
|
-
"multiple": false,
|
|
515
|
-
"type": "option"
|
|
516
|
-
},
|
|
517
|
-
"active": {
|
|
518
|
-
"description": "Whether the environment is active",
|
|
519
|
-
"name": "active",
|
|
520
|
-
"allowNo": true,
|
|
521
|
-
"type": "boolean"
|
|
522
|
-
}
|
|
523
|
-
},
|
|
524
|
-
"hasDynamicHelp": false,
|
|
525
|
-
"hiddenAliases": [],
|
|
526
|
-
"id": "environments:create",
|
|
527
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
528
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
529
|
-
"pluginType": "core",
|
|
530
|
-
"strict": true,
|
|
531
|
-
"enableJsonFlag": true,
|
|
532
|
-
"isESM": false,
|
|
533
|
-
"relativePath": [
|
|
534
|
-
"dist",
|
|
535
|
-
"commands",
|
|
536
|
-
"environments",
|
|
537
|
-
"create.js"
|
|
538
|
-
]
|
|
539
|
-
},
|
|
540
|
-
"environments:delete": {
|
|
541
|
-
"aliases": [],
|
|
542
|
-
"args": {
|
|
543
|
-
"environment": {
|
|
544
|
-
"description": "Environment id (UUID) or code",
|
|
545
|
-
"name": "environment",
|
|
546
|
-
"required": true
|
|
547
|
-
}
|
|
548
|
-
},
|
|
549
|
-
"description": "Delete an environment (blocked while projects, tokens or monitors reference it)",
|
|
550
|
-
"examples": [
|
|
551
|
-
"<%= config.bin %> environments delete staging --confirm"
|
|
552
|
-
],
|
|
553
|
-
"flags": {
|
|
554
|
-
"json": {
|
|
555
|
-
"description": "Format output as json.",
|
|
556
|
-
"helpGroup": "GLOBAL",
|
|
557
|
-
"name": "json",
|
|
558
|
-
"allowNo": false,
|
|
559
|
-
"type": "boolean"
|
|
560
|
-
},
|
|
561
|
-
"confirm": {
|
|
562
|
-
"description": "Required: confirm the deletion",
|
|
563
|
-
"name": "confirm",
|
|
564
|
-
"allowNo": false,
|
|
565
|
-
"type": "boolean"
|
|
566
|
-
}
|
|
567
|
-
},
|
|
568
|
-
"hasDynamicHelp": false,
|
|
569
|
-
"hiddenAliases": [],
|
|
570
|
-
"id": "environments:delete",
|
|
571
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
572
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
573
|
-
"pluginType": "core",
|
|
574
|
-
"strict": true,
|
|
575
|
-
"enableJsonFlag": true,
|
|
576
|
-
"isESM": false,
|
|
577
|
-
"relativePath": [
|
|
578
|
-
"dist",
|
|
579
|
-
"commands",
|
|
580
|
-
"environments",
|
|
581
|
-
"delete.js"
|
|
582
|
-
]
|
|
583
|
-
},
|
|
584
|
-
"environments:list": {
|
|
585
|
-
"aliases": [],
|
|
586
|
-
"args": {},
|
|
587
|
-
"description": "List the environments (production, staging, …) in your organization",
|
|
588
|
-
"examples": [
|
|
589
|
-
"<%= config.bin %> environments list",
|
|
590
|
-
"<%= config.bin %> environments list --page 2 --json"
|
|
591
|
-
],
|
|
592
|
-
"flags": {
|
|
593
|
-
"json": {
|
|
594
|
-
"description": "Format output as json.",
|
|
595
|
-
"helpGroup": "GLOBAL",
|
|
596
|
-
"name": "json",
|
|
597
|
-
"allowNo": false,
|
|
598
|
-
"type": "boolean"
|
|
599
|
-
},
|
|
600
|
-
"page": {
|
|
601
|
-
"description": "Page number",
|
|
602
|
-
"name": "page",
|
|
603
|
-
"default": 1,
|
|
604
|
-
"hasDynamicHelp": false,
|
|
605
|
-
"multiple": false,
|
|
606
|
-
"type": "option"
|
|
607
|
-
}
|
|
608
|
-
},
|
|
609
|
-
"hasDynamicHelp": false,
|
|
610
|
-
"hiddenAliases": [],
|
|
611
|
-
"id": "environments:list",
|
|
612
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
613
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
614
|
-
"pluginType": "core",
|
|
615
|
-
"strict": true,
|
|
616
|
-
"enableJsonFlag": true,
|
|
617
|
-
"isESM": false,
|
|
618
|
-
"relativePath": [
|
|
619
|
-
"dist",
|
|
620
|
-
"commands",
|
|
621
|
-
"environments",
|
|
622
|
-
"list.js"
|
|
623
|
-
]
|
|
624
|
-
},
|
|
625
|
-
"environments:update": {
|
|
626
|
-
"aliases": [],
|
|
627
|
-
"args": {
|
|
628
|
-
"environment": {
|
|
629
|
-
"description": "Environment id (UUID) or code",
|
|
630
|
-
"name": "environment",
|
|
631
|
-
"required": true
|
|
632
|
-
}
|
|
633
|
-
},
|
|
634
|
-
"description": "Update an environment (recode, relabel, recolor, reorder, activate/deactivate)",
|
|
635
|
-
"examples": [
|
|
636
|
-
"<%= config.bin %> environments update staging --label \"Staging env\"",
|
|
637
|
-
"<%= config.bin %> environments update production --color indigo",
|
|
638
|
-
"<%= config.bin %> environments update staging --no-active"
|
|
639
|
-
],
|
|
640
|
-
"flags": {
|
|
641
|
-
"json": {
|
|
642
|
-
"description": "Format output as json.",
|
|
643
|
-
"helpGroup": "GLOBAL",
|
|
644
|
-
"name": "json",
|
|
645
|
-
"allowNo": false,
|
|
646
|
-
"type": "boolean"
|
|
647
|
-
},
|
|
648
|
-
"code": {
|
|
649
|
-
"description": "New code (lowercase)",
|
|
650
|
-
"name": "code",
|
|
651
|
-
"hasDynamicHelp": false,
|
|
652
|
-
"multiple": false,
|
|
653
|
-
"type": "option"
|
|
654
|
-
},
|
|
655
|
-
"label": {
|
|
656
|
-
"description": "New label",
|
|
657
|
-
"name": "label",
|
|
658
|
-
"hasDynamicHelp": false,
|
|
659
|
-
"multiple": false,
|
|
660
|
-
"type": "option"
|
|
661
|
-
},
|
|
662
|
-
"color": {
|
|
663
|
-
"description": "Color label",
|
|
664
|
-
"name": "color",
|
|
665
|
-
"hasDynamicHelp": false,
|
|
666
|
-
"multiple": false,
|
|
667
|
-
"type": "option"
|
|
668
|
-
},
|
|
669
|
-
"position": {
|
|
670
|
-
"description": "Sort position",
|
|
671
|
-
"name": "position",
|
|
672
|
-
"hasDynamicHelp": false,
|
|
673
|
-
"multiple": false,
|
|
674
|
-
"type": "option"
|
|
675
|
-
},
|
|
676
|
-
"active": {
|
|
677
|
-
"description": "Whether the environment is active",
|
|
678
|
-
"name": "active",
|
|
679
|
-
"allowNo": true,
|
|
680
|
-
"type": "boolean"
|
|
681
|
-
}
|
|
682
|
-
},
|
|
683
|
-
"hasDynamicHelp": false,
|
|
684
|
-
"hiddenAliases": [],
|
|
685
|
-
"id": "environments:update",
|
|
686
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
687
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
688
|
-
"pluginType": "core",
|
|
689
|
-
"strict": true,
|
|
690
|
-
"enableJsonFlag": true,
|
|
691
|
-
"isESM": false,
|
|
692
|
-
"relativePath": [
|
|
693
|
-
"dist",
|
|
694
|
-
"commands",
|
|
695
|
-
"environments",
|
|
696
|
-
"update.js"
|
|
697
|
-
]
|
|
698
|
-
},
|
|
699
472
|
"groups:create": {
|
|
700
473
|
"aliases": [],
|
|
701
474
|
"args": {
|
|
@@ -1132,7 +905,7 @@
|
|
|
1132
905
|
"args": {},
|
|
1133
906
|
"description": "Propose an idea for a project",
|
|
1134
907
|
"examples": [
|
|
1135
|
-
"<%= config.bin %> ideas create --project acme-api --title \"Dark mode\" --
|
|
908
|
+
"<%= config.bin %> ideas create --project acme-api --title \"Dark mode\" --problem \"The dashboard blinds users at night\" --solution \"System dark theme\" --stakeholders \"Mobile team\" --stakeholders \"Enterprise customers\""
|
|
1136
909
|
],
|
|
1137
910
|
"flags": {
|
|
1138
911
|
"json": {
|
|
@@ -1159,13 +932,27 @@
|
|
|
1159
932
|
"multiple": false,
|
|
1160
933
|
"type": "option"
|
|
1161
934
|
},
|
|
1162
|
-
"
|
|
1163
|
-
"description": "
|
|
1164
|
-
"name": "
|
|
935
|
+
"problem": {
|
|
936
|
+
"description": "Problem or need the idea solves",
|
|
937
|
+
"name": "problem",
|
|
1165
938
|
"required": true,
|
|
1166
939
|
"hasDynamicHelp": false,
|
|
1167
940
|
"multiple": false,
|
|
1168
941
|
"type": "option"
|
|
942
|
+
},
|
|
943
|
+
"solution": {
|
|
944
|
+
"description": "Proposed solution (optional)",
|
|
945
|
+
"name": "solution",
|
|
946
|
+
"hasDynamicHelp": false,
|
|
947
|
+
"multiple": false,
|
|
948
|
+
"type": "option"
|
|
949
|
+
},
|
|
950
|
+
"stakeholders": {
|
|
951
|
+
"description": "Who it helps — repeatable (optional)",
|
|
952
|
+
"name": "stakeholders",
|
|
953
|
+
"hasDynamicHelp": false,
|
|
954
|
+
"multiple": true,
|
|
955
|
+
"type": "option"
|
|
1169
956
|
}
|
|
1170
957
|
},
|
|
1171
958
|
"hasDynamicHelp": false,
|
|
@@ -1257,7 +1044,7 @@
|
|
|
1257
1044
|
"required": true
|
|
1258
1045
|
}
|
|
1259
1046
|
},
|
|
1260
|
-
"description": "Show an idea (fields +
|
|
1047
|
+
"description": "Show an idea (fields + problem, solution, stakeholders)",
|
|
1261
1048
|
"examples": [
|
|
1262
1049
|
"<%= config.bin %> ideas show <idea-id> --project acme-api"
|
|
1263
1050
|
],
|
|
@@ -1389,13 +1176,19 @@
|
|
|
1389
1176
|
"vote.js"
|
|
1390
1177
|
]
|
|
1391
1178
|
},
|
|
1392
|
-
"
|
|
1179
|
+
"invitations:create": {
|
|
1393
1180
|
"aliases": [],
|
|
1394
|
-
"args": {
|
|
1395
|
-
|
|
1181
|
+
"args": {
|
|
1182
|
+
"email": {
|
|
1183
|
+
"description": "Email address to invite",
|
|
1184
|
+
"name": "email",
|
|
1185
|
+
"required": true
|
|
1186
|
+
}
|
|
1187
|
+
},
|
|
1188
|
+
"description": "Invite a person to the organization. Prints the acceptance link (shown only once).",
|
|
1396
1189
|
"examples": [
|
|
1397
|
-
"<%= config.bin %>
|
|
1398
|
-
"<%= config.bin %>
|
|
1190
|
+
"<%= config.bin %> invitations create client@acme.com",
|
|
1191
|
+
"<%= config.bin %> invitations create teammate@acme.com --role member"
|
|
1399
1192
|
],
|
|
1400
1193
|
"flags": {
|
|
1401
1194
|
"json": {
|
|
@@ -1405,34 +1198,23 @@
|
|
|
1405
1198
|
"allowNo": false,
|
|
1406
1199
|
"type": "boolean"
|
|
1407
1200
|
},
|
|
1408
|
-
"
|
|
1409
|
-
"
|
|
1410
|
-
"
|
|
1411
|
-
"
|
|
1412
|
-
"required": true,
|
|
1413
|
-
"hasDynamicHelp": false,
|
|
1414
|
-
"multiple": false,
|
|
1415
|
-
"type": "option"
|
|
1416
|
-
},
|
|
1417
|
-
"page": {
|
|
1418
|
-
"description": "Page number",
|
|
1419
|
-
"name": "page",
|
|
1420
|
-
"default": 1,
|
|
1421
|
-
"hasDynamicHelp": false,
|
|
1422
|
-
"multiple": false,
|
|
1423
|
-
"type": "option"
|
|
1424
|
-
},
|
|
1425
|
-
"status": {
|
|
1426
|
-
"description": "Filter by status (e.g. unresolved, resolved, muted)",
|
|
1427
|
-
"name": "status",
|
|
1201
|
+
"role": {
|
|
1202
|
+
"description": "Membership role",
|
|
1203
|
+
"name": "role",
|
|
1204
|
+
"default": "customer",
|
|
1428
1205
|
"hasDynamicHelp": false,
|
|
1429
1206
|
"multiple": false,
|
|
1207
|
+
"options": [
|
|
1208
|
+
"customer",
|
|
1209
|
+
"member",
|
|
1210
|
+
"admin"
|
|
1211
|
+
],
|
|
1430
1212
|
"type": "option"
|
|
1431
1213
|
}
|
|
1432
1214
|
},
|
|
1433
1215
|
"hasDynamicHelp": false,
|
|
1434
1216
|
"hiddenAliases": [],
|
|
1435
|
-
"id": "
|
|
1217
|
+
"id": "invitations:create",
|
|
1436
1218
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1437
1219
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1438
1220
|
"pluginType": "core",
|
|
@@ -1442,22 +1224,17 @@
|
|
|
1442
1224
|
"relativePath": [
|
|
1443
1225
|
"dist",
|
|
1444
1226
|
"commands",
|
|
1445
|
-
"
|
|
1446
|
-
"
|
|
1227
|
+
"invitations",
|
|
1228
|
+
"create.js"
|
|
1447
1229
|
]
|
|
1448
1230
|
},
|
|
1449
|
-
"
|
|
1231
|
+
"invitations:list": {
|
|
1450
1232
|
"aliases": [],
|
|
1451
|
-
"args": {
|
|
1452
|
-
|
|
1453
|
-
"description": "Error group id",
|
|
1454
|
-
"name": "id",
|
|
1455
|
-
"required": true
|
|
1456
|
-
}
|
|
1457
|
-
},
|
|
1458
|
-
"description": "Mute an error group",
|
|
1233
|
+
"args": {},
|
|
1234
|
+
"description": "List the pending/accepted invitations of your organization",
|
|
1459
1235
|
"examples": [
|
|
1460
|
-
"<%= config.bin %>
|
|
1236
|
+
"<%= config.bin %> invitations list",
|
|
1237
|
+
"<%= config.bin %> invitations list --json"
|
|
1461
1238
|
],
|
|
1462
1239
|
"flags": {
|
|
1463
1240
|
"json": {
|
|
@@ -1467,11 +1244,10 @@
|
|
|
1467
1244
|
"allowNo": false,
|
|
1468
1245
|
"type": "boolean"
|
|
1469
1246
|
},
|
|
1470
|
-
"
|
|
1471
|
-
"
|
|
1472
|
-
"
|
|
1473
|
-
"
|
|
1474
|
-
"required": true,
|
|
1247
|
+
"page": {
|
|
1248
|
+
"description": "Page number",
|
|
1249
|
+
"name": "page",
|
|
1250
|
+
"default": 1,
|
|
1475
1251
|
"hasDynamicHelp": false,
|
|
1476
1252
|
"multiple": false,
|
|
1477
1253
|
"type": "option"
|
|
@@ -1479,7 +1255,7 @@
|
|
|
1479
1255
|
},
|
|
1480
1256
|
"hasDynamicHelp": false,
|
|
1481
1257
|
"hiddenAliases": [],
|
|
1482
|
-
"id": "
|
|
1258
|
+
"id": "invitations:list",
|
|
1483
1259
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1484
1260
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1485
1261
|
"pluginType": "core",
|
|
@@ -1489,22 +1265,22 @@
|
|
|
1489
1265
|
"relativePath": [
|
|
1490
1266
|
"dist",
|
|
1491
1267
|
"commands",
|
|
1492
|
-
"
|
|
1493
|
-
"
|
|
1268
|
+
"invitations",
|
|
1269
|
+
"list.js"
|
|
1494
1270
|
]
|
|
1495
1271
|
},
|
|
1496
|
-
"
|
|
1272
|
+
"invitations:resend": {
|
|
1497
1273
|
"aliases": [],
|
|
1498
1274
|
"args": {
|
|
1499
1275
|
"id": {
|
|
1500
|
-
"description": "
|
|
1276
|
+
"description": "Invitation id (UUID)",
|
|
1501
1277
|
"name": "id",
|
|
1502
1278
|
"required": true
|
|
1503
1279
|
}
|
|
1504
1280
|
},
|
|
1505
|
-
"description": "
|
|
1281
|
+
"description": "Resend a pending invitation. Prints the acceptance link (shown only once).",
|
|
1506
1282
|
"examples": [
|
|
1507
|
-
"<%= config.bin %>
|
|
1283
|
+
"<%= config.bin %> invitations resend <invitation-uuid>"
|
|
1508
1284
|
],
|
|
1509
1285
|
"flags": {
|
|
1510
1286
|
"json": {
|
|
@@ -1513,20 +1289,11 @@
|
|
|
1513
1289
|
"name": "json",
|
|
1514
1290
|
"allowNo": false,
|
|
1515
1291
|
"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"
|
|
1525
1292
|
}
|
|
1526
1293
|
},
|
|
1527
1294
|
"hasDynamicHelp": false,
|
|
1528
1295
|
"hiddenAliases": [],
|
|
1529
|
-
"id": "
|
|
1296
|
+
"id": "invitations:resend",
|
|
1530
1297
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1531
1298
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1532
1299
|
"pluginType": "core",
|
|
@@ -1536,22 +1303,22 @@
|
|
|
1536
1303
|
"relativePath": [
|
|
1537
1304
|
"dist",
|
|
1538
1305
|
"commands",
|
|
1539
|
-
"
|
|
1540
|
-
"
|
|
1306
|
+
"invitations",
|
|
1307
|
+
"resend.js"
|
|
1541
1308
|
]
|
|
1542
1309
|
},
|
|
1543
|
-
"
|
|
1310
|
+
"invitations:revoke": {
|
|
1544
1311
|
"aliases": [],
|
|
1545
1312
|
"args": {
|
|
1546
1313
|
"id": {
|
|
1547
|
-
"description": "
|
|
1314
|
+
"description": "Invitation id (UUID)",
|
|
1548
1315
|
"name": "id",
|
|
1549
1316
|
"required": true
|
|
1550
1317
|
}
|
|
1551
1318
|
},
|
|
1552
|
-
"description": "
|
|
1319
|
+
"description": "Revoke a pending invitation",
|
|
1553
1320
|
"examples": [
|
|
1554
|
-
"<%= config.bin %>
|
|
1321
|
+
"<%= config.bin %> invitations revoke <invitation-uuid>"
|
|
1555
1322
|
],
|
|
1556
1323
|
"flags": {
|
|
1557
1324
|
"json": {
|
|
@@ -1560,20 +1327,11 @@
|
|
|
1560
1327
|
"name": "json",
|
|
1561
1328
|
"allowNo": false,
|
|
1562
1329
|
"type": "boolean"
|
|
1563
|
-
},
|
|
1564
|
-
"project": {
|
|
1565
|
-
"char": "p",
|
|
1566
|
-
"description": "Project id (UUID) or key",
|
|
1567
|
-
"name": "project",
|
|
1568
|
-
"required": true,
|
|
1569
|
-
"hasDynamicHelp": false,
|
|
1570
|
-
"multiple": false,
|
|
1571
|
-
"type": "option"
|
|
1572
1330
|
}
|
|
1573
1331
|
},
|
|
1574
1332
|
"hasDynamicHelp": false,
|
|
1575
1333
|
"hiddenAliases": [],
|
|
1576
|
-
"id": "
|
|
1334
|
+
"id": "invitations:revoke",
|
|
1577
1335
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1578
1336
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1579
1337
|
"pluginType": "core",
|
|
@@ -1583,22 +1341,23 @@
|
|
|
1583
1341
|
"relativePath": [
|
|
1584
1342
|
"dist",
|
|
1585
1343
|
"commands",
|
|
1586
|
-
"
|
|
1587
|
-
"
|
|
1344
|
+
"invitations",
|
|
1345
|
+
"revoke.js"
|
|
1588
1346
|
]
|
|
1589
1347
|
},
|
|
1590
|
-
"
|
|
1348
|
+
"environments:create": {
|
|
1591
1349
|
"aliases": [],
|
|
1592
1350
|
"args": {
|
|
1593
|
-
"
|
|
1594
|
-
"description": "
|
|
1595
|
-
"name": "
|
|
1351
|
+
"code": {
|
|
1352
|
+
"description": "Environment code (lowercase, e.g. production)",
|
|
1353
|
+
"name": "code",
|
|
1596
1354
|
"required": true
|
|
1597
1355
|
}
|
|
1598
1356
|
},
|
|
1599
|
-
"description": "
|
|
1357
|
+
"description": "Create an environment (production, staging, …) in your organization",
|
|
1600
1358
|
"examples": [
|
|
1601
|
-
"<%= config.bin %>
|
|
1359
|
+
"<%= config.bin %> environments create production --label Production",
|
|
1360
|
+
"<%= config.bin %> environments create staging --label Staging --color amber"
|
|
1602
1361
|
],
|
|
1603
1362
|
"flags": {
|
|
1604
1363
|
"json": {
|
|
@@ -1608,19 +1367,39 @@
|
|
|
1608
1367
|
"allowNo": false,
|
|
1609
1368
|
"type": "boolean"
|
|
1610
1369
|
},
|
|
1611
|
-
"
|
|
1612
|
-
"
|
|
1613
|
-
"
|
|
1614
|
-
"name": "project",
|
|
1370
|
+
"label": {
|
|
1371
|
+
"description": "Human-readable label",
|
|
1372
|
+
"name": "label",
|
|
1615
1373
|
"required": true,
|
|
1616
1374
|
"hasDynamicHelp": false,
|
|
1617
1375
|
"multiple": false,
|
|
1618
1376
|
"type": "option"
|
|
1377
|
+
},
|
|
1378
|
+
"color": {
|
|
1379
|
+
"description": "Color label",
|
|
1380
|
+
"name": "color",
|
|
1381
|
+
"default": "emerald",
|
|
1382
|
+
"hasDynamicHelp": false,
|
|
1383
|
+
"multiple": false,
|
|
1384
|
+
"type": "option"
|
|
1385
|
+
},
|
|
1386
|
+
"position": {
|
|
1387
|
+
"description": "Sort position",
|
|
1388
|
+
"name": "position",
|
|
1389
|
+
"hasDynamicHelp": false,
|
|
1390
|
+
"multiple": false,
|
|
1391
|
+
"type": "option"
|
|
1392
|
+
},
|
|
1393
|
+
"active": {
|
|
1394
|
+
"description": "Whether the environment is active",
|
|
1395
|
+
"name": "active",
|
|
1396
|
+
"allowNo": true,
|
|
1397
|
+
"type": "boolean"
|
|
1619
1398
|
}
|
|
1620
1399
|
},
|
|
1621
1400
|
"hasDynamicHelp": false,
|
|
1622
1401
|
"hiddenAliases": [],
|
|
1623
|
-
"id": "
|
|
1402
|
+
"id": "environments:create",
|
|
1624
1403
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1625
1404
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1626
1405
|
"pluginType": "core",
|
|
@@ -1630,22 +1409,22 @@
|
|
|
1630
1409
|
"relativePath": [
|
|
1631
1410
|
"dist",
|
|
1632
1411
|
"commands",
|
|
1633
|
-
"
|
|
1634
|
-
"
|
|
1412
|
+
"environments",
|
|
1413
|
+
"create.js"
|
|
1635
1414
|
]
|
|
1636
1415
|
},
|
|
1637
|
-
"
|
|
1416
|
+
"environments:delete": {
|
|
1638
1417
|
"aliases": [],
|
|
1639
1418
|
"args": {
|
|
1640
|
-
"
|
|
1641
|
-
"description": "
|
|
1642
|
-
"name": "
|
|
1419
|
+
"environment": {
|
|
1420
|
+
"description": "Environment id (UUID) or code",
|
|
1421
|
+
"name": "environment",
|
|
1643
1422
|
"required": true
|
|
1644
1423
|
}
|
|
1645
1424
|
},
|
|
1646
|
-
"description": "
|
|
1425
|
+
"description": "Delete an environment (blocked while projects, tokens or monitors reference it)",
|
|
1647
1426
|
"examples": [
|
|
1648
|
-
"<%= config.bin %>
|
|
1427
|
+
"<%= config.bin %> environments delete staging --confirm"
|
|
1649
1428
|
],
|
|
1650
1429
|
"flags": {
|
|
1651
1430
|
"json": {
|
|
@@ -1655,19 +1434,16 @@
|
|
|
1655
1434
|
"allowNo": false,
|
|
1656
1435
|
"type": "boolean"
|
|
1657
1436
|
},
|
|
1658
|
-
"
|
|
1659
|
-
"
|
|
1660
|
-
"
|
|
1661
|
-
"
|
|
1662
|
-
"
|
|
1663
|
-
"hasDynamicHelp": false,
|
|
1664
|
-
"multiple": false,
|
|
1665
|
-
"type": "option"
|
|
1437
|
+
"confirm": {
|
|
1438
|
+
"description": "Required: confirm the deletion",
|
|
1439
|
+
"name": "confirm",
|
|
1440
|
+
"allowNo": false,
|
|
1441
|
+
"type": "boolean"
|
|
1666
1442
|
}
|
|
1667
1443
|
},
|
|
1668
1444
|
"hasDynamicHelp": false,
|
|
1669
1445
|
"hiddenAliases": [],
|
|
1670
|
-
"id": "
|
|
1446
|
+
"id": "environments:delete",
|
|
1671
1447
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1672
1448
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1673
1449
|
"pluginType": "core",
|
|
@@ -1677,22 +1453,17 @@
|
|
|
1677
1453
|
"relativePath": [
|
|
1678
1454
|
"dist",
|
|
1679
1455
|
"commands",
|
|
1680
|
-
"
|
|
1681
|
-
"
|
|
1456
|
+
"environments",
|
|
1457
|
+
"delete.js"
|
|
1682
1458
|
]
|
|
1683
1459
|
},
|
|
1684
|
-
"
|
|
1460
|
+
"environments:list": {
|
|
1685
1461
|
"aliases": [],
|
|
1686
|
-
"args": {
|
|
1687
|
-
|
|
1688
|
-
"description": "Error group id",
|
|
1689
|
-
"name": "id",
|
|
1690
|
-
"required": true
|
|
1691
|
-
}
|
|
1692
|
-
},
|
|
1693
|
-
"description": "Unmute an error group",
|
|
1462
|
+
"args": {},
|
|
1463
|
+
"description": "List the environments (production, staging, …) in your organization",
|
|
1694
1464
|
"examples": [
|
|
1695
|
-
"<%= config.bin %>
|
|
1465
|
+
"<%= config.bin %> environments list",
|
|
1466
|
+
"<%= config.bin %> environments list --page 2 --json"
|
|
1696
1467
|
],
|
|
1697
1468
|
"flags": {
|
|
1698
1469
|
"json": {
|
|
@@ -1702,11 +1473,10 @@
|
|
|
1702
1473
|
"allowNo": false,
|
|
1703
1474
|
"type": "boolean"
|
|
1704
1475
|
},
|
|
1705
|
-
"
|
|
1706
|
-
"
|
|
1707
|
-
"
|
|
1708
|
-
"
|
|
1709
|
-
"required": true,
|
|
1476
|
+
"page": {
|
|
1477
|
+
"description": "Page number",
|
|
1478
|
+
"name": "page",
|
|
1479
|
+
"default": 1,
|
|
1710
1480
|
"hasDynamicHelp": false,
|
|
1711
1481
|
"multiple": false,
|
|
1712
1482
|
"type": "option"
|
|
@@ -1714,7 +1484,7 @@
|
|
|
1714
1484
|
},
|
|
1715
1485
|
"hasDynamicHelp": false,
|
|
1716
1486
|
"hiddenAliases": [],
|
|
1717
|
-
"id": "
|
|
1487
|
+
"id": "environments:list",
|
|
1718
1488
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1719
1489
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1720
1490
|
"pluginType": "core",
|
|
@@ -1724,23 +1494,24 @@
|
|
|
1724
1494
|
"relativePath": [
|
|
1725
1495
|
"dist",
|
|
1726
1496
|
"commands",
|
|
1727
|
-
"
|
|
1728
|
-
"
|
|
1497
|
+
"environments",
|
|
1498
|
+
"list.js"
|
|
1729
1499
|
]
|
|
1730
1500
|
},
|
|
1731
|
-
"
|
|
1501
|
+
"environments:update": {
|
|
1732
1502
|
"aliases": [],
|
|
1733
1503
|
"args": {
|
|
1734
|
-
"
|
|
1735
|
-
"description": "
|
|
1736
|
-
"name": "
|
|
1504
|
+
"environment": {
|
|
1505
|
+
"description": "Environment id (UUID) or code",
|
|
1506
|
+
"name": "environment",
|
|
1737
1507
|
"required": true
|
|
1738
1508
|
}
|
|
1739
1509
|
},
|
|
1740
|
-
"description": "
|
|
1510
|
+
"description": "Update an environment (recode, relabel, recolor, reorder, activate/deactivate)",
|
|
1741
1511
|
"examples": [
|
|
1742
|
-
"<%= config.bin %>
|
|
1743
|
-
"<%= config.bin %>
|
|
1512
|
+
"<%= config.bin %> environments update staging --label \"Staging env\"",
|
|
1513
|
+
"<%= config.bin %> environments update production --color indigo",
|
|
1514
|
+
"<%= config.bin %> environments update staging --no-active"
|
|
1744
1515
|
],
|
|
1745
1516
|
"flags": {
|
|
1746
1517
|
"json": {
|
|
@@ -1750,43 +1521,69 @@
|
|
|
1750
1521
|
"allowNo": false,
|
|
1751
1522
|
"type": "boolean"
|
|
1752
1523
|
},
|
|
1753
|
-
"
|
|
1754
|
-
"description": "
|
|
1755
|
-
"name": "
|
|
1756
|
-
"default": "customer",
|
|
1524
|
+
"code": {
|
|
1525
|
+
"description": "New code (lowercase)",
|
|
1526
|
+
"name": "code",
|
|
1757
1527
|
"hasDynamicHelp": false,
|
|
1758
1528
|
"multiple": false,
|
|
1759
|
-
"options": [
|
|
1760
|
-
"customer",
|
|
1761
|
-
"member",
|
|
1762
|
-
"admin"
|
|
1763
|
-
],
|
|
1764
1529
|
"type": "option"
|
|
1765
|
-
}
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1530
|
+
},
|
|
1531
|
+
"label": {
|
|
1532
|
+
"description": "New label",
|
|
1533
|
+
"name": "label",
|
|
1534
|
+
"hasDynamicHelp": false,
|
|
1535
|
+
"multiple": false,
|
|
1536
|
+
"type": "option"
|
|
1537
|
+
},
|
|
1538
|
+
"color": {
|
|
1539
|
+
"description": "Color label",
|
|
1540
|
+
"name": "color",
|
|
1541
|
+
"hasDynamicHelp": false,
|
|
1542
|
+
"multiple": false,
|
|
1543
|
+
"type": "option"
|
|
1544
|
+
},
|
|
1545
|
+
"position": {
|
|
1546
|
+
"description": "Sort position",
|
|
1547
|
+
"name": "position",
|
|
1548
|
+
"hasDynamicHelp": false,
|
|
1549
|
+
"multiple": false,
|
|
1550
|
+
"type": "option"
|
|
1551
|
+
},
|
|
1552
|
+
"active": {
|
|
1553
|
+
"description": "Whether the environment is active",
|
|
1554
|
+
"name": "active",
|
|
1555
|
+
"allowNo": true,
|
|
1556
|
+
"type": "boolean"
|
|
1557
|
+
}
|
|
1558
|
+
},
|
|
1559
|
+
"hasDynamicHelp": false,
|
|
1560
|
+
"hiddenAliases": [],
|
|
1561
|
+
"id": "environments:update",
|
|
1562
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1563
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1564
|
+
"pluginType": "core",
|
|
1565
|
+
"strict": true,
|
|
1566
|
+
"enableJsonFlag": true,
|
|
1567
|
+
"isESM": false,
|
|
1568
|
+
"relativePath": [
|
|
1569
|
+
"dist",
|
|
1778
1570
|
"commands",
|
|
1779
|
-
"
|
|
1780
|
-
"
|
|
1571
|
+
"environments",
|
|
1572
|
+
"update.js"
|
|
1781
1573
|
]
|
|
1782
1574
|
},
|
|
1783
|
-
"
|
|
1575
|
+
"kb:ask": {
|
|
1784
1576
|
"aliases": [],
|
|
1785
|
-
"args": {
|
|
1786
|
-
|
|
1577
|
+
"args": {
|
|
1578
|
+
"question": {
|
|
1579
|
+
"description": "The question (all positional words are joined)",
|
|
1580
|
+
"name": "question"
|
|
1581
|
+
}
|
|
1582
|
+
},
|
|
1583
|
+
"description": "Ask a natural-language question; the server AI answers from the knowledge base and cites the pages it used (may take a few seconds)",
|
|
1787
1584
|
"examples": [
|
|
1788
|
-
"<%= config.bin %>
|
|
1789
|
-
"<%= config.bin %>
|
|
1585
|
+
"<%= config.bin %> kb ask how do we roll back a kamal deploy",
|
|
1586
|
+
"<%= config.bin %> kb ask \"what is our retry/backoff policy?\" --json"
|
|
1790
1587
|
],
|
|
1791
1588
|
"flags": {
|
|
1792
1589
|
"json": {
|
|
@@ -1795,44 +1592,31 @@
|
|
|
1795
1592
|
"name": "json",
|
|
1796
1593
|
"allowNo": false,
|
|
1797
1594
|
"type": "boolean"
|
|
1798
|
-
},
|
|
1799
|
-
"page": {
|
|
1800
|
-
"description": "Page number",
|
|
1801
|
-
"name": "page",
|
|
1802
|
-
"default": 1,
|
|
1803
|
-
"hasDynamicHelp": false,
|
|
1804
|
-
"multiple": false,
|
|
1805
|
-
"type": "option"
|
|
1806
1595
|
}
|
|
1807
1596
|
},
|
|
1808
1597
|
"hasDynamicHelp": false,
|
|
1809
1598
|
"hiddenAliases": [],
|
|
1810
|
-
"id": "
|
|
1599
|
+
"id": "kb:ask",
|
|
1811
1600
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1812
1601
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1813
1602
|
"pluginType": "core",
|
|
1814
|
-
"strict":
|
|
1603
|
+
"strict": false,
|
|
1815
1604
|
"enableJsonFlag": true,
|
|
1816
1605
|
"isESM": false,
|
|
1817
1606
|
"relativePath": [
|
|
1818
1607
|
"dist",
|
|
1819
1608
|
"commands",
|
|
1820
|
-
"
|
|
1821
|
-
"
|
|
1609
|
+
"kb",
|
|
1610
|
+
"ask.js"
|
|
1822
1611
|
]
|
|
1823
1612
|
},
|
|
1824
|
-
"
|
|
1613
|
+
"kb:create": {
|
|
1825
1614
|
"aliases": [],
|
|
1826
|
-
"args": {
|
|
1827
|
-
|
|
1828
|
-
"description": "Invitation id (UUID)",
|
|
1829
|
-
"name": "id",
|
|
1830
|
-
"required": true
|
|
1831
|
-
}
|
|
1832
|
-
},
|
|
1833
|
-
"description": "Resend a pending invitation. Prints the acceptance link (shown only once).",
|
|
1615
|
+
"args": {},
|
|
1616
|
+
"description": "Create a knowledge page in a project",
|
|
1834
1617
|
"examples": [
|
|
1835
|
-
"<%= config.bin %>
|
|
1618
|
+
"<%= config.bin %> kb create --project acme-api --title \"Kamal rollback\" --body \"Steps…\"",
|
|
1619
|
+
"<%= config.bin %> kb create -p acme-api --title \"ADR: queue backend\" --kind decision --body-file ./adr.md"
|
|
1836
1620
|
],
|
|
1837
1621
|
"flags": {
|
|
1838
1622
|
"json": {
|
|
@@ -1841,11 +1625,50 @@
|
|
|
1841
1625
|
"name": "json",
|
|
1842
1626
|
"allowNo": false,
|
|
1843
1627
|
"type": "boolean"
|
|
1628
|
+
},
|
|
1629
|
+
"project": {
|
|
1630
|
+
"char": "p",
|
|
1631
|
+
"description": "Project id (UUID) or key",
|
|
1632
|
+
"name": "project",
|
|
1633
|
+
"required": true,
|
|
1634
|
+
"hasDynamicHelp": false,
|
|
1635
|
+
"multiple": false,
|
|
1636
|
+
"type": "option"
|
|
1637
|
+
},
|
|
1638
|
+
"title": {
|
|
1639
|
+
"description": "Page title",
|
|
1640
|
+
"name": "title",
|
|
1641
|
+
"required": true,
|
|
1642
|
+
"hasDynamicHelp": false,
|
|
1643
|
+
"multiple": false,
|
|
1644
|
+
"type": "option"
|
|
1645
|
+
},
|
|
1646
|
+
"kind": {
|
|
1647
|
+
"description": "Page kind: note|decision|guide",
|
|
1648
|
+
"name": "kind",
|
|
1649
|
+
"default": "note",
|
|
1650
|
+
"hasDynamicHelp": false,
|
|
1651
|
+
"multiple": false,
|
|
1652
|
+
"type": "option"
|
|
1653
|
+
},
|
|
1654
|
+
"body": {
|
|
1655
|
+
"description": "Page body (markdown)",
|
|
1656
|
+
"name": "body",
|
|
1657
|
+
"hasDynamicHelp": false,
|
|
1658
|
+
"multiple": false,
|
|
1659
|
+
"type": "option"
|
|
1660
|
+
},
|
|
1661
|
+
"body-file": {
|
|
1662
|
+
"description": "Read the body (markdown) from a local file",
|
|
1663
|
+
"name": "body-file",
|
|
1664
|
+
"hasDynamicHelp": false,
|
|
1665
|
+
"multiple": false,
|
|
1666
|
+
"type": "option"
|
|
1844
1667
|
}
|
|
1845
1668
|
},
|
|
1846
1669
|
"hasDynamicHelp": false,
|
|
1847
1670
|
"hiddenAliases": [],
|
|
1848
|
-
"id": "
|
|
1671
|
+
"id": "kb:create",
|
|
1849
1672
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1850
1673
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1851
1674
|
"pluginType": "core",
|
|
@@ -1855,22 +1678,22 @@
|
|
|
1855
1678
|
"relativePath": [
|
|
1856
1679
|
"dist",
|
|
1857
1680
|
"commands",
|
|
1858
|
-
"
|
|
1859
|
-
"
|
|
1681
|
+
"kb",
|
|
1682
|
+
"create.js"
|
|
1860
1683
|
]
|
|
1861
1684
|
},
|
|
1862
|
-
"
|
|
1685
|
+
"kb:delete": {
|
|
1863
1686
|
"aliases": [],
|
|
1864
1687
|
"args": {
|
|
1865
1688
|
"id": {
|
|
1866
|
-
"description": "
|
|
1689
|
+
"description": "Knowledge page id",
|
|
1867
1690
|
"name": "id",
|
|
1868
1691
|
"required": true
|
|
1869
1692
|
}
|
|
1870
1693
|
},
|
|
1871
|
-
"description": "
|
|
1694
|
+
"description": "Delete a knowledge page (irreversible)",
|
|
1872
1695
|
"examples": [
|
|
1873
|
-
"<%= config.bin %>
|
|
1696
|
+
"<%= config.bin %> kb delete <page-id> --confirm"
|
|
1874
1697
|
],
|
|
1875
1698
|
"flags": {
|
|
1876
1699
|
"json": {
|
|
@@ -1879,11 +1702,17 @@
|
|
|
1879
1702
|
"name": "json",
|
|
1880
1703
|
"allowNo": false,
|
|
1881
1704
|
"type": "boolean"
|
|
1705
|
+
},
|
|
1706
|
+
"confirm": {
|
|
1707
|
+
"description": "Required: confirm the irreversible deletion",
|
|
1708
|
+
"name": "confirm",
|
|
1709
|
+
"allowNo": false,
|
|
1710
|
+
"type": "boolean"
|
|
1882
1711
|
}
|
|
1883
1712
|
},
|
|
1884
1713
|
"hasDynamicHelp": false,
|
|
1885
1714
|
"hiddenAliases": [],
|
|
1886
|
-
"id": "
|
|
1715
|
+
"id": "kb:delete",
|
|
1887
1716
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1888
1717
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1889
1718
|
"pluginType": "core",
|
|
@@ -1893,18 +1722,18 @@
|
|
|
1893
1722
|
"relativePath": [
|
|
1894
1723
|
"dist",
|
|
1895
1724
|
"commands",
|
|
1896
|
-
"
|
|
1897
|
-
"
|
|
1725
|
+
"kb",
|
|
1726
|
+
"delete.js"
|
|
1898
1727
|
]
|
|
1899
1728
|
},
|
|
1900
|
-
"
|
|
1729
|
+
"kb:list": {
|
|
1901
1730
|
"aliases": [],
|
|
1902
1731
|
"args": {},
|
|
1903
|
-
"description": "List
|
|
1732
|
+
"description": "List knowledge pages across the projects you can see",
|
|
1904
1733
|
"examples": [
|
|
1905
|
-
"<%= config.bin %>
|
|
1906
|
-
"<%= config.bin %>
|
|
1907
|
-
"<%= config.bin %>
|
|
1734
|
+
"<%= config.bin %> kb list",
|
|
1735
|
+
"<%= config.bin %> kb list --project acme-api --kind decision",
|
|
1736
|
+
"<%= config.bin %> kb list --kind note,guide --per 50 --json"
|
|
1908
1737
|
],
|
|
1909
1738
|
"flags": {
|
|
1910
1739
|
"json": {
|
|
@@ -1916,29 +1745,22 @@
|
|
|
1916
1745
|
},
|
|
1917
1746
|
"project": {
|
|
1918
1747
|
"char": "p",
|
|
1919
|
-
"description": "Filter by project
|
|
1748
|
+
"description": "Filter by project (key or UUID)",
|
|
1920
1749
|
"name": "project",
|
|
1921
1750
|
"hasDynamicHelp": false,
|
|
1922
1751
|
"multiple": false,
|
|
1923
1752
|
"type": "option"
|
|
1924
1753
|
},
|
|
1925
|
-
"
|
|
1926
|
-
"description": "Filter by
|
|
1927
|
-
"name": "
|
|
1928
|
-
"hasDynamicHelp": false,
|
|
1929
|
-
"multiple": false,
|
|
1930
|
-
"type": "option"
|
|
1931
|
-
},
|
|
1932
|
-
"trace-id": {
|
|
1933
|
-
"description": "Filter by trace id (correlate one request)",
|
|
1934
|
-
"name": "trace-id",
|
|
1754
|
+
"kind": {
|
|
1755
|
+
"description": "Filter by kind: note|decision|guide (repeatable or comma-separated)",
|
|
1756
|
+
"name": "kind",
|
|
1935
1757
|
"hasDynamicHelp": false,
|
|
1936
|
-
"multiple":
|
|
1758
|
+
"multiple": true,
|
|
1937
1759
|
"type": "option"
|
|
1938
1760
|
},
|
|
1939
|
-
"
|
|
1940
|
-
"description": "
|
|
1941
|
-
"name": "
|
|
1761
|
+
"per": {
|
|
1762
|
+
"description": "Page size",
|
|
1763
|
+
"name": "per",
|
|
1942
1764
|
"hasDynamicHelp": false,
|
|
1943
1765
|
"multiple": false,
|
|
1944
1766
|
"type": "option"
|
|
@@ -1954,7 +1776,7 @@
|
|
|
1954
1776
|
},
|
|
1955
1777
|
"hasDynamicHelp": false,
|
|
1956
1778
|
"hiddenAliases": [],
|
|
1957
|
-
"id": "
|
|
1779
|
+
"id": "kb:list",
|
|
1958
1780
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1959
1781
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1960
1782
|
"pluginType": "core",
|
|
@@ -1964,17 +1786,23 @@
|
|
|
1964
1786
|
"relativePath": [
|
|
1965
1787
|
"dist",
|
|
1966
1788
|
"commands",
|
|
1967
|
-
"
|
|
1789
|
+
"kb",
|
|
1968
1790
|
"list.js"
|
|
1969
1791
|
]
|
|
1970
1792
|
},
|
|
1971
|
-
"
|
|
1793
|
+
"kb:search": {
|
|
1972
1794
|
"aliases": [],
|
|
1973
|
-
"args": {
|
|
1974
|
-
|
|
1795
|
+
"args": {
|
|
1796
|
+
"query": {
|
|
1797
|
+
"description": "Search query (all positional words are joined)",
|
|
1798
|
+
"name": "query"
|
|
1799
|
+
}
|
|
1800
|
+
},
|
|
1801
|
+
"description": "Search knowledge pages (semantic when available, ILIKE fallback on the title otherwise)",
|
|
1975
1802
|
"examples": [
|
|
1976
|
-
"<%= config.bin %>
|
|
1977
|
-
"<%= config.bin %>
|
|
1803
|
+
"<%= config.bin %> kb search kamal deploy rollback",
|
|
1804
|
+
"<%= config.bin %> kb search \"connection pool timeout\" --project acme-api",
|
|
1805
|
+
"<%= config.bin %> kb search retry backoff --kind decision --json"
|
|
1978
1806
|
],
|
|
1979
1807
|
"flags": {
|
|
1980
1808
|
"json": {
|
|
@@ -1984,6 +1812,28 @@
|
|
|
1984
1812
|
"allowNo": false,
|
|
1985
1813
|
"type": "boolean"
|
|
1986
1814
|
},
|
|
1815
|
+
"project": {
|
|
1816
|
+
"char": "p",
|
|
1817
|
+
"description": "Filter by project (key or UUID)",
|
|
1818
|
+
"name": "project",
|
|
1819
|
+
"hasDynamicHelp": false,
|
|
1820
|
+
"multiple": false,
|
|
1821
|
+
"type": "option"
|
|
1822
|
+
},
|
|
1823
|
+
"kind": {
|
|
1824
|
+
"description": "Filter by kind: note|decision|guide (repeatable or comma-separated)",
|
|
1825
|
+
"name": "kind",
|
|
1826
|
+
"hasDynamicHelp": false,
|
|
1827
|
+
"multiple": true,
|
|
1828
|
+
"type": "option"
|
|
1829
|
+
},
|
|
1830
|
+
"per": {
|
|
1831
|
+
"description": "Page size",
|
|
1832
|
+
"name": "per",
|
|
1833
|
+
"hasDynamicHelp": false,
|
|
1834
|
+
"multiple": false,
|
|
1835
|
+
"type": "option"
|
|
1836
|
+
},
|
|
1987
1837
|
"page": {
|
|
1988
1838
|
"description": "Page number",
|
|
1989
1839
|
"name": "page",
|
|
@@ -1995,34 +1845,33 @@
|
|
|
1995
1845
|
},
|
|
1996
1846
|
"hasDynamicHelp": false,
|
|
1997
1847
|
"hiddenAliases": [],
|
|
1998
|
-
"id": "
|
|
1848
|
+
"id": "kb:search",
|
|
1999
1849
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2000
1850
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2001
1851
|
"pluginType": "core",
|
|
2002
|
-
"strict":
|
|
1852
|
+
"strict": false,
|
|
2003
1853
|
"enableJsonFlag": true,
|
|
2004
1854
|
"isESM": false,
|
|
2005
1855
|
"relativePath": [
|
|
2006
1856
|
"dist",
|
|
2007
1857
|
"commands",
|
|
2008
|
-
"
|
|
2009
|
-
"
|
|
1858
|
+
"kb",
|
|
1859
|
+
"search.js"
|
|
2010
1860
|
]
|
|
2011
1861
|
},
|
|
2012
|
-
"
|
|
1862
|
+
"kb:show": {
|
|
2013
1863
|
"aliases": [],
|
|
2014
1864
|
"args": {
|
|
2015
1865
|
"id": {
|
|
2016
|
-
"description": "
|
|
1866
|
+
"description": "Knowledge page id",
|
|
2017
1867
|
"name": "id",
|
|
2018
1868
|
"required": true
|
|
2019
1869
|
}
|
|
2020
1870
|
},
|
|
2021
|
-
"description": "
|
|
1871
|
+
"description": "Show a single knowledge page: metadata header then the raw markdown body",
|
|
2022
1872
|
"examples": [
|
|
2023
|
-
"<%= config.bin %>
|
|
2024
|
-
"<%= config.bin %>
|
|
2025
|
-
"<%= config.bin %> members set-access <membership-id>"
|
|
1873
|
+
"<%= config.bin %> kb show <page-id>",
|
|
1874
|
+
"<%= config.bin %> kb show <page-id> --json"
|
|
2026
1875
|
],
|
|
2027
1876
|
"flags": {
|
|
2028
1877
|
"json": {
|
|
@@ -2031,27 +1880,11 @@
|
|
|
2031
1880
|
"name": "json",
|
|
2032
1881
|
"allowNo": false,
|
|
2033
1882
|
"type": "boolean"
|
|
2034
|
-
},
|
|
2035
|
-
"group": {
|
|
2036
|
-
"description": "Group id or name to grant access to (repeatable; omit to clear group access)",
|
|
2037
|
-
"name": "group",
|
|
2038
|
-
"default": [],
|
|
2039
|
-
"hasDynamicHelp": false,
|
|
2040
|
-
"multiple": true,
|
|
2041
|
-
"type": "option"
|
|
2042
|
-
},
|
|
2043
|
-
"project": {
|
|
2044
|
-
"description": "Project id or key to grant access to (repeatable; omit to clear project access)",
|
|
2045
|
-
"name": "project",
|
|
2046
|
-
"default": [],
|
|
2047
|
-
"hasDynamicHelp": false,
|
|
2048
|
-
"multiple": true,
|
|
2049
|
-
"type": "option"
|
|
2050
1883
|
}
|
|
2051
1884
|
},
|
|
2052
1885
|
"hasDynamicHelp": false,
|
|
2053
1886
|
"hiddenAliases": [],
|
|
2054
|
-
"id": "
|
|
1887
|
+
"id": "kb:show",
|
|
2055
1888
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2056
1889
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2057
1890
|
"pluginType": "core",
|
|
@@ -2061,23 +1894,23 @@
|
|
|
2061
1894
|
"relativePath": [
|
|
2062
1895
|
"dist",
|
|
2063
1896
|
"commands",
|
|
2064
|
-
"
|
|
2065
|
-
"
|
|
1897
|
+
"kb",
|
|
1898
|
+
"show.js"
|
|
2066
1899
|
]
|
|
2067
1900
|
},
|
|
2068
|
-
"
|
|
1901
|
+
"kb:update": {
|
|
2069
1902
|
"aliases": [],
|
|
2070
1903
|
"args": {
|
|
2071
1904
|
"id": {
|
|
2072
|
-
"description": "
|
|
1905
|
+
"description": "Knowledge page id",
|
|
2073
1906
|
"name": "id",
|
|
2074
1907
|
"required": true
|
|
2075
1908
|
}
|
|
2076
1909
|
},
|
|
2077
|
-
"description": "
|
|
1910
|
+
"description": "Update a knowledge page (only the fields you pass; the others keep their current value)",
|
|
2078
1911
|
"examples": [
|
|
2079
|
-
"<%= config.bin %>
|
|
2080
|
-
"<%= config.bin %>
|
|
1912
|
+
"<%= config.bin %> kb update <page-id> --title \"New title\"",
|
|
1913
|
+
"<%= config.bin %> kb update <page-id> --kind decision --body-file ./adr.md"
|
|
2081
1914
|
],
|
|
2082
1915
|
"flags": {
|
|
2083
1916
|
"json": {
|
|
@@ -2087,24 +1920,38 @@
|
|
|
2087
1920
|
"allowNo": false,
|
|
2088
1921
|
"type": "boolean"
|
|
2089
1922
|
},
|
|
2090
|
-
"
|
|
2091
|
-
"description": "
|
|
2092
|
-
"name": "
|
|
2093
|
-
"
|
|
1923
|
+
"title": {
|
|
1924
|
+
"description": "New title",
|
|
1925
|
+
"name": "title",
|
|
1926
|
+
"hasDynamicHelp": false,
|
|
1927
|
+
"multiple": false,
|
|
1928
|
+
"type": "option"
|
|
1929
|
+
},
|
|
1930
|
+
"kind": {
|
|
1931
|
+
"description": "New kind: note|decision|guide",
|
|
1932
|
+
"name": "kind",
|
|
1933
|
+
"hasDynamicHelp": false,
|
|
1934
|
+
"multiple": false,
|
|
1935
|
+
"type": "option"
|
|
1936
|
+
},
|
|
1937
|
+
"body": {
|
|
1938
|
+
"description": "New body (markdown)",
|
|
1939
|
+
"name": "body",
|
|
1940
|
+
"hasDynamicHelp": false,
|
|
1941
|
+
"multiple": false,
|
|
1942
|
+
"type": "option"
|
|
1943
|
+
},
|
|
1944
|
+
"body-file": {
|
|
1945
|
+
"description": "Read the new body (markdown) from a local file",
|
|
1946
|
+
"name": "body-file",
|
|
2094
1947
|
"hasDynamicHelp": false,
|
|
2095
1948
|
"multiple": false,
|
|
2096
|
-
"options": [
|
|
2097
|
-
"member",
|
|
2098
|
-
"admin",
|
|
2099
|
-
"owner",
|
|
2100
|
-
"customer"
|
|
2101
|
-
],
|
|
2102
1949
|
"type": "option"
|
|
2103
1950
|
}
|
|
2104
1951
|
},
|
|
2105
1952
|
"hasDynamicHelp": false,
|
|
2106
1953
|
"hiddenAliases": [],
|
|
2107
|
-
"id": "
|
|
1954
|
+
"id": "kb:update",
|
|
2108
1955
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2109
1956
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2110
1957
|
"pluginType": "core",
|
|
@@ -2114,17 +1961,17 @@
|
|
|
2114
1961
|
"relativePath": [
|
|
2115
1962
|
"dist",
|
|
2116
1963
|
"commands",
|
|
2117
|
-
"
|
|
2118
|
-
"
|
|
1964
|
+
"kb",
|
|
1965
|
+
"update.js"
|
|
2119
1966
|
]
|
|
2120
1967
|
},
|
|
2121
|
-
"
|
|
1968
|
+
"errors:list": {
|
|
2122
1969
|
"aliases": [],
|
|
2123
1970
|
"args": {},
|
|
2124
|
-
"description": "List
|
|
1971
|
+
"description": "List error groups for a project",
|
|
2125
1972
|
"examples": [
|
|
2126
|
-
"<%= config.bin %>
|
|
2127
|
-
"<%= config.bin %>
|
|
1973
|
+
"<%= config.bin %> errors list --project acme-api",
|
|
1974
|
+
"<%= config.bin %> errors list -p acme-api --status unresolved --json"
|
|
2128
1975
|
],
|
|
2129
1976
|
"flags": {
|
|
2130
1977
|
"json": {
|
|
@@ -2151,9 +1998,9 @@
|
|
|
2151
1998
|
"multiple": false,
|
|
2152
1999
|
"type": "option"
|
|
2153
2000
|
},
|
|
2154
|
-
"
|
|
2155
|
-
"description": "Filter by
|
|
2156
|
-
"name": "
|
|
2001
|
+
"status": {
|
|
2002
|
+
"description": "Filter by status (e.g. unresolved, resolved, muted)",
|
|
2003
|
+
"name": "status",
|
|
2157
2004
|
"hasDynamicHelp": false,
|
|
2158
2005
|
"multiple": false,
|
|
2159
2006
|
"type": "option"
|
|
@@ -2161,7 +2008,7 @@
|
|
|
2161
2008
|
},
|
|
2162
2009
|
"hasDynamicHelp": false,
|
|
2163
2010
|
"hiddenAliases": [],
|
|
2164
|
-
"id": "
|
|
2011
|
+
"id": "errors:list",
|
|
2165
2012
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2166
2013
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2167
2014
|
"pluginType": "core",
|
|
@@ -2171,22 +2018,22 @@
|
|
|
2171
2018
|
"relativePath": [
|
|
2172
2019
|
"dist",
|
|
2173
2020
|
"commands",
|
|
2174
|
-
"
|
|
2021
|
+
"errors",
|
|
2175
2022
|
"list.js"
|
|
2176
2023
|
]
|
|
2177
2024
|
},
|
|
2178
|
-
"
|
|
2025
|
+
"errors:mute": {
|
|
2179
2026
|
"aliases": [],
|
|
2180
2027
|
"args": {
|
|
2181
2028
|
"id": {
|
|
2182
|
-
"description": "
|
|
2029
|
+
"description": "Error group id",
|
|
2183
2030
|
"name": "id",
|
|
2184
2031
|
"required": true
|
|
2185
2032
|
}
|
|
2186
2033
|
},
|
|
2187
|
-
"description": "
|
|
2034
|
+
"description": "Mute an error group",
|
|
2188
2035
|
"examples": [
|
|
2189
|
-
"<%= config.bin %>
|
|
2036
|
+
"<%= config.bin %> errors mute <group-id> --project acme-api"
|
|
2190
2037
|
],
|
|
2191
2038
|
"flags": {
|
|
2192
2039
|
"json": {
|
|
@@ -2208,7 +2055,7 @@
|
|
|
2208
2055
|
},
|
|
2209
2056
|
"hasDynamicHelp": false,
|
|
2210
2057
|
"hiddenAliases": [],
|
|
2211
|
-
"id": "
|
|
2058
|
+
"id": "errors:mute",
|
|
2212
2059
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2213
2060
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2214
2061
|
"pluginType": "core",
|
|
@@ -2218,22 +2065,22 @@
|
|
|
2218
2065
|
"relativePath": [
|
|
2219
2066
|
"dist",
|
|
2220
2067
|
"commands",
|
|
2221
|
-
"
|
|
2222
|
-
"
|
|
2068
|
+
"errors",
|
|
2069
|
+
"mute.js"
|
|
2223
2070
|
]
|
|
2224
2071
|
},
|
|
2225
|
-
"
|
|
2072
|
+
"errors:promote": {
|
|
2226
2073
|
"aliases": [],
|
|
2227
2074
|
"args": {
|
|
2228
2075
|
"id": {
|
|
2229
|
-
"description": "
|
|
2076
|
+
"description": "Error group id",
|
|
2230
2077
|
"name": "id",
|
|
2231
2078
|
"required": true
|
|
2232
2079
|
}
|
|
2233
2080
|
},
|
|
2234
|
-
"description": "
|
|
2081
|
+
"description": "Promote an error group to a ticket",
|
|
2235
2082
|
"examples": [
|
|
2236
|
-
"<%= config.bin %>
|
|
2083
|
+
"<%= config.bin %> errors promote <group-id> --project acme-api"
|
|
2237
2084
|
],
|
|
2238
2085
|
"flags": {
|
|
2239
2086
|
"json": {
|
|
@@ -2255,7 +2102,7 @@
|
|
|
2255
2102
|
},
|
|
2256
2103
|
"hasDynamicHelp": false,
|
|
2257
2104
|
"hiddenAliases": [],
|
|
2258
|
-
"id": "
|
|
2105
|
+
"id": "errors:promote",
|
|
2259
2106
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2260
2107
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2261
2108
|
"pluginType": "core",
|
|
@@ -2265,17 +2112,22 @@
|
|
|
2265
2112
|
"relativePath": [
|
|
2266
2113
|
"dist",
|
|
2267
2114
|
"commands",
|
|
2268
|
-
"
|
|
2269
|
-
"
|
|
2115
|
+
"errors",
|
|
2116
|
+
"promote.js"
|
|
2270
2117
|
]
|
|
2271
2118
|
},
|
|
2272
|
-
"
|
|
2119
|
+
"errors:reopen": {
|
|
2273
2120
|
"aliases": [],
|
|
2274
|
-
"args": {
|
|
2275
|
-
|
|
2121
|
+
"args": {
|
|
2122
|
+
"id": {
|
|
2123
|
+
"description": "Error group id",
|
|
2124
|
+
"name": "id",
|
|
2125
|
+
"required": true
|
|
2126
|
+
}
|
|
2127
|
+
},
|
|
2128
|
+
"description": "Reopen a resolved error group",
|
|
2276
2129
|
"examples": [
|
|
2277
|
-
"<%= config.bin %>
|
|
2278
|
-
"<%= config.bin %> milestones create -p acme-api --code v1 --label \"Version 1.0\" --due-on 2026-12-31"
|
|
2130
|
+
"<%= config.bin %> errors reopen <group-id> --project acme-api"
|
|
2279
2131
|
],
|
|
2280
2132
|
"flags": {
|
|
2281
2133
|
"json": {
|
|
@@ -2293,47 +2145,11 @@
|
|
|
2293
2145
|
"hasDynamicHelp": false,
|
|
2294
2146
|
"multiple": false,
|
|
2295
2147
|
"type": "option"
|
|
2296
|
-
},
|
|
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",
|
|
2323
|
-
"hasDynamicHelp": false,
|
|
2324
|
-
"multiple": false,
|
|
2325
|
-
"type": "option"
|
|
2326
|
-
},
|
|
2327
|
-
"active": {
|
|
2328
|
-
"description": "Whether the milestone is active",
|
|
2329
|
-
"name": "active",
|
|
2330
|
-
"allowNo": true,
|
|
2331
|
-
"type": "boolean"
|
|
2332
2148
|
}
|
|
2333
2149
|
},
|
|
2334
2150
|
"hasDynamicHelp": false,
|
|
2335
2151
|
"hiddenAliases": [],
|
|
2336
|
-
"id": "
|
|
2152
|
+
"id": "errors:reopen",
|
|
2337
2153
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2338
2154
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2339
2155
|
"pluginType": "core",
|
|
@@ -2343,22 +2159,22 @@
|
|
|
2343
2159
|
"relativePath": [
|
|
2344
2160
|
"dist",
|
|
2345
2161
|
"commands",
|
|
2346
|
-
"
|
|
2347
|
-
"
|
|
2162
|
+
"errors",
|
|
2163
|
+
"reopen.js"
|
|
2348
2164
|
]
|
|
2349
2165
|
},
|
|
2350
|
-
"
|
|
2166
|
+
"errors:resolve": {
|
|
2351
2167
|
"aliases": [],
|
|
2352
2168
|
"args": {
|
|
2353
2169
|
"id": {
|
|
2354
|
-
"description": "
|
|
2170
|
+
"description": "Error group id",
|
|
2355
2171
|
"name": "id",
|
|
2356
2172
|
"required": true
|
|
2357
2173
|
}
|
|
2358
2174
|
},
|
|
2359
|
-
"description": "
|
|
2175
|
+
"description": "Mark an error group as resolved",
|
|
2360
2176
|
"examples": [
|
|
2361
|
-
"<%= config.bin %>
|
|
2177
|
+
"<%= config.bin %> errors resolve <group-id> --project acme-api"
|
|
2362
2178
|
],
|
|
2363
2179
|
"flags": {
|
|
2364
2180
|
"json": {
|
|
@@ -2376,17 +2192,11 @@
|
|
|
2376
2192
|
"hasDynamicHelp": false,
|
|
2377
2193
|
"multiple": false,
|
|
2378
2194
|
"type": "option"
|
|
2379
|
-
},
|
|
2380
|
-
"confirm": {
|
|
2381
|
-
"description": "Required: confirm the deletion",
|
|
2382
|
-
"name": "confirm",
|
|
2383
|
-
"allowNo": false,
|
|
2384
|
-
"type": "boolean"
|
|
2385
2195
|
}
|
|
2386
2196
|
},
|
|
2387
2197
|
"hasDynamicHelp": false,
|
|
2388
2198
|
"hiddenAliases": [],
|
|
2389
|
-
"id": "
|
|
2199
|
+
"id": "errors:resolve",
|
|
2390
2200
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2391
2201
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2392
2202
|
"pluginType": "core",
|
|
@@ -2396,17 +2206,22 @@
|
|
|
2396
2206
|
"relativePath": [
|
|
2397
2207
|
"dist",
|
|
2398
2208
|
"commands",
|
|
2399
|
-
"
|
|
2400
|
-
"
|
|
2209
|
+
"errors",
|
|
2210
|
+
"resolve.js"
|
|
2401
2211
|
]
|
|
2402
2212
|
},
|
|
2403
|
-
"
|
|
2213
|
+
"errors:show": {
|
|
2404
2214
|
"aliases": [],
|
|
2405
|
-
"args": {
|
|
2406
|
-
|
|
2215
|
+
"args": {
|
|
2216
|
+
"id": {
|
|
2217
|
+
"description": "Error group id",
|
|
2218
|
+
"name": "id",
|
|
2219
|
+
"required": true
|
|
2220
|
+
}
|
|
2221
|
+
},
|
|
2222
|
+
"description": "Show a single error group",
|
|
2407
2223
|
"examples": [
|
|
2408
|
-
"<%= config.bin %>
|
|
2409
|
-
"<%= config.bin %> milestones list -p acme-api --json"
|
|
2224
|
+
"<%= config.bin %> errors show <group-id> --project acme-api"
|
|
2410
2225
|
],
|
|
2411
2226
|
"flags": {
|
|
2412
2227
|
"json": {
|
|
@@ -2424,19 +2239,11 @@
|
|
|
2424
2239
|
"hasDynamicHelp": false,
|
|
2425
2240
|
"multiple": false,
|
|
2426
2241
|
"type": "option"
|
|
2427
|
-
},
|
|
2428
|
-
"page": {
|
|
2429
|
-
"description": "Page number",
|
|
2430
|
-
"name": "page",
|
|
2431
|
-
"default": 1,
|
|
2432
|
-
"hasDynamicHelp": false,
|
|
2433
|
-
"multiple": false,
|
|
2434
|
-
"type": "option"
|
|
2435
2242
|
}
|
|
2436
2243
|
},
|
|
2437
2244
|
"hasDynamicHelp": false,
|
|
2438
2245
|
"hiddenAliases": [],
|
|
2439
|
-
"id": "
|
|
2246
|
+
"id": "errors:show",
|
|
2440
2247
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2441
2248
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2442
2249
|
"pluginType": "core",
|
|
@@ -2446,22 +2253,22 @@
|
|
|
2446
2253
|
"relativePath": [
|
|
2447
2254
|
"dist",
|
|
2448
2255
|
"commands",
|
|
2449
|
-
"
|
|
2450
|
-
"
|
|
2256
|
+
"errors",
|
|
2257
|
+
"show.js"
|
|
2451
2258
|
]
|
|
2452
2259
|
},
|
|
2453
|
-
"
|
|
2260
|
+
"errors:unmute": {
|
|
2454
2261
|
"aliases": [],
|
|
2455
2262
|
"args": {
|
|
2456
2263
|
"id": {
|
|
2457
|
-
"description": "
|
|
2264
|
+
"description": "Error group id",
|
|
2458
2265
|
"name": "id",
|
|
2459
2266
|
"required": true
|
|
2460
2267
|
}
|
|
2461
2268
|
},
|
|
2462
|
-
"description": "
|
|
2269
|
+
"description": "Unmute an error group",
|
|
2463
2270
|
"examples": [
|
|
2464
|
-
"<%= config.bin %>
|
|
2271
|
+
"<%= config.bin %> errors unmute <group-id> --project acme-api"
|
|
2465
2272
|
],
|
|
2466
2273
|
"flags": {
|
|
2467
2274
|
"json": {
|
|
@@ -2483,7 +2290,7 @@
|
|
|
2483
2290
|
},
|
|
2484
2291
|
"hasDynamicHelp": false,
|
|
2485
2292
|
"hiddenAliases": [],
|
|
2486
|
-
"id": "
|
|
2293
|
+
"id": "errors:unmute",
|
|
2487
2294
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2488
2295
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2489
2296
|
"pluginType": "core",
|
|
@@ -2493,23 +2300,18 @@
|
|
|
2493
2300
|
"relativePath": [
|
|
2494
2301
|
"dist",
|
|
2495
2302
|
"commands",
|
|
2496
|
-
"
|
|
2497
|
-
"
|
|
2303
|
+
"errors",
|
|
2304
|
+
"unmute.js"
|
|
2498
2305
|
]
|
|
2499
2306
|
},
|
|
2500
|
-
"
|
|
2307
|
+
"logs:list": {
|
|
2501
2308
|
"aliases": [],
|
|
2502
|
-
"args": {
|
|
2503
|
-
|
|
2504
|
-
"description": "Milestone id",
|
|
2505
|
-
"name": "id",
|
|
2506
|
-
"required": true
|
|
2507
|
-
}
|
|
2508
|
-
},
|
|
2509
|
-
"description": "Update a milestone (send only the fields you want to change)",
|
|
2309
|
+
"args": {},
|
|
2310
|
+
"description": "List structured log entries (cross-app stream)",
|
|
2510
2311
|
"examples": [
|
|
2511
|
-
"<%= config.bin %>
|
|
2512
|
-
"<%= config.bin %>
|
|
2312
|
+
"<%= config.bin %> logs list",
|
|
2313
|
+
"<%= config.bin %> logs list --project acme-api --level error",
|
|
2314
|
+
"<%= config.bin %> logs list --trace-id 7f3c… --json"
|
|
2513
2315
|
],
|
|
2514
2316
|
"flags": {
|
|
2515
2317
|
"json": {
|
|
@@ -2521,51 +2323,45 @@
|
|
|
2521
2323
|
},
|
|
2522
2324
|
"project": {
|
|
2523
2325
|
"char": "p",
|
|
2524
|
-
"description": "
|
|
2326
|
+
"description": "Filter by project id (UUID) or key",
|
|
2525
2327
|
"name": "project",
|
|
2526
|
-
"required": true,
|
|
2527
2328
|
"hasDynamicHelp": false,
|
|
2528
2329
|
"multiple": false,
|
|
2529
2330
|
"type": "option"
|
|
2530
2331
|
},
|
|
2531
|
-
"
|
|
2532
|
-
"description": "
|
|
2533
|
-
"name": "
|
|
2332
|
+
"level": {
|
|
2333
|
+
"description": "Filter by level (debug, info, warning, error, fatal)",
|
|
2334
|
+
"name": "level",
|
|
2534
2335
|
"hasDynamicHelp": false,
|
|
2535
2336
|
"multiple": false,
|
|
2536
2337
|
"type": "option"
|
|
2537
2338
|
},
|
|
2538
|
-
"
|
|
2539
|
-
"description": "
|
|
2540
|
-
"name": "
|
|
2339
|
+
"trace-id": {
|
|
2340
|
+
"description": "Filter by trace id (correlate one request)",
|
|
2341
|
+
"name": "trace-id",
|
|
2541
2342
|
"hasDynamicHelp": false,
|
|
2542
2343
|
"multiple": false,
|
|
2543
2344
|
"type": "option"
|
|
2544
2345
|
},
|
|
2545
|
-
"
|
|
2546
|
-
"description": "
|
|
2547
|
-
"name": "
|
|
2346
|
+
"environment": {
|
|
2347
|
+
"description": "Filter by environment (e.g. production)",
|
|
2348
|
+
"name": "environment",
|
|
2548
2349
|
"hasDynamicHelp": false,
|
|
2549
2350
|
"multiple": false,
|
|
2550
2351
|
"type": "option"
|
|
2551
2352
|
},
|
|
2552
|
-
"
|
|
2553
|
-
"description": "
|
|
2554
|
-
"name": "
|
|
2353
|
+
"page": {
|
|
2354
|
+
"description": "Page number",
|
|
2355
|
+
"name": "page",
|
|
2356
|
+
"default": 1,
|
|
2555
2357
|
"hasDynamicHelp": false,
|
|
2556
2358
|
"multiple": false,
|
|
2557
2359
|
"type": "option"
|
|
2558
|
-
},
|
|
2559
|
-
"active": {
|
|
2560
|
-
"description": "Whether the milestone is active",
|
|
2561
|
-
"name": "active",
|
|
2562
|
-
"allowNo": true,
|
|
2563
|
-
"type": "boolean"
|
|
2564
2360
|
}
|
|
2565
2361
|
},
|
|
2566
2362
|
"hasDynamicHelp": false,
|
|
2567
2363
|
"hiddenAliases": [],
|
|
2568
|
-
"id": "
|
|
2364
|
+
"id": "logs:list",
|
|
2569
2365
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2570
2366
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2571
2367
|
"pluginType": "core",
|
|
@@ -2575,17 +2371,17 @@
|
|
|
2575
2371
|
"relativePath": [
|
|
2576
2372
|
"dist",
|
|
2577
2373
|
"commands",
|
|
2578
|
-
"
|
|
2579
|
-
"
|
|
2374
|
+
"logs",
|
|
2375
|
+
"list.js"
|
|
2580
2376
|
]
|
|
2581
2377
|
},
|
|
2582
|
-
"
|
|
2378
|
+
"members:list": {
|
|
2583
2379
|
"aliases": [],
|
|
2584
2380
|
"args": {},
|
|
2585
|
-
"description": "
|
|
2381
|
+
"description": "List the members of your organization (to resolve emails to account ids)",
|
|
2586
2382
|
"examples": [
|
|
2587
|
-
"<%= config.bin %>
|
|
2588
|
-
"<%= config.bin %>
|
|
2383
|
+
"<%= config.bin %> members list",
|
|
2384
|
+
"<%= config.bin %> members list --json"
|
|
2589
2385
|
],
|
|
2590
2386
|
"flags": {
|
|
2591
2387
|
"json": {
|
|
@@ -2595,68 +2391,10 @@
|
|
|
2595
2391
|
"allowNo": false,
|
|
2596
2392
|
"type": "boolean"
|
|
2597
2393
|
},
|
|
2598
|
-
"
|
|
2599
|
-
"
|
|
2600
|
-
"
|
|
2601
|
-
"
|
|
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",
|
|
2394
|
+
"page": {
|
|
2395
|
+
"description": "Page number",
|
|
2396
|
+
"name": "page",
|
|
2397
|
+
"default": 1,
|
|
2660
2398
|
"hasDynamicHelp": false,
|
|
2661
2399
|
"multiple": false,
|
|
2662
2400
|
"type": "option"
|
|
@@ -2664,7 +2402,7 @@
|
|
|
2664
2402
|
},
|
|
2665
2403
|
"hasDynamicHelp": false,
|
|
2666
2404
|
"hiddenAliases": [],
|
|
2667
|
-
"id": "
|
|
2405
|
+
"id": "members:list",
|
|
2668
2406
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2669
2407
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2670
2408
|
"pluginType": "core",
|
|
@@ -2674,22 +2412,24 @@
|
|
|
2674
2412
|
"relativePath": [
|
|
2675
2413
|
"dist",
|
|
2676
2414
|
"commands",
|
|
2677
|
-
"
|
|
2678
|
-
"
|
|
2415
|
+
"members",
|
|
2416
|
+
"list.js"
|
|
2679
2417
|
]
|
|
2680
2418
|
},
|
|
2681
|
-
"
|
|
2419
|
+
"members:set-access": {
|
|
2682
2420
|
"aliases": [],
|
|
2683
2421
|
"args": {
|
|
2684
2422
|
"id": {
|
|
2685
|
-
"description": "
|
|
2423
|
+
"description": "Membership id",
|
|
2686
2424
|
"name": "id",
|
|
2687
2425
|
"required": true
|
|
2688
2426
|
}
|
|
2689
2427
|
},
|
|
2690
|
-
"description": "
|
|
2428
|
+
"description": "Set a member's group and project access (replaces the current set; omit a flag to clear it)",
|
|
2691
2429
|
"examples": [
|
|
2692
|
-
"<%= config.bin %>
|
|
2430
|
+
"<%= config.bin %> members set-access <membership-id> --project acme-api --project acme-web",
|
|
2431
|
+
"<%= config.bin %> members set-access <membership-id> --group DriverOne",
|
|
2432
|
+
"<%= config.bin %> members set-access <membership-id>"
|
|
2693
2433
|
],
|
|
2694
2434
|
"flags": {
|
|
2695
2435
|
"json": {
|
|
@@ -2699,25 +2439,26 @@
|
|
|
2699
2439
|
"allowNo": false,
|
|
2700
2440
|
"type": "boolean"
|
|
2701
2441
|
},
|
|
2442
|
+
"group": {
|
|
2443
|
+
"description": "Group id or name to grant access to (repeatable; omit to clear group access)",
|
|
2444
|
+
"name": "group",
|
|
2445
|
+
"default": [],
|
|
2446
|
+
"hasDynamicHelp": false,
|
|
2447
|
+
"multiple": true,
|
|
2448
|
+
"type": "option"
|
|
2449
|
+
},
|
|
2702
2450
|
"project": {
|
|
2703
|
-
"
|
|
2704
|
-
"description": "Project id (UUID) or key",
|
|
2451
|
+
"description": "Project id or key to grant access to (repeatable; omit to clear project access)",
|
|
2705
2452
|
"name": "project",
|
|
2706
|
-
"
|
|
2453
|
+
"default": [],
|
|
2707
2454
|
"hasDynamicHelp": false,
|
|
2708
|
-
"multiple":
|
|
2455
|
+
"multiple": true,
|
|
2709
2456
|
"type": "option"
|
|
2710
|
-
},
|
|
2711
|
-
"confirm": {
|
|
2712
|
-
"description": "Required: confirm the deletion",
|
|
2713
|
-
"name": "confirm",
|
|
2714
|
-
"allowNo": false,
|
|
2715
|
-
"type": "boolean"
|
|
2716
2457
|
}
|
|
2717
2458
|
},
|
|
2718
2459
|
"hasDynamicHelp": false,
|
|
2719
2460
|
"hiddenAliases": [],
|
|
2720
|
-
"id": "
|
|
2461
|
+
"id": "members:set-access",
|
|
2721
2462
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2722
2463
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2723
2464
|
"pluginType": "core",
|
|
@@ -2727,17 +2468,23 @@
|
|
|
2727
2468
|
"relativePath": [
|
|
2728
2469
|
"dist",
|
|
2729
2470
|
"commands",
|
|
2730
|
-
"
|
|
2731
|
-
"
|
|
2471
|
+
"members",
|
|
2472
|
+
"set-access.js"
|
|
2732
2473
|
]
|
|
2733
2474
|
},
|
|
2734
|
-
"
|
|
2475
|
+
"members:set-role": {
|
|
2735
2476
|
"aliases": [],
|
|
2736
|
-
"args": {
|
|
2737
|
-
|
|
2477
|
+
"args": {
|
|
2478
|
+
"id": {
|
|
2479
|
+
"description": "Membership id",
|
|
2480
|
+
"name": "id",
|
|
2481
|
+
"required": true
|
|
2482
|
+
}
|
|
2483
|
+
},
|
|
2484
|
+
"description": "Change a member's organization role",
|
|
2738
2485
|
"examples": [
|
|
2739
|
-
"<%= config.bin %>
|
|
2740
|
-
"<%= config.bin %>
|
|
2486
|
+
"<%= config.bin %> members set-role <membership-id> --role admin",
|
|
2487
|
+
"<%= config.bin %> members set-role <membership-id> --role customer"
|
|
2741
2488
|
],
|
|
2742
2489
|
"flags": {
|
|
2743
2490
|
"json": {
|
|
@@ -2747,27 +2494,24 @@
|
|
|
2747
2494
|
"allowNo": false,
|
|
2748
2495
|
"type": "boolean"
|
|
2749
2496
|
},
|
|
2750
|
-
"
|
|
2751
|
-
"
|
|
2752
|
-
"
|
|
2753
|
-
"name": "project",
|
|
2497
|
+
"role": {
|
|
2498
|
+
"description": "Organization role",
|
|
2499
|
+
"name": "role",
|
|
2754
2500
|
"required": true,
|
|
2755
2501
|
"hasDynamicHelp": false,
|
|
2756
2502
|
"multiple": false,
|
|
2757
|
-
"
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
"hasDynamicHelp": false,
|
|
2764
|
-
"multiple": false,
|
|
2503
|
+
"options": [
|
|
2504
|
+
"member",
|
|
2505
|
+
"admin",
|
|
2506
|
+
"owner",
|
|
2507
|
+
"customer"
|
|
2508
|
+
],
|
|
2765
2509
|
"type": "option"
|
|
2766
2510
|
}
|
|
2767
2511
|
},
|
|
2768
2512
|
"hasDynamicHelp": false,
|
|
2769
2513
|
"hiddenAliases": [],
|
|
2770
|
-
"id": "
|
|
2514
|
+
"id": "members:set-role",
|
|
2771
2515
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2772
2516
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2773
2517
|
"pluginType": "core",
|
|
@@ -2777,22 +2521,17 @@
|
|
|
2777
2521
|
"relativePath": [
|
|
2778
2522
|
"dist",
|
|
2779
2523
|
"commands",
|
|
2780
|
-
"
|
|
2781
|
-
"
|
|
2524
|
+
"members",
|
|
2525
|
+
"set-role.js"
|
|
2782
2526
|
]
|
|
2783
2527
|
},
|
|
2784
|
-
"
|
|
2528
|
+
"metrics:list": {
|
|
2785
2529
|
"aliases": [],
|
|
2786
|
-
"args": {
|
|
2787
|
-
|
|
2788
|
-
"description": "Monitor id",
|
|
2789
|
-
"name": "id",
|
|
2790
|
-
"required": true
|
|
2791
|
-
}
|
|
2792
|
-
},
|
|
2793
|
-
"description": "Pause an uptime monitor (stops scheduling checks)",
|
|
2530
|
+
"args": {},
|
|
2531
|
+
"description": "List performance metric groups (slow queries/methods) for a project",
|
|
2794
2532
|
"examples": [
|
|
2795
|
-
"<%= config.bin %>
|
|
2533
|
+
"<%= config.bin %> metrics list --project acme-api",
|
|
2534
|
+
"<%= config.bin %> metrics list -p acme-api --kind sql --json"
|
|
2796
2535
|
],
|
|
2797
2536
|
"flags": {
|
|
2798
2537
|
"json": {
|
|
@@ -2810,11 +2549,26 @@
|
|
|
2810
2549
|
"hasDynamicHelp": false,
|
|
2811
2550
|
"multiple": false,
|
|
2812
2551
|
"type": "option"
|
|
2552
|
+
},
|
|
2553
|
+
"page": {
|
|
2554
|
+
"description": "Page number",
|
|
2555
|
+
"name": "page",
|
|
2556
|
+
"default": 1,
|
|
2557
|
+
"hasDynamicHelp": false,
|
|
2558
|
+
"multiple": false,
|
|
2559
|
+
"type": "option"
|
|
2560
|
+
},
|
|
2561
|
+
"kind": {
|
|
2562
|
+
"description": "Filter by metric kind (e.g. sql, method)",
|
|
2563
|
+
"name": "kind",
|
|
2564
|
+
"hasDynamicHelp": false,
|
|
2565
|
+
"multiple": false,
|
|
2566
|
+
"type": "option"
|
|
2813
2567
|
}
|
|
2814
2568
|
},
|
|
2815
2569
|
"hasDynamicHelp": false,
|
|
2816
2570
|
"hiddenAliases": [],
|
|
2817
|
-
"id": "
|
|
2571
|
+
"id": "metrics:list",
|
|
2818
2572
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2819
2573
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2820
2574
|
"pluginType": "core",
|
|
@@ -2824,22 +2578,22 @@
|
|
|
2824
2578
|
"relativePath": [
|
|
2825
2579
|
"dist",
|
|
2826
2580
|
"commands",
|
|
2827
|
-
"
|
|
2828
|
-
"
|
|
2581
|
+
"metrics",
|
|
2582
|
+
"list.js"
|
|
2829
2583
|
]
|
|
2830
2584
|
},
|
|
2831
|
-
"
|
|
2585
|
+
"metrics:promote": {
|
|
2832
2586
|
"aliases": [],
|
|
2833
2587
|
"args": {
|
|
2834
2588
|
"id": {
|
|
2835
|
-
"description": "
|
|
2589
|
+
"description": "Metric group id",
|
|
2836
2590
|
"name": "id",
|
|
2837
2591
|
"required": true
|
|
2838
2592
|
}
|
|
2839
2593
|
},
|
|
2840
|
-
"description": "
|
|
2594
|
+
"description": "Promote a metric group (slow query/method) to a ticket",
|
|
2841
2595
|
"examples": [
|
|
2842
|
-
"<%= config.bin %>
|
|
2596
|
+
"<%= config.bin %> metrics promote <group-id> --project acme-api"
|
|
2843
2597
|
],
|
|
2844
2598
|
"flags": {
|
|
2845
2599
|
"json": {
|
|
@@ -2861,7 +2615,7 @@
|
|
|
2861
2615
|
},
|
|
2862
2616
|
"hasDynamicHelp": false,
|
|
2863
2617
|
"hiddenAliases": [],
|
|
2864
|
-
"id": "
|
|
2618
|
+
"id": "metrics:promote",
|
|
2865
2619
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2866
2620
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2867
2621
|
"pluginType": "core",
|
|
@@ -2871,22 +2625,22 @@
|
|
|
2871
2625
|
"relativePath": [
|
|
2872
2626
|
"dist",
|
|
2873
2627
|
"commands",
|
|
2874
|
-
"
|
|
2875
|
-
"
|
|
2628
|
+
"metrics",
|
|
2629
|
+
"promote.js"
|
|
2876
2630
|
]
|
|
2877
2631
|
},
|
|
2878
|
-
"
|
|
2632
|
+
"metrics:show": {
|
|
2879
2633
|
"aliases": [],
|
|
2880
2634
|
"args": {
|
|
2881
2635
|
"id": {
|
|
2882
|
-
"description": "
|
|
2636
|
+
"description": "Metric group id",
|
|
2883
2637
|
"name": "id",
|
|
2884
2638
|
"required": true
|
|
2885
2639
|
}
|
|
2886
2640
|
},
|
|
2887
|
-
"description": "Show a single
|
|
2641
|
+
"description": "Show a single metric group",
|
|
2888
2642
|
"examples": [
|
|
2889
|
-
"<%= config.bin %>
|
|
2643
|
+
"<%= config.bin %> metrics show <group-id> --project acme-api"
|
|
2890
2644
|
],
|
|
2891
2645
|
"flags": {
|
|
2892
2646
|
"json": {
|
|
@@ -2908,7 +2662,7 @@
|
|
|
2908
2662
|
},
|
|
2909
2663
|
"hasDynamicHelp": false,
|
|
2910
2664
|
"hiddenAliases": [],
|
|
2911
|
-
"id": "
|
|
2665
|
+
"id": "metrics:show",
|
|
2912
2666
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2913
2667
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2914
2668
|
"pluginType": "core",
|
|
@@ -2918,23 +2672,17 @@
|
|
|
2918
2672
|
"relativePath": [
|
|
2919
2673
|
"dist",
|
|
2920
2674
|
"commands",
|
|
2921
|
-
"
|
|
2675
|
+
"metrics",
|
|
2922
2676
|
"show.js"
|
|
2923
2677
|
]
|
|
2924
2678
|
},
|
|
2925
|
-
"
|
|
2679
|
+
"milestones:create": {
|
|
2926
2680
|
"aliases": [],
|
|
2927
|
-
"args": {
|
|
2928
|
-
|
|
2929
|
-
"description": "Monitor id",
|
|
2930
|
-
"name": "id",
|
|
2931
|
-
"required": true
|
|
2932
|
-
}
|
|
2933
|
-
},
|
|
2934
|
-
"description": "Update an uptime monitor (URL, method, interval, expected status, timeout)",
|
|
2681
|
+
"args": {},
|
|
2682
|
+
"description": "Create a milestone for a project",
|
|
2935
2683
|
"examples": [
|
|
2936
|
-
"<%= config.bin %>
|
|
2937
|
-
"<%= config.bin %>
|
|
2684
|
+
"<%= config.bin %> milestones create --project acme-api --code v1 --label \"Version 1.0\"",
|
|
2685
|
+
"<%= config.bin %> milestones create -p acme-api --code v1 --label \"Version 1.0\" --due-on 2026-12-31"
|
|
2938
2686
|
],
|
|
2939
2687
|
"flags": {
|
|
2940
2688
|
"json": {
|
|
@@ -2953,59 +2701,46 @@
|
|
|
2953
2701
|
"multiple": false,
|
|
2954
2702
|
"type": "option"
|
|
2955
2703
|
},
|
|
2956
|
-
"
|
|
2957
|
-
"description": "
|
|
2958
|
-
"name": "
|
|
2959
|
-
"
|
|
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",
|
|
2704
|
+
"code": {
|
|
2705
|
+
"description": "Milestone code (short identifier)",
|
|
2706
|
+
"name": "code",
|
|
2707
|
+
"required": true,
|
|
2973
2708
|
"hasDynamicHelp": false,
|
|
2974
2709
|
"multiple": false,
|
|
2975
2710
|
"type": "option"
|
|
2976
2711
|
},
|
|
2977
|
-
"
|
|
2978
|
-
"description": "
|
|
2979
|
-
"name": "
|
|
2712
|
+
"label": {
|
|
2713
|
+
"description": "Human-readable label",
|
|
2714
|
+
"name": "label",
|
|
2715
|
+
"required": true,
|
|
2980
2716
|
"hasDynamicHelp": false,
|
|
2981
2717
|
"multiple": false,
|
|
2982
2718
|
"type": "option"
|
|
2983
2719
|
},
|
|
2984
|
-
"
|
|
2985
|
-
"description": "
|
|
2986
|
-
"name": "
|
|
2720
|
+
"color": {
|
|
2721
|
+
"description": "Color label",
|
|
2722
|
+
"name": "color",
|
|
2987
2723
|
"hasDynamicHelp": false,
|
|
2988
2724
|
"multiple": false,
|
|
2989
2725
|
"type": "option"
|
|
2990
2726
|
},
|
|
2991
|
-
"
|
|
2992
|
-
"description": "
|
|
2993
|
-
"name": "
|
|
2727
|
+
"due-on": {
|
|
2728
|
+
"description": "Due date (YYYY-MM-DD)",
|
|
2729
|
+
"name": "due-on",
|
|
2994
2730
|
"hasDynamicHelp": false,
|
|
2995
2731
|
"multiple": false,
|
|
2996
2732
|
"type": "option"
|
|
2997
2733
|
},
|
|
2998
|
-
"
|
|
2999
|
-
"description": "
|
|
3000
|
-
"name": "
|
|
3001
|
-
"
|
|
3002
|
-
"
|
|
3003
|
-
"type": "option"
|
|
2734
|
+
"active": {
|
|
2735
|
+
"description": "Whether the milestone is active",
|
|
2736
|
+
"name": "active",
|
|
2737
|
+
"allowNo": true,
|
|
2738
|
+
"type": "boolean"
|
|
3004
2739
|
}
|
|
3005
2740
|
},
|
|
3006
2741
|
"hasDynamicHelp": false,
|
|
3007
2742
|
"hiddenAliases": [],
|
|
3008
|
-
"id": "
|
|
2743
|
+
"id": "milestones:create",
|
|
3009
2744
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3010
2745
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3011
2746
|
"pluginType": "core",
|
|
@@ -3015,18 +2750,250 @@
|
|
|
3015
2750
|
"relativePath": [
|
|
3016
2751
|
"dist",
|
|
3017
2752
|
"commands",
|
|
3018
|
-
"
|
|
3019
|
-
"
|
|
2753
|
+
"milestones",
|
|
2754
|
+
"create.js"
|
|
3020
2755
|
]
|
|
3021
2756
|
},
|
|
3022
|
-
"
|
|
2757
|
+
"milestones:delete": {
|
|
3023
2758
|
"aliases": [],
|
|
3024
|
-
"args": {
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
2759
|
+
"args": {
|
|
2760
|
+
"id": {
|
|
2761
|
+
"description": "Milestone id",
|
|
2762
|
+
"name": "id",
|
|
2763
|
+
"required": true
|
|
2764
|
+
}
|
|
2765
|
+
},
|
|
2766
|
+
"description": "Delete a milestone (irreversible)",
|
|
2767
|
+
"examples": [
|
|
2768
|
+
"<%= config.bin %> milestones delete <milestone-id> --project acme-api --confirm"
|
|
2769
|
+
],
|
|
2770
|
+
"flags": {
|
|
2771
|
+
"json": {
|
|
2772
|
+
"description": "Format output as json.",
|
|
2773
|
+
"helpGroup": "GLOBAL",
|
|
2774
|
+
"name": "json",
|
|
2775
|
+
"allowNo": false,
|
|
2776
|
+
"type": "boolean"
|
|
2777
|
+
},
|
|
2778
|
+
"project": {
|
|
2779
|
+
"char": "p",
|
|
2780
|
+
"description": "Project id (UUID) or key",
|
|
2781
|
+
"name": "project",
|
|
2782
|
+
"required": true,
|
|
2783
|
+
"hasDynamicHelp": false,
|
|
2784
|
+
"multiple": false,
|
|
2785
|
+
"type": "option"
|
|
2786
|
+
},
|
|
2787
|
+
"confirm": {
|
|
2788
|
+
"description": "Required: confirm the deletion",
|
|
2789
|
+
"name": "confirm",
|
|
2790
|
+
"allowNo": false,
|
|
2791
|
+
"type": "boolean"
|
|
2792
|
+
}
|
|
2793
|
+
},
|
|
2794
|
+
"hasDynamicHelp": false,
|
|
2795
|
+
"hiddenAliases": [],
|
|
2796
|
+
"id": "milestones:delete",
|
|
2797
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2798
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2799
|
+
"pluginType": "core",
|
|
2800
|
+
"strict": true,
|
|
2801
|
+
"enableJsonFlag": true,
|
|
2802
|
+
"isESM": false,
|
|
2803
|
+
"relativePath": [
|
|
2804
|
+
"dist",
|
|
2805
|
+
"commands",
|
|
2806
|
+
"milestones",
|
|
2807
|
+
"delete.js"
|
|
2808
|
+
]
|
|
2809
|
+
},
|
|
2810
|
+
"milestones:list": {
|
|
2811
|
+
"aliases": [],
|
|
2812
|
+
"args": {},
|
|
2813
|
+
"description": "List the milestones for a project",
|
|
2814
|
+
"examples": [
|
|
2815
|
+
"<%= config.bin %> milestones list --project acme-api",
|
|
2816
|
+
"<%= config.bin %> milestones list -p acme-api --json"
|
|
2817
|
+
],
|
|
2818
|
+
"flags": {
|
|
2819
|
+
"json": {
|
|
2820
|
+
"description": "Format output as json.",
|
|
2821
|
+
"helpGroup": "GLOBAL",
|
|
2822
|
+
"name": "json",
|
|
2823
|
+
"allowNo": false,
|
|
2824
|
+
"type": "boolean"
|
|
2825
|
+
},
|
|
2826
|
+
"project": {
|
|
2827
|
+
"char": "p",
|
|
2828
|
+
"description": "Project id (UUID) or key",
|
|
2829
|
+
"name": "project",
|
|
2830
|
+
"required": true,
|
|
2831
|
+
"hasDynamicHelp": false,
|
|
2832
|
+
"multiple": false,
|
|
2833
|
+
"type": "option"
|
|
2834
|
+
},
|
|
2835
|
+
"page": {
|
|
2836
|
+
"description": "Page number",
|
|
2837
|
+
"name": "page",
|
|
2838
|
+
"default": 1,
|
|
2839
|
+
"hasDynamicHelp": false,
|
|
2840
|
+
"multiple": false,
|
|
2841
|
+
"type": "option"
|
|
2842
|
+
}
|
|
2843
|
+
},
|
|
2844
|
+
"hasDynamicHelp": false,
|
|
2845
|
+
"hiddenAliases": [],
|
|
2846
|
+
"id": "milestones:list",
|
|
2847
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2848
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2849
|
+
"pluginType": "core",
|
|
2850
|
+
"strict": true,
|
|
2851
|
+
"enableJsonFlag": true,
|
|
2852
|
+
"isESM": false,
|
|
2853
|
+
"relativePath": [
|
|
2854
|
+
"dist",
|
|
2855
|
+
"commands",
|
|
2856
|
+
"milestones",
|
|
2857
|
+
"list.js"
|
|
2858
|
+
]
|
|
2859
|
+
},
|
|
2860
|
+
"milestones:show": {
|
|
2861
|
+
"aliases": [],
|
|
2862
|
+
"args": {
|
|
2863
|
+
"id": {
|
|
2864
|
+
"description": "Milestone id",
|
|
2865
|
+
"name": "id",
|
|
2866
|
+
"required": true
|
|
2867
|
+
}
|
|
2868
|
+
},
|
|
2869
|
+
"description": "Show a single milestone",
|
|
2870
|
+
"examples": [
|
|
2871
|
+
"<%= config.bin %> milestones show <milestone-id> --project acme-api"
|
|
2872
|
+
],
|
|
2873
|
+
"flags": {
|
|
2874
|
+
"json": {
|
|
2875
|
+
"description": "Format output as json.",
|
|
2876
|
+
"helpGroup": "GLOBAL",
|
|
2877
|
+
"name": "json",
|
|
2878
|
+
"allowNo": false,
|
|
2879
|
+
"type": "boolean"
|
|
2880
|
+
},
|
|
2881
|
+
"project": {
|
|
2882
|
+
"char": "p",
|
|
2883
|
+
"description": "Project id (UUID) or key",
|
|
2884
|
+
"name": "project",
|
|
2885
|
+
"required": true,
|
|
2886
|
+
"hasDynamicHelp": false,
|
|
2887
|
+
"multiple": false,
|
|
2888
|
+
"type": "option"
|
|
2889
|
+
}
|
|
2890
|
+
},
|
|
2891
|
+
"hasDynamicHelp": false,
|
|
2892
|
+
"hiddenAliases": [],
|
|
2893
|
+
"id": "milestones:show",
|
|
2894
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2895
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2896
|
+
"pluginType": "core",
|
|
2897
|
+
"strict": true,
|
|
2898
|
+
"enableJsonFlag": true,
|
|
2899
|
+
"isESM": false,
|
|
2900
|
+
"relativePath": [
|
|
2901
|
+
"dist",
|
|
2902
|
+
"commands",
|
|
2903
|
+
"milestones",
|
|
2904
|
+
"show.js"
|
|
2905
|
+
]
|
|
2906
|
+
},
|
|
2907
|
+
"milestones:update": {
|
|
2908
|
+
"aliases": [],
|
|
2909
|
+
"args": {
|
|
2910
|
+
"id": {
|
|
2911
|
+
"description": "Milestone id",
|
|
2912
|
+
"name": "id",
|
|
2913
|
+
"required": true
|
|
2914
|
+
}
|
|
2915
|
+
},
|
|
2916
|
+
"description": "Update a milestone (send only the fields you want to change)",
|
|
2917
|
+
"examples": [
|
|
2918
|
+
"<%= config.bin %> milestones update <milestone-id> --project acme-api --label \"Version 1.1\"",
|
|
2919
|
+
"<%= config.bin %> milestones update <milestone-id> -p acme-api --due-on 2027-01-15 --no-active"
|
|
2920
|
+
],
|
|
2921
|
+
"flags": {
|
|
2922
|
+
"json": {
|
|
2923
|
+
"description": "Format output as json.",
|
|
2924
|
+
"helpGroup": "GLOBAL",
|
|
2925
|
+
"name": "json",
|
|
2926
|
+
"allowNo": false,
|
|
2927
|
+
"type": "boolean"
|
|
2928
|
+
},
|
|
2929
|
+
"project": {
|
|
2930
|
+
"char": "p",
|
|
2931
|
+
"description": "Project id (UUID) or key",
|
|
2932
|
+
"name": "project",
|
|
2933
|
+
"required": true,
|
|
2934
|
+
"hasDynamicHelp": false,
|
|
2935
|
+
"multiple": false,
|
|
2936
|
+
"type": "option"
|
|
2937
|
+
},
|
|
2938
|
+
"code": {
|
|
2939
|
+
"description": "Milestone code (short identifier)",
|
|
2940
|
+
"name": "code",
|
|
2941
|
+
"hasDynamicHelp": false,
|
|
2942
|
+
"multiple": false,
|
|
2943
|
+
"type": "option"
|
|
2944
|
+
},
|
|
2945
|
+
"label": {
|
|
2946
|
+
"description": "Human-readable label",
|
|
2947
|
+
"name": "label",
|
|
2948
|
+
"hasDynamicHelp": false,
|
|
2949
|
+
"multiple": false,
|
|
2950
|
+
"type": "option"
|
|
2951
|
+
},
|
|
2952
|
+
"color": {
|
|
2953
|
+
"description": "Color label",
|
|
2954
|
+
"name": "color",
|
|
2955
|
+
"hasDynamicHelp": false,
|
|
2956
|
+
"multiple": false,
|
|
2957
|
+
"type": "option"
|
|
2958
|
+
},
|
|
2959
|
+
"due-on": {
|
|
2960
|
+
"description": "Due date (YYYY-MM-DD)",
|
|
2961
|
+
"name": "due-on",
|
|
2962
|
+
"hasDynamicHelp": false,
|
|
2963
|
+
"multiple": false,
|
|
2964
|
+
"type": "option"
|
|
2965
|
+
},
|
|
2966
|
+
"active": {
|
|
2967
|
+
"description": "Whether the milestone is active",
|
|
2968
|
+
"name": "active",
|
|
2969
|
+
"allowNo": true,
|
|
2970
|
+
"type": "boolean"
|
|
2971
|
+
}
|
|
2972
|
+
},
|
|
2973
|
+
"hasDynamicHelp": false,
|
|
2974
|
+
"hiddenAliases": [],
|
|
2975
|
+
"id": "milestones:update",
|
|
2976
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2977
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2978
|
+
"pluginType": "core",
|
|
2979
|
+
"strict": true,
|
|
2980
|
+
"enableJsonFlag": true,
|
|
2981
|
+
"isESM": false,
|
|
2982
|
+
"relativePath": [
|
|
2983
|
+
"dist",
|
|
2984
|
+
"commands",
|
|
2985
|
+
"milestones",
|
|
2986
|
+
"update.js"
|
|
2987
|
+
]
|
|
2988
|
+
},
|
|
2989
|
+
"org:show": {
|
|
2990
|
+
"aliases": [],
|
|
2991
|
+
"args": {},
|
|
2992
|
+
"description": "Show your organization settings",
|
|
2993
|
+
"examples": [
|
|
2994
|
+
"<%= config.bin %> org show",
|
|
2995
|
+
"<%= config.bin %> org show --json"
|
|
2996
|
+
],
|
|
3030
2997
|
"flags": {
|
|
3031
2998
|
"json": {
|
|
3032
2999
|
"description": "Format output as json.",
|
|
@@ -3111,19 +3078,13 @@
|
|
|
3111
3078
|
"update.js"
|
|
3112
3079
|
]
|
|
3113
3080
|
},
|
|
3114
|
-
"
|
|
3081
|
+
"monitors:create": {
|
|
3115
3082
|
"aliases": [],
|
|
3116
|
-
"args": {
|
|
3117
|
-
|
|
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)",
|
|
3083
|
+
"args": {},
|
|
3084
|
+
"description": "Create an uptime monitor for a project (one per environment)",
|
|
3124
3085
|
"examples": [
|
|
3125
|
-
"<%= config.bin %>
|
|
3126
|
-
"<%= config.bin %>
|
|
3086
|
+
"<%= config.bin %> monitors create --project acme-api --url https://acme.example.com/up",
|
|
3087
|
+
"<%= config.bin %> monitors create -p acme-api --url https://acme.example.com/up --environment <env-id> --interval-seconds 60 --expected-status 200"
|
|
3127
3088
|
],
|
|
3128
3089
|
"flags": {
|
|
3129
3090
|
"json": {
|
|
@@ -3133,39 +3094,76 @@
|
|
|
3133
3094
|
"allowNo": false,
|
|
3134
3095
|
"type": "boolean"
|
|
3135
3096
|
},
|
|
3136
|
-
"
|
|
3137
|
-
"
|
|
3138
|
-
"
|
|
3097
|
+
"project": {
|
|
3098
|
+
"char": "p",
|
|
3099
|
+
"description": "Project id (UUID) or key",
|
|
3100
|
+
"name": "project",
|
|
3139
3101
|
"required": true,
|
|
3140
3102
|
"hasDynamicHelp": false,
|
|
3141
3103
|
"multiple": false,
|
|
3142
3104
|
"type": "option"
|
|
3143
3105
|
},
|
|
3144
|
-
"
|
|
3145
|
-
"description": "
|
|
3146
|
-
"name": "
|
|
3147
|
-
"
|
|
3106
|
+
"url": {
|
|
3107
|
+
"description": "URL to probe",
|
|
3108
|
+
"name": "url",
|
|
3109
|
+
"required": true,
|
|
3148
3110
|
"hasDynamicHelp": false,
|
|
3149
3111
|
"multiple": false,
|
|
3150
3112
|
"type": "option"
|
|
3151
3113
|
},
|
|
3152
|
-
"
|
|
3153
|
-
"description": "
|
|
3154
|
-
"name": "
|
|
3114
|
+
"environment": {
|
|
3115
|
+
"description": "Environment id (must be declared by the project)",
|
|
3116
|
+
"name": "environment",
|
|
3155
3117
|
"hasDynamicHelp": false,
|
|
3156
3118
|
"multiple": false,
|
|
3157
3119
|
"type": "option"
|
|
3158
3120
|
},
|
|
3159
|
-
"
|
|
3160
|
-
"description": "
|
|
3161
|
-
"name": "
|
|
3162
|
-
"
|
|
3163
|
-
"
|
|
3121
|
+
"http-method": {
|
|
3122
|
+
"description": "HTTP method (default GET)",
|
|
3123
|
+
"name": "http-method",
|
|
3124
|
+
"hasDynamicHelp": false,
|
|
3125
|
+
"multiple": false,
|
|
3126
|
+
"type": "option"
|
|
3127
|
+
},
|
|
3128
|
+
"interval-seconds": {
|
|
3129
|
+
"description": "Seconds between checks",
|
|
3130
|
+
"name": "interval-seconds",
|
|
3131
|
+
"hasDynamicHelp": false,
|
|
3132
|
+
"multiple": false,
|
|
3133
|
+
"type": "option"
|
|
3134
|
+
},
|
|
3135
|
+
"expected-status": {
|
|
3136
|
+
"description": "Expected HTTP status code",
|
|
3137
|
+
"name": "expected-status",
|
|
3138
|
+
"hasDynamicHelp": false,
|
|
3139
|
+
"multiple": false,
|
|
3140
|
+
"type": "option"
|
|
3141
|
+
},
|
|
3142
|
+
"timeout-seconds": {
|
|
3143
|
+
"description": "Request timeout in seconds",
|
|
3144
|
+
"name": "timeout-seconds",
|
|
3145
|
+
"hasDynamicHelp": false,
|
|
3146
|
+
"multiple": false,
|
|
3147
|
+
"type": "option"
|
|
3148
|
+
},
|
|
3149
|
+
"expected-body-keyword": {
|
|
3150
|
+
"description": "Keyword expected in the response body (check fails without it; not with HEAD)",
|
|
3151
|
+
"name": "expected-body-keyword",
|
|
3152
|
+
"hasDynamicHelp": false,
|
|
3153
|
+
"multiple": false,
|
|
3154
|
+
"type": "option"
|
|
3155
|
+
},
|
|
3156
|
+
"ssl-expiry-warn-days": {
|
|
3157
|
+
"description": "Alert when the TLS certificate has at most N days left (empty = off)",
|
|
3158
|
+
"name": "ssl-expiry-warn-days",
|
|
3159
|
+
"hasDynamicHelp": false,
|
|
3160
|
+
"multiple": false,
|
|
3161
|
+
"type": "option"
|
|
3164
3162
|
}
|
|
3165
3163
|
},
|
|
3166
3164
|
"hasDynamicHelp": false,
|
|
3167
3165
|
"hiddenAliases": [],
|
|
3168
|
-
"id": "
|
|
3166
|
+
"id": "monitors:create",
|
|
3169
3167
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3170
3168
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3171
3169
|
"pluginType": "core",
|
|
@@ -3175,22 +3173,22 @@
|
|
|
3175
3173
|
"relativePath": [
|
|
3176
3174
|
"dist",
|
|
3177
3175
|
"commands",
|
|
3178
|
-
"
|
|
3176
|
+
"monitors",
|
|
3179
3177
|
"create.js"
|
|
3180
3178
|
]
|
|
3181
3179
|
},
|
|
3182
|
-
"
|
|
3180
|
+
"monitors:delete": {
|
|
3183
3181
|
"aliases": [],
|
|
3184
3182
|
"args": {
|
|
3185
|
-
"
|
|
3186
|
-
"description": "
|
|
3187
|
-
"name": "
|
|
3183
|
+
"id": {
|
|
3184
|
+
"description": "Monitor id",
|
|
3185
|
+
"name": "id",
|
|
3188
3186
|
"required": true
|
|
3189
3187
|
}
|
|
3190
3188
|
},
|
|
3191
|
-
"description": "Delete
|
|
3189
|
+
"description": "Delete an uptime monitor (irreversible)",
|
|
3192
3190
|
"examples": [
|
|
3193
|
-
"<%= config.bin %>
|
|
3191
|
+
"<%= config.bin %> monitors delete <monitor-id> --project acme-api --confirm"
|
|
3194
3192
|
],
|
|
3195
3193
|
"flags": {
|
|
3196
3194
|
"json": {
|
|
@@ -3200,6 +3198,15 @@
|
|
|
3200
3198
|
"allowNo": false,
|
|
3201
3199
|
"type": "boolean"
|
|
3202
3200
|
},
|
|
3201
|
+
"project": {
|
|
3202
|
+
"char": "p",
|
|
3203
|
+
"description": "Project id (UUID) or key",
|
|
3204
|
+
"name": "project",
|
|
3205
|
+
"required": true,
|
|
3206
|
+
"hasDynamicHelp": false,
|
|
3207
|
+
"multiple": false,
|
|
3208
|
+
"type": "option"
|
|
3209
|
+
},
|
|
3203
3210
|
"confirm": {
|
|
3204
3211
|
"description": "Required: confirm the deletion",
|
|
3205
3212
|
"name": "confirm",
|
|
@@ -3209,7 +3216,7 @@
|
|
|
3209
3216
|
},
|
|
3210
3217
|
"hasDynamicHelp": false,
|
|
3211
3218
|
"hiddenAliases": [],
|
|
3212
|
-
"id": "
|
|
3219
|
+
"id": "monitors:delete",
|
|
3213
3220
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3214
3221
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3215
3222
|
"pluginType": "core",
|
|
@@ -3219,17 +3226,17 @@
|
|
|
3219
3226
|
"relativePath": [
|
|
3220
3227
|
"dist",
|
|
3221
3228
|
"commands",
|
|
3222
|
-
"
|
|
3229
|
+
"monitors",
|
|
3223
3230
|
"delete.js"
|
|
3224
3231
|
]
|
|
3225
3232
|
},
|
|
3226
|
-
"
|
|
3233
|
+
"monitors:list": {
|
|
3227
3234
|
"aliases": [],
|
|
3228
3235
|
"args": {},
|
|
3229
|
-
"description": "List the
|
|
3236
|
+
"description": "List the uptime monitors for a project",
|
|
3230
3237
|
"examples": [
|
|
3231
|
-
"<%= config.bin %>
|
|
3232
|
-
"<%= config.bin %>
|
|
3238
|
+
"<%= config.bin %> monitors list --project acme-api",
|
|
3239
|
+
"<%= config.bin %> monitors list -p acme-api --json"
|
|
3233
3240
|
],
|
|
3234
3241
|
"flags": {
|
|
3235
3242
|
"json": {
|
|
@@ -3239,6 +3246,15 @@
|
|
|
3239
3246
|
"allowNo": false,
|
|
3240
3247
|
"type": "boolean"
|
|
3241
3248
|
},
|
|
3249
|
+
"project": {
|
|
3250
|
+
"char": "p",
|
|
3251
|
+
"description": "Project id (UUID) or key",
|
|
3252
|
+
"name": "project",
|
|
3253
|
+
"required": true,
|
|
3254
|
+
"hasDynamicHelp": false,
|
|
3255
|
+
"multiple": false,
|
|
3256
|
+
"type": "option"
|
|
3257
|
+
},
|
|
3242
3258
|
"page": {
|
|
3243
3259
|
"description": "Page number",
|
|
3244
3260
|
"name": "page",
|
|
@@ -3250,7 +3266,7 @@
|
|
|
3250
3266
|
},
|
|
3251
3267
|
"hasDynamicHelp": false,
|
|
3252
3268
|
"hiddenAliases": [],
|
|
3253
|
-
"id": "
|
|
3269
|
+
"id": "monitors:list",
|
|
3254
3270
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3255
3271
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3256
3272
|
"pluginType": "core",
|
|
@@ -3260,24 +3276,164 @@
|
|
|
3260
3276
|
"relativePath": [
|
|
3261
3277
|
"dist",
|
|
3262
3278
|
"commands",
|
|
3263
|
-
"
|
|
3279
|
+
"monitors",
|
|
3264
3280
|
"list.js"
|
|
3265
3281
|
]
|
|
3266
3282
|
},
|
|
3267
|
-
"
|
|
3283
|
+
"monitors:pause": {
|
|
3284
|
+
"aliases": [],
|
|
3285
|
+
"args": {
|
|
3286
|
+
"id": {
|
|
3287
|
+
"description": "Monitor id",
|
|
3288
|
+
"name": "id",
|
|
3289
|
+
"required": true
|
|
3290
|
+
}
|
|
3291
|
+
},
|
|
3292
|
+
"description": "Pause an uptime monitor (stops scheduling checks)",
|
|
3293
|
+
"examples": [
|
|
3294
|
+
"<%= config.bin %> monitors pause <monitor-id> --project acme-api"
|
|
3295
|
+
],
|
|
3296
|
+
"flags": {
|
|
3297
|
+
"json": {
|
|
3298
|
+
"description": "Format output as json.",
|
|
3299
|
+
"helpGroup": "GLOBAL",
|
|
3300
|
+
"name": "json",
|
|
3301
|
+
"allowNo": false,
|
|
3302
|
+
"type": "boolean"
|
|
3303
|
+
},
|
|
3304
|
+
"project": {
|
|
3305
|
+
"char": "p",
|
|
3306
|
+
"description": "Project id (UUID) or key",
|
|
3307
|
+
"name": "project",
|
|
3308
|
+
"required": true,
|
|
3309
|
+
"hasDynamicHelp": false,
|
|
3310
|
+
"multiple": false,
|
|
3311
|
+
"type": "option"
|
|
3312
|
+
}
|
|
3313
|
+
},
|
|
3314
|
+
"hasDynamicHelp": false,
|
|
3315
|
+
"hiddenAliases": [],
|
|
3316
|
+
"id": "monitors:pause",
|
|
3317
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3318
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3319
|
+
"pluginType": "core",
|
|
3320
|
+
"strict": true,
|
|
3321
|
+
"enableJsonFlag": true,
|
|
3322
|
+
"isESM": false,
|
|
3323
|
+
"relativePath": [
|
|
3324
|
+
"dist",
|
|
3325
|
+
"commands",
|
|
3326
|
+
"monitors",
|
|
3327
|
+
"pause.js"
|
|
3328
|
+
]
|
|
3329
|
+
},
|
|
3330
|
+
"monitors:resume": {
|
|
3331
|
+
"aliases": [],
|
|
3332
|
+
"args": {
|
|
3333
|
+
"id": {
|
|
3334
|
+
"description": "Monitor id",
|
|
3335
|
+
"name": "id",
|
|
3336
|
+
"required": true
|
|
3337
|
+
}
|
|
3338
|
+
},
|
|
3339
|
+
"description": "Resume a paused uptime monitor (re-enables scheduling)",
|
|
3340
|
+
"examples": [
|
|
3341
|
+
"<%= config.bin %> monitors resume <monitor-id> --project acme-api"
|
|
3342
|
+
],
|
|
3343
|
+
"flags": {
|
|
3344
|
+
"json": {
|
|
3345
|
+
"description": "Format output as json.",
|
|
3346
|
+
"helpGroup": "GLOBAL",
|
|
3347
|
+
"name": "json",
|
|
3348
|
+
"allowNo": false,
|
|
3349
|
+
"type": "boolean"
|
|
3350
|
+
},
|
|
3351
|
+
"project": {
|
|
3352
|
+
"char": "p",
|
|
3353
|
+
"description": "Project id (UUID) or key",
|
|
3354
|
+
"name": "project",
|
|
3355
|
+
"required": true,
|
|
3356
|
+
"hasDynamicHelp": false,
|
|
3357
|
+
"multiple": false,
|
|
3358
|
+
"type": "option"
|
|
3359
|
+
}
|
|
3360
|
+
},
|
|
3361
|
+
"hasDynamicHelp": false,
|
|
3362
|
+
"hiddenAliases": [],
|
|
3363
|
+
"id": "monitors:resume",
|
|
3364
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3365
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3366
|
+
"pluginType": "core",
|
|
3367
|
+
"strict": true,
|
|
3368
|
+
"enableJsonFlag": true,
|
|
3369
|
+
"isESM": false,
|
|
3370
|
+
"relativePath": [
|
|
3371
|
+
"dist",
|
|
3372
|
+
"commands",
|
|
3373
|
+
"monitors",
|
|
3374
|
+
"resume.js"
|
|
3375
|
+
]
|
|
3376
|
+
},
|
|
3377
|
+
"monitors:show": {
|
|
3378
|
+
"aliases": [],
|
|
3379
|
+
"args": {
|
|
3380
|
+
"id": {
|
|
3381
|
+
"description": "Monitor id",
|
|
3382
|
+
"name": "id",
|
|
3383
|
+
"required": true
|
|
3384
|
+
}
|
|
3385
|
+
},
|
|
3386
|
+
"description": "Show a single uptime monitor",
|
|
3387
|
+
"examples": [
|
|
3388
|
+
"<%= config.bin %> monitors show <monitor-id> --project acme-api"
|
|
3389
|
+
],
|
|
3390
|
+
"flags": {
|
|
3391
|
+
"json": {
|
|
3392
|
+
"description": "Format output as json.",
|
|
3393
|
+
"helpGroup": "GLOBAL",
|
|
3394
|
+
"name": "json",
|
|
3395
|
+
"allowNo": false,
|
|
3396
|
+
"type": "boolean"
|
|
3397
|
+
},
|
|
3398
|
+
"project": {
|
|
3399
|
+
"char": "p",
|
|
3400
|
+
"description": "Project id (UUID) or key",
|
|
3401
|
+
"name": "project",
|
|
3402
|
+
"required": true,
|
|
3403
|
+
"hasDynamicHelp": false,
|
|
3404
|
+
"multiple": false,
|
|
3405
|
+
"type": "option"
|
|
3406
|
+
}
|
|
3407
|
+
},
|
|
3408
|
+
"hasDynamicHelp": false,
|
|
3409
|
+
"hiddenAliases": [],
|
|
3410
|
+
"id": "monitors:show",
|
|
3411
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3412
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3413
|
+
"pluginType": "core",
|
|
3414
|
+
"strict": true,
|
|
3415
|
+
"enableJsonFlag": true,
|
|
3416
|
+
"isESM": false,
|
|
3417
|
+
"relativePath": [
|
|
3418
|
+
"dist",
|
|
3419
|
+
"commands",
|
|
3420
|
+
"monitors",
|
|
3421
|
+
"show.js"
|
|
3422
|
+
]
|
|
3423
|
+
},
|
|
3424
|
+
"monitors:update": {
|
|
3268
3425
|
"aliases": [],
|
|
3269
3426
|
"args": {
|
|
3270
|
-
"
|
|
3271
|
-
"description": "
|
|
3272
|
-
"name": "
|
|
3427
|
+
"id": {
|
|
3428
|
+
"description": "Monitor id",
|
|
3429
|
+
"name": "id",
|
|
3273
3430
|
"required": true
|
|
3274
3431
|
}
|
|
3275
3432
|
},
|
|
3276
|
-
"description": "Update
|
|
3433
|
+
"description": "Update an uptime monitor (URL, method, interval, expected status, timeout)",
|
|
3277
3434
|
"examples": [
|
|
3278
|
-
"<%= config.bin %>
|
|
3279
|
-
"<%= config.bin %>
|
|
3280
|
-
"<%= config.bin %> platforms update legacy --no-active"
|
|
3435
|
+
"<%= config.bin %> monitors update <monitor-id> --project acme-api --interval-seconds 120",
|
|
3436
|
+
"<%= config.bin %> monitors update <monitor-id> -p acme-api --url https://acme.example.com/health --expected-status 204"
|
|
3281
3437
|
],
|
|
3282
3438
|
"flags": {
|
|
3283
3439
|
"json": {
|
|
@@ -3287,44 +3443,68 @@
|
|
|
3287
3443
|
"allowNo": false,
|
|
3288
3444
|
"type": "boolean"
|
|
3289
3445
|
},
|
|
3290
|
-
"
|
|
3291
|
-
"
|
|
3292
|
-
"
|
|
3446
|
+
"project": {
|
|
3447
|
+
"char": "p",
|
|
3448
|
+
"description": "Project id (UUID) or key",
|
|
3449
|
+
"name": "project",
|
|
3450
|
+
"required": true,
|
|
3293
3451
|
"hasDynamicHelp": false,
|
|
3294
3452
|
"multiple": false,
|
|
3295
3453
|
"type": "option"
|
|
3296
3454
|
},
|
|
3297
|
-
"
|
|
3298
|
-
"description": "
|
|
3299
|
-
"name": "
|
|
3455
|
+
"url": {
|
|
3456
|
+
"description": "URL to probe",
|
|
3457
|
+
"name": "url",
|
|
3300
3458
|
"hasDynamicHelp": false,
|
|
3301
3459
|
"multiple": false,
|
|
3302
3460
|
"type": "option"
|
|
3303
3461
|
},
|
|
3304
|
-
"
|
|
3305
|
-
"description": "
|
|
3306
|
-
"name": "
|
|
3462
|
+
"http-method": {
|
|
3463
|
+
"description": "HTTP method",
|
|
3464
|
+
"name": "http-method",
|
|
3307
3465
|
"hasDynamicHelp": false,
|
|
3308
3466
|
"multiple": false,
|
|
3309
3467
|
"type": "option"
|
|
3310
3468
|
},
|
|
3311
|
-
"
|
|
3312
|
-
"description": "
|
|
3313
|
-
"name": "
|
|
3469
|
+
"interval-seconds": {
|
|
3470
|
+
"description": "Seconds between checks",
|
|
3471
|
+
"name": "interval-seconds",
|
|
3314
3472
|
"hasDynamicHelp": false,
|
|
3315
3473
|
"multiple": false,
|
|
3316
3474
|
"type": "option"
|
|
3317
3475
|
},
|
|
3318
|
-
"
|
|
3319
|
-
"description": "
|
|
3320
|
-
"name": "
|
|
3321
|
-
"
|
|
3322
|
-
"
|
|
3476
|
+
"expected-status": {
|
|
3477
|
+
"description": "Expected HTTP status code",
|
|
3478
|
+
"name": "expected-status",
|
|
3479
|
+
"hasDynamicHelp": false,
|
|
3480
|
+
"multiple": false,
|
|
3481
|
+
"type": "option"
|
|
3482
|
+
},
|
|
3483
|
+
"timeout-seconds": {
|
|
3484
|
+
"description": "Request timeout in seconds",
|
|
3485
|
+
"name": "timeout-seconds",
|
|
3486
|
+
"hasDynamicHelp": false,
|
|
3487
|
+
"multiple": false,
|
|
3488
|
+
"type": "option"
|
|
3489
|
+
},
|
|
3490
|
+
"expected-body-keyword": {
|
|
3491
|
+
"description": "Keyword expected in the response body (check fails without it; not with HEAD)",
|
|
3492
|
+
"name": "expected-body-keyword",
|
|
3493
|
+
"hasDynamicHelp": false,
|
|
3494
|
+
"multiple": false,
|
|
3495
|
+
"type": "option"
|
|
3496
|
+
},
|
|
3497
|
+
"ssl-expiry-warn-days": {
|
|
3498
|
+
"description": "Alert when the TLS certificate has at most N days left (empty = off)",
|
|
3499
|
+
"name": "ssl-expiry-warn-days",
|
|
3500
|
+
"hasDynamicHelp": false,
|
|
3501
|
+
"multiple": false,
|
|
3502
|
+
"type": "option"
|
|
3323
3503
|
}
|
|
3324
3504
|
},
|
|
3325
3505
|
"hasDynamicHelp": false,
|
|
3326
3506
|
"hiddenAliases": [],
|
|
3327
|
-
"id": "
|
|
3507
|
+
"id": "monitors:update",
|
|
3328
3508
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3329
3509
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3330
3510
|
"pluginType": "core",
|
|
@@ -3334,7 +3514,7 @@
|
|
|
3334
3514
|
"relativePath": [
|
|
3335
3515
|
"dist",
|
|
3336
3516
|
"commands",
|
|
3337
|
-
"
|
|
3517
|
+
"monitors",
|
|
3338
3518
|
"update.js"
|
|
3339
3519
|
]
|
|
3340
3520
|
},
|
|
@@ -3599,7 +3779,191 @@
|
|
|
3599
3779
|
},
|
|
3600
3780
|
"hasDynamicHelp": false,
|
|
3601
3781
|
"hiddenAliases": [],
|
|
3602
|
-
"id": "projects:set-platforms",
|
|
3782
|
+
"id": "projects:set-platforms",
|
|
3783
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3784
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3785
|
+
"pluginType": "core",
|
|
3786
|
+
"strict": true,
|
|
3787
|
+
"enableJsonFlag": true,
|
|
3788
|
+
"isESM": false,
|
|
3789
|
+
"relativePath": [
|
|
3790
|
+
"dist",
|
|
3791
|
+
"commands",
|
|
3792
|
+
"projects",
|
|
3793
|
+
"set-platforms.js"
|
|
3794
|
+
]
|
|
3795
|
+
},
|
|
3796
|
+
"projects:show": {
|
|
3797
|
+
"aliases": [],
|
|
3798
|
+
"args": {
|
|
3799
|
+
"id": {
|
|
3800
|
+
"description": "Project id (UUID) or key",
|
|
3801
|
+
"name": "id",
|
|
3802
|
+
"required": true
|
|
3803
|
+
}
|
|
3804
|
+
},
|
|
3805
|
+
"description": "Show a single project by id or key",
|
|
3806
|
+
"examples": [
|
|
3807
|
+
"<%= config.bin %> projects show acme-api",
|
|
3808
|
+
"<%= config.bin %> projects show <uuid> --json"
|
|
3809
|
+
],
|
|
3810
|
+
"flags": {
|
|
3811
|
+
"json": {
|
|
3812
|
+
"description": "Format output as json.",
|
|
3813
|
+
"helpGroup": "GLOBAL",
|
|
3814
|
+
"name": "json",
|
|
3815
|
+
"allowNo": false,
|
|
3816
|
+
"type": "boolean"
|
|
3817
|
+
}
|
|
3818
|
+
},
|
|
3819
|
+
"hasDynamicHelp": false,
|
|
3820
|
+
"hiddenAliases": [],
|
|
3821
|
+
"id": "projects:show",
|
|
3822
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3823
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3824
|
+
"pluginType": "core",
|
|
3825
|
+
"strict": true,
|
|
3826
|
+
"enableJsonFlag": true,
|
|
3827
|
+
"isESM": false,
|
|
3828
|
+
"relativePath": [
|
|
3829
|
+
"dist",
|
|
3830
|
+
"commands",
|
|
3831
|
+
"projects",
|
|
3832
|
+
"show.js"
|
|
3833
|
+
]
|
|
3834
|
+
},
|
|
3835
|
+
"projects:update": {
|
|
3836
|
+
"aliases": [],
|
|
3837
|
+
"args": {},
|
|
3838
|
+
"description": "Update a project (name, key, color, description, group)",
|
|
3839
|
+
"examples": [
|
|
3840
|
+
"<%= config.bin %> projects update --project LBRA --name \"New name\"",
|
|
3841
|
+
"<%= config.bin %> projects update -p LBRA --group Backend"
|
|
3842
|
+
],
|
|
3843
|
+
"flags": {
|
|
3844
|
+
"json": {
|
|
3845
|
+
"description": "Format output as json.",
|
|
3846
|
+
"helpGroup": "GLOBAL",
|
|
3847
|
+
"name": "json",
|
|
3848
|
+
"allowNo": false,
|
|
3849
|
+
"type": "boolean"
|
|
3850
|
+
},
|
|
3851
|
+
"project": {
|
|
3852
|
+
"char": "p",
|
|
3853
|
+
"description": "Project id (UUID) or key",
|
|
3854
|
+
"name": "project",
|
|
3855
|
+
"required": true,
|
|
3856
|
+
"hasDynamicHelp": false,
|
|
3857
|
+
"multiple": false,
|
|
3858
|
+
"type": "option"
|
|
3859
|
+
},
|
|
3860
|
+
"name": {
|
|
3861
|
+
"description": "New project name",
|
|
3862
|
+
"name": "name",
|
|
3863
|
+
"hasDynamicHelp": false,
|
|
3864
|
+
"multiple": false,
|
|
3865
|
+
"type": "option"
|
|
3866
|
+
},
|
|
3867
|
+
"key": {
|
|
3868
|
+
"description": "New project key (uppercase A-Z0-9)",
|
|
3869
|
+
"name": "key",
|
|
3870
|
+
"hasDynamicHelp": false,
|
|
3871
|
+
"multiple": false,
|
|
3872
|
+
"type": "option"
|
|
3873
|
+
},
|
|
3874
|
+
"color": {
|
|
3875
|
+
"description": "Color label",
|
|
3876
|
+
"name": "color",
|
|
3877
|
+
"hasDynamicHelp": false,
|
|
3878
|
+
"multiple": false,
|
|
3879
|
+
"type": "option"
|
|
3880
|
+
},
|
|
3881
|
+
"description": {
|
|
3882
|
+
"description": "Free-form description",
|
|
3883
|
+
"name": "description",
|
|
3884
|
+
"hasDynamicHelp": false,
|
|
3885
|
+
"multiple": false,
|
|
3886
|
+
"type": "option"
|
|
3887
|
+
},
|
|
3888
|
+
"group": {
|
|
3889
|
+
"description": "Group id (UUID) or name to move the project into",
|
|
3890
|
+
"name": "group",
|
|
3891
|
+
"hasDynamicHelp": false,
|
|
3892
|
+
"multiple": false,
|
|
3893
|
+
"type": "option"
|
|
3894
|
+
}
|
|
3895
|
+
},
|
|
3896
|
+
"hasDynamicHelp": false,
|
|
3897
|
+
"hiddenAliases": [],
|
|
3898
|
+
"id": "projects:update",
|
|
3899
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3900
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3901
|
+
"pluginType": "core",
|
|
3902
|
+
"strict": true,
|
|
3903
|
+
"enableJsonFlag": true,
|
|
3904
|
+
"isESM": false,
|
|
3905
|
+
"relativePath": [
|
|
3906
|
+
"dist",
|
|
3907
|
+
"commands",
|
|
3908
|
+
"projects",
|
|
3909
|
+
"update.js"
|
|
3910
|
+
]
|
|
3911
|
+
},
|
|
3912
|
+
"platforms:create": {
|
|
3913
|
+
"aliases": [],
|
|
3914
|
+
"args": {
|
|
3915
|
+
"code": {
|
|
3916
|
+
"description": "Platform code (e.g. \"ios\", \"android\", \"web\")",
|
|
3917
|
+
"name": "code",
|
|
3918
|
+
"required": true
|
|
3919
|
+
}
|
|
3920
|
+
},
|
|
3921
|
+
"description": "Create a platform (a device/system your projects run on)",
|
|
3922
|
+
"examples": [
|
|
3923
|
+
"<%= config.bin %> platforms create ios --label iOS",
|
|
3924
|
+
"<%= config.bin %> platforms create android --label Android --color emerald --position 2"
|
|
3925
|
+
],
|
|
3926
|
+
"flags": {
|
|
3927
|
+
"json": {
|
|
3928
|
+
"description": "Format output as json.",
|
|
3929
|
+
"helpGroup": "GLOBAL",
|
|
3930
|
+
"name": "json",
|
|
3931
|
+
"allowNo": false,
|
|
3932
|
+
"type": "boolean"
|
|
3933
|
+
},
|
|
3934
|
+
"label": {
|
|
3935
|
+
"description": "Human-readable label",
|
|
3936
|
+
"name": "label",
|
|
3937
|
+
"required": true,
|
|
3938
|
+
"hasDynamicHelp": false,
|
|
3939
|
+
"multiple": false,
|
|
3940
|
+
"type": "option"
|
|
3941
|
+
},
|
|
3942
|
+
"color": {
|
|
3943
|
+
"description": "Color label",
|
|
3944
|
+
"name": "color",
|
|
3945
|
+
"default": "sky",
|
|
3946
|
+
"hasDynamicHelp": false,
|
|
3947
|
+
"multiple": false,
|
|
3948
|
+
"type": "option"
|
|
3949
|
+
},
|
|
3950
|
+
"position": {
|
|
3951
|
+
"description": "Sort position",
|
|
3952
|
+
"name": "position",
|
|
3953
|
+
"hasDynamicHelp": false,
|
|
3954
|
+
"multiple": false,
|
|
3955
|
+
"type": "option"
|
|
3956
|
+
},
|
|
3957
|
+
"active": {
|
|
3958
|
+
"description": "Whether the platform is active",
|
|
3959
|
+
"name": "active",
|
|
3960
|
+
"allowNo": true,
|
|
3961
|
+
"type": "boolean"
|
|
3962
|
+
}
|
|
3963
|
+
},
|
|
3964
|
+
"hasDynamicHelp": false,
|
|
3965
|
+
"hiddenAliases": [],
|
|
3966
|
+
"id": "platforms:create",
|
|
3603
3967
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3604
3968
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3605
3969
|
"pluginType": "core",
|
|
@@ -3609,23 +3973,22 @@
|
|
|
3609
3973
|
"relativePath": [
|
|
3610
3974
|
"dist",
|
|
3611
3975
|
"commands",
|
|
3612
|
-
"
|
|
3613
|
-
"
|
|
3976
|
+
"platforms",
|
|
3977
|
+
"create.js"
|
|
3614
3978
|
]
|
|
3615
3979
|
},
|
|
3616
|
-
"
|
|
3980
|
+
"platforms:delete": {
|
|
3617
3981
|
"aliases": [],
|
|
3618
3982
|
"args": {
|
|
3619
|
-
"
|
|
3620
|
-
"description": "
|
|
3621
|
-
"name": "
|
|
3983
|
+
"platform": {
|
|
3984
|
+
"description": "Platform id (UUID) or code",
|
|
3985
|
+
"name": "platform",
|
|
3622
3986
|
"required": true
|
|
3623
3987
|
}
|
|
3624
3988
|
},
|
|
3625
|
-
"description": "
|
|
3989
|
+
"description": "Delete a platform (blocked if any project or ticket still references it)",
|
|
3626
3990
|
"examples": [
|
|
3627
|
-
"<%= config.bin %>
|
|
3628
|
-
"<%= config.bin %> projects show <uuid> --json"
|
|
3991
|
+
"<%= config.bin %> platforms delete legacy --confirm"
|
|
3629
3992
|
],
|
|
3630
3993
|
"flags": {
|
|
3631
3994
|
"json": {
|
|
@@ -3634,11 +3997,17 @@
|
|
|
3634
3997
|
"name": "json",
|
|
3635
3998
|
"allowNo": false,
|
|
3636
3999
|
"type": "boolean"
|
|
4000
|
+
},
|
|
4001
|
+
"confirm": {
|
|
4002
|
+
"description": "Required: confirm the deletion",
|
|
4003
|
+
"name": "confirm",
|
|
4004
|
+
"allowNo": false,
|
|
4005
|
+
"type": "boolean"
|
|
3637
4006
|
}
|
|
3638
4007
|
},
|
|
3639
4008
|
"hasDynamicHelp": false,
|
|
3640
4009
|
"hiddenAliases": [],
|
|
3641
|
-
"id": "
|
|
4010
|
+
"id": "platforms:delete",
|
|
3642
4011
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3643
4012
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3644
4013
|
"pluginType": "core",
|
|
@@ -3648,17 +4017,17 @@
|
|
|
3648
4017
|
"relativePath": [
|
|
3649
4018
|
"dist",
|
|
3650
4019
|
"commands",
|
|
3651
|
-
"
|
|
3652
|
-
"
|
|
4020
|
+
"platforms",
|
|
4021
|
+
"delete.js"
|
|
3653
4022
|
]
|
|
3654
4023
|
},
|
|
3655
|
-
"
|
|
4024
|
+
"platforms:list": {
|
|
3656
4025
|
"aliases": [],
|
|
3657
4026
|
"args": {},
|
|
3658
|
-
"description": "
|
|
4027
|
+
"description": "List the platforms (devices/systems) in your organization",
|
|
3659
4028
|
"examples": [
|
|
3660
|
-
"<%= config.bin %>
|
|
3661
|
-
"<%= config.bin %>
|
|
4029
|
+
"<%= config.bin %> platforms list",
|
|
4030
|
+
"<%= config.bin %> platforms list --page 2 --json"
|
|
3662
4031
|
],
|
|
3663
4032
|
"flags": {
|
|
3664
4033
|
"json": {
|
|
@@ -3668,25 +4037,64 @@
|
|
|
3668
4037
|
"allowNo": false,
|
|
3669
4038
|
"type": "boolean"
|
|
3670
4039
|
},
|
|
3671
|
-
"
|
|
3672
|
-
"
|
|
3673
|
-
"
|
|
3674
|
-
"
|
|
3675
|
-
"required": true,
|
|
4040
|
+
"page": {
|
|
4041
|
+
"description": "Page number",
|
|
4042
|
+
"name": "page",
|
|
4043
|
+
"default": 1,
|
|
3676
4044
|
"hasDynamicHelp": false,
|
|
3677
4045
|
"multiple": false,
|
|
3678
4046
|
"type": "option"
|
|
4047
|
+
}
|
|
4048
|
+
},
|
|
4049
|
+
"hasDynamicHelp": false,
|
|
4050
|
+
"hiddenAliases": [],
|
|
4051
|
+
"id": "platforms:list",
|
|
4052
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4053
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4054
|
+
"pluginType": "core",
|
|
4055
|
+
"strict": true,
|
|
4056
|
+
"enableJsonFlag": true,
|
|
4057
|
+
"isESM": false,
|
|
4058
|
+
"relativePath": [
|
|
4059
|
+
"dist",
|
|
4060
|
+
"commands",
|
|
4061
|
+
"platforms",
|
|
4062
|
+
"list.js"
|
|
4063
|
+
]
|
|
4064
|
+
},
|
|
4065
|
+
"platforms:update": {
|
|
4066
|
+
"aliases": [],
|
|
4067
|
+
"args": {
|
|
4068
|
+
"platform": {
|
|
4069
|
+
"description": "Platform id (UUID) or code",
|
|
4070
|
+
"name": "platform",
|
|
4071
|
+
"required": true
|
|
4072
|
+
}
|
|
4073
|
+
},
|
|
4074
|
+
"description": "Update a platform (relabel, recolor, reorder, activate/deactivate)",
|
|
4075
|
+
"examples": [
|
|
4076
|
+
"<%= config.bin %> platforms update ios --label \"iOS / iPadOS\"",
|
|
4077
|
+
"<%= config.bin %> platforms update web --color indigo --position 1",
|
|
4078
|
+
"<%= config.bin %> platforms update legacy --no-active"
|
|
4079
|
+
],
|
|
4080
|
+
"flags": {
|
|
4081
|
+
"json": {
|
|
4082
|
+
"description": "Format output as json.",
|
|
4083
|
+
"helpGroup": "GLOBAL",
|
|
4084
|
+
"name": "json",
|
|
4085
|
+
"allowNo": false,
|
|
4086
|
+
"type": "boolean"
|
|
3679
4087
|
},
|
|
3680
|
-
"
|
|
3681
|
-
"description": "New
|
|
3682
|
-
"name": "
|
|
4088
|
+
"code": {
|
|
4089
|
+
"description": "New code",
|
|
4090
|
+
"name": "code",
|
|
3683
4091
|
"hasDynamicHelp": false,
|
|
3684
4092
|
"multiple": false,
|
|
3685
4093
|
"type": "option"
|
|
3686
4094
|
},
|
|
3687
|
-
"
|
|
3688
|
-
"description": "New
|
|
3689
|
-
"name": "
|
|
4095
|
+
"label": {
|
|
4096
|
+
"description": "New label",
|
|
4097
|
+
"name": "label",
|
|
3690
4098
|
"hasDynamicHelp": false,
|
|
3691
4099
|
"multiple": false,
|
|
3692
4100
|
"type": "option"
|
|
@@ -3698,24 +4106,23 @@
|
|
|
3698
4106
|
"multiple": false,
|
|
3699
4107
|
"type": "option"
|
|
3700
4108
|
},
|
|
3701
|
-
"
|
|
3702
|
-
"description": "
|
|
3703
|
-
"name": "
|
|
4109
|
+
"position": {
|
|
4110
|
+
"description": "Sort position",
|
|
4111
|
+
"name": "position",
|
|
3704
4112
|
"hasDynamicHelp": false,
|
|
3705
4113
|
"multiple": false,
|
|
3706
4114
|
"type": "option"
|
|
3707
4115
|
},
|
|
3708
|
-
"
|
|
3709
|
-
"description": "
|
|
3710
|
-
"name": "
|
|
3711
|
-
"
|
|
3712
|
-
"
|
|
3713
|
-
"type": "option"
|
|
4116
|
+
"active": {
|
|
4117
|
+
"description": "Whether the platform is active",
|
|
4118
|
+
"name": "active",
|
|
4119
|
+
"allowNo": true,
|
|
4120
|
+
"type": "boolean"
|
|
3714
4121
|
}
|
|
3715
4122
|
},
|
|
3716
4123
|
"hasDynamicHelp": false,
|
|
3717
4124
|
"hiddenAliases": [],
|
|
3718
|
-
"id": "
|
|
4125
|
+
"id": "platforms:update",
|
|
3719
4126
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3720
4127
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3721
4128
|
"pluginType": "core",
|
|
@@ -3725,7 +4132,7 @@
|
|
|
3725
4132
|
"relativePath": [
|
|
3726
4133
|
"dist",
|
|
3727
4134
|
"commands",
|
|
3728
|
-
"
|
|
4135
|
+
"platforms",
|
|
3729
4136
|
"update.js"
|
|
3730
4137
|
]
|
|
3731
4138
|
},
|
|
@@ -3958,23 +4365,18 @@
|
|
|
3958
4365
|
"update.js"
|
|
3959
4366
|
]
|
|
3960
4367
|
},
|
|
3961
|
-
"
|
|
4368
|
+
"servers:delete": {
|
|
3962
4369
|
"aliases": [],
|
|
3963
4370
|
"args": {
|
|
3964
|
-
"
|
|
3965
|
-
"description": "
|
|
3966
|
-
"name": "
|
|
3967
|
-
"required": true
|
|
3968
|
-
},
|
|
3969
|
-
"member": {
|
|
3970
|
-
"description": "Member account id or email (must be an org member)",
|
|
3971
|
-
"name": "member",
|
|
4371
|
+
"id": {
|
|
4372
|
+
"description": "Server id",
|
|
4373
|
+
"name": "id",
|
|
3972
4374
|
"required": true
|
|
3973
4375
|
}
|
|
3974
4376
|
},
|
|
3975
|
-
"description": "
|
|
4377
|
+
"description": "Delete a server and all its metrics (a live agent would re-register it)",
|
|
3976
4378
|
"examples": [
|
|
3977
|
-
"<%= config.bin %>
|
|
4379
|
+
"<%= config.bin %> servers delete <server-id> --confirm"
|
|
3978
4380
|
],
|
|
3979
4381
|
"flags": {
|
|
3980
4382
|
"json": {
|
|
@@ -3983,11 +4385,17 @@
|
|
|
3983
4385
|
"name": "json",
|
|
3984
4386
|
"allowNo": false,
|
|
3985
4387
|
"type": "boolean"
|
|
4388
|
+
},
|
|
4389
|
+
"confirm": {
|
|
4390
|
+
"description": "Required: confirm the deletion",
|
|
4391
|
+
"name": "confirm",
|
|
4392
|
+
"allowNo": false,
|
|
4393
|
+
"type": "boolean"
|
|
3986
4394
|
}
|
|
3987
4395
|
},
|
|
3988
4396
|
"hasDynamicHelp": false,
|
|
3989
4397
|
"hiddenAliases": [],
|
|
3990
|
-
"id": "
|
|
4398
|
+
"id": "servers:delete",
|
|
3991
4399
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3992
4400
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3993
4401
|
"pluginType": "core",
|
|
@@ -3997,23 +4405,17 @@
|
|
|
3997
4405
|
"relativePath": [
|
|
3998
4406
|
"dist",
|
|
3999
4407
|
"commands",
|
|
4000
|
-
"
|
|
4001
|
-
"
|
|
4408
|
+
"servers",
|
|
4409
|
+
"delete.js"
|
|
4002
4410
|
]
|
|
4003
4411
|
},
|
|
4004
|
-
"
|
|
4412
|
+
"servers:list": {
|
|
4005
4413
|
"aliases": [],
|
|
4006
|
-
"args": {
|
|
4007
|
-
|
|
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",
|
|
4414
|
+
"args": {},
|
|
4415
|
+
"description": "List the monitored servers in your organization (fleet snapshot)",
|
|
4014
4416
|
"examples": [
|
|
4015
|
-
"<%= config.bin %>
|
|
4016
|
-
"<%= config.bin %>
|
|
4417
|
+
"<%= config.bin %> servers list",
|
|
4418
|
+
"<%= config.bin %> servers list --status down --json"
|
|
4017
4419
|
],
|
|
4018
4420
|
"flags": {
|
|
4019
4421
|
"json": {
|
|
@@ -4023,45 +4425,31 @@
|
|
|
4023
4425
|
"allowNo": false,
|
|
4024
4426
|
"type": "boolean"
|
|
4025
4427
|
},
|
|
4026
|
-
"
|
|
4027
|
-
"description": "
|
|
4028
|
-
"name": "
|
|
4428
|
+
"page": {
|
|
4429
|
+
"description": "Page number",
|
|
4430
|
+
"name": "page",
|
|
4431
|
+
"default": 1,
|
|
4029
4432
|
"hasDynamicHelp": false,
|
|
4030
4433
|
"multiple": false,
|
|
4031
4434
|
"type": "option"
|
|
4032
4435
|
},
|
|
4033
|
-
"
|
|
4034
|
-
"description": "
|
|
4035
|
-
"name": "
|
|
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",
|
|
4436
|
+
"status": {
|
|
4437
|
+
"description": "Filter by status (repeatable)",
|
|
4438
|
+
"name": "status",
|
|
4057
4439
|
"hasDynamicHelp": false,
|
|
4058
4440
|
"multiple": true,
|
|
4441
|
+
"options": [
|
|
4442
|
+
"pending",
|
|
4443
|
+
"up",
|
|
4444
|
+
"down",
|
|
4445
|
+
"paused"
|
|
4446
|
+
],
|
|
4059
4447
|
"type": "option"
|
|
4060
4448
|
}
|
|
4061
4449
|
},
|
|
4062
4450
|
"hasDynamicHelp": false,
|
|
4063
4451
|
"hiddenAliases": [],
|
|
4064
|
-
"id": "
|
|
4452
|
+
"id": "servers:list",
|
|
4065
4453
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4066
4454
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4067
4455
|
"pluginType": "core",
|
|
@@ -4071,22 +4459,22 @@
|
|
|
4071
4459
|
"relativePath": [
|
|
4072
4460
|
"dist",
|
|
4073
4461
|
"commands",
|
|
4074
|
-
"
|
|
4075
|
-
"
|
|
4462
|
+
"servers",
|
|
4463
|
+
"list.js"
|
|
4076
4464
|
]
|
|
4077
4465
|
},
|
|
4078
|
-
"
|
|
4466
|
+
"servers:pause": {
|
|
4079
4467
|
"aliases": [],
|
|
4080
4468
|
"args": {
|
|
4081
|
-
"
|
|
4082
|
-
"description": "
|
|
4083
|
-
"name": "
|
|
4469
|
+
"id": {
|
|
4470
|
+
"description": "Server id",
|
|
4471
|
+
"name": "id",
|
|
4084
4472
|
"required": true
|
|
4085
4473
|
}
|
|
4086
4474
|
},
|
|
4087
|
-
"description": "
|
|
4475
|
+
"description": "Pause a server (no staleness checks or alerts until resumed)",
|
|
4088
4476
|
"examples": [
|
|
4089
|
-
"<%= config.bin %>
|
|
4477
|
+
"<%= config.bin %> servers pause <server-id>"
|
|
4090
4478
|
],
|
|
4091
4479
|
"flags": {
|
|
4092
4480
|
"json": {
|
|
@@ -4099,7 +4487,7 @@
|
|
|
4099
4487
|
},
|
|
4100
4488
|
"hasDynamicHelp": false,
|
|
4101
4489
|
"hiddenAliases": [],
|
|
4102
|
-
"id": "
|
|
4490
|
+
"id": "servers:pause",
|
|
4103
4491
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4104
4492
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4105
4493
|
"pluginType": "core",
|
|
@@ -4109,17 +4497,22 @@
|
|
|
4109
4497
|
"relativePath": [
|
|
4110
4498
|
"dist",
|
|
4111
4499
|
"commands",
|
|
4112
|
-
"
|
|
4113
|
-
"
|
|
4500
|
+
"servers",
|
|
4501
|
+
"pause.js"
|
|
4114
4502
|
]
|
|
4115
4503
|
},
|
|
4116
|
-
"
|
|
4504
|
+
"servers:rename": {
|
|
4117
4505
|
"aliases": [],
|
|
4118
|
-
"args": {
|
|
4119
|
-
|
|
4506
|
+
"args": {
|
|
4507
|
+
"id": {
|
|
4508
|
+
"description": "Server id",
|
|
4509
|
+
"name": "id",
|
|
4510
|
+
"required": true
|
|
4511
|
+
}
|
|
4512
|
+
},
|
|
4513
|
+
"description": "Rename a monitored server (display name only)",
|
|
4120
4514
|
"examples": [
|
|
4121
|
-
"<%= config.bin %>
|
|
4122
|
-
"<%= config.bin %> teams list --json"
|
|
4515
|
+
"<%= config.bin %> servers rename <server-id> --name apps-prod"
|
|
4123
4516
|
],
|
|
4124
4517
|
"flags": {
|
|
4125
4518
|
"json": {
|
|
@@ -4129,10 +4522,10 @@
|
|
|
4129
4522
|
"allowNo": false,
|
|
4130
4523
|
"type": "boolean"
|
|
4131
4524
|
},
|
|
4132
|
-
"
|
|
4133
|
-
"description": "
|
|
4134
|
-
"name": "
|
|
4135
|
-
"
|
|
4525
|
+
"name": {
|
|
4526
|
+
"description": "New display name",
|
|
4527
|
+
"name": "name",
|
|
4528
|
+
"required": true,
|
|
4136
4529
|
"hasDynamicHelp": false,
|
|
4137
4530
|
"multiple": false,
|
|
4138
4531
|
"type": "option"
|
|
@@ -4140,7 +4533,7 @@
|
|
|
4140
4533
|
},
|
|
4141
4534
|
"hasDynamicHelp": false,
|
|
4142
4535
|
"hiddenAliases": [],
|
|
4143
|
-
"id": "
|
|
4536
|
+
"id": "servers:rename",
|
|
4144
4537
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4145
4538
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4146
4539
|
"pluginType": "core",
|
|
@@ -4150,27 +4543,22 @@
|
|
|
4150
4543
|
"relativePath": [
|
|
4151
4544
|
"dist",
|
|
4152
4545
|
"commands",
|
|
4153
|
-
"
|
|
4154
|
-
"
|
|
4546
|
+
"servers",
|
|
4547
|
+
"rename.js"
|
|
4155
4548
|
]
|
|
4156
4549
|
},
|
|
4157
|
-
"
|
|
4550
|
+
"servers:resume": {
|
|
4158
4551
|
"aliases": [],
|
|
4159
4552
|
"args": {
|
|
4160
|
-
"
|
|
4161
|
-
"description": "
|
|
4162
|
-
"name": "
|
|
4163
|
-
"required": true
|
|
4164
|
-
},
|
|
4165
|
-
"member": {
|
|
4166
|
-
"description": "Member account id or email",
|
|
4167
|
-
"name": "member",
|
|
4553
|
+
"id": {
|
|
4554
|
+
"description": "Server id",
|
|
4555
|
+
"name": "id",
|
|
4168
4556
|
"required": true
|
|
4169
4557
|
}
|
|
4170
4558
|
},
|
|
4171
|
-
"description": "
|
|
4559
|
+
"description": "Resume a paused server (back up at the next agent push)",
|
|
4172
4560
|
"examples": [
|
|
4173
|
-
"<%= config.bin %>
|
|
4561
|
+
"<%= config.bin %> servers resume <server-id>"
|
|
4174
4562
|
],
|
|
4175
4563
|
"flags": {
|
|
4176
4564
|
"json": {
|
|
@@ -4183,7 +4571,7 @@
|
|
|
4183
4571
|
},
|
|
4184
4572
|
"hasDynamicHelp": false,
|
|
4185
4573
|
"hiddenAliases": [],
|
|
4186
|
-
"id": "
|
|
4574
|
+
"id": "servers:resume",
|
|
4187
4575
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4188
4576
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4189
4577
|
"pluginType": "core",
|
|
@@ -4193,22 +4581,22 @@
|
|
|
4193
4581
|
"relativePath": [
|
|
4194
4582
|
"dist",
|
|
4195
4583
|
"commands",
|
|
4196
|
-
"
|
|
4197
|
-
"
|
|
4584
|
+
"servers",
|
|
4585
|
+
"resume.js"
|
|
4198
4586
|
]
|
|
4199
4587
|
},
|
|
4200
|
-
"
|
|
4588
|
+
"servers:revoke": {
|
|
4201
4589
|
"aliases": [],
|
|
4202
4590
|
"args": {
|
|
4203
|
-
"
|
|
4204
|
-
"description": "
|
|
4205
|
-
"name": "
|
|
4591
|
+
"id": {
|
|
4592
|
+
"description": "Server id",
|
|
4593
|
+
"name": "id",
|
|
4206
4594
|
"required": true
|
|
4207
4595
|
}
|
|
4208
4596
|
},
|
|
4209
|
-
"description": "
|
|
4597
|
+
"description": "Revoke a server: its agent gets 403 and stops (host stays, reversible)",
|
|
4210
4598
|
"examples": [
|
|
4211
|
-
"<%= config.bin %>
|
|
4599
|
+
"<%= config.bin %> servers revoke <server-id> --confirm"
|
|
4212
4600
|
],
|
|
4213
4601
|
"flags": {
|
|
4214
4602
|
"json": {
|
|
@@ -4217,11 +4605,17 @@
|
|
|
4217
4605
|
"name": "json",
|
|
4218
4606
|
"allowNo": false,
|
|
4219
4607
|
"type": "boolean"
|
|
4608
|
+
},
|
|
4609
|
+
"confirm": {
|
|
4610
|
+
"description": "Required: confirm the revocation",
|
|
4611
|
+
"name": "confirm",
|
|
4612
|
+
"allowNo": false,
|
|
4613
|
+
"type": "boolean"
|
|
4220
4614
|
}
|
|
4221
4615
|
},
|
|
4222
4616
|
"hasDynamicHelp": false,
|
|
4223
4617
|
"hiddenAliases": [],
|
|
4224
|
-
"id": "
|
|
4618
|
+
"id": "servers:revoke",
|
|
4225
4619
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4226
4620
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4227
4621
|
"pluginType": "core",
|
|
@@ -4231,23 +4625,22 @@
|
|
|
4231
4625
|
"relativePath": [
|
|
4232
4626
|
"dist",
|
|
4233
4627
|
"commands",
|
|
4234
|
-
"
|
|
4235
|
-
"
|
|
4628
|
+
"servers",
|
|
4629
|
+
"revoke.js"
|
|
4236
4630
|
]
|
|
4237
4631
|
},
|
|
4238
|
-
"
|
|
4632
|
+
"servers:show": {
|
|
4239
4633
|
"aliases": [],
|
|
4240
4634
|
"args": {
|
|
4241
|
-
"
|
|
4242
|
-
"description": "
|
|
4243
|
-
"name": "
|
|
4635
|
+
"id": {
|
|
4636
|
+
"description": "Server id",
|
|
4637
|
+
"name": "id",
|
|
4244
4638
|
"required": true
|
|
4245
4639
|
}
|
|
4246
4640
|
},
|
|
4247
|
-
"description": "
|
|
4641
|
+
"description": "Show a monitored server (latest snapshot)",
|
|
4248
4642
|
"examples": [
|
|
4249
|
-
"<%= config.bin %>
|
|
4250
|
-
"<%= config.bin %> teams update DriverOne --name \"DriverOne clients\""
|
|
4643
|
+
"<%= config.bin %> servers show <server-id>"
|
|
4251
4644
|
],
|
|
4252
4645
|
"flags": {
|
|
4253
4646
|
"json": {
|
|
@@ -4256,53 +4649,11 @@
|
|
|
4256
4649
|
"name": "json",
|
|
4257
4650
|
"allowNo": false,
|
|
4258
4651
|
"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"
|
|
4301
4652
|
}
|
|
4302
4653
|
},
|
|
4303
4654
|
"hasDynamicHelp": false,
|
|
4304
4655
|
"hiddenAliases": [],
|
|
4305
|
-
"id": "
|
|
4656
|
+
"id": "servers:show",
|
|
4306
4657
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4307
4658
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4308
4659
|
"pluginType": "core",
|
|
@@ -4312,11 +4663,11 @@
|
|
|
4312
4663
|
"relativePath": [
|
|
4313
4664
|
"dist",
|
|
4314
4665
|
"commands",
|
|
4315
|
-
"
|
|
4316
|
-
"
|
|
4666
|
+
"servers",
|
|
4667
|
+
"show.js"
|
|
4317
4668
|
]
|
|
4318
4669
|
},
|
|
4319
|
-
"servers:
|
|
4670
|
+
"servers:unrevoke": {
|
|
4320
4671
|
"aliases": [],
|
|
4321
4672
|
"args": {
|
|
4322
4673
|
"id": {
|
|
@@ -4325,9 +4676,9 @@
|
|
|
4325
4676
|
"required": true
|
|
4326
4677
|
}
|
|
4327
4678
|
},
|
|
4328
|
-
"description": "
|
|
4679
|
+
"description": "Restore a revoked server (its agent can push again)",
|
|
4329
4680
|
"examples": [
|
|
4330
|
-
"<%= config.bin %> servers
|
|
4681
|
+
"<%= config.bin %> servers unrevoke <server-id>"
|
|
4331
4682
|
],
|
|
4332
4683
|
"flags": {
|
|
4333
4684
|
"json": {
|
|
@@ -4336,17 +4687,11 @@
|
|
|
4336
4687
|
"name": "json",
|
|
4337
4688
|
"allowNo": false,
|
|
4338
4689
|
"type": "boolean"
|
|
4339
|
-
},
|
|
4340
|
-
"confirm": {
|
|
4341
|
-
"description": "Required: confirm the deletion",
|
|
4342
|
-
"name": "confirm",
|
|
4343
|
-
"allowNo": false,
|
|
4344
|
-
"type": "boolean"
|
|
4345
4690
|
}
|
|
4346
4691
|
},
|
|
4347
4692
|
"hasDynamicHelp": false,
|
|
4348
4693
|
"hiddenAliases": [],
|
|
4349
|
-
"id": "servers:
|
|
4694
|
+
"id": "servers:unrevoke",
|
|
4350
4695
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4351
4696
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4352
4697
|
"pluginType": "core",
|
|
@@ -4357,16 +4702,15 @@
|
|
|
4357
4702
|
"dist",
|
|
4358
4703
|
"commands",
|
|
4359
4704
|
"servers",
|
|
4360
|
-
"
|
|
4705
|
+
"unrevoke.js"
|
|
4361
4706
|
]
|
|
4362
4707
|
},
|
|
4363
|
-
"
|
|
4708
|
+
"tokens:create": {
|
|
4364
4709
|
"aliases": [],
|
|
4365
4710
|
"args": {},
|
|
4366
|
-
"description": "
|
|
4711
|
+
"description": "Create an ingest token (the secret is shown only once)",
|
|
4367
4712
|
"examples": [
|
|
4368
|
-
"<%= config.bin %>
|
|
4369
|
-
"<%= config.bin %> servers list --status down --json"
|
|
4713
|
+
"<%= config.bin %> tokens create --project acme-api --name \"CI prod\" --environment-id <env-id>"
|
|
4370
4714
|
],
|
|
4371
4715
|
"flags": {
|
|
4372
4716
|
"json": {
|
|
@@ -4376,31 +4720,35 @@
|
|
|
4376
4720
|
"allowNo": false,
|
|
4377
4721
|
"type": "boolean"
|
|
4378
4722
|
},
|
|
4379
|
-
"
|
|
4380
|
-
"
|
|
4381
|
-
"
|
|
4382
|
-
"
|
|
4723
|
+
"project": {
|
|
4724
|
+
"char": "p",
|
|
4725
|
+
"description": "Project id (UUID) or key",
|
|
4726
|
+
"name": "project",
|
|
4727
|
+
"required": true,
|
|
4383
4728
|
"hasDynamicHelp": false,
|
|
4384
4729
|
"multiple": false,
|
|
4385
4730
|
"type": "option"
|
|
4386
4731
|
},
|
|
4387
|
-
"
|
|
4388
|
-
"description": "
|
|
4389
|
-
"name": "
|
|
4732
|
+
"name": {
|
|
4733
|
+
"description": "Human-readable token name",
|
|
4734
|
+
"name": "name",
|
|
4735
|
+
"required": true,
|
|
4390
4736
|
"hasDynamicHelp": false,
|
|
4391
|
-
"multiple":
|
|
4392
|
-
"
|
|
4393
|
-
|
|
4394
|
-
|
|
4395
|
-
|
|
4396
|
-
|
|
4397
|
-
|
|
4737
|
+
"multiple": false,
|
|
4738
|
+
"type": "option"
|
|
4739
|
+
},
|
|
4740
|
+
"environment-id": {
|
|
4741
|
+
"description": "Environment id the token is scoped to",
|
|
4742
|
+
"name": "environment-id",
|
|
4743
|
+
"required": true,
|
|
4744
|
+
"hasDynamicHelp": false,
|
|
4745
|
+
"multiple": false,
|
|
4398
4746
|
"type": "option"
|
|
4399
4747
|
}
|
|
4400
4748
|
},
|
|
4401
4749
|
"hasDynamicHelp": false,
|
|
4402
4750
|
"hiddenAliases": [],
|
|
4403
|
-
"id": "
|
|
4751
|
+
"id": "tokens:create",
|
|
4404
4752
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4405
4753
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4406
4754
|
"pluginType": "core",
|
|
@@ -4410,22 +4758,17 @@
|
|
|
4410
4758
|
"relativePath": [
|
|
4411
4759
|
"dist",
|
|
4412
4760
|
"commands",
|
|
4413
|
-
"
|
|
4414
|
-
"
|
|
4761
|
+
"tokens",
|
|
4762
|
+
"create.js"
|
|
4415
4763
|
]
|
|
4416
4764
|
},
|
|
4417
|
-
"
|
|
4765
|
+
"tokens:list": {
|
|
4418
4766
|
"aliases": [],
|
|
4419
|
-
"args": {
|
|
4420
|
-
|
|
4421
|
-
"description": "Server id",
|
|
4422
|
-
"name": "id",
|
|
4423
|
-
"required": true
|
|
4424
|
-
}
|
|
4425
|
-
},
|
|
4426
|
-
"description": "Pause a server (no staleness checks or alerts until resumed)",
|
|
4767
|
+
"args": {},
|
|
4768
|
+
"description": "List ingest tokens for a project",
|
|
4427
4769
|
"examples": [
|
|
4428
|
-
"<%= config.bin %>
|
|
4770
|
+
"<%= config.bin %> tokens list --project acme-api",
|
|
4771
|
+
"<%= config.bin %> tokens list -p acme-api --json"
|
|
4429
4772
|
],
|
|
4430
4773
|
"flags": {
|
|
4431
4774
|
"json": {
|
|
@@ -4434,11 +4777,20 @@
|
|
|
4434
4777
|
"name": "json",
|
|
4435
4778
|
"allowNo": false,
|
|
4436
4779
|
"type": "boolean"
|
|
4780
|
+
},
|
|
4781
|
+
"project": {
|
|
4782
|
+
"char": "p",
|
|
4783
|
+
"description": "Project id (UUID) or key",
|
|
4784
|
+
"name": "project",
|
|
4785
|
+
"required": true,
|
|
4786
|
+
"hasDynamicHelp": false,
|
|
4787
|
+
"multiple": false,
|
|
4788
|
+
"type": "option"
|
|
4437
4789
|
}
|
|
4438
4790
|
},
|
|
4439
4791
|
"hasDynamicHelp": false,
|
|
4440
4792
|
"hiddenAliases": [],
|
|
4441
|
-
"id": "
|
|
4793
|
+
"id": "tokens:list",
|
|
4442
4794
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4443
4795
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4444
4796
|
"pluginType": "core",
|
|
@@ -4448,22 +4800,22 @@
|
|
|
4448
4800
|
"relativePath": [
|
|
4449
4801
|
"dist",
|
|
4450
4802
|
"commands",
|
|
4451
|
-
"
|
|
4452
|
-
"
|
|
4803
|
+
"tokens",
|
|
4804
|
+
"list.js"
|
|
4453
4805
|
]
|
|
4454
4806
|
},
|
|
4455
|
-
"
|
|
4807
|
+
"tokens:revoke": {
|
|
4456
4808
|
"aliases": [],
|
|
4457
4809
|
"args": {
|
|
4458
4810
|
"id": {
|
|
4459
|
-
"description": "
|
|
4811
|
+
"description": "Token id",
|
|
4460
4812
|
"name": "id",
|
|
4461
4813
|
"required": true
|
|
4462
4814
|
}
|
|
4463
4815
|
},
|
|
4464
|
-
"description": "
|
|
4816
|
+
"description": "Revoke an ingest token",
|
|
4465
4817
|
"examples": [
|
|
4466
|
-
"<%= config.bin %>
|
|
4818
|
+
"<%= config.bin %> tokens revoke <token-id> --project acme-api"
|
|
4467
4819
|
],
|
|
4468
4820
|
"flags": {
|
|
4469
4821
|
"json": {
|
|
@@ -4473,9 +4825,10 @@
|
|
|
4473
4825
|
"allowNo": false,
|
|
4474
4826
|
"type": "boolean"
|
|
4475
4827
|
},
|
|
4476
|
-
"
|
|
4477
|
-
"
|
|
4478
|
-
"
|
|
4828
|
+
"project": {
|
|
4829
|
+
"char": "p",
|
|
4830
|
+
"description": "Project id (UUID) or key",
|
|
4831
|
+
"name": "project",
|
|
4479
4832
|
"required": true,
|
|
4480
4833
|
"hasDynamicHelp": false,
|
|
4481
4834
|
"multiple": false,
|
|
@@ -4484,7 +4837,7 @@
|
|
|
4484
4837
|
},
|
|
4485
4838
|
"hasDynamicHelp": false,
|
|
4486
4839
|
"hiddenAliases": [],
|
|
4487
|
-
"id": "
|
|
4840
|
+
"id": "tokens:revoke",
|
|
4488
4841
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4489
4842
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4490
4843
|
"pluginType": "core",
|
|
@@ -4494,22 +4847,22 @@
|
|
|
4494
4847
|
"relativePath": [
|
|
4495
4848
|
"dist",
|
|
4496
4849
|
"commands",
|
|
4497
|
-
"
|
|
4498
|
-
"
|
|
4850
|
+
"tokens",
|
|
4851
|
+
"revoke.js"
|
|
4499
4852
|
]
|
|
4500
4853
|
},
|
|
4501
|
-
"
|
|
4854
|
+
"tokens:rotate": {
|
|
4502
4855
|
"aliases": [],
|
|
4503
4856
|
"args": {
|
|
4504
4857
|
"id": {
|
|
4505
|
-
"description": "
|
|
4858
|
+
"description": "Token id",
|
|
4506
4859
|
"name": "id",
|
|
4507
4860
|
"required": true
|
|
4508
4861
|
}
|
|
4509
4862
|
},
|
|
4510
|
-
"description": "
|
|
4863
|
+
"description": "Rotate an ingest token (the new secret is shown only once)",
|
|
4511
4864
|
"examples": [
|
|
4512
|
-
"<%= config.bin %>
|
|
4865
|
+
"<%= config.bin %> tokens rotate <token-id> --project acme-api"
|
|
4513
4866
|
],
|
|
4514
4867
|
"flags": {
|
|
4515
4868
|
"json": {
|
|
@@ -4518,11 +4871,20 @@
|
|
|
4518
4871
|
"name": "json",
|
|
4519
4872
|
"allowNo": false,
|
|
4520
4873
|
"type": "boolean"
|
|
4874
|
+
},
|
|
4875
|
+
"project": {
|
|
4876
|
+
"char": "p",
|
|
4877
|
+
"description": "Project id (UUID) or key",
|
|
4878
|
+
"name": "project",
|
|
4879
|
+
"required": true,
|
|
4880
|
+
"hasDynamicHelp": false,
|
|
4881
|
+
"multiple": false,
|
|
4882
|
+
"type": "option"
|
|
4521
4883
|
}
|
|
4522
4884
|
},
|
|
4523
4885
|
"hasDynamicHelp": false,
|
|
4524
4886
|
"hiddenAliases": [],
|
|
4525
|
-
"id": "
|
|
4887
|
+
"id": "tokens:rotate",
|
|
4526
4888
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4527
4889
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4528
4890
|
"pluginType": "core",
|
|
@@ -4532,22 +4894,27 @@
|
|
|
4532
4894
|
"relativePath": [
|
|
4533
4895
|
"dist",
|
|
4534
4896
|
"commands",
|
|
4535
|
-
"
|
|
4536
|
-
"
|
|
4897
|
+
"tokens",
|
|
4898
|
+
"rotate.js"
|
|
4537
4899
|
]
|
|
4538
4900
|
},
|
|
4539
|
-
"
|
|
4901
|
+
"teams:add-member": {
|
|
4540
4902
|
"aliases": [],
|
|
4541
4903
|
"args": {
|
|
4542
|
-
"
|
|
4543
|
-
"description": "
|
|
4544
|
-
"name": "
|
|
4904
|
+
"team": {
|
|
4905
|
+
"description": "Team id (UUID) or name",
|
|
4906
|
+
"name": "team",
|
|
4907
|
+
"required": true
|
|
4908
|
+
},
|
|
4909
|
+
"member": {
|
|
4910
|
+
"description": "Member account id or email (must be an org member)",
|
|
4911
|
+
"name": "member",
|
|
4545
4912
|
"required": true
|
|
4546
4913
|
}
|
|
4547
4914
|
},
|
|
4548
|
-
"description": "
|
|
4915
|
+
"description": "Add a person to a team, keeping the existing members",
|
|
4549
4916
|
"examples": [
|
|
4550
|
-
"<%= config.bin %>
|
|
4917
|
+
"<%= config.bin %> teams add-member DriverOne client@acme.com"
|
|
4551
4918
|
],
|
|
4552
4919
|
"flags": {
|
|
4553
4920
|
"json": {
|
|
@@ -4556,17 +4923,11 @@
|
|
|
4556
4923
|
"name": "json",
|
|
4557
4924
|
"allowNo": false,
|
|
4558
4925
|
"type": "boolean"
|
|
4559
|
-
},
|
|
4560
|
-
"confirm": {
|
|
4561
|
-
"description": "Required: confirm the revocation",
|
|
4562
|
-
"name": "confirm",
|
|
4563
|
-
"allowNo": false,
|
|
4564
|
-
"type": "boolean"
|
|
4565
4926
|
}
|
|
4566
4927
|
},
|
|
4567
4928
|
"hasDynamicHelp": false,
|
|
4568
4929
|
"hiddenAliases": [],
|
|
4569
|
-
"id": "
|
|
4930
|
+
"id": "teams:add-member",
|
|
4570
4931
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4571
4932
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4572
4933
|
"pluginType": "core",
|
|
@@ -4576,22 +4937,23 @@
|
|
|
4576
4937
|
"relativePath": [
|
|
4577
4938
|
"dist",
|
|
4578
4939
|
"commands",
|
|
4579
|
-
"
|
|
4580
|
-
"
|
|
4940
|
+
"teams",
|
|
4941
|
+
"add-member.js"
|
|
4581
4942
|
]
|
|
4582
4943
|
},
|
|
4583
|
-
"
|
|
4944
|
+
"teams:create": {
|
|
4584
4945
|
"aliases": [],
|
|
4585
4946
|
"args": {
|
|
4586
|
-
"
|
|
4587
|
-
"description": "
|
|
4588
|
-
"name": "
|
|
4947
|
+
"name": {
|
|
4948
|
+
"description": "Team name",
|
|
4949
|
+
"name": "name",
|
|
4589
4950
|
"required": true
|
|
4590
4951
|
}
|
|
4591
4952
|
},
|
|
4592
|
-
"description": "
|
|
4953
|
+
"description": "Create a team and (optionally) set its roles, group/project scope and members",
|
|
4593
4954
|
"examples": [
|
|
4594
|
-
"<%= config.bin %>
|
|
4955
|
+
"<%= config.bin %> teams create DriverOne --role Client --group DriverOne",
|
|
4956
|
+
"<%= config.bin %> teams create DriverOne --role Client --group DriverOne --member client@acme.com"
|
|
4595
4957
|
],
|
|
4596
4958
|
"flags": {
|
|
4597
4959
|
"json": {
|
|
@@ -4600,11 +4962,46 @@
|
|
|
4600
4962
|
"name": "json",
|
|
4601
4963
|
"allowNo": false,
|
|
4602
4964
|
"type": "boolean"
|
|
4965
|
+
},
|
|
4966
|
+
"color": {
|
|
4967
|
+
"description": "Color label",
|
|
4968
|
+
"name": "color",
|
|
4969
|
+
"hasDynamicHelp": false,
|
|
4970
|
+
"multiple": false,
|
|
4971
|
+
"type": "option"
|
|
4972
|
+
},
|
|
4973
|
+
"group": {
|
|
4974
|
+
"description": "Group id or name to scope the team to (repeatable)",
|
|
4975
|
+
"name": "group",
|
|
4976
|
+
"hasDynamicHelp": false,
|
|
4977
|
+
"multiple": true,
|
|
4978
|
+
"type": "option"
|
|
4979
|
+
},
|
|
4980
|
+
"member": {
|
|
4981
|
+
"description": "Member account id or email (repeatable; must be an org member)",
|
|
4982
|
+
"name": "member",
|
|
4983
|
+
"hasDynamicHelp": false,
|
|
4984
|
+
"multiple": true,
|
|
4985
|
+
"type": "option"
|
|
4986
|
+
},
|
|
4987
|
+
"project": {
|
|
4988
|
+
"description": "Project id or key to scope the team to (repeatable)",
|
|
4989
|
+
"name": "project",
|
|
4990
|
+
"hasDynamicHelp": false,
|
|
4991
|
+
"multiple": true,
|
|
4992
|
+
"type": "option"
|
|
4993
|
+
},
|
|
4994
|
+
"role": {
|
|
4995
|
+
"description": "Role id or name to grant to the team (repeatable)",
|
|
4996
|
+
"name": "role",
|
|
4997
|
+
"hasDynamicHelp": false,
|
|
4998
|
+
"multiple": true,
|
|
4999
|
+
"type": "option"
|
|
4603
5000
|
}
|
|
4604
5001
|
},
|
|
4605
5002
|
"hasDynamicHelp": false,
|
|
4606
5003
|
"hiddenAliases": [],
|
|
4607
|
-
"id": "
|
|
5004
|
+
"id": "teams:create",
|
|
4608
5005
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4609
5006
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4610
5007
|
"pluginType": "core",
|
|
@@ -4614,22 +5011,22 @@
|
|
|
4614
5011
|
"relativePath": [
|
|
4615
5012
|
"dist",
|
|
4616
5013
|
"commands",
|
|
4617
|
-
"
|
|
4618
|
-
"
|
|
5014
|
+
"teams",
|
|
5015
|
+
"create.js"
|
|
4619
5016
|
]
|
|
4620
5017
|
},
|
|
4621
|
-
"
|
|
5018
|
+
"teams:delete": {
|
|
4622
5019
|
"aliases": [],
|
|
4623
5020
|
"args": {
|
|
4624
|
-
"
|
|
4625
|
-
"description": "
|
|
4626
|
-
"name": "
|
|
5021
|
+
"team": {
|
|
5022
|
+
"description": "Team id (UUID) or name",
|
|
5023
|
+
"name": "team",
|
|
4627
5024
|
"required": true
|
|
4628
5025
|
}
|
|
4629
5026
|
},
|
|
4630
|
-
"description": "
|
|
5027
|
+
"description": "Delete a team (its members lose the access this team granted)",
|
|
4631
5028
|
"examples": [
|
|
4632
|
-
"<%= config.bin %>
|
|
5029
|
+
"<%= config.bin %> teams delete DriverOne"
|
|
4633
5030
|
],
|
|
4634
5031
|
"flags": {
|
|
4635
5032
|
"json": {
|
|
@@ -4642,7 +5039,7 @@
|
|
|
4642
5039
|
},
|
|
4643
5040
|
"hasDynamicHelp": false,
|
|
4644
5041
|
"hiddenAliases": [],
|
|
4645
|
-
"id": "
|
|
5042
|
+
"id": "teams:delete",
|
|
4646
5043
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4647
5044
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4648
5045
|
"pluginType": "core",
|
|
@@ -4652,16 +5049,17 @@
|
|
|
4652
5049
|
"relativePath": [
|
|
4653
5050
|
"dist",
|
|
4654
5051
|
"commands",
|
|
4655
|
-
"
|
|
4656
|
-
"
|
|
5052
|
+
"teams",
|
|
5053
|
+
"delete.js"
|
|
4657
5054
|
]
|
|
4658
5055
|
},
|
|
4659
|
-
"
|
|
5056
|
+
"teams:list": {
|
|
4660
5057
|
"aliases": [],
|
|
4661
5058
|
"args": {},
|
|
4662
|
-
"description": "
|
|
5059
|
+
"description": "List the teams (people with scope) in your organization",
|
|
4663
5060
|
"examples": [
|
|
4664
|
-
"<%= config.bin %>
|
|
5061
|
+
"<%= config.bin %> teams list",
|
|
5062
|
+
"<%= config.bin %> teams list --json"
|
|
4665
5063
|
],
|
|
4666
5064
|
"flags": {
|
|
4667
5065
|
"json": {
|
|
@@ -4671,27 +5069,10 @@
|
|
|
4671
5069
|
"allowNo": false,
|
|
4672
5070
|
"type": "boolean"
|
|
4673
5071
|
},
|
|
4674
|
-
"
|
|
4675
|
-
"
|
|
4676
|
-
"
|
|
4677
|
-
"
|
|
4678
|
-
"required": true,
|
|
4679
|
-
"hasDynamicHelp": false,
|
|
4680
|
-
"multiple": false,
|
|
4681
|
-
"type": "option"
|
|
4682
|
-
},
|
|
4683
|
-
"name": {
|
|
4684
|
-
"description": "Human-readable token name",
|
|
4685
|
-
"name": "name",
|
|
4686
|
-
"required": true,
|
|
4687
|
-
"hasDynamicHelp": false,
|
|
4688
|
-
"multiple": false,
|
|
4689
|
-
"type": "option"
|
|
4690
|
-
},
|
|
4691
|
-
"environment-id": {
|
|
4692
|
-
"description": "Environment id the token is scoped to",
|
|
4693
|
-
"name": "environment-id",
|
|
4694
|
-
"required": true,
|
|
5072
|
+
"page": {
|
|
5073
|
+
"description": "Page number",
|
|
5074
|
+
"name": "page",
|
|
5075
|
+
"default": 1,
|
|
4695
5076
|
"hasDynamicHelp": false,
|
|
4696
5077
|
"multiple": false,
|
|
4697
5078
|
"type": "option"
|
|
@@ -4699,7 +5080,7 @@
|
|
|
4699
5080
|
},
|
|
4700
5081
|
"hasDynamicHelp": false,
|
|
4701
5082
|
"hiddenAliases": [],
|
|
4702
|
-
"id": "
|
|
5083
|
+
"id": "teams:list",
|
|
4703
5084
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4704
5085
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4705
5086
|
"pluginType": "core",
|
|
@@ -4709,17 +5090,27 @@
|
|
|
4709
5090
|
"relativePath": [
|
|
4710
5091
|
"dist",
|
|
4711
5092
|
"commands",
|
|
4712
|
-
"
|
|
4713
|
-
"
|
|
5093
|
+
"teams",
|
|
5094
|
+
"list.js"
|
|
4714
5095
|
]
|
|
4715
5096
|
},
|
|
4716
|
-
"
|
|
5097
|
+
"teams:remove-member": {
|
|
4717
5098
|
"aliases": [],
|
|
4718
|
-
"args": {
|
|
4719
|
-
|
|
5099
|
+
"args": {
|
|
5100
|
+
"team": {
|
|
5101
|
+
"description": "Team id (UUID) or name",
|
|
5102
|
+
"name": "team",
|
|
5103
|
+
"required": true
|
|
5104
|
+
},
|
|
5105
|
+
"member": {
|
|
5106
|
+
"description": "Member account id or email",
|
|
5107
|
+
"name": "member",
|
|
5108
|
+
"required": true
|
|
5109
|
+
}
|
|
5110
|
+
},
|
|
5111
|
+
"description": "Remove a person from a team, keeping the other members",
|
|
4720
5112
|
"examples": [
|
|
4721
|
-
"<%= config.bin %>
|
|
4722
|
-
"<%= config.bin %> tokens list -p acme-api --json"
|
|
5113
|
+
"<%= config.bin %> teams remove-member DriverOne client@acme.com"
|
|
4723
5114
|
],
|
|
4724
5115
|
"flags": {
|
|
4725
5116
|
"json": {
|
|
@@ -4728,20 +5119,11 @@
|
|
|
4728
5119
|
"name": "json",
|
|
4729
5120
|
"allowNo": false,
|
|
4730
5121
|
"type": "boolean"
|
|
4731
|
-
},
|
|
4732
|
-
"project": {
|
|
4733
|
-
"char": "p",
|
|
4734
|
-
"description": "Project id (UUID) or key",
|
|
4735
|
-
"name": "project",
|
|
4736
|
-
"required": true,
|
|
4737
|
-
"hasDynamicHelp": false,
|
|
4738
|
-
"multiple": false,
|
|
4739
|
-
"type": "option"
|
|
4740
5122
|
}
|
|
4741
5123
|
},
|
|
4742
5124
|
"hasDynamicHelp": false,
|
|
4743
5125
|
"hiddenAliases": [],
|
|
4744
|
-
"id": "
|
|
5126
|
+
"id": "teams:remove-member",
|
|
4745
5127
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4746
5128
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4747
5129
|
"pluginType": "core",
|
|
@@ -4751,22 +5133,22 @@
|
|
|
4751
5133
|
"relativePath": [
|
|
4752
5134
|
"dist",
|
|
4753
5135
|
"commands",
|
|
4754
|
-
"
|
|
4755
|
-
"
|
|
5136
|
+
"teams",
|
|
5137
|
+
"remove-member.js"
|
|
4756
5138
|
]
|
|
4757
5139
|
},
|
|
4758
|
-
"
|
|
5140
|
+
"teams:show": {
|
|
4759
5141
|
"aliases": [],
|
|
4760
5142
|
"args": {
|
|
4761
|
-
"
|
|
4762
|
-
"description": "
|
|
4763
|
-
"name": "
|
|
5143
|
+
"team": {
|
|
5144
|
+
"description": "Team id (UUID) or name",
|
|
5145
|
+
"name": "team",
|
|
4764
5146
|
"required": true
|
|
4765
5147
|
}
|
|
4766
5148
|
},
|
|
4767
|
-
"description": "
|
|
5149
|
+
"description": "Show a team by id or name (roles, group/project scope, members)",
|
|
4768
5150
|
"examples": [
|
|
4769
|
-
"<%= config.bin %>
|
|
5151
|
+
"<%= config.bin %> teams show DriverOne"
|
|
4770
5152
|
],
|
|
4771
5153
|
"flags": {
|
|
4772
5154
|
"json": {
|
|
@@ -4775,20 +5157,11 @@
|
|
|
4775
5157
|
"name": "json",
|
|
4776
5158
|
"allowNo": false,
|
|
4777
5159
|
"type": "boolean"
|
|
4778
|
-
},
|
|
4779
|
-
"project": {
|
|
4780
|
-
"char": "p",
|
|
4781
|
-
"description": "Project id (UUID) or key",
|
|
4782
|
-
"name": "project",
|
|
4783
|
-
"required": true,
|
|
4784
|
-
"hasDynamicHelp": false,
|
|
4785
|
-
"multiple": false,
|
|
4786
|
-
"type": "option"
|
|
4787
5160
|
}
|
|
4788
5161
|
},
|
|
4789
5162
|
"hasDynamicHelp": false,
|
|
4790
5163
|
"hiddenAliases": [],
|
|
4791
|
-
"id": "
|
|
5164
|
+
"id": "teams:show",
|
|
4792
5165
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4793
5166
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4794
5167
|
"pluginType": "core",
|
|
@@ -4798,22 +5171,23 @@
|
|
|
4798
5171
|
"relativePath": [
|
|
4799
5172
|
"dist",
|
|
4800
5173
|
"commands",
|
|
4801
|
-
"
|
|
4802
|
-
"
|
|
5174
|
+
"teams",
|
|
5175
|
+
"show.js"
|
|
4803
5176
|
]
|
|
4804
5177
|
},
|
|
4805
|
-
"
|
|
5178
|
+
"teams:update": {
|
|
4806
5179
|
"aliases": [],
|
|
4807
5180
|
"args": {
|
|
4808
|
-
"
|
|
4809
|
-
"description": "
|
|
4810
|
-
"name": "
|
|
5181
|
+
"team": {
|
|
5182
|
+
"description": "Team id (UUID) or name",
|
|
5183
|
+
"name": "team",
|
|
4811
5184
|
"required": true
|
|
4812
5185
|
}
|
|
4813
5186
|
},
|
|
4814
|
-
"description": "
|
|
5187
|
+
"description": "Update a team. Each given dimension REPLACES the whole set for that dimension.",
|
|
4815
5188
|
"examples": [
|
|
4816
|
-
"<%= config.bin %>
|
|
5189
|
+
"<%= config.bin %> teams update DriverOne --role Client --group DriverOne",
|
|
5190
|
+
"<%= config.bin %> teams update DriverOne --name \"DriverOne clients\""
|
|
4817
5191
|
],
|
|
4818
5192
|
"flags": {
|
|
4819
5193
|
"json": {
|
|
@@ -4823,19 +5197,52 @@
|
|
|
4823
5197
|
"allowNo": false,
|
|
4824
5198
|
"type": "boolean"
|
|
4825
5199
|
},
|
|
5200
|
+
"color": {
|
|
5201
|
+
"description": "Color label",
|
|
5202
|
+
"name": "color",
|
|
5203
|
+
"hasDynamicHelp": false,
|
|
5204
|
+
"multiple": false,
|
|
5205
|
+
"type": "option"
|
|
5206
|
+
},
|
|
5207
|
+
"group": {
|
|
5208
|
+
"description": "Group id or name (repeatable; replaces the group scope)",
|
|
5209
|
+
"name": "group",
|
|
5210
|
+
"hasDynamicHelp": false,
|
|
5211
|
+
"multiple": true,
|
|
5212
|
+
"type": "option"
|
|
5213
|
+
},
|
|
5214
|
+
"member": {
|
|
5215
|
+
"description": "Member account id or email (repeatable; replaces the members)",
|
|
5216
|
+
"name": "member",
|
|
5217
|
+
"hasDynamicHelp": false,
|
|
5218
|
+
"multiple": true,
|
|
5219
|
+
"type": "option"
|
|
5220
|
+
},
|
|
5221
|
+
"name": {
|
|
5222
|
+
"description": "New name",
|
|
5223
|
+
"name": "name",
|
|
5224
|
+
"hasDynamicHelp": false,
|
|
5225
|
+
"multiple": false,
|
|
5226
|
+
"type": "option"
|
|
5227
|
+
},
|
|
4826
5228
|
"project": {
|
|
4827
|
-
"
|
|
4828
|
-
"description": "Project id (UUID) or key",
|
|
5229
|
+
"description": "Project id or key (repeatable; replaces the project scope)",
|
|
4829
5230
|
"name": "project",
|
|
4830
|
-
"required": true,
|
|
4831
5231
|
"hasDynamicHelp": false,
|
|
4832
|
-
"multiple":
|
|
5232
|
+
"multiple": true,
|
|
5233
|
+
"type": "option"
|
|
5234
|
+
},
|
|
5235
|
+
"role": {
|
|
5236
|
+
"description": "Role id or name (repeatable; replaces the roles)",
|
|
5237
|
+
"name": "role",
|
|
5238
|
+
"hasDynamicHelp": false,
|
|
5239
|
+
"multiple": true,
|
|
4833
5240
|
"type": "option"
|
|
4834
5241
|
}
|
|
4835
5242
|
},
|
|
4836
5243
|
"hasDynamicHelp": false,
|
|
4837
5244
|
"hiddenAliases": [],
|
|
4838
|
-
"id": "
|
|
5245
|
+
"id": "teams:update",
|
|
4839
5246
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4840
5247
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4841
5248
|
"pluginType": "core",
|
|
@@ -4845,8 +5252,8 @@
|
|
|
4845
5252
|
"relativePath": [
|
|
4846
5253
|
"dist",
|
|
4847
5254
|
"commands",
|
|
4848
|
-
"
|
|
4849
|
-
"
|
|
5255
|
+
"teams",
|
|
5256
|
+
"update.js"
|
|
4850
5257
|
]
|
|
4851
5258
|
},
|
|
4852
5259
|
"tickets:approve": {
|
|
@@ -6321,5 +6728,5 @@
|
|
|
6321
6728
|
]
|
|
6322
6729
|
}
|
|
6323
6730
|
},
|
|
6324
|
-
"version": "0.0.
|
|
6731
|
+
"version": "0.0.15"
|
|
6325
6732
|
}
|