@bussolabs/closeyourit-cli 0.0.15 → 0.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/ideas/case.d.ts +14 -0
- package/dist/commands/ideas/case.js +33 -0
- package/dist/commands/ideas/update.d.ts +16 -0
- package/dist/commands/ideas/update.js +45 -0
- package/oclif.manifest.json +1384 -1247
- package/opencli.json +128 -2
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -469,19 +469,19 @@
|
|
|
469
469
|
"update.js"
|
|
470
470
|
]
|
|
471
471
|
},
|
|
472
|
-
"
|
|
472
|
+
"environments:create": {
|
|
473
473
|
"aliases": [],
|
|
474
474
|
"args": {
|
|
475
|
-
"
|
|
476
|
-
"description": "
|
|
477
|
-
"name": "
|
|
475
|
+
"code": {
|
|
476
|
+
"description": "Environment code (lowercase, e.g. production)",
|
|
477
|
+
"name": "code",
|
|
478
478
|
"required": true
|
|
479
479
|
}
|
|
480
480
|
},
|
|
481
|
-
"description": "Create
|
|
481
|
+
"description": "Create an environment (production, staging, …) in your organization",
|
|
482
482
|
"examples": [
|
|
483
|
-
"<%= config.bin %>
|
|
484
|
-
"<%= config.bin %>
|
|
483
|
+
"<%= config.bin %> environments create production --label Production",
|
|
484
|
+
"<%= config.bin %> environments create staging --label Staging --color amber"
|
|
485
485
|
],
|
|
486
486
|
"flags": {
|
|
487
487
|
"json": {
|
|
@@ -491,17 +491,39 @@
|
|
|
491
491
|
"allowNo": false,
|
|
492
492
|
"type": "boolean"
|
|
493
493
|
},
|
|
494
|
+
"label": {
|
|
495
|
+
"description": "Human-readable label",
|
|
496
|
+
"name": "label",
|
|
497
|
+
"required": true,
|
|
498
|
+
"hasDynamicHelp": false,
|
|
499
|
+
"multiple": false,
|
|
500
|
+
"type": "option"
|
|
501
|
+
},
|
|
494
502
|
"color": {
|
|
495
503
|
"description": "Color label",
|
|
496
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",
|
|
497
513
|
"hasDynamicHelp": false,
|
|
498
514
|
"multiple": false,
|
|
499
515
|
"type": "option"
|
|
516
|
+
},
|
|
517
|
+
"active": {
|
|
518
|
+
"description": "Whether the environment is active",
|
|
519
|
+
"name": "active",
|
|
520
|
+
"allowNo": true,
|
|
521
|
+
"type": "boolean"
|
|
500
522
|
}
|
|
501
523
|
},
|
|
502
524
|
"hasDynamicHelp": false,
|
|
503
525
|
"hiddenAliases": [],
|
|
504
|
-
"id": "
|
|
526
|
+
"id": "environments:create",
|
|
505
527
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
506
528
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
507
529
|
"pluginType": "core",
|
|
@@ -511,22 +533,22 @@
|
|
|
511
533
|
"relativePath": [
|
|
512
534
|
"dist",
|
|
513
535
|
"commands",
|
|
514
|
-
"
|
|
536
|
+
"environments",
|
|
515
537
|
"create.js"
|
|
516
538
|
]
|
|
517
539
|
},
|
|
518
|
-
"
|
|
540
|
+
"environments:delete": {
|
|
519
541
|
"aliases": [],
|
|
520
542
|
"args": {
|
|
521
|
-
"
|
|
522
|
-
"description": "
|
|
523
|
-
"name": "
|
|
543
|
+
"environment": {
|
|
544
|
+
"description": "Environment id (UUID) or code",
|
|
545
|
+
"name": "environment",
|
|
524
546
|
"required": true
|
|
525
547
|
}
|
|
526
548
|
},
|
|
527
|
-
"description": "Delete
|
|
549
|
+
"description": "Delete an environment (blocked while projects, tokens or monitors reference it)",
|
|
528
550
|
"examples": [
|
|
529
|
-
"<%= config.bin %>
|
|
551
|
+
"<%= config.bin %> environments delete staging --confirm"
|
|
530
552
|
],
|
|
531
553
|
"flags": {
|
|
532
554
|
"json": {
|
|
@@ -545,7 +567,7 @@
|
|
|
545
567
|
},
|
|
546
568
|
"hasDynamicHelp": false,
|
|
547
569
|
"hiddenAliases": [],
|
|
548
|
-
"id": "
|
|
570
|
+
"id": "environments:delete",
|
|
549
571
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
550
572
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
551
573
|
"pluginType": "core",
|
|
@@ -555,17 +577,17 @@
|
|
|
555
577
|
"relativePath": [
|
|
556
578
|
"dist",
|
|
557
579
|
"commands",
|
|
558
|
-
"
|
|
580
|
+
"environments",
|
|
559
581
|
"delete.js"
|
|
560
582
|
]
|
|
561
583
|
},
|
|
562
|
-
"
|
|
584
|
+
"environments:list": {
|
|
563
585
|
"aliases": [],
|
|
564
586
|
"args": {},
|
|
565
|
-
"description": "List the
|
|
587
|
+
"description": "List the environments (production, staging, …) in your organization",
|
|
566
588
|
"examples": [
|
|
567
|
-
"<%= config.bin %>
|
|
568
|
-
"<%= config.bin %>
|
|
589
|
+
"<%= config.bin %> environments list",
|
|
590
|
+
"<%= config.bin %> environments list --page 2 --json"
|
|
569
591
|
],
|
|
570
592
|
"flags": {
|
|
571
593
|
"json": {
|
|
@@ -586,7 +608,7 @@
|
|
|
586
608
|
},
|
|
587
609
|
"hasDynamicHelp": false,
|
|
588
610
|
"hiddenAliases": [],
|
|
589
|
-
"id": "
|
|
611
|
+
"id": "environments:list",
|
|
590
612
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
591
613
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
592
614
|
"pluginType": "core",
|
|
@@ -596,23 +618,24 @@
|
|
|
596
618
|
"relativePath": [
|
|
597
619
|
"dist",
|
|
598
620
|
"commands",
|
|
599
|
-
"
|
|
621
|
+
"environments",
|
|
600
622
|
"list.js"
|
|
601
623
|
]
|
|
602
624
|
},
|
|
603
|
-
"
|
|
625
|
+
"environments:update": {
|
|
604
626
|
"aliases": [],
|
|
605
627
|
"args": {
|
|
606
|
-
"
|
|
607
|
-
"description": "
|
|
608
|
-
"name": "
|
|
628
|
+
"environment": {
|
|
629
|
+
"description": "Environment id (UUID) or code",
|
|
630
|
+
"name": "environment",
|
|
609
631
|
"required": true
|
|
610
632
|
}
|
|
611
633
|
},
|
|
612
|
-
"description": "Update
|
|
634
|
+
"description": "Update an environment (recode, relabel, recolor, reorder, activate/deactivate)",
|
|
613
635
|
"examples": [
|
|
614
|
-
"<%= config.bin %>
|
|
615
|
-
"<%= config.bin %>
|
|
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"
|
|
616
639
|
],
|
|
617
640
|
"flags": {
|
|
618
641
|
"json": {
|
|
@@ -622,9 +645,16 @@
|
|
|
622
645
|
"allowNo": false,
|
|
623
646
|
"type": "boolean"
|
|
624
647
|
},
|
|
625
|
-
"
|
|
626
|
-
"description": "New
|
|
627
|
-
"name": "
|
|
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",
|
|
628
658
|
"hasDynamicHelp": false,
|
|
629
659
|
"multiple": false,
|
|
630
660
|
"type": "option"
|
|
@@ -635,11 +665,24 @@
|
|
|
635
665
|
"hasDynamicHelp": false,
|
|
636
666
|
"multiple": false,
|
|
637
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"
|
|
638
681
|
}
|
|
639
682
|
},
|
|
640
683
|
"hasDynamicHelp": false,
|
|
641
684
|
"hiddenAliases": [],
|
|
642
|
-
"id": "
|
|
685
|
+
"id": "environments:update",
|
|
643
686
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
644
687
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
645
688
|
"pluginType": "core",
|
|
@@ -649,22 +692,17 @@
|
|
|
649
692
|
"relativePath": [
|
|
650
693
|
"dist",
|
|
651
694
|
"commands",
|
|
652
|
-
"
|
|
695
|
+
"environments",
|
|
653
696
|
"update.js"
|
|
654
697
|
]
|
|
655
698
|
},
|
|
656
|
-
"
|
|
699
|
+
"errors:list": {
|
|
657
700
|
"aliases": [],
|
|
658
|
-
"args": {
|
|
659
|
-
|
|
660
|
-
"description": "Idea id",
|
|
661
|
-
"name": "id",
|
|
662
|
-
"required": true
|
|
663
|
-
}
|
|
664
|
-
},
|
|
665
|
-
"description": "Delete a comment from an open idea (author, or with ideas.comment.delete_any)",
|
|
701
|
+
"args": {},
|
|
702
|
+
"description": "List error groups for a project",
|
|
666
703
|
"examples": [
|
|
667
|
-
"<%= config.bin %>
|
|
704
|
+
"<%= config.bin %> errors list --project acme-api",
|
|
705
|
+
"<%= config.bin %> errors list -p acme-api --status unresolved --json"
|
|
668
706
|
],
|
|
669
707
|
"flags": {
|
|
670
708
|
"json": {
|
|
@@ -683,24 +721,25 @@
|
|
|
683
721
|
"multiple": false,
|
|
684
722
|
"type": "option"
|
|
685
723
|
},
|
|
686
|
-
"
|
|
687
|
-
"description": "
|
|
688
|
-
"name": "
|
|
689
|
-
"
|
|
724
|
+
"page": {
|
|
725
|
+
"description": "Page number",
|
|
726
|
+
"name": "page",
|
|
727
|
+
"default": 1,
|
|
690
728
|
"hasDynamicHelp": false,
|
|
691
729
|
"multiple": false,
|
|
692
730
|
"type": "option"
|
|
693
731
|
},
|
|
694
|
-
"
|
|
695
|
-
"description": "
|
|
696
|
-
"name": "
|
|
697
|
-
"
|
|
698
|
-
"
|
|
732
|
+
"status": {
|
|
733
|
+
"description": "Filter by status (e.g. unresolved, resolved, muted)",
|
|
734
|
+
"name": "status",
|
|
735
|
+
"hasDynamicHelp": false,
|
|
736
|
+
"multiple": false,
|
|
737
|
+
"type": "option"
|
|
699
738
|
}
|
|
700
739
|
},
|
|
701
740
|
"hasDynamicHelp": false,
|
|
702
741
|
"hiddenAliases": [],
|
|
703
|
-
"id": "
|
|
742
|
+
"id": "errors:list",
|
|
704
743
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
705
744
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
706
745
|
"pluginType": "core",
|
|
@@ -710,22 +749,22 @@
|
|
|
710
749
|
"relativePath": [
|
|
711
750
|
"dist",
|
|
712
751
|
"commands",
|
|
713
|
-
"
|
|
714
|
-
"
|
|
752
|
+
"errors",
|
|
753
|
+
"list.js"
|
|
715
754
|
]
|
|
716
755
|
},
|
|
717
|
-
"
|
|
756
|
+
"errors:mute": {
|
|
718
757
|
"aliases": [],
|
|
719
758
|
"args": {
|
|
720
759
|
"id": {
|
|
721
|
-
"description": "
|
|
760
|
+
"description": "Error group id",
|
|
722
761
|
"name": "id",
|
|
723
762
|
"required": true
|
|
724
763
|
}
|
|
725
764
|
},
|
|
726
|
-
"description": "
|
|
765
|
+
"description": "Mute an error group",
|
|
727
766
|
"examples": [
|
|
728
|
-
"<%= config.bin %>
|
|
767
|
+
"<%= config.bin %> errors mute <group-id> --project acme-api"
|
|
729
768
|
],
|
|
730
769
|
"flags": {
|
|
731
770
|
"json": {
|
|
@@ -743,19 +782,11 @@
|
|
|
743
782
|
"hasDynamicHelp": false,
|
|
744
783
|
"multiple": false,
|
|
745
784
|
"type": "option"
|
|
746
|
-
},
|
|
747
|
-
"body": {
|
|
748
|
-
"description": "Comment body",
|
|
749
|
-
"name": "body",
|
|
750
|
-
"required": true,
|
|
751
|
-
"hasDynamicHelp": false,
|
|
752
|
-
"multiple": false,
|
|
753
|
-
"type": "option"
|
|
754
785
|
}
|
|
755
786
|
},
|
|
756
787
|
"hasDynamicHelp": false,
|
|
757
788
|
"hiddenAliases": [],
|
|
758
|
-
"id": "
|
|
789
|
+
"id": "errors:mute",
|
|
759
790
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
760
791
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
761
792
|
"pluginType": "core",
|
|
@@ -765,23 +796,22 @@
|
|
|
765
796
|
"relativePath": [
|
|
766
797
|
"dist",
|
|
767
798
|
"commands",
|
|
768
|
-
"
|
|
769
|
-
"
|
|
799
|
+
"errors",
|
|
800
|
+
"mute.js"
|
|
770
801
|
]
|
|
771
802
|
},
|
|
772
|
-
"
|
|
803
|
+
"errors:promote": {
|
|
773
804
|
"aliases": [],
|
|
774
805
|
"args": {
|
|
775
806
|
"id": {
|
|
776
|
-
"description": "
|
|
807
|
+
"description": "Error group id",
|
|
777
808
|
"name": "id",
|
|
778
809
|
"required": true
|
|
779
810
|
}
|
|
780
811
|
},
|
|
781
|
-
"description": "
|
|
812
|
+
"description": "Promote an error group to a ticket",
|
|
782
813
|
"examples": [
|
|
783
|
-
"<%= config.bin %>
|
|
784
|
-
"<%= config.bin %> ideas comments <idea-id> -p acme-api --json"
|
|
814
|
+
"<%= config.bin %> errors promote <group-id> --project acme-api"
|
|
785
815
|
],
|
|
786
816
|
"flags": {
|
|
787
817
|
"json": {
|
|
@@ -803,7 +833,7 @@
|
|
|
803
833
|
},
|
|
804
834
|
"hasDynamicHelp": false,
|
|
805
835
|
"hiddenAliases": [],
|
|
806
|
-
"id": "
|
|
836
|
+
"id": "errors:promote",
|
|
807
837
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
808
838
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
809
839
|
"pluginType": "core",
|
|
@@ -813,23 +843,22 @@
|
|
|
813
843
|
"relativePath": [
|
|
814
844
|
"dist",
|
|
815
845
|
"commands",
|
|
816
|
-
"
|
|
817
|
-
"
|
|
846
|
+
"errors",
|
|
847
|
+
"promote.js"
|
|
818
848
|
]
|
|
819
849
|
},
|
|
820
|
-
"
|
|
850
|
+
"errors:reopen": {
|
|
821
851
|
"aliases": [],
|
|
822
852
|
"args": {
|
|
823
853
|
"id": {
|
|
824
|
-
"description": "
|
|
854
|
+
"description": "Error group id",
|
|
825
855
|
"name": "id",
|
|
826
856
|
"required": true
|
|
827
857
|
}
|
|
828
858
|
},
|
|
829
|
-
"description": "
|
|
859
|
+
"description": "Reopen a resolved error group",
|
|
830
860
|
"examples": [
|
|
831
|
-
"<%= config.bin %>
|
|
832
|
-
"<%= config.bin %> ideas convert <idea-id> -p acme-api --title \"Dark mode\" --description \"Full spec…\" --kind feature"
|
|
861
|
+
"<%= config.bin %> errors reopen <group-id> --project acme-api"
|
|
833
862
|
],
|
|
834
863
|
"flags": {
|
|
835
864
|
"json": {
|
|
@@ -847,46 +876,11 @@
|
|
|
847
876
|
"hasDynamicHelp": false,
|
|
848
877
|
"multiple": false,
|
|
849
878
|
"type": "option"
|
|
850
|
-
},
|
|
851
|
-
"title": {
|
|
852
|
-
"description": "Ticket title (skips AI when set together with --description)",
|
|
853
|
-
"name": "title",
|
|
854
|
-
"hasDynamicHelp": false,
|
|
855
|
-
"multiple": false,
|
|
856
|
-
"type": "option"
|
|
857
|
-
},
|
|
858
|
-
"description": {
|
|
859
|
-
"description": "Ticket description (skips AI when set together with --title)",
|
|
860
|
-
"name": "description",
|
|
861
|
-
"hasDynamicHelp": false,
|
|
862
|
-
"multiple": false,
|
|
863
|
-
"type": "option"
|
|
864
|
-
},
|
|
865
|
-
"kind": {
|
|
866
|
-
"description": "Ticket kind (default: feature if the project has a roadmap, else bug)",
|
|
867
|
-
"name": "kind",
|
|
868
|
-
"hasDynamicHelp": false,
|
|
869
|
-
"multiple": false,
|
|
870
|
-
"type": "option"
|
|
871
|
-
},
|
|
872
|
-
"status-id": {
|
|
873
|
-
"description": "Status lookup id (default: open)",
|
|
874
|
-
"name": "status-id",
|
|
875
|
-
"hasDynamicHelp": false,
|
|
876
|
-
"multiple": false,
|
|
877
|
-
"type": "option"
|
|
878
|
-
},
|
|
879
|
-
"priority-id": {
|
|
880
|
-
"description": "Priority lookup id (default: medium)",
|
|
881
|
-
"name": "priority-id",
|
|
882
|
-
"hasDynamicHelp": false,
|
|
883
|
-
"multiple": false,
|
|
884
|
-
"type": "option"
|
|
885
879
|
}
|
|
886
880
|
},
|
|
887
881
|
"hasDynamicHelp": false,
|
|
888
882
|
"hiddenAliases": [],
|
|
889
|
-
"id": "
|
|
883
|
+
"id": "errors:reopen",
|
|
890
884
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
891
885
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
892
886
|
"pluginType": "core",
|
|
@@ -896,16 +890,22 @@
|
|
|
896
890
|
"relativePath": [
|
|
897
891
|
"dist",
|
|
898
892
|
"commands",
|
|
899
|
-
"
|
|
900
|
-
"
|
|
893
|
+
"errors",
|
|
894
|
+
"reopen.js"
|
|
901
895
|
]
|
|
902
896
|
},
|
|
903
|
-
"
|
|
897
|
+
"errors:resolve": {
|
|
904
898
|
"aliases": [],
|
|
905
|
-
"args": {
|
|
906
|
-
|
|
899
|
+
"args": {
|
|
900
|
+
"id": {
|
|
901
|
+
"description": "Error group id",
|
|
902
|
+
"name": "id",
|
|
903
|
+
"required": true
|
|
904
|
+
}
|
|
905
|
+
},
|
|
906
|
+
"description": "Mark an error group as resolved",
|
|
907
907
|
"examples": [
|
|
908
|
-
"<%= config.bin %>
|
|
908
|
+
"<%= config.bin %> errors resolve <group-id> --project acme-api"
|
|
909
909
|
],
|
|
910
910
|
"flags": {
|
|
911
911
|
"json": {
|
|
@@ -923,41 +923,11 @@
|
|
|
923
923
|
"hasDynamicHelp": false,
|
|
924
924
|
"multiple": false,
|
|
925
925
|
"type": "option"
|
|
926
|
-
},
|
|
927
|
-
"title": {
|
|
928
|
-
"description": "Idea title",
|
|
929
|
-
"name": "title",
|
|
930
|
-
"required": true,
|
|
931
|
-
"hasDynamicHelp": false,
|
|
932
|
-
"multiple": false,
|
|
933
|
-
"type": "option"
|
|
934
|
-
},
|
|
935
|
-
"problem": {
|
|
936
|
-
"description": "Problem or need the idea solves",
|
|
937
|
-
"name": "problem",
|
|
938
|
-
"required": true,
|
|
939
|
-
"hasDynamicHelp": false,
|
|
940
|
-
"multiple": false,
|
|
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"
|
|
956
926
|
}
|
|
957
927
|
},
|
|
958
928
|
"hasDynamicHelp": false,
|
|
959
929
|
"hiddenAliases": [],
|
|
960
|
-
"id": "
|
|
930
|
+
"id": "errors:resolve",
|
|
961
931
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
962
932
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
963
933
|
"pluginType": "core",
|
|
@@ -967,17 +937,22 @@
|
|
|
967
937
|
"relativePath": [
|
|
968
938
|
"dist",
|
|
969
939
|
"commands",
|
|
970
|
-
"
|
|
971
|
-
"
|
|
940
|
+
"errors",
|
|
941
|
+
"resolve.js"
|
|
972
942
|
]
|
|
973
943
|
},
|
|
974
|
-
"
|
|
944
|
+
"errors:show": {
|
|
975
945
|
"aliases": [],
|
|
976
|
-
"args": {
|
|
977
|
-
|
|
946
|
+
"args": {
|
|
947
|
+
"id": {
|
|
948
|
+
"description": "Error group id",
|
|
949
|
+
"name": "id",
|
|
950
|
+
"required": true
|
|
951
|
+
}
|
|
952
|
+
},
|
|
953
|
+
"description": "Show a single error group",
|
|
978
954
|
"examples": [
|
|
979
|
-
"<%= config.bin %>
|
|
980
|
-
"<%= config.bin %> ideas list -p acme-api --status open --sort recent --json"
|
|
955
|
+
"<%= config.bin %> errors show <group-id> --project acme-api"
|
|
981
956
|
],
|
|
982
957
|
"flags": {
|
|
983
958
|
"json": {
|
|
@@ -995,33 +970,11 @@
|
|
|
995
970
|
"hasDynamicHelp": false,
|
|
996
971
|
"multiple": false,
|
|
997
972
|
"type": "option"
|
|
998
|
-
},
|
|
999
|
-
"page": {
|
|
1000
|
-
"description": "Page number",
|
|
1001
|
-
"name": "page",
|
|
1002
|
-
"default": 1,
|
|
1003
|
-
"hasDynamicHelp": false,
|
|
1004
|
-
"multiple": false,
|
|
1005
|
-
"type": "option"
|
|
1006
|
-
},
|
|
1007
|
-
"status": {
|
|
1008
|
-
"description": "Filter by status (open|converted|archived)",
|
|
1009
|
-
"name": "status",
|
|
1010
|
-
"hasDynamicHelp": false,
|
|
1011
|
-
"multiple": false,
|
|
1012
|
-
"type": "option"
|
|
1013
|
-
},
|
|
1014
|
-
"sort": {
|
|
1015
|
-
"description": "Sort order (votes|recent, default votes)",
|
|
1016
|
-
"name": "sort",
|
|
1017
|
-
"hasDynamicHelp": false,
|
|
1018
|
-
"multiple": false,
|
|
1019
|
-
"type": "option"
|
|
1020
973
|
}
|
|
1021
974
|
},
|
|
1022
975
|
"hasDynamicHelp": false,
|
|
1023
976
|
"hiddenAliases": [],
|
|
1024
|
-
"id": "
|
|
977
|
+
"id": "errors:show",
|
|
1025
978
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1026
979
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1027
980
|
"pluginType": "core",
|
|
@@ -1031,22 +984,22 @@
|
|
|
1031
984
|
"relativePath": [
|
|
1032
985
|
"dist",
|
|
1033
986
|
"commands",
|
|
1034
|
-
"
|
|
1035
|
-
"
|
|
987
|
+
"errors",
|
|
988
|
+
"show.js"
|
|
1036
989
|
]
|
|
1037
990
|
},
|
|
1038
|
-
"
|
|
991
|
+
"errors:unmute": {
|
|
1039
992
|
"aliases": [],
|
|
1040
993
|
"args": {
|
|
1041
994
|
"id": {
|
|
1042
|
-
"description": "
|
|
995
|
+
"description": "Error group id",
|
|
1043
996
|
"name": "id",
|
|
1044
997
|
"required": true
|
|
1045
998
|
}
|
|
1046
999
|
},
|
|
1047
|
-
"description": "
|
|
1000
|
+
"description": "Unmute an error group",
|
|
1048
1001
|
"examples": [
|
|
1049
|
-
"<%= config.bin %>
|
|
1002
|
+
"<%= config.bin %> errors unmute <group-id> --project acme-api"
|
|
1050
1003
|
],
|
|
1051
1004
|
"flags": {
|
|
1052
1005
|
"json": {
|
|
@@ -1068,7 +1021,7 @@
|
|
|
1068
1021
|
},
|
|
1069
1022
|
"hasDynamicHelp": false,
|
|
1070
1023
|
"hiddenAliases": [],
|
|
1071
|
-
"id": "
|
|
1024
|
+
"id": "errors:unmute",
|
|
1072
1025
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1073
1026
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1074
1027
|
"pluginType": "core",
|
|
@@ -1078,22 +1031,23 @@
|
|
|
1078
1031
|
"relativePath": [
|
|
1079
1032
|
"dist",
|
|
1080
1033
|
"commands",
|
|
1081
|
-
"
|
|
1082
|
-
"
|
|
1034
|
+
"errors",
|
|
1035
|
+
"unmute.js"
|
|
1083
1036
|
]
|
|
1084
1037
|
},
|
|
1085
|
-
"
|
|
1038
|
+
"groups:create": {
|
|
1086
1039
|
"aliases": [],
|
|
1087
1040
|
"args": {
|
|
1088
|
-
"
|
|
1089
|
-
"description": "
|
|
1090
|
-
"name": "
|
|
1041
|
+
"name": {
|
|
1042
|
+
"description": "Group name",
|
|
1043
|
+
"name": "name",
|
|
1091
1044
|
"required": true
|
|
1092
1045
|
}
|
|
1093
1046
|
},
|
|
1094
|
-
"description": "
|
|
1047
|
+
"description": "Create a group (a container of related projects, e.g. \"DriverOne\")",
|
|
1095
1048
|
"examples": [
|
|
1096
|
-
"<%= config.bin %>
|
|
1049
|
+
"<%= config.bin %> groups create DriverOne",
|
|
1050
|
+
"<%= config.bin %> groups create DriverOne --color indigo"
|
|
1097
1051
|
],
|
|
1098
1052
|
"flags": {
|
|
1099
1053
|
"json": {
|
|
@@ -1103,11 +1057,9 @@
|
|
|
1103
1057
|
"allowNo": false,
|
|
1104
1058
|
"type": "boolean"
|
|
1105
1059
|
},
|
|
1106
|
-
"
|
|
1107
|
-
"
|
|
1108
|
-
"
|
|
1109
|
-
"name": "project",
|
|
1110
|
-
"required": true,
|
|
1060
|
+
"color": {
|
|
1061
|
+
"description": "Color label",
|
|
1062
|
+
"name": "color",
|
|
1111
1063
|
"hasDynamicHelp": false,
|
|
1112
1064
|
"multiple": false,
|
|
1113
1065
|
"type": "option"
|
|
@@ -1115,7 +1067,7 @@
|
|
|
1115
1067
|
},
|
|
1116
1068
|
"hasDynamicHelp": false,
|
|
1117
1069
|
"hiddenAliases": [],
|
|
1118
|
-
"id": "
|
|
1070
|
+
"id": "groups:create",
|
|
1119
1071
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1120
1072
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1121
1073
|
"pluginType": "core",
|
|
@@ -1125,22 +1077,22 @@
|
|
|
1125
1077
|
"relativePath": [
|
|
1126
1078
|
"dist",
|
|
1127
1079
|
"commands",
|
|
1128
|
-
"
|
|
1129
|
-
"
|
|
1080
|
+
"groups",
|
|
1081
|
+
"create.js"
|
|
1130
1082
|
]
|
|
1131
1083
|
},
|
|
1132
|
-
"
|
|
1084
|
+
"groups:delete": {
|
|
1133
1085
|
"aliases": [],
|
|
1134
1086
|
"args": {
|
|
1135
|
-
"
|
|
1136
|
-
"description": "
|
|
1137
|
-
"name": "
|
|
1087
|
+
"group": {
|
|
1088
|
+
"description": "Group id (UUID) or name",
|
|
1089
|
+
"name": "group",
|
|
1138
1090
|
"required": true
|
|
1139
1091
|
}
|
|
1140
1092
|
},
|
|
1141
|
-
"description": "
|
|
1093
|
+
"description": "Delete a group (its projects are detached, not deleted)",
|
|
1142
1094
|
"examples": [
|
|
1143
|
-
"<%= config.bin %>
|
|
1095
|
+
"<%= config.bin %> groups delete Backend --confirm"
|
|
1144
1096
|
],
|
|
1145
1097
|
"flags": {
|
|
1146
1098
|
"json": {
|
|
@@ -1150,11 +1102,49 @@
|
|
|
1150
1102
|
"allowNo": false,
|
|
1151
1103
|
"type": "boolean"
|
|
1152
1104
|
},
|
|
1153
|
-
"
|
|
1154
|
-
"
|
|
1155
|
-
"
|
|
1156
|
-
"
|
|
1157
|
-
"
|
|
1105
|
+
"confirm": {
|
|
1106
|
+
"description": "Required: confirm the deletion",
|
|
1107
|
+
"name": "confirm",
|
|
1108
|
+
"allowNo": false,
|
|
1109
|
+
"type": "boolean"
|
|
1110
|
+
}
|
|
1111
|
+
},
|
|
1112
|
+
"hasDynamicHelp": false,
|
|
1113
|
+
"hiddenAliases": [],
|
|
1114
|
+
"id": "groups:delete",
|
|
1115
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1116
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1117
|
+
"pluginType": "core",
|
|
1118
|
+
"strict": true,
|
|
1119
|
+
"enableJsonFlag": true,
|
|
1120
|
+
"isESM": false,
|
|
1121
|
+
"relativePath": [
|
|
1122
|
+
"dist",
|
|
1123
|
+
"commands",
|
|
1124
|
+
"groups",
|
|
1125
|
+
"delete.js"
|
|
1126
|
+
]
|
|
1127
|
+
},
|
|
1128
|
+
"groups:list": {
|
|
1129
|
+
"aliases": [],
|
|
1130
|
+
"args": {},
|
|
1131
|
+
"description": "List the groups (macro-projects) in your organization",
|
|
1132
|
+
"examples": [
|
|
1133
|
+
"<%= config.bin %> groups list",
|
|
1134
|
+
"<%= config.bin %> groups list --page 2 --json"
|
|
1135
|
+
],
|
|
1136
|
+
"flags": {
|
|
1137
|
+
"json": {
|
|
1138
|
+
"description": "Format output as json.",
|
|
1139
|
+
"helpGroup": "GLOBAL",
|
|
1140
|
+
"name": "json",
|
|
1141
|
+
"allowNo": false,
|
|
1142
|
+
"type": "boolean"
|
|
1143
|
+
},
|
|
1144
|
+
"page": {
|
|
1145
|
+
"description": "Page number",
|
|
1146
|
+
"name": "page",
|
|
1147
|
+
"default": 1,
|
|
1158
1148
|
"hasDynamicHelp": false,
|
|
1159
1149
|
"multiple": false,
|
|
1160
1150
|
"type": "option"
|
|
@@ -1162,7 +1152,7 @@
|
|
|
1162
1152
|
},
|
|
1163
1153
|
"hasDynamicHelp": false,
|
|
1164
1154
|
"hiddenAliases": [],
|
|
1165
|
-
"id": "
|
|
1155
|
+
"id": "groups:list",
|
|
1166
1156
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1167
1157
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1168
1158
|
"pluginType": "core",
|
|
@@ -1172,8 +1162,61 @@
|
|
|
1172
1162
|
"relativePath": [
|
|
1173
1163
|
"dist",
|
|
1174
1164
|
"commands",
|
|
1175
|
-
"
|
|
1176
|
-
"
|
|
1165
|
+
"groups",
|
|
1166
|
+
"list.js"
|
|
1167
|
+
]
|
|
1168
|
+
},
|
|
1169
|
+
"groups:update": {
|
|
1170
|
+
"aliases": [],
|
|
1171
|
+
"args": {
|
|
1172
|
+
"group": {
|
|
1173
|
+
"description": "Group id (UUID) or name",
|
|
1174
|
+
"name": "group",
|
|
1175
|
+
"required": true
|
|
1176
|
+
}
|
|
1177
|
+
},
|
|
1178
|
+
"description": "Update a group (rename or recolor)",
|
|
1179
|
+
"examples": [
|
|
1180
|
+
"<%= config.bin %> groups update Backend --name \"Backend services\"",
|
|
1181
|
+
"<%= config.bin %> groups update Backend --color indigo"
|
|
1182
|
+
],
|
|
1183
|
+
"flags": {
|
|
1184
|
+
"json": {
|
|
1185
|
+
"description": "Format output as json.",
|
|
1186
|
+
"helpGroup": "GLOBAL",
|
|
1187
|
+
"name": "json",
|
|
1188
|
+
"allowNo": false,
|
|
1189
|
+
"type": "boolean"
|
|
1190
|
+
},
|
|
1191
|
+
"name": {
|
|
1192
|
+
"description": "New name",
|
|
1193
|
+
"name": "name",
|
|
1194
|
+
"hasDynamicHelp": false,
|
|
1195
|
+
"multiple": false,
|
|
1196
|
+
"type": "option"
|
|
1197
|
+
},
|
|
1198
|
+
"color": {
|
|
1199
|
+
"description": "Color label",
|
|
1200
|
+
"name": "color",
|
|
1201
|
+
"hasDynamicHelp": false,
|
|
1202
|
+
"multiple": false,
|
|
1203
|
+
"type": "option"
|
|
1204
|
+
}
|
|
1205
|
+
},
|
|
1206
|
+
"hasDynamicHelp": false,
|
|
1207
|
+
"hiddenAliases": [],
|
|
1208
|
+
"id": "groups:update",
|
|
1209
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1210
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1211
|
+
"pluginType": "core",
|
|
1212
|
+
"strict": true,
|
|
1213
|
+
"enableJsonFlag": true,
|
|
1214
|
+
"isESM": false,
|
|
1215
|
+
"relativePath": [
|
|
1216
|
+
"dist",
|
|
1217
|
+
"commands",
|
|
1218
|
+
"groups",
|
|
1219
|
+
"update.js"
|
|
1177
1220
|
]
|
|
1178
1221
|
},
|
|
1179
1222
|
"invitations:create": {
|
|
@@ -1345,245 +1388,18 @@
|
|
|
1345
1388
|
"revoke.js"
|
|
1346
1389
|
]
|
|
1347
1390
|
},
|
|
1348
|
-
"
|
|
1391
|
+
"kb:ask": {
|
|
1349
1392
|
"aliases": [],
|
|
1350
1393
|
"args": {
|
|
1351
|
-
"
|
|
1352
|
-
"description": "
|
|
1353
|
-
"name": "
|
|
1354
|
-
"required": true
|
|
1394
|
+
"question": {
|
|
1395
|
+
"description": "The question (all positional words are joined)",
|
|
1396
|
+
"name": "question"
|
|
1355
1397
|
}
|
|
1356
1398
|
},
|
|
1357
|
-
"description": "
|
|
1399
|
+
"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)",
|
|
1358
1400
|
"examples": [
|
|
1359
|
-
"<%= config.bin %>
|
|
1360
|
-
"<%= config.bin %>
|
|
1361
|
-
],
|
|
1362
|
-
"flags": {
|
|
1363
|
-
"json": {
|
|
1364
|
-
"description": "Format output as json.",
|
|
1365
|
-
"helpGroup": "GLOBAL",
|
|
1366
|
-
"name": "json",
|
|
1367
|
-
"allowNo": false,
|
|
1368
|
-
"type": "boolean"
|
|
1369
|
-
},
|
|
1370
|
-
"label": {
|
|
1371
|
-
"description": "Human-readable label",
|
|
1372
|
-
"name": "label",
|
|
1373
|
-
"required": true,
|
|
1374
|
-
"hasDynamicHelp": false,
|
|
1375
|
-
"multiple": false,
|
|
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"
|
|
1398
|
-
}
|
|
1399
|
-
},
|
|
1400
|
-
"hasDynamicHelp": false,
|
|
1401
|
-
"hiddenAliases": [],
|
|
1402
|
-
"id": "environments:create",
|
|
1403
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1404
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1405
|
-
"pluginType": "core",
|
|
1406
|
-
"strict": true,
|
|
1407
|
-
"enableJsonFlag": true,
|
|
1408
|
-
"isESM": false,
|
|
1409
|
-
"relativePath": [
|
|
1410
|
-
"dist",
|
|
1411
|
-
"commands",
|
|
1412
|
-
"environments",
|
|
1413
|
-
"create.js"
|
|
1414
|
-
]
|
|
1415
|
-
},
|
|
1416
|
-
"environments:delete": {
|
|
1417
|
-
"aliases": [],
|
|
1418
|
-
"args": {
|
|
1419
|
-
"environment": {
|
|
1420
|
-
"description": "Environment id (UUID) or code",
|
|
1421
|
-
"name": "environment",
|
|
1422
|
-
"required": true
|
|
1423
|
-
}
|
|
1424
|
-
},
|
|
1425
|
-
"description": "Delete an environment (blocked while projects, tokens or monitors reference it)",
|
|
1426
|
-
"examples": [
|
|
1427
|
-
"<%= config.bin %> environments delete staging --confirm"
|
|
1428
|
-
],
|
|
1429
|
-
"flags": {
|
|
1430
|
-
"json": {
|
|
1431
|
-
"description": "Format output as json.",
|
|
1432
|
-
"helpGroup": "GLOBAL",
|
|
1433
|
-
"name": "json",
|
|
1434
|
-
"allowNo": false,
|
|
1435
|
-
"type": "boolean"
|
|
1436
|
-
},
|
|
1437
|
-
"confirm": {
|
|
1438
|
-
"description": "Required: confirm the deletion",
|
|
1439
|
-
"name": "confirm",
|
|
1440
|
-
"allowNo": false,
|
|
1441
|
-
"type": "boolean"
|
|
1442
|
-
}
|
|
1443
|
-
},
|
|
1444
|
-
"hasDynamicHelp": false,
|
|
1445
|
-
"hiddenAliases": [],
|
|
1446
|
-
"id": "environments:delete",
|
|
1447
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1448
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1449
|
-
"pluginType": "core",
|
|
1450
|
-
"strict": true,
|
|
1451
|
-
"enableJsonFlag": true,
|
|
1452
|
-
"isESM": false,
|
|
1453
|
-
"relativePath": [
|
|
1454
|
-
"dist",
|
|
1455
|
-
"commands",
|
|
1456
|
-
"environments",
|
|
1457
|
-
"delete.js"
|
|
1458
|
-
]
|
|
1459
|
-
},
|
|
1460
|
-
"environments:list": {
|
|
1461
|
-
"aliases": [],
|
|
1462
|
-
"args": {},
|
|
1463
|
-
"description": "List the environments (production, staging, …) in your organization",
|
|
1464
|
-
"examples": [
|
|
1465
|
-
"<%= config.bin %> environments list",
|
|
1466
|
-
"<%= config.bin %> environments list --page 2 --json"
|
|
1467
|
-
],
|
|
1468
|
-
"flags": {
|
|
1469
|
-
"json": {
|
|
1470
|
-
"description": "Format output as json.",
|
|
1471
|
-
"helpGroup": "GLOBAL",
|
|
1472
|
-
"name": "json",
|
|
1473
|
-
"allowNo": false,
|
|
1474
|
-
"type": "boolean"
|
|
1475
|
-
},
|
|
1476
|
-
"page": {
|
|
1477
|
-
"description": "Page number",
|
|
1478
|
-
"name": "page",
|
|
1479
|
-
"default": 1,
|
|
1480
|
-
"hasDynamicHelp": false,
|
|
1481
|
-
"multiple": false,
|
|
1482
|
-
"type": "option"
|
|
1483
|
-
}
|
|
1484
|
-
},
|
|
1485
|
-
"hasDynamicHelp": false,
|
|
1486
|
-
"hiddenAliases": [],
|
|
1487
|
-
"id": "environments:list",
|
|
1488
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1489
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1490
|
-
"pluginType": "core",
|
|
1491
|
-
"strict": true,
|
|
1492
|
-
"enableJsonFlag": true,
|
|
1493
|
-
"isESM": false,
|
|
1494
|
-
"relativePath": [
|
|
1495
|
-
"dist",
|
|
1496
|
-
"commands",
|
|
1497
|
-
"environments",
|
|
1498
|
-
"list.js"
|
|
1499
|
-
]
|
|
1500
|
-
},
|
|
1501
|
-
"environments:update": {
|
|
1502
|
-
"aliases": [],
|
|
1503
|
-
"args": {
|
|
1504
|
-
"environment": {
|
|
1505
|
-
"description": "Environment id (UUID) or code",
|
|
1506
|
-
"name": "environment",
|
|
1507
|
-
"required": true
|
|
1508
|
-
}
|
|
1509
|
-
},
|
|
1510
|
-
"description": "Update an environment (recode, relabel, recolor, reorder, activate/deactivate)",
|
|
1511
|
-
"examples": [
|
|
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"
|
|
1515
|
-
],
|
|
1516
|
-
"flags": {
|
|
1517
|
-
"json": {
|
|
1518
|
-
"description": "Format output as json.",
|
|
1519
|
-
"helpGroup": "GLOBAL",
|
|
1520
|
-
"name": "json",
|
|
1521
|
-
"allowNo": false,
|
|
1522
|
-
"type": "boolean"
|
|
1523
|
-
},
|
|
1524
|
-
"code": {
|
|
1525
|
-
"description": "New code (lowercase)",
|
|
1526
|
-
"name": "code",
|
|
1527
|
-
"hasDynamicHelp": false,
|
|
1528
|
-
"multiple": false,
|
|
1529
|
-
"type": "option"
|
|
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",
|
|
1570
|
-
"commands",
|
|
1571
|
-
"environments",
|
|
1572
|
-
"update.js"
|
|
1573
|
-
]
|
|
1574
|
-
},
|
|
1575
|
-
"kb:ask": {
|
|
1576
|
-
"aliases": [],
|
|
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)",
|
|
1584
|
-
"examples": [
|
|
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"
|
|
1401
|
+
"<%= config.bin %> kb ask how do we roll back a kamal deploy",
|
|
1402
|
+
"<%= config.bin %> kb ask \"what is our retry/backoff policy?\" --json"
|
|
1587
1403
|
],
|
|
1588
1404
|
"flags": {
|
|
1589
1405
|
"json": {
|
|
@@ -1965,13 +1781,18 @@
|
|
|
1965
1781
|
"update.js"
|
|
1966
1782
|
]
|
|
1967
1783
|
},
|
|
1968
|
-
"
|
|
1784
|
+
"ideas:case": {
|
|
1969
1785
|
"aliases": [],
|
|
1970
|
-
"args": {
|
|
1971
|
-
|
|
1786
|
+
"args": {
|
|
1787
|
+
"id": {
|
|
1788
|
+
"description": "Idea id",
|
|
1789
|
+
"name": "id",
|
|
1790
|
+
"required": true
|
|
1791
|
+
}
|
|
1792
|
+
},
|
|
1793
|
+
"description": "Add a case (example/scenario) to an idea (only open ideas accept cases)",
|
|
1972
1794
|
"examples": [
|
|
1973
|
-
"<%= config.bin %>
|
|
1974
|
-
"<%= config.bin %> errors list -p acme-api --status unresolved --json"
|
|
1795
|
+
"<%= config.bin %> ideas case <idea-id> --project acme-api --title \"QR check-in\" --description \"Staff scans the QR at the door\""
|
|
1975
1796
|
],
|
|
1976
1797
|
"flags": {
|
|
1977
1798
|
"json": {
|
|
@@ -1990,17 +1811,17 @@
|
|
|
1990
1811
|
"multiple": false,
|
|
1991
1812
|
"type": "option"
|
|
1992
1813
|
},
|
|
1993
|
-
"
|
|
1994
|
-
"description": "
|
|
1995
|
-
"name": "
|
|
1996
|
-
"
|
|
1814
|
+
"title": {
|
|
1815
|
+
"description": "Case title",
|
|
1816
|
+
"name": "title",
|
|
1817
|
+
"required": true,
|
|
1997
1818
|
"hasDynamicHelp": false,
|
|
1998
1819
|
"multiple": false,
|
|
1999
1820
|
"type": "option"
|
|
2000
1821
|
},
|
|
2001
|
-
"
|
|
2002
|
-
"description": "
|
|
2003
|
-
"name": "
|
|
1822
|
+
"description": {
|
|
1823
|
+
"description": "Case description (optional)",
|
|
1824
|
+
"name": "description",
|
|
2004
1825
|
"hasDynamicHelp": false,
|
|
2005
1826
|
"multiple": false,
|
|
2006
1827
|
"type": "option"
|
|
@@ -2008,7 +1829,7 @@
|
|
|
2008
1829
|
},
|
|
2009
1830
|
"hasDynamicHelp": false,
|
|
2010
1831
|
"hiddenAliases": [],
|
|
2011
|
-
"id": "
|
|
1832
|
+
"id": "ideas:case",
|
|
2012
1833
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2013
1834
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2014
1835
|
"pluginType": "core",
|
|
@@ -2018,22 +1839,22 @@
|
|
|
2018
1839
|
"relativePath": [
|
|
2019
1840
|
"dist",
|
|
2020
1841
|
"commands",
|
|
2021
|
-
"
|
|
2022
|
-
"
|
|
1842
|
+
"ideas",
|
|
1843
|
+
"case.js"
|
|
2023
1844
|
]
|
|
2024
1845
|
},
|
|
2025
|
-
"
|
|
1846
|
+
"ideas:comment-delete": {
|
|
2026
1847
|
"aliases": [],
|
|
2027
1848
|
"args": {
|
|
2028
1849
|
"id": {
|
|
2029
|
-
"description": "
|
|
1850
|
+
"description": "Idea id",
|
|
2030
1851
|
"name": "id",
|
|
2031
1852
|
"required": true
|
|
2032
1853
|
}
|
|
2033
1854
|
},
|
|
2034
|
-
"description": "
|
|
1855
|
+
"description": "Delete a comment from an open idea (author, or with ideas.comment.delete_any)",
|
|
2035
1856
|
"examples": [
|
|
2036
|
-
"<%= config.bin %>
|
|
1857
|
+
"<%= config.bin %> ideas comment-delete <idea-id> --project acme-api --comment-id <id> --confirm"
|
|
2037
1858
|
],
|
|
2038
1859
|
"flags": {
|
|
2039
1860
|
"json": {
|
|
@@ -2051,11 +1872,25 @@
|
|
|
2051
1872
|
"hasDynamicHelp": false,
|
|
2052
1873
|
"multiple": false,
|
|
2053
1874
|
"type": "option"
|
|
1875
|
+
},
|
|
1876
|
+
"comment-id": {
|
|
1877
|
+
"description": "Comment id to delete",
|
|
1878
|
+
"name": "comment-id",
|
|
1879
|
+
"required": true,
|
|
1880
|
+
"hasDynamicHelp": false,
|
|
1881
|
+
"multiple": false,
|
|
1882
|
+
"type": "option"
|
|
1883
|
+
},
|
|
1884
|
+
"confirm": {
|
|
1885
|
+
"description": "Required: confirm the irreversible deletion",
|
|
1886
|
+
"name": "confirm",
|
|
1887
|
+
"allowNo": false,
|
|
1888
|
+
"type": "boolean"
|
|
2054
1889
|
}
|
|
2055
1890
|
},
|
|
2056
1891
|
"hasDynamicHelp": false,
|
|
2057
1892
|
"hiddenAliases": [],
|
|
2058
|
-
"id": "
|
|
1893
|
+
"id": "ideas:comment-delete",
|
|
2059
1894
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2060
1895
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2061
1896
|
"pluginType": "core",
|
|
@@ -2065,22 +1900,22 @@
|
|
|
2065
1900
|
"relativePath": [
|
|
2066
1901
|
"dist",
|
|
2067
1902
|
"commands",
|
|
2068
|
-
"
|
|
2069
|
-
"
|
|
1903
|
+
"ideas",
|
|
1904
|
+
"comment-delete.js"
|
|
2070
1905
|
]
|
|
2071
1906
|
},
|
|
2072
|
-
"
|
|
1907
|
+
"ideas:comment": {
|
|
2073
1908
|
"aliases": [],
|
|
2074
1909
|
"args": {
|
|
2075
1910
|
"id": {
|
|
2076
|
-
"description": "
|
|
1911
|
+
"description": "Idea id",
|
|
2077
1912
|
"name": "id",
|
|
2078
1913
|
"required": true
|
|
2079
1914
|
}
|
|
2080
1915
|
},
|
|
2081
|
-
"description": "
|
|
1916
|
+
"description": "Add a comment to an idea (only open ideas accept comments)",
|
|
2082
1917
|
"examples": [
|
|
2083
|
-
"<%= config.bin %>
|
|
1918
|
+
"<%= config.bin %> ideas comment <idea-id> --project acme-api --body \"Also needed on mobile\""
|
|
2084
1919
|
],
|
|
2085
1920
|
"flags": {
|
|
2086
1921
|
"json": {
|
|
@@ -2098,11 +1933,19 @@
|
|
|
2098
1933
|
"hasDynamicHelp": false,
|
|
2099
1934
|
"multiple": false,
|
|
2100
1935
|
"type": "option"
|
|
1936
|
+
},
|
|
1937
|
+
"body": {
|
|
1938
|
+
"description": "Comment body",
|
|
1939
|
+
"name": "body",
|
|
1940
|
+
"required": true,
|
|
1941
|
+
"hasDynamicHelp": false,
|
|
1942
|
+
"multiple": false,
|
|
1943
|
+
"type": "option"
|
|
2101
1944
|
}
|
|
2102
1945
|
},
|
|
2103
1946
|
"hasDynamicHelp": false,
|
|
2104
1947
|
"hiddenAliases": [],
|
|
2105
|
-
"id": "
|
|
1948
|
+
"id": "ideas:comment",
|
|
2106
1949
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2107
1950
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2108
1951
|
"pluginType": "core",
|
|
@@ -2112,22 +1955,23 @@
|
|
|
2112
1955
|
"relativePath": [
|
|
2113
1956
|
"dist",
|
|
2114
1957
|
"commands",
|
|
2115
|
-
"
|
|
2116
|
-
"
|
|
1958
|
+
"ideas",
|
|
1959
|
+
"comment.js"
|
|
2117
1960
|
]
|
|
2118
1961
|
},
|
|
2119
|
-
"
|
|
1962
|
+
"ideas:comments": {
|
|
2120
1963
|
"aliases": [],
|
|
2121
1964
|
"args": {
|
|
2122
1965
|
"id": {
|
|
2123
|
-
"description": "
|
|
1966
|
+
"description": "Idea id",
|
|
2124
1967
|
"name": "id",
|
|
2125
1968
|
"required": true
|
|
2126
1969
|
}
|
|
2127
1970
|
},
|
|
2128
|
-
"description": "
|
|
1971
|
+
"description": "List all comments of an idea (oldest first)",
|
|
2129
1972
|
"examples": [
|
|
2130
|
-
"<%= config.bin %>
|
|
1973
|
+
"<%= config.bin %> ideas comments <idea-id> --project acme-api",
|
|
1974
|
+
"<%= config.bin %> ideas comments <idea-id> -p acme-api --json"
|
|
2131
1975
|
],
|
|
2132
1976
|
"flags": {
|
|
2133
1977
|
"json": {
|
|
@@ -2149,7 +1993,7 @@
|
|
|
2149
1993
|
},
|
|
2150
1994
|
"hasDynamicHelp": false,
|
|
2151
1995
|
"hiddenAliases": [],
|
|
2152
|
-
"id": "
|
|
1996
|
+
"id": "ideas:comments",
|
|
2153
1997
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2154
1998
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2155
1999
|
"pluginType": "core",
|
|
@@ -2159,22 +2003,23 @@
|
|
|
2159
2003
|
"relativePath": [
|
|
2160
2004
|
"dist",
|
|
2161
2005
|
"commands",
|
|
2162
|
-
"
|
|
2163
|
-
"
|
|
2006
|
+
"ideas",
|
|
2007
|
+
"comments.js"
|
|
2164
2008
|
]
|
|
2165
2009
|
},
|
|
2166
|
-
"
|
|
2010
|
+
"ideas:convert": {
|
|
2167
2011
|
"aliases": [],
|
|
2168
2012
|
"args": {
|
|
2169
2013
|
"id": {
|
|
2170
|
-
"description": "
|
|
2014
|
+
"description": "Idea id",
|
|
2171
2015
|
"name": "id",
|
|
2172
2016
|
"required": true
|
|
2173
2017
|
}
|
|
2174
2018
|
},
|
|
2175
|
-
"description": "
|
|
2019
|
+
"description": "Convert an idea into a ticket. Without --title/--description the server AI synthesizes the draft from the idea and its comments (may take ~30s). Author always allowed; others need ideas.convert.",
|
|
2176
2020
|
"examples": [
|
|
2177
|
-
"<%= config.bin %>
|
|
2021
|
+
"<%= config.bin %> ideas convert <idea-id> --project acme-api",
|
|
2022
|
+
"<%= config.bin %> ideas convert <idea-id> -p acme-api --title \"Dark mode\" --description \"Full spec…\" --kind feature"
|
|
2178
2023
|
],
|
|
2179
2024
|
"flags": {
|
|
2180
2025
|
"json": {
|
|
@@ -2192,11 +2037,46 @@
|
|
|
2192
2037
|
"hasDynamicHelp": false,
|
|
2193
2038
|
"multiple": false,
|
|
2194
2039
|
"type": "option"
|
|
2040
|
+
},
|
|
2041
|
+
"title": {
|
|
2042
|
+
"description": "Ticket title (skips AI when set together with --description)",
|
|
2043
|
+
"name": "title",
|
|
2044
|
+
"hasDynamicHelp": false,
|
|
2045
|
+
"multiple": false,
|
|
2046
|
+
"type": "option"
|
|
2047
|
+
},
|
|
2048
|
+
"description": {
|
|
2049
|
+
"description": "Ticket description (skips AI when set together with --title)",
|
|
2050
|
+
"name": "description",
|
|
2051
|
+
"hasDynamicHelp": false,
|
|
2052
|
+
"multiple": false,
|
|
2053
|
+
"type": "option"
|
|
2054
|
+
},
|
|
2055
|
+
"kind": {
|
|
2056
|
+
"description": "Ticket kind (default: feature if the project has a roadmap, else bug)",
|
|
2057
|
+
"name": "kind",
|
|
2058
|
+
"hasDynamicHelp": false,
|
|
2059
|
+
"multiple": false,
|
|
2060
|
+
"type": "option"
|
|
2061
|
+
},
|
|
2062
|
+
"status-id": {
|
|
2063
|
+
"description": "Status lookup id (default: open)",
|
|
2064
|
+
"name": "status-id",
|
|
2065
|
+
"hasDynamicHelp": false,
|
|
2066
|
+
"multiple": false,
|
|
2067
|
+
"type": "option"
|
|
2068
|
+
},
|
|
2069
|
+
"priority-id": {
|
|
2070
|
+
"description": "Priority lookup id (default: medium)",
|
|
2071
|
+
"name": "priority-id",
|
|
2072
|
+
"hasDynamicHelp": false,
|
|
2073
|
+
"multiple": false,
|
|
2074
|
+
"type": "option"
|
|
2195
2075
|
}
|
|
2196
2076
|
},
|
|
2197
2077
|
"hasDynamicHelp": false,
|
|
2198
2078
|
"hiddenAliases": [],
|
|
2199
|
-
"id": "
|
|
2079
|
+
"id": "ideas:convert",
|
|
2200
2080
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2201
2081
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2202
2082
|
"pluginType": "core",
|
|
@@ -2206,22 +2086,16 @@
|
|
|
2206
2086
|
"relativePath": [
|
|
2207
2087
|
"dist",
|
|
2208
2088
|
"commands",
|
|
2209
|
-
"
|
|
2210
|
-
"
|
|
2089
|
+
"ideas",
|
|
2090
|
+
"convert.js"
|
|
2211
2091
|
]
|
|
2212
2092
|
},
|
|
2213
|
-
"
|
|
2093
|
+
"ideas:create": {
|
|
2214
2094
|
"aliases": [],
|
|
2215
|
-
"args": {
|
|
2216
|
-
|
|
2217
|
-
"description": "Error group id",
|
|
2218
|
-
"name": "id",
|
|
2219
|
-
"required": true
|
|
2220
|
-
}
|
|
2221
|
-
},
|
|
2222
|
-
"description": "Show a single error group",
|
|
2095
|
+
"args": {},
|
|
2096
|
+
"description": "Propose an idea for a project",
|
|
2223
2097
|
"examples": [
|
|
2224
|
-
"<%= config.bin %>
|
|
2098
|
+
"<%= 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\""
|
|
2225
2099
|
],
|
|
2226
2100
|
"flags": {
|
|
2227
2101
|
"json": {
|
|
@@ -2239,11 +2113,41 @@
|
|
|
2239
2113
|
"hasDynamicHelp": false,
|
|
2240
2114
|
"multiple": false,
|
|
2241
2115
|
"type": "option"
|
|
2116
|
+
},
|
|
2117
|
+
"title": {
|
|
2118
|
+
"description": "Idea title",
|
|
2119
|
+
"name": "title",
|
|
2120
|
+
"required": true,
|
|
2121
|
+
"hasDynamicHelp": false,
|
|
2122
|
+
"multiple": false,
|
|
2123
|
+
"type": "option"
|
|
2124
|
+
},
|
|
2125
|
+
"problem": {
|
|
2126
|
+
"description": "Problem or need the idea solves",
|
|
2127
|
+
"name": "problem",
|
|
2128
|
+
"required": true,
|
|
2129
|
+
"hasDynamicHelp": false,
|
|
2130
|
+
"multiple": false,
|
|
2131
|
+
"type": "option"
|
|
2132
|
+
},
|
|
2133
|
+
"solution": {
|
|
2134
|
+
"description": "Proposed solution (optional)",
|
|
2135
|
+
"name": "solution",
|
|
2136
|
+
"hasDynamicHelp": false,
|
|
2137
|
+
"multiple": false,
|
|
2138
|
+
"type": "option"
|
|
2139
|
+
},
|
|
2140
|
+
"stakeholders": {
|
|
2141
|
+
"description": "Who it helps — repeatable (optional)",
|
|
2142
|
+
"name": "stakeholders",
|
|
2143
|
+
"hasDynamicHelp": false,
|
|
2144
|
+
"multiple": true,
|
|
2145
|
+
"type": "option"
|
|
2242
2146
|
}
|
|
2243
2147
|
},
|
|
2244
2148
|
"hasDynamicHelp": false,
|
|
2245
2149
|
"hiddenAliases": [],
|
|
2246
|
-
"id": "
|
|
2150
|
+
"id": "ideas:create",
|
|
2247
2151
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2248
2152
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2249
2153
|
"pluginType": "core",
|
|
@@ -2253,22 +2157,17 @@
|
|
|
2253
2157
|
"relativePath": [
|
|
2254
2158
|
"dist",
|
|
2255
2159
|
"commands",
|
|
2256
|
-
"
|
|
2257
|
-
"
|
|
2160
|
+
"ideas",
|
|
2161
|
+
"create.js"
|
|
2258
2162
|
]
|
|
2259
2163
|
},
|
|
2260
|
-
"
|
|
2164
|
+
"ideas:list": {
|
|
2261
2165
|
"aliases": [],
|
|
2262
|
-
"args": {
|
|
2263
|
-
|
|
2264
|
-
"description": "Error group id",
|
|
2265
|
-
"name": "id",
|
|
2266
|
-
"required": true
|
|
2267
|
-
}
|
|
2268
|
-
},
|
|
2269
|
-
"description": "Unmute an error group",
|
|
2166
|
+
"args": {},
|
|
2167
|
+
"description": "List ideas for a project (sorted by votes)",
|
|
2270
2168
|
"examples": [
|
|
2271
|
-
"<%= config.bin %>
|
|
2169
|
+
"<%= config.bin %> ideas list --project acme-api",
|
|
2170
|
+
"<%= config.bin %> ideas list -p acme-api --status open --sort recent --json"
|
|
2272
2171
|
],
|
|
2273
2172
|
"flags": {
|
|
2274
2173
|
"json": {
|
|
@@ -2286,11 +2185,33 @@
|
|
|
2286
2185
|
"hasDynamicHelp": false,
|
|
2287
2186
|
"multiple": false,
|
|
2288
2187
|
"type": "option"
|
|
2188
|
+
},
|
|
2189
|
+
"page": {
|
|
2190
|
+
"description": "Page number",
|
|
2191
|
+
"name": "page",
|
|
2192
|
+
"default": 1,
|
|
2193
|
+
"hasDynamicHelp": false,
|
|
2194
|
+
"multiple": false,
|
|
2195
|
+
"type": "option"
|
|
2196
|
+
},
|
|
2197
|
+
"status": {
|
|
2198
|
+
"description": "Filter by status (open|converted|archived)",
|
|
2199
|
+
"name": "status",
|
|
2200
|
+
"hasDynamicHelp": false,
|
|
2201
|
+
"multiple": false,
|
|
2202
|
+
"type": "option"
|
|
2203
|
+
},
|
|
2204
|
+
"sort": {
|
|
2205
|
+
"description": "Sort order (votes|recent, default votes)",
|
|
2206
|
+
"name": "sort",
|
|
2207
|
+
"hasDynamicHelp": false,
|
|
2208
|
+
"multiple": false,
|
|
2209
|
+
"type": "option"
|
|
2289
2210
|
}
|
|
2290
2211
|
},
|
|
2291
2212
|
"hasDynamicHelp": false,
|
|
2292
2213
|
"hiddenAliases": [],
|
|
2293
|
-
"id": "
|
|
2214
|
+
"id": "ideas:list",
|
|
2294
2215
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2295
2216
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2296
2217
|
"pluginType": "core",
|
|
@@ -2300,18 +2221,22 @@
|
|
|
2300
2221
|
"relativePath": [
|
|
2301
2222
|
"dist",
|
|
2302
2223
|
"commands",
|
|
2303
|
-
"
|
|
2304
|
-
"
|
|
2224
|
+
"ideas",
|
|
2225
|
+
"list.js"
|
|
2305
2226
|
]
|
|
2306
2227
|
},
|
|
2307
|
-
"
|
|
2228
|
+
"ideas:show": {
|
|
2308
2229
|
"aliases": [],
|
|
2309
|
-
"args": {
|
|
2310
|
-
|
|
2230
|
+
"args": {
|
|
2231
|
+
"id": {
|
|
2232
|
+
"description": "Idea id",
|
|
2233
|
+
"name": "id",
|
|
2234
|
+
"required": true
|
|
2235
|
+
}
|
|
2236
|
+
},
|
|
2237
|
+
"description": "Show an idea (fields + problem, solution, stakeholders)",
|
|
2311
2238
|
"examples": [
|
|
2312
|
-
"<%= config.bin %>
|
|
2313
|
-
"<%= config.bin %> logs list --project acme-api --level error",
|
|
2314
|
-
"<%= config.bin %> logs list --trace-id 7f3c… --json"
|
|
2239
|
+
"<%= config.bin %> ideas show <idea-id> --project acme-api"
|
|
2315
2240
|
],
|
|
2316
2241
|
"flags": {
|
|
2317
2242
|
"json": {
|
|
@@ -2323,37 +2248,9 @@
|
|
|
2323
2248
|
},
|
|
2324
2249
|
"project": {
|
|
2325
2250
|
"char": "p",
|
|
2326
|
-
"description": "
|
|
2251
|
+
"description": "Project id (UUID) or key",
|
|
2327
2252
|
"name": "project",
|
|
2328
|
-
"
|
|
2329
|
-
"multiple": false,
|
|
2330
|
-
"type": "option"
|
|
2331
|
-
},
|
|
2332
|
-
"level": {
|
|
2333
|
-
"description": "Filter by level (debug, info, warning, error, fatal)",
|
|
2334
|
-
"name": "level",
|
|
2335
|
-
"hasDynamicHelp": false,
|
|
2336
|
-
"multiple": false,
|
|
2337
|
-
"type": "option"
|
|
2338
|
-
},
|
|
2339
|
-
"trace-id": {
|
|
2340
|
-
"description": "Filter by trace id (correlate one request)",
|
|
2341
|
-
"name": "trace-id",
|
|
2342
|
-
"hasDynamicHelp": false,
|
|
2343
|
-
"multiple": false,
|
|
2344
|
-
"type": "option"
|
|
2345
|
-
},
|
|
2346
|
-
"environment": {
|
|
2347
|
-
"description": "Filter by environment (e.g. production)",
|
|
2348
|
-
"name": "environment",
|
|
2349
|
-
"hasDynamicHelp": false,
|
|
2350
|
-
"multiple": false,
|
|
2351
|
-
"type": "option"
|
|
2352
|
-
},
|
|
2353
|
-
"page": {
|
|
2354
|
-
"description": "Page number",
|
|
2355
|
-
"name": "page",
|
|
2356
|
-
"default": 1,
|
|
2253
|
+
"required": true,
|
|
2357
2254
|
"hasDynamicHelp": false,
|
|
2358
2255
|
"multiple": false,
|
|
2359
2256
|
"type": "option"
|
|
@@ -2361,7 +2258,7 @@
|
|
|
2361
2258
|
},
|
|
2362
2259
|
"hasDynamicHelp": false,
|
|
2363
2260
|
"hiddenAliases": [],
|
|
2364
|
-
"id": "
|
|
2261
|
+
"id": "ideas:show",
|
|
2365
2262
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2366
2263
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2367
2264
|
"pluginType": "core",
|
|
@@ -2371,8 +2268,248 @@
|
|
|
2371
2268
|
"relativePath": [
|
|
2372
2269
|
"dist",
|
|
2373
2270
|
"commands",
|
|
2374
|
-
"
|
|
2375
|
-
"
|
|
2271
|
+
"ideas",
|
|
2272
|
+
"show.js"
|
|
2273
|
+
]
|
|
2274
|
+
},
|
|
2275
|
+
"ideas:unvote": {
|
|
2276
|
+
"aliases": [],
|
|
2277
|
+
"args": {
|
|
2278
|
+
"id": {
|
|
2279
|
+
"description": "Idea id",
|
|
2280
|
+
"name": "id",
|
|
2281
|
+
"required": true
|
|
2282
|
+
}
|
|
2283
|
+
},
|
|
2284
|
+
"description": "Remove your upvote from an idea (idempotent)",
|
|
2285
|
+
"examples": [
|
|
2286
|
+
"<%= config.bin %> ideas unvote <idea-id> --project acme-api"
|
|
2287
|
+
],
|
|
2288
|
+
"flags": {
|
|
2289
|
+
"json": {
|
|
2290
|
+
"description": "Format output as json.",
|
|
2291
|
+
"helpGroup": "GLOBAL",
|
|
2292
|
+
"name": "json",
|
|
2293
|
+
"allowNo": false,
|
|
2294
|
+
"type": "boolean"
|
|
2295
|
+
},
|
|
2296
|
+
"project": {
|
|
2297
|
+
"char": "p",
|
|
2298
|
+
"description": "Project id (UUID) or key",
|
|
2299
|
+
"name": "project",
|
|
2300
|
+
"required": true,
|
|
2301
|
+
"hasDynamicHelp": false,
|
|
2302
|
+
"multiple": false,
|
|
2303
|
+
"type": "option"
|
|
2304
|
+
}
|
|
2305
|
+
},
|
|
2306
|
+
"hasDynamicHelp": false,
|
|
2307
|
+
"hiddenAliases": [],
|
|
2308
|
+
"id": "ideas:unvote",
|
|
2309
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2310
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2311
|
+
"pluginType": "core",
|
|
2312
|
+
"strict": true,
|
|
2313
|
+
"enableJsonFlag": true,
|
|
2314
|
+
"isESM": false,
|
|
2315
|
+
"relativePath": [
|
|
2316
|
+
"dist",
|
|
2317
|
+
"commands",
|
|
2318
|
+
"ideas",
|
|
2319
|
+
"unvote.js"
|
|
2320
|
+
]
|
|
2321
|
+
},
|
|
2322
|
+
"ideas:update": {
|
|
2323
|
+
"aliases": [],
|
|
2324
|
+
"args": {
|
|
2325
|
+
"id": {
|
|
2326
|
+
"description": "Idea id",
|
|
2327
|
+
"name": "id",
|
|
2328
|
+
"required": true
|
|
2329
|
+
}
|
|
2330
|
+
},
|
|
2331
|
+
"description": "Update an idea (full replace of title/problem/solution — omitted fields are cleared)",
|
|
2332
|
+
"examples": [
|
|
2333
|
+
"<%= config.bin %> ideas update <idea-id> --project acme-api --title \"Referral\" --problem \"Growth is paid-only\" --solution \"Tracked invites\" --stakeholders \"Growth\" --stakeholders \"Backend\""
|
|
2334
|
+
],
|
|
2335
|
+
"flags": {
|
|
2336
|
+
"json": {
|
|
2337
|
+
"description": "Format output as json.",
|
|
2338
|
+
"helpGroup": "GLOBAL",
|
|
2339
|
+
"name": "json",
|
|
2340
|
+
"allowNo": false,
|
|
2341
|
+
"type": "boolean"
|
|
2342
|
+
},
|
|
2343
|
+
"project": {
|
|
2344
|
+
"char": "p",
|
|
2345
|
+
"description": "Project id (UUID) or key",
|
|
2346
|
+
"name": "project",
|
|
2347
|
+
"required": true,
|
|
2348
|
+
"hasDynamicHelp": false,
|
|
2349
|
+
"multiple": false,
|
|
2350
|
+
"type": "option"
|
|
2351
|
+
},
|
|
2352
|
+
"title": {
|
|
2353
|
+
"description": "Idea title",
|
|
2354
|
+
"name": "title",
|
|
2355
|
+
"hasDynamicHelp": false,
|
|
2356
|
+
"multiple": false,
|
|
2357
|
+
"type": "option"
|
|
2358
|
+
},
|
|
2359
|
+
"problem": {
|
|
2360
|
+
"description": "Problem or need the idea solves",
|
|
2361
|
+
"name": "problem",
|
|
2362
|
+
"hasDynamicHelp": false,
|
|
2363
|
+
"multiple": false,
|
|
2364
|
+
"type": "option"
|
|
2365
|
+
},
|
|
2366
|
+
"solution": {
|
|
2367
|
+
"description": "Proposed solution (cleared if omitted)",
|
|
2368
|
+
"name": "solution",
|
|
2369
|
+
"hasDynamicHelp": false,
|
|
2370
|
+
"multiple": false,
|
|
2371
|
+
"type": "option"
|
|
2372
|
+
},
|
|
2373
|
+
"stakeholders": {
|
|
2374
|
+
"description": "Who it helps — repeatable (replaced only when provided)",
|
|
2375
|
+
"name": "stakeholders",
|
|
2376
|
+
"hasDynamicHelp": false,
|
|
2377
|
+
"multiple": true,
|
|
2378
|
+
"type": "option"
|
|
2379
|
+
}
|
|
2380
|
+
},
|
|
2381
|
+
"hasDynamicHelp": false,
|
|
2382
|
+
"hiddenAliases": [],
|
|
2383
|
+
"id": "ideas:update",
|
|
2384
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2385
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2386
|
+
"pluginType": "core",
|
|
2387
|
+
"strict": true,
|
|
2388
|
+
"enableJsonFlag": true,
|
|
2389
|
+
"isESM": false,
|
|
2390
|
+
"relativePath": [
|
|
2391
|
+
"dist",
|
|
2392
|
+
"commands",
|
|
2393
|
+
"ideas",
|
|
2394
|
+
"update.js"
|
|
2395
|
+
]
|
|
2396
|
+
},
|
|
2397
|
+
"ideas:vote": {
|
|
2398
|
+
"aliases": [],
|
|
2399
|
+
"args": {
|
|
2400
|
+
"id": {
|
|
2401
|
+
"description": "Idea id",
|
|
2402
|
+
"name": "id",
|
|
2403
|
+
"required": true
|
|
2404
|
+
}
|
|
2405
|
+
},
|
|
2406
|
+
"description": "Upvote an idea (idempotent; only open ideas accept votes)",
|
|
2407
|
+
"examples": [
|
|
2408
|
+
"<%= config.bin %> ideas vote <idea-id> --project acme-api"
|
|
2409
|
+
],
|
|
2410
|
+
"flags": {
|
|
2411
|
+
"json": {
|
|
2412
|
+
"description": "Format output as json.",
|
|
2413
|
+
"helpGroup": "GLOBAL",
|
|
2414
|
+
"name": "json",
|
|
2415
|
+
"allowNo": false,
|
|
2416
|
+
"type": "boolean"
|
|
2417
|
+
},
|
|
2418
|
+
"project": {
|
|
2419
|
+
"char": "p",
|
|
2420
|
+
"description": "Project id (UUID) or key",
|
|
2421
|
+
"name": "project",
|
|
2422
|
+
"required": true,
|
|
2423
|
+
"hasDynamicHelp": false,
|
|
2424
|
+
"multiple": false,
|
|
2425
|
+
"type": "option"
|
|
2426
|
+
}
|
|
2427
|
+
},
|
|
2428
|
+
"hasDynamicHelp": false,
|
|
2429
|
+
"hiddenAliases": [],
|
|
2430
|
+
"id": "ideas:vote",
|
|
2431
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2432
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2433
|
+
"pluginType": "core",
|
|
2434
|
+
"strict": true,
|
|
2435
|
+
"enableJsonFlag": true,
|
|
2436
|
+
"isESM": false,
|
|
2437
|
+
"relativePath": [
|
|
2438
|
+
"dist",
|
|
2439
|
+
"commands",
|
|
2440
|
+
"ideas",
|
|
2441
|
+
"vote.js"
|
|
2442
|
+
]
|
|
2443
|
+
},
|
|
2444
|
+
"logs:list": {
|
|
2445
|
+
"aliases": [],
|
|
2446
|
+
"args": {},
|
|
2447
|
+
"description": "List structured log entries (cross-app stream)",
|
|
2448
|
+
"examples": [
|
|
2449
|
+
"<%= config.bin %> logs list",
|
|
2450
|
+
"<%= config.bin %> logs list --project acme-api --level error",
|
|
2451
|
+
"<%= config.bin %> logs list --trace-id 7f3c… --json"
|
|
2452
|
+
],
|
|
2453
|
+
"flags": {
|
|
2454
|
+
"json": {
|
|
2455
|
+
"description": "Format output as json.",
|
|
2456
|
+
"helpGroup": "GLOBAL",
|
|
2457
|
+
"name": "json",
|
|
2458
|
+
"allowNo": false,
|
|
2459
|
+
"type": "boolean"
|
|
2460
|
+
},
|
|
2461
|
+
"project": {
|
|
2462
|
+
"char": "p",
|
|
2463
|
+
"description": "Filter by project id (UUID) or key",
|
|
2464
|
+
"name": "project",
|
|
2465
|
+
"hasDynamicHelp": false,
|
|
2466
|
+
"multiple": false,
|
|
2467
|
+
"type": "option"
|
|
2468
|
+
},
|
|
2469
|
+
"level": {
|
|
2470
|
+
"description": "Filter by level (debug, info, warning, error, fatal)",
|
|
2471
|
+
"name": "level",
|
|
2472
|
+
"hasDynamicHelp": false,
|
|
2473
|
+
"multiple": false,
|
|
2474
|
+
"type": "option"
|
|
2475
|
+
},
|
|
2476
|
+
"trace-id": {
|
|
2477
|
+
"description": "Filter by trace id (correlate one request)",
|
|
2478
|
+
"name": "trace-id",
|
|
2479
|
+
"hasDynamicHelp": false,
|
|
2480
|
+
"multiple": false,
|
|
2481
|
+
"type": "option"
|
|
2482
|
+
},
|
|
2483
|
+
"environment": {
|
|
2484
|
+
"description": "Filter by environment (e.g. production)",
|
|
2485
|
+
"name": "environment",
|
|
2486
|
+
"hasDynamicHelp": false,
|
|
2487
|
+
"multiple": false,
|
|
2488
|
+
"type": "option"
|
|
2489
|
+
},
|
|
2490
|
+
"page": {
|
|
2491
|
+
"description": "Page number",
|
|
2492
|
+
"name": "page",
|
|
2493
|
+
"default": 1,
|
|
2494
|
+
"hasDynamicHelp": false,
|
|
2495
|
+
"multiple": false,
|
|
2496
|
+
"type": "option"
|
|
2497
|
+
}
|
|
2498
|
+
},
|
|
2499
|
+
"hasDynamicHelp": false,
|
|
2500
|
+
"hiddenAliases": [],
|
|
2501
|
+
"id": "logs:list",
|
|
2502
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2503
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2504
|
+
"pluginType": "core",
|
|
2505
|
+
"strict": true,
|
|
2506
|
+
"enableJsonFlag": true,
|
|
2507
|
+
"isESM": false,
|
|
2508
|
+
"relativePath": [
|
|
2509
|
+
"dist",
|
|
2510
|
+
"commands",
|
|
2511
|
+
"logs",
|
|
2512
|
+
"list.js"
|
|
2376
2513
|
]
|
|
2377
2514
|
},
|
|
2378
2515
|
"members:list": {
|
|
@@ -2676,13 +2813,13 @@
|
|
|
2676
2813
|
"show.js"
|
|
2677
2814
|
]
|
|
2678
2815
|
},
|
|
2679
|
-
"
|
|
2816
|
+
"monitors:create": {
|
|
2680
2817
|
"aliases": [],
|
|
2681
2818
|
"args": {},
|
|
2682
|
-
"description": "Create
|
|
2819
|
+
"description": "Create an uptime monitor for a project (one per environment)",
|
|
2683
2820
|
"examples": [
|
|
2684
|
-
"<%= config.bin %>
|
|
2685
|
-
"<%= config.bin %>
|
|
2821
|
+
"<%= config.bin %> monitors create --project acme-api --url https://acme.example.com/up",
|
|
2822
|
+
"<%= config.bin %> monitors create -p acme-api --url https://acme.example.com/up --environment <env-id> --interval-seconds 60 --expected-status 200"
|
|
2686
2823
|
],
|
|
2687
2824
|
"flags": {
|
|
2688
2825
|
"json": {
|
|
@@ -2701,46 +2838,67 @@
|
|
|
2701
2838
|
"multiple": false,
|
|
2702
2839
|
"type": "option"
|
|
2703
2840
|
},
|
|
2704
|
-
"
|
|
2705
|
-
"description": "
|
|
2706
|
-
"name": "
|
|
2841
|
+
"url": {
|
|
2842
|
+
"description": "URL to probe",
|
|
2843
|
+
"name": "url",
|
|
2707
2844
|
"required": true,
|
|
2708
2845
|
"hasDynamicHelp": false,
|
|
2709
2846
|
"multiple": false,
|
|
2710
2847
|
"type": "option"
|
|
2711
2848
|
},
|
|
2712
|
-
"
|
|
2713
|
-
"description": "
|
|
2714
|
-
"name": "
|
|
2715
|
-
"required": true,
|
|
2849
|
+
"environment": {
|
|
2850
|
+
"description": "Environment id (must be declared by the project)",
|
|
2851
|
+
"name": "environment",
|
|
2716
2852
|
"hasDynamicHelp": false,
|
|
2717
2853
|
"multiple": false,
|
|
2718
2854
|
"type": "option"
|
|
2719
2855
|
},
|
|
2720
|
-
"
|
|
2721
|
-
"description": "
|
|
2722
|
-
"name": "
|
|
2856
|
+
"http-method": {
|
|
2857
|
+
"description": "HTTP method (default GET)",
|
|
2858
|
+
"name": "http-method",
|
|
2723
2859
|
"hasDynamicHelp": false,
|
|
2724
2860
|
"multiple": false,
|
|
2725
2861
|
"type": "option"
|
|
2726
2862
|
},
|
|
2727
|
-
"
|
|
2728
|
-
"description": "
|
|
2729
|
-
"name": "
|
|
2863
|
+
"interval-seconds": {
|
|
2864
|
+
"description": "Seconds between checks",
|
|
2865
|
+
"name": "interval-seconds",
|
|
2730
2866
|
"hasDynamicHelp": false,
|
|
2731
2867
|
"multiple": false,
|
|
2732
2868
|
"type": "option"
|
|
2733
2869
|
},
|
|
2734
|
-
"
|
|
2735
|
-
"description": "
|
|
2736
|
-
"name": "
|
|
2737
|
-
"
|
|
2738
|
-
"
|
|
2870
|
+
"expected-status": {
|
|
2871
|
+
"description": "Expected HTTP status code",
|
|
2872
|
+
"name": "expected-status",
|
|
2873
|
+
"hasDynamicHelp": false,
|
|
2874
|
+
"multiple": false,
|
|
2875
|
+
"type": "option"
|
|
2876
|
+
},
|
|
2877
|
+
"timeout-seconds": {
|
|
2878
|
+
"description": "Request timeout in seconds",
|
|
2879
|
+
"name": "timeout-seconds",
|
|
2880
|
+
"hasDynamicHelp": false,
|
|
2881
|
+
"multiple": false,
|
|
2882
|
+
"type": "option"
|
|
2883
|
+
},
|
|
2884
|
+
"expected-body-keyword": {
|
|
2885
|
+
"description": "Keyword expected in the response body (check fails without it; not with HEAD)",
|
|
2886
|
+
"name": "expected-body-keyword",
|
|
2887
|
+
"hasDynamicHelp": false,
|
|
2888
|
+
"multiple": false,
|
|
2889
|
+
"type": "option"
|
|
2890
|
+
},
|
|
2891
|
+
"ssl-expiry-warn-days": {
|
|
2892
|
+
"description": "Alert when the TLS certificate has at most N days left (empty = off)",
|
|
2893
|
+
"name": "ssl-expiry-warn-days",
|
|
2894
|
+
"hasDynamicHelp": false,
|
|
2895
|
+
"multiple": false,
|
|
2896
|
+
"type": "option"
|
|
2739
2897
|
}
|
|
2740
2898
|
},
|
|
2741
2899
|
"hasDynamicHelp": false,
|
|
2742
2900
|
"hiddenAliases": [],
|
|
2743
|
-
"id": "
|
|
2901
|
+
"id": "monitors:create",
|
|
2744
2902
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2745
2903
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2746
2904
|
"pluginType": "core",
|
|
@@ -2750,22 +2908,22 @@
|
|
|
2750
2908
|
"relativePath": [
|
|
2751
2909
|
"dist",
|
|
2752
2910
|
"commands",
|
|
2753
|
-
"
|
|
2911
|
+
"monitors",
|
|
2754
2912
|
"create.js"
|
|
2755
2913
|
]
|
|
2756
2914
|
},
|
|
2757
|
-
"
|
|
2915
|
+
"monitors:delete": {
|
|
2758
2916
|
"aliases": [],
|
|
2759
2917
|
"args": {
|
|
2760
2918
|
"id": {
|
|
2761
|
-
"description": "
|
|
2919
|
+
"description": "Monitor id",
|
|
2762
2920
|
"name": "id",
|
|
2763
2921
|
"required": true
|
|
2764
2922
|
}
|
|
2765
2923
|
},
|
|
2766
|
-
"description": "Delete
|
|
2924
|
+
"description": "Delete an uptime monitor (irreversible)",
|
|
2767
2925
|
"examples": [
|
|
2768
|
-
"<%= config.bin %>
|
|
2926
|
+
"<%= config.bin %> monitors delete <monitor-id> --project acme-api --confirm"
|
|
2769
2927
|
],
|
|
2770
2928
|
"flags": {
|
|
2771
2929
|
"json": {
|
|
@@ -2793,7 +2951,7 @@
|
|
|
2793
2951
|
},
|
|
2794
2952
|
"hasDynamicHelp": false,
|
|
2795
2953
|
"hiddenAliases": [],
|
|
2796
|
-
"id": "
|
|
2954
|
+
"id": "monitors:delete",
|
|
2797
2955
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2798
2956
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2799
2957
|
"pluginType": "core",
|
|
@@ -2803,17 +2961,17 @@
|
|
|
2803
2961
|
"relativePath": [
|
|
2804
2962
|
"dist",
|
|
2805
2963
|
"commands",
|
|
2806
|
-
"
|
|
2964
|
+
"monitors",
|
|
2807
2965
|
"delete.js"
|
|
2808
2966
|
]
|
|
2809
2967
|
},
|
|
2810
|
-
"
|
|
2968
|
+
"monitors:list": {
|
|
2811
2969
|
"aliases": [],
|
|
2812
2970
|
"args": {},
|
|
2813
|
-
"description": "List the
|
|
2971
|
+
"description": "List the uptime monitors for a project",
|
|
2814
2972
|
"examples": [
|
|
2815
|
-
"<%= config.bin %>
|
|
2816
|
-
"<%= config.bin %>
|
|
2973
|
+
"<%= config.bin %> monitors list --project acme-api",
|
|
2974
|
+
"<%= config.bin %> monitors list -p acme-api --json"
|
|
2817
2975
|
],
|
|
2818
2976
|
"flags": {
|
|
2819
2977
|
"json": {
|
|
@@ -2843,7 +3001,7 @@
|
|
|
2843
3001
|
},
|
|
2844
3002
|
"hasDynamicHelp": false,
|
|
2845
3003
|
"hiddenAliases": [],
|
|
2846
|
-
"id": "
|
|
3004
|
+
"id": "monitors:list",
|
|
2847
3005
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2848
3006
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2849
3007
|
"pluginType": "core",
|
|
@@ -2853,22 +3011,22 @@
|
|
|
2853
3011
|
"relativePath": [
|
|
2854
3012
|
"dist",
|
|
2855
3013
|
"commands",
|
|
2856
|
-
"
|
|
3014
|
+
"monitors",
|
|
2857
3015
|
"list.js"
|
|
2858
3016
|
]
|
|
2859
3017
|
},
|
|
2860
|
-
"
|
|
3018
|
+
"monitors:pause": {
|
|
2861
3019
|
"aliases": [],
|
|
2862
3020
|
"args": {
|
|
2863
3021
|
"id": {
|
|
2864
|
-
"description": "
|
|
3022
|
+
"description": "Monitor id",
|
|
2865
3023
|
"name": "id",
|
|
2866
3024
|
"required": true
|
|
2867
3025
|
}
|
|
2868
3026
|
},
|
|
2869
|
-
"description": "
|
|
3027
|
+
"description": "Pause an uptime monitor (stops scheduling checks)",
|
|
2870
3028
|
"examples": [
|
|
2871
|
-
"<%= config.bin %>
|
|
3029
|
+
"<%= config.bin %> monitors pause <monitor-id> --project acme-api"
|
|
2872
3030
|
],
|
|
2873
3031
|
"flags": {
|
|
2874
3032
|
"json": {
|
|
@@ -2890,7 +3048,7 @@
|
|
|
2890
3048
|
},
|
|
2891
3049
|
"hasDynamicHelp": false,
|
|
2892
3050
|
"hiddenAliases": [],
|
|
2893
|
-
"id": "
|
|
3051
|
+
"id": "monitors:pause",
|
|
2894
3052
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2895
3053
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2896
3054
|
"pluginType": "core",
|
|
@@ -2900,23 +3058,117 @@
|
|
|
2900
3058
|
"relativePath": [
|
|
2901
3059
|
"dist",
|
|
2902
3060
|
"commands",
|
|
2903
|
-
"
|
|
3061
|
+
"monitors",
|
|
3062
|
+
"pause.js"
|
|
3063
|
+
]
|
|
3064
|
+
},
|
|
3065
|
+
"monitors:resume": {
|
|
3066
|
+
"aliases": [],
|
|
3067
|
+
"args": {
|
|
3068
|
+
"id": {
|
|
3069
|
+
"description": "Monitor id",
|
|
3070
|
+
"name": "id",
|
|
3071
|
+
"required": true
|
|
3072
|
+
}
|
|
3073
|
+
},
|
|
3074
|
+
"description": "Resume a paused uptime monitor (re-enables scheduling)",
|
|
3075
|
+
"examples": [
|
|
3076
|
+
"<%= config.bin %> monitors resume <monitor-id> --project acme-api"
|
|
3077
|
+
],
|
|
3078
|
+
"flags": {
|
|
3079
|
+
"json": {
|
|
3080
|
+
"description": "Format output as json.",
|
|
3081
|
+
"helpGroup": "GLOBAL",
|
|
3082
|
+
"name": "json",
|
|
3083
|
+
"allowNo": false,
|
|
3084
|
+
"type": "boolean"
|
|
3085
|
+
},
|
|
3086
|
+
"project": {
|
|
3087
|
+
"char": "p",
|
|
3088
|
+
"description": "Project id (UUID) or key",
|
|
3089
|
+
"name": "project",
|
|
3090
|
+
"required": true,
|
|
3091
|
+
"hasDynamicHelp": false,
|
|
3092
|
+
"multiple": false,
|
|
3093
|
+
"type": "option"
|
|
3094
|
+
}
|
|
3095
|
+
},
|
|
3096
|
+
"hasDynamicHelp": false,
|
|
3097
|
+
"hiddenAliases": [],
|
|
3098
|
+
"id": "monitors:resume",
|
|
3099
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3100
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3101
|
+
"pluginType": "core",
|
|
3102
|
+
"strict": true,
|
|
3103
|
+
"enableJsonFlag": true,
|
|
3104
|
+
"isESM": false,
|
|
3105
|
+
"relativePath": [
|
|
3106
|
+
"dist",
|
|
3107
|
+
"commands",
|
|
3108
|
+
"monitors",
|
|
3109
|
+
"resume.js"
|
|
3110
|
+
]
|
|
3111
|
+
},
|
|
3112
|
+
"monitors:show": {
|
|
3113
|
+
"aliases": [],
|
|
3114
|
+
"args": {
|
|
3115
|
+
"id": {
|
|
3116
|
+
"description": "Monitor id",
|
|
3117
|
+
"name": "id",
|
|
3118
|
+
"required": true
|
|
3119
|
+
}
|
|
3120
|
+
},
|
|
3121
|
+
"description": "Show a single uptime monitor",
|
|
3122
|
+
"examples": [
|
|
3123
|
+
"<%= config.bin %> monitors show <monitor-id> --project acme-api"
|
|
3124
|
+
],
|
|
3125
|
+
"flags": {
|
|
3126
|
+
"json": {
|
|
3127
|
+
"description": "Format output as json.",
|
|
3128
|
+
"helpGroup": "GLOBAL",
|
|
3129
|
+
"name": "json",
|
|
3130
|
+
"allowNo": false,
|
|
3131
|
+
"type": "boolean"
|
|
3132
|
+
},
|
|
3133
|
+
"project": {
|
|
3134
|
+
"char": "p",
|
|
3135
|
+
"description": "Project id (UUID) or key",
|
|
3136
|
+
"name": "project",
|
|
3137
|
+
"required": true,
|
|
3138
|
+
"hasDynamicHelp": false,
|
|
3139
|
+
"multiple": false,
|
|
3140
|
+
"type": "option"
|
|
3141
|
+
}
|
|
3142
|
+
},
|
|
3143
|
+
"hasDynamicHelp": false,
|
|
3144
|
+
"hiddenAliases": [],
|
|
3145
|
+
"id": "monitors:show",
|
|
3146
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3147
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3148
|
+
"pluginType": "core",
|
|
3149
|
+
"strict": true,
|
|
3150
|
+
"enableJsonFlag": true,
|
|
3151
|
+
"isESM": false,
|
|
3152
|
+
"relativePath": [
|
|
3153
|
+
"dist",
|
|
3154
|
+
"commands",
|
|
3155
|
+
"monitors",
|
|
2904
3156
|
"show.js"
|
|
2905
3157
|
]
|
|
2906
3158
|
},
|
|
2907
|
-
"
|
|
3159
|
+
"monitors:update": {
|
|
2908
3160
|
"aliases": [],
|
|
2909
3161
|
"args": {
|
|
2910
3162
|
"id": {
|
|
2911
|
-
"description": "
|
|
3163
|
+
"description": "Monitor id",
|
|
2912
3164
|
"name": "id",
|
|
2913
3165
|
"required": true
|
|
2914
3166
|
}
|
|
2915
3167
|
},
|
|
2916
|
-
"description": "Update
|
|
3168
|
+
"description": "Update an uptime monitor (URL, method, interval, expected status, timeout)",
|
|
2917
3169
|
"examples": [
|
|
2918
|
-
"<%= config.bin %>
|
|
2919
|
-
"<%= config.bin %>
|
|
3170
|
+
"<%= config.bin %> monitors update <monitor-id> --project acme-api --interval-seconds 120",
|
|
3171
|
+
"<%= config.bin %> monitors update <monitor-id> -p acme-api --url https://acme.example.com/health --expected-status 204"
|
|
2920
3172
|
],
|
|
2921
3173
|
"flags": {
|
|
2922
3174
|
"json": {
|
|
@@ -2935,44 +3187,59 @@
|
|
|
2935
3187
|
"multiple": false,
|
|
2936
3188
|
"type": "option"
|
|
2937
3189
|
},
|
|
2938
|
-
"
|
|
2939
|
-
"description": "
|
|
2940
|
-
"name": "
|
|
3190
|
+
"url": {
|
|
3191
|
+
"description": "URL to probe",
|
|
3192
|
+
"name": "url",
|
|
2941
3193
|
"hasDynamicHelp": false,
|
|
2942
3194
|
"multiple": false,
|
|
2943
3195
|
"type": "option"
|
|
2944
3196
|
},
|
|
2945
|
-
"
|
|
2946
|
-
"description": "
|
|
2947
|
-
"name": "
|
|
3197
|
+
"http-method": {
|
|
3198
|
+
"description": "HTTP method",
|
|
3199
|
+
"name": "http-method",
|
|
2948
3200
|
"hasDynamicHelp": false,
|
|
2949
3201
|
"multiple": false,
|
|
2950
3202
|
"type": "option"
|
|
2951
3203
|
},
|
|
2952
|
-
"
|
|
2953
|
-
"description": "
|
|
2954
|
-
"name": "
|
|
3204
|
+
"interval-seconds": {
|
|
3205
|
+
"description": "Seconds between checks",
|
|
3206
|
+
"name": "interval-seconds",
|
|
2955
3207
|
"hasDynamicHelp": false,
|
|
2956
3208
|
"multiple": false,
|
|
2957
3209
|
"type": "option"
|
|
2958
3210
|
},
|
|
2959
|
-
"
|
|
2960
|
-
"description": "
|
|
2961
|
-
"name": "
|
|
3211
|
+
"expected-status": {
|
|
3212
|
+
"description": "Expected HTTP status code",
|
|
3213
|
+
"name": "expected-status",
|
|
2962
3214
|
"hasDynamicHelp": false,
|
|
2963
3215
|
"multiple": false,
|
|
2964
3216
|
"type": "option"
|
|
2965
3217
|
},
|
|
2966
|
-
"
|
|
2967
|
-
"description": "
|
|
2968
|
-
"name": "
|
|
2969
|
-
"
|
|
2970
|
-
"
|
|
3218
|
+
"timeout-seconds": {
|
|
3219
|
+
"description": "Request timeout in seconds",
|
|
3220
|
+
"name": "timeout-seconds",
|
|
3221
|
+
"hasDynamicHelp": false,
|
|
3222
|
+
"multiple": false,
|
|
3223
|
+
"type": "option"
|
|
3224
|
+
},
|
|
3225
|
+
"expected-body-keyword": {
|
|
3226
|
+
"description": "Keyword expected in the response body (check fails without it; not with HEAD)",
|
|
3227
|
+
"name": "expected-body-keyword",
|
|
3228
|
+
"hasDynamicHelp": false,
|
|
3229
|
+
"multiple": false,
|
|
3230
|
+
"type": "option"
|
|
3231
|
+
},
|
|
3232
|
+
"ssl-expiry-warn-days": {
|
|
3233
|
+
"description": "Alert when the TLS certificate has at most N days left (empty = off)",
|
|
3234
|
+
"name": "ssl-expiry-warn-days",
|
|
3235
|
+
"hasDynamicHelp": false,
|
|
3236
|
+
"multiple": false,
|
|
3237
|
+
"type": "option"
|
|
2971
3238
|
}
|
|
2972
3239
|
},
|
|
2973
3240
|
"hasDynamicHelp": false,
|
|
2974
3241
|
"hiddenAliases": [],
|
|
2975
|
-
"id": "
|
|
3242
|
+
"id": "monitors:update",
|
|
2976
3243
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2977
3244
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2978
3245
|
"pluginType": "core",
|
|
@@ -2982,7 +3249,7 @@
|
|
|
2982
3249
|
"relativePath": [
|
|
2983
3250
|
"dist",
|
|
2984
3251
|
"commands",
|
|
2985
|
-
"
|
|
3252
|
+
"monitors",
|
|
2986
3253
|
"update.js"
|
|
2987
3254
|
]
|
|
2988
3255
|
},
|
|
@@ -3078,13 +3345,13 @@
|
|
|
3078
3345
|
"update.js"
|
|
3079
3346
|
]
|
|
3080
3347
|
},
|
|
3081
|
-
"
|
|
3348
|
+
"milestones:create": {
|
|
3082
3349
|
"aliases": [],
|
|
3083
3350
|
"args": {},
|
|
3084
|
-
"description": "Create
|
|
3351
|
+
"description": "Create a milestone for a project",
|
|
3085
3352
|
"examples": [
|
|
3086
|
-
"<%= config.bin %>
|
|
3087
|
-
"<%= config.bin %>
|
|
3353
|
+
"<%= config.bin %> milestones create --project acme-api --code v1 --label \"Version 1.0\"",
|
|
3354
|
+
"<%= config.bin %> milestones create -p acme-api --code v1 --label \"Version 1.0\" --due-on 2026-12-31"
|
|
3088
3355
|
],
|
|
3089
3356
|
"flags": {
|
|
3090
3357
|
"json": {
|
|
@@ -3103,67 +3370,46 @@
|
|
|
3103
3370
|
"multiple": false,
|
|
3104
3371
|
"type": "option"
|
|
3105
3372
|
},
|
|
3106
|
-
"
|
|
3107
|
-
"description": "
|
|
3108
|
-
"name": "
|
|
3373
|
+
"code": {
|
|
3374
|
+
"description": "Milestone code (short identifier)",
|
|
3375
|
+
"name": "code",
|
|
3109
3376
|
"required": true,
|
|
3110
3377
|
"hasDynamicHelp": false,
|
|
3111
3378
|
"multiple": false,
|
|
3112
3379
|
"type": "option"
|
|
3113
3380
|
},
|
|
3114
|
-
"
|
|
3115
|
-
"description": "
|
|
3116
|
-
"name": "
|
|
3117
|
-
"
|
|
3118
|
-
"multiple": false,
|
|
3119
|
-
"type": "option"
|
|
3120
|
-
},
|
|
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",
|
|
3381
|
+
"label": {
|
|
3382
|
+
"description": "Human-readable label",
|
|
3383
|
+
"name": "label",
|
|
3384
|
+
"required": true,
|
|
3138
3385
|
"hasDynamicHelp": false,
|
|
3139
3386
|
"multiple": false,
|
|
3140
3387
|
"type": "option"
|
|
3141
3388
|
},
|
|
3142
|
-
"
|
|
3143
|
-
"description": "
|
|
3144
|
-
"name": "
|
|
3389
|
+
"color": {
|
|
3390
|
+
"description": "Color label",
|
|
3391
|
+
"name": "color",
|
|
3145
3392
|
"hasDynamicHelp": false,
|
|
3146
3393
|
"multiple": false,
|
|
3147
3394
|
"type": "option"
|
|
3148
3395
|
},
|
|
3149
|
-
"
|
|
3150
|
-
"description": "
|
|
3151
|
-
"name": "
|
|
3396
|
+
"due-on": {
|
|
3397
|
+
"description": "Due date (YYYY-MM-DD)",
|
|
3398
|
+
"name": "due-on",
|
|
3152
3399
|
"hasDynamicHelp": false,
|
|
3153
3400
|
"multiple": false,
|
|
3154
3401
|
"type": "option"
|
|
3155
3402
|
},
|
|
3156
|
-
"
|
|
3157
|
-
"description": "
|
|
3158
|
-
"name": "
|
|
3159
|
-
"
|
|
3160
|
-
"
|
|
3161
|
-
"type": "option"
|
|
3403
|
+
"active": {
|
|
3404
|
+
"description": "Whether the milestone is active",
|
|
3405
|
+
"name": "active",
|
|
3406
|
+
"allowNo": true,
|
|
3407
|
+
"type": "boolean"
|
|
3162
3408
|
}
|
|
3163
3409
|
},
|
|
3164
3410
|
"hasDynamicHelp": false,
|
|
3165
3411
|
"hiddenAliases": [],
|
|
3166
|
-
"id": "
|
|
3412
|
+
"id": "milestones:create",
|
|
3167
3413
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3168
3414
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3169
3415
|
"pluginType": "core",
|
|
@@ -3173,22 +3419,22 @@
|
|
|
3173
3419
|
"relativePath": [
|
|
3174
3420
|
"dist",
|
|
3175
3421
|
"commands",
|
|
3176
|
-
"
|
|
3422
|
+
"milestones",
|
|
3177
3423
|
"create.js"
|
|
3178
3424
|
]
|
|
3179
3425
|
},
|
|
3180
|
-
"
|
|
3426
|
+
"milestones:delete": {
|
|
3181
3427
|
"aliases": [],
|
|
3182
3428
|
"args": {
|
|
3183
3429
|
"id": {
|
|
3184
|
-
"description": "
|
|
3430
|
+
"description": "Milestone id",
|
|
3185
3431
|
"name": "id",
|
|
3186
3432
|
"required": true
|
|
3187
3433
|
}
|
|
3188
3434
|
},
|
|
3189
|
-
"description": "Delete
|
|
3435
|
+
"description": "Delete a milestone (irreversible)",
|
|
3190
3436
|
"examples": [
|
|
3191
|
-
"<%= config.bin %>
|
|
3437
|
+
"<%= config.bin %> milestones delete <milestone-id> --project acme-api --confirm"
|
|
3192
3438
|
],
|
|
3193
3439
|
"flags": {
|
|
3194
3440
|
"json": {
|
|
@@ -3216,7 +3462,7 @@
|
|
|
3216
3462
|
},
|
|
3217
3463
|
"hasDynamicHelp": false,
|
|
3218
3464
|
"hiddenAliases": [],
|
|
3219
|
-
"id": "
|
|
3465
|
+
"id": "milestones:delete",
|
|
3220
3466
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3221
3467
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3222
3468
|
"pluginType": "core",
|
|
@@ -3226,17 +3472,17 @@
|
|
|
3226
3472
|
"relativePath": [
|
|
3227
3473
|
"dist",
|
|
3228
3474
|
"commands",
|
|
3229
|
-
"
|
|
3475
|
+
"milestones",
|
|
3230
3476
|
"delete.js"
|
|
3231
3477
|
]
|
|
3232
3478
|
},
|
|
3233
|
-
"
|
|
3479
|
+
"milestones:list": {
|
|
3234
3480
|
"aliases": [],
|
|
3235
3481
|
"args": {},
|
|
3236
|
-
"description": "List the
|
|
3482
|
+
"description": "List the milestones for a project",
|
|
3237
3483
|
"examples": [
|
|
3238
|
-
"<%= config.bin %>
|
|
3239
|
-
"<%= config.bin %>
|
|
3484
|
+
"<%= config.bin %> milestones list --project acme-api",
|
|
3485
|
+
"<%= config.bin %> milestones list -p acme-api --json"
|
|
3240
3486
|
],
|
|
3241
3487
|
"flags": {
|
|
3242
3488
|
"json": {
|
|
@@ -3266,7 +3512,7 @@
|
|
|
3266
3512
|
},
|
|
3267
3513
|
"hasDynamicHelp": false,
|
|
3268
3514
|
"hiddenAliases": [],
|
|
3269
|
-
"id": "
|
|
3515
|
+
"id": "milestones:list",
|
|
3270
3516
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3271
3517
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3272
3518
|
"pluginType": "core",
|
|
@@ -3276,22 +3522,22 @@
|
|
|
3276
3522
|
"relativePath": [
|
|
3277
3523
|
"dist",
|
|
3278
3524
|
"commands",
|
|
3279
|
-
"
|
|
3525
|
+
"milestones",
|
|
3280
3526
|
"list.js"
|
|
3281
3527
|
]
|
|
3282
3528
|
},
|
|
3283
|
-
"
|
|
3529
|
+
"milestones:show": {
|
|
3284
3530
|
"aliases": [],
|
|
3285
3531
|
"args": {
|
|
3286
3532
|
"id": {
|
|
3287
|
-
"description": "
|
|
3533
|
+
"description": "Milestone id",
|
|
3288
3534
|
"name": "id",
|
|
3289
3535
|
"required": true
|
|
3290
3536
|
}
|
|
3291
3537
|
},
|
|
3292
|
-
"description": "
|
|
3538
|
+
"description": "Show a single milestone",
|
|
3293
3539
|
"examples": [
|
|
3294
|
-
"<%= config.bin %>
|
|
3540
|
+
"<%= config.bin %> milestones show <milestone-id> --project acme-api"
|
|
3295
3541
|
],
|
|
3296
3542
|
"flags": {
|
|
3297
3543
|
"json": {
|
|
@@ -3313,7 +3559,7 @@
|
|
|
3313
3559
|
},
|
|
3314
3560
|
"hasDynamicHelp": false,
|
|
3315
3561
|
"hiddenAliases": [],
|
|
3316
|
-
"id": "
|
|
3562
|
+
"id": "milestones:show",
|
|
3317
3563
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3318
3564
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3319
3565
|
"pluginType": "core",
|
|
@@ -3323,22 +3569,23 @@
|
|
|
3323
3569
|
"relativePath": [
|
|
3324
3570
|
"dist",
|
|
3325
3571
|
"commands",
|
|
3326
|
-
"
|
|
3327
|
-
"
|
|
3572
|
+
"milestones",
|
|
3573
|
+
"show.js"
|
|
3328
3574
|
]
|
|
3329
3575
|
},
|
|
3330
|
-
"
|
|
3576
|
+
"milestones:update": {
|
|
3331
3577
|
"aliases": [],
|
|
3332
3578
|
"args": {
|
|
3333
3579
|
"id": {
|
|
3334
|
-
"description": "
|
|
3580
|
+
"description": "Milestone id",
|
|
3335
3581
|
"name": "id",
|
|
3336
3582
|
"required": true
|
|
3337
3583
|
}
|
|
3338
3584
|
},
|
|
3339
|
-
"description": "
|
|
3585
|
+
"description": "Update a milestone (send only the fields you want to change)",
|
|
3340
3586
|
"examples": [
|
|
3341
|
-
"<%= config.bin %>
|
|
3587
|
+
"<%= config.bin %> milestones update <milestone-id> --project acme-api --label \"Version 1.1\"",
|
|
3588
|
+
"<%= config.bin %> milestones update <milestone-id> -p acme-api --due-on 2027-01-15 --no-active"
|
|
3342
3589
|
],
|
|
3343
3590
|
"flags": {
|
|
3344
3591
|
"json": {
|
|
@@ -3356,11 +3603,45 @@
|
|
|
3356
3603
|
"hasDynamicHelp": false,
|
|
3357
3604
|
"multiple": false,
|
|
3358
3605
|
"type": "option"
|
|
3606
|
+
},
|
|
3607
|
+
"code": {
|
|
3608
|
+
"description": "Milestone code (short identifier)",
|
|
3609
|
+
"name": "code",
|
|
3610
|
+
"hasDynamicHelp": false,
|
|
3611
|
+
"multiple": false,
|
|
3612
|
+
"type": "option"
|
|
3613
|
+
},
|
|
3614
|
+
"label": {
|
|
3615
|
+
"description": "Human-readable label",
|
|
3616
|
+
"name": "label",
|
|
3617
|
+
"hasDynamicHelp": false,
|
|
3618
|
+
"multiple": false,
|
|
3619
|
+
"type": "option"
|
|
3620
|
+
},
|
|
3621
|
+
"color": {
|
|
3622
|
+
"description": "Color label",
|
|
3623
|
+
"name": "color",
|
|
3624
|
+
"hasDynamicHelp": false,
|
|
3625
|
+
"multiple": false,
|
|
3626
|
+
"type": "option"
|
|
3627
|
+
},
|
|
3628
|
+
"due-on": {
|
|
3629
|
+
"description": "Due date (YYYY-MM-DD)",
|
|
3630
|
+
"name": "due-on",
|
|
3631
|
+
"hasDynamicHelp": false,
|
|
3632
|
+
"multiple": false,
|
|
3633
|
+
"type": "option"
|
|
3634
|
+
},
|
|
3635
|
+
"active": {
|
|
3636
|
+
"description": "Whether the milestone is active",
|
|
3637
|
+
"name": "active",
|
|
3638
|
+
"allowNo": true,
|
|
3639
|
+
"type": "boolean"
|
|
3359
3640
|
}
|
|
3360
3641
|
},
|
|
3361
3642
|
"hasDynamicHelp": false,
|
|
3362
3643
|
"hiddenAliases": [],
|
|
3363
|
-
"id": "
|
|
3644
|
+
"id": "milestones:update",
|
|
3364
3645
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3365
3646
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3366
3647
|
"pluginType": "core",
|
|
@@ -3370,22 +3651,23 @@
|
|
|
3370
3651
|
"relativePath": [
|
|
3371
3652
|
"dist",
|
|
3372
3653
|
"commands",
|
|
3373
|
-
"
|
|
3374
|
-
"
|
|
3654
|
+
"milestones",
|
|
3655
|
+
"update.js"
|
|
3375
3656
|
]
|
|
3376
3657
|
},
|
|
3377
|
-
"
|
|
3658
|
+
"platforms:create": {
|
|
3378
3659
|
"aliases": [],
|
|
3379
3660
|
"args": {
|
|
3380
|
-
"
|
|
3381
|
-
"description": "
|
|
3382
|
-
"name": "
|
|
3661
|
+
"code": {
|
|
3662
|
+
"description": "Platform code (e.g. \"ios\", \"android\", \"web\")",
|
|
3663
|
+
"name": "code",
|
|
3383
3664
|
"required": true
|
|
3384
3665
|
}
|
|
3385
3666
|
},
|
|
3386
|
-
"description": "
|
|
3667
|
+
"description": "Create a platform (a device/system your projects run on)",
|
|
3387
3668
|
"examples": [
|
|
3388
|
-
"<%= config.bin %>
|
|
3669
|
+
"<%= config.bin %> platforms create ios --label iOS",
|
|
3670
|
+
"<%= config.bin %> platforms create android --label Android --color emerald --position 2"
|
|
3389
3671
|
],
|
|
3390
3672
|
"flags": {
|
|
3391
3673
|
"json": {
|
|
@@ -3395,19 +3677,39 @@
|
|
|
3395
3677
|
"allowNo": false,
|
|
3396
3678
|
"type": "boolean"
|
|
3397
3679
|
},
|
|
3398
|
-
"
|
|
3399
|
-
"
|
|
3400
|
-
"
|
|
3401
|
-
"name": "project",
|
|
3680
|
+
"label": {
|
|
3681
|
+
"description": "Human-readable label",
|
|
3682
|
+
"name": "label",
|
|
3402
3683
|
"required": true,
|
|
3403
3684
|
"hasDynamicHelp": false,
|
|
3404
3685
|
"multiple": false,
|
|
3405
3686
|
"type": "option"
|
|
3687
|
+
},
|
|
3688
|
+
"color": {
|
|
3689
|
+
"description": "Color label",
|
|
3690
|
+
"name": "color",
|
|
3691
|
+
"default": "sky",
|
|
3692
|
+
"hasDynamicHelp": false,
|
|
3693
|
+
"multiple": false,
|
|
3694
|
+
"type": "option"
|
|
3695
|
+
},
|
|
3696
|
+
"position": {
|
|
3697
|
+
"description": "Sort position",
|
|
3698
|
+
"name": "position",
|
|
3699
|
+
"hasDynamicHelp": false,
|
|
3700
|
+
"multiple": false,
|
|
3701
|
+
"type": "option"
|
|
3702
|
+
},
|
|
3703
|
+
"active": {
|
|
3704
|
+
"description": "Whether the platform is active",
|
|
3705
|
+
"name": "active",
|
|
3706
|
+
"allowNo": true,
|
|
3707
|
+
"type": "boolean"
|
|
3406
3708
|
}
|
|
3407
3709
|
},
|
|
3408
3710
|
"hasDynamicHelp": false,
|
|
3409
3711
|
"hiddenAliases": [],
|
|
3410
|
-
"id": "
|
|
3712
|
+
"id": "platforms:create",
|
|
3411
3713
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3412
3714
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3413
3715
|
"pluginType": "core",
|
|
@@ -3417,23 +3719,22 @@
|
|
|
3417
3719
|
"relativePath": [
|
|
3418
3720
|
"dist",
|
|
3419
3721
|
"commands",
|
|
3420
|
-
"
|
|
3421
|
-
"
|
|
3722
|
+
"platforms",
|
|
3723
|
+
"create.js"
|
|
3422
3724
|
]
|
|
3423
3725
|
},
|
|
3424
|
-
"
|
|
3726
|
+
"platforms:delete": {
|
|
3425
3727
|
"aliases": [],
|
|
3426
3728
|
"args": {
|
|
3427
|
-
"
|
|
3428
|
-
"description": "
|
|
3429
|
-
"name": "
|
|
3729
|
+
"platform": {
|
|
3730
|
+
"description": "Platform id (UUID) or code",
|
|
3731
|
+
"name": "platform",
|
|
3430
3732
|
"required": true
|
|
3431
3733
|
}
|
|
3432
3734
|
},
|
|
3433
|
-
"description": "
|
|
3735
|
+
"description": "Delete a platform (blocked if any project or ticket still references it)",
|
|
3434
3736
|
"examples": [
|
|
3435
|
-
"<%= config.bin %>
|
|
3436
|
-
"<%= config.bin %> monitors update <monitor-id> -p acme-api --url https://acme.example.com/health --expected-status 204"
|
|
3737
|
+
"<%= config.bin %> platforms delete legacy --confirm"
|
|
3437
3738
|
],
|
|
3438
3739
|
"flags": {
|
|
3439
3740
|
"json": {
|
|
@@ -3443,68 +3744,131 @@
|
|
|
3443
3744
|
"allowNo": false,
|
|
3444
3745
|
"type": "boolean"
|
|
3445
3746
|
},
|
|
3446
|
-
"
|
|
3447
|
-
"
|
|
3448
|
-
"
|
|
3449
|
-
"
|
|
3450
|
-
"
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
|
|
3747
|
+
"confirm": {
|
|
3748
|
+
"description": "Required: confirm the deletion",
|
|
3749
|
+
"name": "confirm",
|
|
3750
|
+
"allowNo": false,
|
|
3751
|
+
"type": "boolean"
|
|
3752
|
+
}
|
|
3753
|
+
},
|
|
3754
|
+
"hasDynamicHelp": false,
|
|
3755
|
+
"hiddenAliases": [],
|
|
3756
|
+
"id": "platforms:delete",
|
|
3757
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3758
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3759
|
+
"pluginType": "core",
|
|
3760
|
+
"strict": true,
|
|
3761
|
+
"enableJsonFlag": true,
|
|
3762
|
+
"isESM": false,
|
|
3763
|
+
"relativePath": [
|
|
3764
|
+
"dist",
|
|
3765
|
+
"commands",
|
|
3766
|
+
"platforms",
|
|
3767
|
+
"delete.js"
|
|
3768
|
+
]
|
|
3769
|
+
},
|
|
3770
|
+
"platforms:list": {
|
|
3771
|
+
"aliases": [],
|
|
3772
|
+
"args": {},
|
|
3773
|
+
"description": "List the platforms (devices/systems) in your organization",
|
|
3774
|
+
"examples": [
|
|
3775
|
+
"<%= config.bin %> platforms list",
|
|
3776
|
+
"<%= config.bin %> platforms list --page 2 --json"
|
|
3777
|
+
],
|
|
3778
|
+
"flags": {
|
|
3779
|
+
"json": {
|
|
3780
|
+
"description": "Format output as json.",
|
|
3781
|
+
"helpGroup": "GLOBAL",
|
|
3782
|
+
"name": "json",
|
|
3783
|
+
"allowNo": false,
|
|
3784
|
+
"type": "boolean"
|
|
3461
3785
|
},
|
|
3462
|
-
"
|
|
3463
|
-
"description": "
|
|
3464
|
-
"name": "
|
|
3786
|
+
"page": {
|
|
3787
|
+
"description": "Page number",
|
|
3788
|
+
"name": "page",
|
|
3789
|
+
"default": 1,
|
|
3465
3790
|
"hasDynamicHelp": false,
|
|
3466
3791
|
"multiple": false,
|
|
3467
3792
|
"type": "option"
|
|
3793
|
+
}
|
|
3794
|
+
},
|
|
3795
|
+
"hasDynamicHelp": false,
|
|
3796
|
+
"hiddenAliases": [],
|
|
3797
|
+
"id": "platforms:list",
|
|
3798
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3799
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3800
|
+
"pluginType": "core",
|
|
3801
|
+
"strict": true,
|
|
3802
|
+
"enableJsonFlag": true,
|
|
3803
|
+
"isESM": false,
|
|
3804
|
+
"relativePath": [
|
|
3805
|
+
"dist",
|
|
3806
|
+
"commands",
|
|
3807
|
+
"platforms",
|
|
3808
|
+
"list.js"
|
|
3809
|
+
]
|
|
3810
|
+
},
|
|
3811
|
+
"platforms:update": {
|
|
3812
|
+
"aliases": [],
|
|
3813
|
+
"args": {
|
|
3814
|
+
"platform": {
|
|
3815
|
+
"description": "Platform id (UUID) or code",
|
|
3816
|
+
"name": "platform",
|
|
3817
|
+
"required": true
|
|
3818
|
+
}
|
|
3819
|
+
},
|
|
3820
|
+
"description": "Update a platform (relabel, recolor, reorder, activate/deactivate)",
|
|
3821
|
+
"examples": [
|
|
3822
|
+
"<%= config.bin %> platforms update ios --label \"iOS / iPadOS\"",
|
|
3823
|
+
"<%= config.bin %> platforms update web --color indigo --position 1",
|
|
3824
|
+
"<%= config.bin %> platforms update legacy --no-active"
|
|
3825
|
+
],
|
|
3826
|
+
"flags": {
|
|
3827
|
+
"json": {
|
|
3828
|
+
"description": "Format output as json.",
|
|
3829
|
+
"helpGroup": "GLOBAL",
|
|
3830
|
+
"name": "json",
|
|
3831
|
+
"allowNo": false,
|
|
3832
|
+
"type": "boolean"
|
|
3468
3833
|
},
|
|
3469
|
-
"
|
|
3470
|
-
"description": "
|
|
3471
|
-
"name": "
|
|
3834
|
+
"code": {
|
|
3835
|
+
"description": "New code",
|
|
3836
|
+
"name": "code",
|
|
3472
3837
|
"hasDynamicHelp": false,
|
|
3473
3838
|
"multiple": false,
|
|
3474
3839
|
"type": "option"
|
|
3475
3840
|
},
|
|
3476
|
-
"
|
|
3477
|
-
"description": "
|
|
3478
|
-
"name": "
|
|
3841
|
+
"label": {
|
|
3842
|
+
"description": "New label",
|
|
3843
|
+
"name": "label",
|
|
3479
3844
|
"hasDynamicHelp": false,
|
|
3480
3845
|
"multiple": false,
|
|
3481
3846
|
"type": "option"
|
|
3482
3847
|
},
|
|
3483
|
-
"
|
|
3484
|
-
"description": "
|
|
3485
|
-
"name": "
|
|
3848
|
+
"color": {
|
|
3849
|
+
"description": "Color label",
|
|
3850
|
+
"name": "color",
|
|
3486
3851
|
"hasDynamicHelp": false,
|
|
3487
3852
|
"multiple": false,
|
|
3488
3853
|
"type": "option"
|
|
3489
3854
|
},
|
|
3490
|
-
"
|
|
3491
|
-
"description": "
|
|
3492
|
-
"name": "
|
|
3855
|
+
"position": {
|
|
3856
|
+
"description": "Sort position",
|
|
3857
|
+
"name": "position",
|
|
3493
3858
|
"hasDynamicHelp": false,
|
|
3494
3859
|
"multiple": false,
|
|
3495
3860
|
"type": "option"
|
|
3496
3861
|
},
|
|
3497
|
-
"
|
|
3498
|
-
"description": "
|
|
3499
|
-
"name": "
|
|
3500
|
-
"
|
|
3501
|
-
"
|
|
3502
|
-
"type": "option"
|
|
3862
|
+
"active": {
|
|
3863
|
+
"description": "Whether the platform is active",
|
|
3864
|
+
"name": "active",
|
|
3865
|
+
"allowNo": true,
|
|
3866
|
+
"type": "boolean"
|
|
3503
3867
|
}
|
|
3504
3868
|
},
|
|
3505
3869
|
"hasDynamicHelp": false,
|
|
3506
3870
|
"hiddenAliases": [],
|
|
3507
|
-
"id": "
|
|
3871
|
+
"id": "platforms:update",
|
|
3508
3872
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3509
3873
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3510
3874
|
"pluginType": "core",
|
|
@@ -3514,7 +3878,7 @@
|
|
|
3514
3878
|
"relativePath": [
|
|
3515
3879
|
"dist",
|
|
3516
3880
|
"commands",
|
|
3517
|
-
"
|
|
3881
|
+
"platforms",
|
|
3518
3882
|
"update.js"
|
|
3519
3883
|
]
|
|
3520
3884
|
},
|
|
@@ -3793,241 +4157,19 @@
|
|
|
3793
4157
|
"set-platforms.js"
|
|
3794
4158
|
]
|
|
3795
4159
|
},
|
|
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",
|
|
3967
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3968
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3969
|
-
"pluginType": "core",
|
|
3970
|
-
"strict": true,
|
|
3971
|
-
"enableJsonFlag": true,
|
|
3972
|
-
"isESM": false,
|
|
3973
|
-
"relativePath": [
|
|
3974
|
-
"dist",
|
|
3975
|
-
"commands",
|
|
3976
|
-
"platforms",
|
|
3977
|
-
"create.js"
|
|
3978
|
-
]
|
|
3979
|
-
},
|
|
3980
|
-
"platforms:delete": {
|
|
3981
|
-
"aliases": [],
|
|
3982
|
-
"args": {
|
|
3983
|
-
"platform": {
|
|
3984
|
-
"description": "Platform id (UUID) or code",
|
|
3985
|
-
"name": "platform",
|
|
3986
|
-
"required": true
|
|
3987
|
-
}
|
|
3988
|
-
},
|
|
3989
|
-
"description": "Delete a platform (blocked if any project or ticket still references it)",
|
|
3990
|
-
"examples": [
|
|
3991
|
-
"<%= config.bin %> platforms delete legacy --confirm"
|
|
3992
|
-
],
|
|
3993
|
-
"flags": {
|
|
3994
|
-
"json": {
|
|
3995
|
-
"description": "Format output as json.",
|
|
3996
|
-
"helpGroup": "GLOBAL",
|
|
3997
|
-
"name": "json",
|
|
3998
|
-
"allowNo": false,
|
|
3999
|
-
"type": "boolean"
|
|
4000
|
-
},
|
|
4001
|
-
"confirm": {
|
|
4002
|
-
"description": "Required: confirm the deletion",
|
|
4003
|
-
"name": "confirm",
|
|
4004
|
-
"allowNo": false,
|
|
4005
|
-
"type": "boolean"
|
|
4006
|
-
}
|
|
4007
|
-
},
|
|
4008
|
-
"hasDynamicHelp": false,
|
|
4009
|
-
"hiddenAliases": [],
|
|
4010
|
-
"id": "platforms:delete",
|
|
4011
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4012
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4013
|
-
"pluginType": "core",
|
|
4014
|
-
"strict": true,
|
|
4015
|
-
"enableJsonFlag": true,
|
|
4016
|
-
"isESM": false,
|
|
4017
|
-
"relativePath": [
|
|
4018
|
-
"dist",
|
|
4019
|
-
"commands",
|
|
4020
|
-
"platforms",
|
|
4021
|
-
"delete.js"
|
|
4022
|
-
]
|
|
4023
|
-
},
|
|
4024
|
-
"platforms:list": {
|
|
4160
|
+
"projects:show": {
|
|
4025
4161
|
"aliases": [],
|
|
4026
|
-
"args": {
|
|
4027
|
-
|
|
4162
|
+
"args": {
|
|
4163
|
+
"id": {
|
|
4164
|
+
"description": "Project id (UUID) or key",
|
|
4165
|
+
"name": "id",
|
|
4166
|
+
"required": true
|
|
4167
|
+
}
|
|
4168
|
+
},
|
|
4169
|
+
"description": "Show a single project by id or key",
|
|
4028
4170
|
"examples": [
|
|
4029
|
-
"<%= config.bin %>
|
|
4030
|
-
"<%= config.bin %>
|
|
4171
|
+
"<%= config.bin %> projects show acme-api",
|
|
4172
|
+
"<%= config.bin %> projects show <uuid> --json"
|
|
4031
4173
|
],
|
|
4032
4174
|
"flags": {
|
|
4033
4175
|
"json": {
|
|
@@ -4036,19 +4178,11 @@
|
|
|
4036
4178
|
"name": "json",
|
|
4037
4179
|
"allowNo": false,
|
|
4038
4180
|
"type": "boolean"
|
|
4039
|
-
},
|
|
4040
|
-
"page": {
|
|
4041
|
-
"description": "Page number",
|
|
4042
|
-
"name": "page",
|
|
4043
|
-
"default": 1,
|
|
4044
|
-
"hasDynamicHelp": false,
|
|
4045
|
-
"multiple": false,
|
|
4046
|
-
"type": "option"
|
|
4047
4181
|
}
|
|
4048
4182
|
},
|
|
4049
4183
|
"hasDynamicHelp": false,
|
|
4050
4184
|
"hiddenAliases": [],
|
|
4051
|
-
"id": "
|
|
4185
|
+
"id": "projects:show",
|
|
4052
4186
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4053
4187
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4054
4188
|
"pluginType": "core",
|
|
@@ -4058,24 +4192,17 @@
|
|
|
4058
4192
|
"relativePath": [
|
|
4059
4193
|
"dist",
|
|
4060
4194
|
"commands",
|
|
4061
|
-
"
|
|
4062
|
-
"
|
|
4195
|
+
"projects",
|
|
4196
|
+
"show.js"
|
|
4063
4197
|
]
|
|
4064
4198
|
},
|
|
4065
|
-
"
|
|
4199
|
+
"projects:update": {
|
|
4066
4200
|
"aliases": [],
|
|
4067
|
-
"args": {
|
|
4068
|
-
|
|
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)",
|
|
4201
|
+
"args": {},
|
|
4202
|
+
"description": "Update a project (name, key, color, description, group)",
|
|
4075
4203
|
"examples": [
|
|
4076
|
-
"<%= config.bin %>
|
|
4077
|
-
"<%= config.bin %>
|
|
4078
|
-
"<%= config.bin %> platforms update legacy --no-active"
|
|
4204
|
+
"<%= config.bin %> projects update --project LBRA --name \"New name\"",
|
|
4205
|
+
"<%= config.bin %> projects update -p LBRA --group Backend"
|
|
4079
4206
|
],
|
|
4080
4207
|
"flags": {
|
|
4081
4208
|
"json": {
|
|
@@ -4085,16 +4212,25 @@
|
|
|
4085
4212
|
"allowNo": false,
|
|
4086
4213
|
"type": "boolean"
|
|
4087
4214
|
},
|
|
4088
|
-
"
|
|
4089
|
-
"
|
|
4090
|
-
"
|
|
4215
|
+
"project": {
|
|
4216
|
+
"char": "p",
|
|
4217
|
+
"description": "Project id (UUID) or key",
|
|
4218
|
+
"name": "project",
|
|
4219
|
+
"required": true,
|
|
4091
4220
|
"hasDynamicHelp": false,
|
|
4092
4221
|
"multiple": false,
|
|
4093
4222
|
"type": "option"
|
|
4094
4223
|
},
|
|
4095
|
-
"
|
|
4096
|
-
"description": "New
|
|
4097
|
-
"name": "
|
|
4224
|
+
"name": {
|
|
4225
|
+
"description": "New project name",
|
|
4226
|
+
"name": "name",
|
|
4227
|
+
"hasDynamicHelp": false,
|
|
4228
|
+
"multiple": false,
|
|
4229
|
+
"type": "option"
|
|
4230
|
+
},
|
|
4231
|
+
"key": {
|
|
4232
|
+
"description": "New project key (uppercase A-Z0-9)",
|
|
4233
|
+
"name": "key",
|
|
4098
4234
|
"hasDynamicHelp": false,
|
|
4099
4235
|
"multiple": false,
|
|
4100
4236
|
"type": "option"
|
|
@@ -4106,23 +4242,24 @@
|
|
|
4106
4242
|
"multiple": false,
|
|
4107
4243
|
"type": "option"
|
|
4108
4244
|
},
|
|
4109
|
-
"
|
|
4110
|
-
"description": "
|
|
4111
|
-
"name": "
|
|
4245
|
+
"description": {
|
|
4246
|
+
"description": "Free-form description",
|
|
4247
|
+
"name": "description",
|
|
4112
4248
|
"hasDynamicHelp": false,
|
|
4113
4249
|
"multiple": false,
|
|
4114
4250
|
"type": "option"
|
|
4115
4251
|
},
|
|
4116
|
-
"
|
|
4117
|
-
"description": "
|
|
4118
|
-
"name": "
|
|
4119
|
-
"
|
|
4120
|
-
"
|
|
4252
|
+
"group": {
|
|
4253
|
+
"description": "Group id (UUID) or name to move the project into",
|
|
4254
|
+
"name": "group",
|
|
4255
|
+
"hasDynamicHelp": false,
|
|
4256
|
+
"multiple": false,
|
|
4257
|
+
"type": "option"
|
|
4121
4258
|
}
|
|
4122
4259
|
},
|
|
4123
4260
|
"hasDynamicHelp": false,
|
|
4124
4261
|
"hiddenAliases": [],
|
|
4125
|
-
"id": "
|
|
4262
|
+
"id": "projects:update",
|
|
4126
4263
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4127
4264
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4128
4265
|
"pluginType": "core",
|
|
@@ -4132,7 +4269,7 @@
|
|
|
4132
4269
|
"relativePath": [
|
|
4133
4270
|
"dist",
|
|
4134
4271
|
"commands",
|
|
4135
|
-
"
|
|
4272
|
+
"projects",
|
|
4136
4273
|
"update.js"
|
|
4137
4274
|
]
|
|
4138
4275
|
},
|
|
@@ -4607,190 +4744,15 @@
|
|
|
4607
4744
|
"type": "boolean"
|
|
4608
4745
|
},
|
|
4609
4746
|
"confirm": {
|
|
4610
|
-
"description": "Required: confirm the revocation",
|
|
4611
|
-
"name": "confirm",
|
|
4612
|
-
"allowNo": false,
|
|
4613
|
-
"type": "boolean"
|
|
4614
|
-
}
|
|
4615
|
-
},
|
|
4616
|
-
"hasDynamicHelp": false,
|
|
4617
|
-
"hiddenAliases": [],
|
|
4618
|
-
"id": "servers:revoke",
|
|
4619
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4620
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4621
|
-
"pluginType": "core",
|
|
4622
|
-
"strict": true,
|
|
4623
|
-
"enableJsonFlag": true,
|
|
4624
|
-
"isESM": false,
|
|
4625
|
-
"relativePath": [
|
|
4626
|
-
"dist",
|
|
4627
|
-
"commands",
|
|
4628
|
-
"servers",
|
|
4629
|
-
"revoke.js"
|
|
4630
|
-
]
|
|
4631
|
-
},
|
|
4632
|
-
"servers:show": {
|
|
4633
|
-
"aliases": [],
|
|
4634
|
-
"args": {
|
|
4635
|
-
"id": {
|
|
4636
|
-
"description": "Server id",
|
|
4637
|
-
"name": "id",
|
|
4638
|
-
"required": true
|
|
4639
|
-
}
|
|
4640
|
-
},
|
|
4641
|
-
"description": "Show a monitored server (latest snapshot)",
|
|
4642
|
-
"examples": [
|
|
4643
|
-
"<%= config.bin %> servers show <server-id>"
|
|
4644
|
-
],
|
|
4645
|
-
"flags": {
|
|
4646
|
-
"json": {
|
|
4647
|
-
"description": "Format output as json.",
|
|
4648
|
-
"helpGroup": "GLOBAL",
|
|
4649
|
-
"name": "json",
|
|
4650
|
-
"allowNo": false,
|
|
4651
|
-
"type": "boolean"
|
|
4652
|
-
}
|
|
4653
|
-
},
|
|
4654
|
-
"hasDynamicHelp": false,
|
|
4655
|
-
"hiddenAliases": [],
|
|
4656
|
-
"id": "servers:show",
|
|
4657
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4658
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4659
|
-
"pluginType": "core",
|
|
4660
|
-
"strict": true,
|
|
4661
|
-
"enableJsonFlag": true,
|
|
4662
|
-
"isESM": false,
|
|
4663
|
-
"relativePath": [
|
|
4664
|
-
"dist",
|
|
4665
|
-
"commands",
|
|
4666
|
-
"servers",
|
|
4667
|
-
"show.js"
|
|
4668
|
-
]
|
|
4669
|
-
},
|
|
4670
|
-
"servers:unrevoke": {
|
|
4671
|
-
"aliases": [],
|
|
4672
|
-
"args": {
|
|
4673
|
-
"id": {
|
|
4674
|
-
"description": "Server id",
|
|
4675
|
-
"name": "id",
|
|
4676
|
-
"required": true
|
|
4677
|
-
}
|
|
4678
|
-
},
|
|
4679
|
-
"description": "Restore a revoked server (its agent can push again)",
|
|
4680
|
-
"examples": [
|
|
4681
|
-
"<%= config.bin %> servers unrevoke <server-id>"
|
|
4682
|
-
],
|
|
4683
|
-
"flags": {
|
|
4684
|
-
"json": {
|
|
4685
|
-
"description": "Format output as json.",
|
|
4686
|
-
"helpGroup": "GLOBAL",
|
|
4687
|
-
"name": "json",
|
|
4688
|
-
"allowNo": false,
|
|
4689
|
-
"type": "boolean"
|
|
4690
|
-
}
|
|
4691
|
-
},
|
|
4692
|
-
"hasDynamicHelp": false,
|
|
4693
|
-
"hiddenAliases": [],
|
|
4694
|
-
"id": "servers:unrevoke",
|
|
4695
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4696
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4697
|
-
"pluginType": "core",
|
|
4698
|
-
"strict": true,
|
|
4699
|
-
"enableJsonFlag": true,
|
|
4700
|
-
"isESM": false,
|
|
4701
|
-
"relativePath": [
|
|
4702
|
-
"dist",
|
|
4703
|
-
"commands",
|
|
4704
|
-
"servers",
|
|
4705
|
-
"unrevoke.js"
|
|
4706
|
-
]
|
|
4707
|
-
},
|
|
4708
|
-
"tokens:create": {
|
|
4709
|
-
"aliases": [],
|
|
4710
|
-
"args": {},
|
|
4711
|
-
"description": "Create an ingest token (the secret is shown only once)",
|
|
4712
|
-
"examples": [
|
|
4713
|
-
"<%= config.bin %> tokens create --project acme-api --name \"CI prod\" --environment-id <env-id>"
|
|
4714
|
-
],
|
|
4715
|
-
"flags": {
|
|
4716
|
-
"json": {
|
|
4717
|
-
"description": "Format output as json.",
|
|
4718
|
-
"helpGroup": "GLOBAL",
|
|
4719
|
-
"name": "json",
|
|
4720
|
-
"allowNo": false,
|
|
4721
|
-
"type": "boolean"
|
|
4722
|
-
},
|
|
4723
|
-
"project": {
|
|
4724
|
-
"char": "p",
|
|
4725
|
-
"description": "Project id (UUID) or key",
|
|
4726
|
-
"name": "project",
|
|
4727
|
-
"required": true,
|
|
4728
|
-
"hasDynamicHelp": false,
|
|
4729
|
-
"multiple": false,
|
|
4730
|
-
"type": "option"
|
|
4731
|
-
},
|
|
4732
|
-
"name": {
|
|
4733
|
-
"description": "Human-readable token name",
|
|
4734
|
-
"name": "name",
|
|
4735
|
-
"required": true,
|
|
4736
|
-
"hasDynamicHelp": false,
|
|
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,
|
|
4746
|
-
"type": "option"
|
|
4747
|
-
}
|
|
4748
|
-
},
|
|
4749
|
-
"hasDynamicHelp": false,
|
|
4750
|
-
"hiddenAliases": [],
|
|
4751
|
-
"id": "tokens:create",
|
|
4752
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4753
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4754
|
-
"pluginType": "core",
|
|
4755
|
-
"strict": true,
|
|
4756
|
-
"enableJsonFlag": true,
|
|
4757
|
-
"isESM": false,
|
|
4758
|
-
"relativePath": [
|
|
4759
|
-
"dist",
|
|
4760
|
-
"commands",
|
|
4761
|
-
"tokens",
|
|
4762
|
-
"create.js"
|
|
4763
|
-
]
|
|
4764
|
-
},
|
|
4765
|
-
"tokens:list": {
|
|
4766
|
-
"aliases": [],
|
|
4767
|
-
"args": {},
|
|
4768
|
-
"description": "List ingest tokens for a project",
|
|
4769
|
-
"examples": [
|
|
4770
|
-
"<%= config.bin %> tokens list --project acme-api",
|
|
4771
|
-
"<%= config.bin %> tokens list -p acme-api --json"
|
|
4772
|
-
],
|
|
4773
|
-
"flags": {
|
|
4774
|
-
"json": {
|
|
4775
|
-
"description": "Format output as json.",
|
|
4776
|
-
"helpGroup": "GLOBAL",
|
|
4777
|
-
"name": "json",
|
|
4747
|
+
"description": "Required: confirm the revocation",
|
|
4748
|
+
"name": "confirm",
|
|
4778
4749
|
"allowNo": false,
|
|
4779
4750
|
"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"
|
|
4789
4751
|
}
|
|
4790
4752
|
},
|
|
4791
4753
|
"hasDynamicHelp": false,
|
|
4792
4754
|
"hiddenAliases": [],
|
|
4793
|
-
"id": "
|
|
4755
|
+
"id": "servers:revoke",
|
|
4794
4756
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4795
4757
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4796
4758
|
"pluginType": "core",
|
|
@@ -4800,22 +4762,22 @@
|
|
|
4800
4762
|
"relativePath": [
|
|
4801
4763
|
"dist",
|
|
4802
4764
|
"commands",
|
|
4803
|
-
"
|
|
4804
|
-
"
|
|
4765
|
+
"servers",
|
|
4766
|
+
"revoke.js"
|
|
4805
4767
|
]
|
|
4806
4768
|
},
|
|
4807
|
-
"
|
|
4769
|
+
"servers:show": {
|
|
4808
4770
|
"aliases": [],
|
|
4809
4771
|
"args": {
|
|
4810
4772
|
"id": {
|
|
4811
|
-
"description": "
|
|
4773
|
+
"description": "Server id",
|
|
4812
4774
|
"name": "id",
|
|
4813
4775
|
"required": true
|
|
4814
4776
|
}
|
|
4815
4777
|
},
|
|
4816
|
-
"description": "
|
|
4778
|
+
"description": "Show a monitored server (latest snapshot)",
|
|
4817
4779
|
"examples": [
|
|
4818
|
-
"<%= config.bin %>
|
|
4780
|
+
"<%= config.bin %> servers show <server-id>"
|
|
4819
4781
|
],
|
|
4820
4782
|
"flags": {
|
|
4821
4783
|
"json": {
|
|
@@ -4824,20 +4786,11 @@
|
|
|
4824
4786
|
"name": "json",
|
|
4825
4787
|
"allowNo": false,
|
|
4826
4788
|
"type": "boolean"
|
|
4827
|
-
},
|
|
4828
|
-
"project": {
|
|
4829
|
-
"char": "p",
|
|
4830
|
-
"description": "Project id (UUID) or key",
|
|
4831
|
-
"name": "project",
|
|
4832
|
-
"required": true,
|
|
4833
|
-
"hasDynamicHelp": false,
|
|
4834
|
-
"multiple": false,
|
|
4835
|
-
"type": "option"
|
|
4836
4789
|
}
|
|
4837
4790
|
},
|
|
4838
4791
|
"hasDynamicHelp": false,
|
|
4839
4792
|
"hiddenAliases": [],
|
|
4840
|
-
"id": "
|
|
4793
|
+
"id": "servers:show",
|
|
4841
4794
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4842
4795
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4843
4796
|
"pluginType": "core",
|
|
@@ -4847,22 +4800,22 @@
|
|
|
4847
4800
|
"relativePath": [
|
|
4848
4801
|
"dist",
|
|
4849
4802
|
"commands",
|
|
4850
|
-
"
|
|
4851
|
-
"
|
|
4803
|
+
"servers",
|
|
4804
|
+
"show.js"
|
|
4852
4805
|
]
|
|
4853
4806
|
},
|
|
4854
|
-
"
|
|
4807
|
+
"servers:unrevoke": {
|
|
4855
4808
|
"aliases": [],
|
|
4856
4809
|
"args": {
|
|
4857
4810
|
"id": {
|
|
4858
|
-
"description": "
|
|
4811
|
+
"description": "Server id",
|
|
4859
4812
|
"name": "id",
|
|
4860
4813
|
"required": true
|
|
4861
4814
|
}
|
|
4862
4815
|
},
|
|
4863
|
-
"description": "
|
|
4816
|
+
"description": "Restore a revoked server (its agent can push again)",
|
|
4864
4817
|
"examples": [
|
|
4865
|
-
"<%= config.bin %>
|
|
4818
|
+
"<%= config.bin %> servers unrevoke <server-id>"
|
|
4866
4819
|
],
|
|
4867
4820
|
"flags": {
|
|
4868
4821
|
"json": {
|
|
@@ -4871,20 +4824,11 @@
|
|
|
4871
4824
|
"name": "json",
|
|
4872
4825
|
"allowNo": false,
|
|
4873
4826
|
"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"
|
|
4883
4827
|
}
|
|
4884
4828
|
},
|
|
4885
4829
|
"hasDynamicHelp": false,
|
|
4886
4830
|
"hiddenAliases": [],
|
|
4887
|
-
"id": "
|
|
4831
|
+
"id": "servers:unrevoke",
|
|
4888
4832
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4889
4833
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4890
4834
|
"pluginType": "core",
|
|
@@ -4894,8 +4838,8 @@
|
|
|
4894
4838
|
"relativePath": [
|
|
4895
4839
|
"dist",
|
|
4896
4840
|
"commands",
|
|
4897
|
-
"
|
|
4898
|
-
"
|
|
4841
|
+
"servers",
|
|
4842
|
+
"unrevoke.js"
|
|
4899
4843
|
]
|
|
4900
4844
|
},
|
|
4901
4845
|
"teams:add-member": {
|
|
@@ -5256,6 +5200,199 @@
|
|
|
5256
5200
|
"update.js"
|
|
5257
5201
|
]
|
|
5258
5202
|
},
|
|
5203
|
+
"tokens:create": {
|
|
5204
|
+
"aliases": [],
|
|
5205
|
+
"args": {},
|
|
5206
|
+
"description": "Create an ingest token (the secret is shown only once)",
|
|
5207
|
+
"examples": [
|
|
5208
|
+
"<%= config.bin %> tokens create --project acme-api --name \"CI prod\" --environment-id <env-id>"
|
|
5209
|
+
],
|
|
5210
|
+
"flags": {
|
|
5211
|
+
"json": {
|
|
5212
|
+
"description": "Format output as json.",
|
|
5213
|
+
"helpGroup": "GLOBAL",
|
|
5214
|
+
"name": "json",
|
|
5215
|
+
"allowNo": false,
|
|
5216
|
+
"type": "boolean"
|
|
5217
|
+
},
|
|
5218
|
+
"project": {
|
|
5219
|
+
"char": "p",
|
|
5220
|
+
"description": "Project id (UUID) or key",
|
|
5221
|
+
"name": "project",
|
|
5222
|
+
"required": true,
|
|
5223
|
+
"hasDynamicHelp": false,
|
|
5224
|
+
"multiple": false,
|
|
5225
|
+
"type": "option"
|
|
5226
|
+
},
|
|
5227
|
+
"name": {
|
|
5228
|
+
"description": "Human-readable token name",
|
|
5229
|
+
"name": "name",
|
|
5230
|
+
"required": true,
|
|
5231
|
+
"hasDynamicHelp": false,
|
|
5232
|
+
"multiple": false,
|
|
5233
|
+
"type": "option"
|
|
5234
|
+
},
|
|
5235
|
+
"environment-id": {
|
|
5236
|
+
"description": "Environment id the token is scoped to",
|
|
5237
|
+
"name": "environment-id",
|
|
5238
|
+
"required": true,
|
|
5239
|
+
"hasDynamicHelp": false,
|
|
5240
|
+
"multiple": false,
|
|
5241
|
+
"type": "option"
|
|
5242
|
+
}
|
|
5243
|
+
},
|
|
5244
|
+
"hasDynamicHelp": false,
|
|
5245
|
+
"hiddenAliases": [],
|
|
5246
|
+
"id": "tokens:create",
|
|
5247
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5248
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5249
|
+
"pluginType": "core",
|
|
5250
|
+
"strict": true,
|
|
5251
|
+
"enableJsonFlag": true,
|
|
5252
|
+
"isESM": false,
|
|
5253
|
+
"relativePath": [
|
|
5254
|
+
"dist",
|
|
5255
|
+
"commands",
|
|
5256
|
+
"tokens",
|
|
5257
|
+
"create.js"
|
|
5258
|
+
]
|
|
5259
|
+
},
|
|
5260
|
+
"tokens:list": {
|
|
5261
|
+
"aliases": [],
|
|
5262
|
+
"args": {},
|
|
5263
|
+
"description": "List ingest tokens for a project",
|
|
5264
|
+
"examples": [
|
|
5265
|
+
"<%= config.bin %> tokens list --project acme-api",
|
|
5266
|
+
"<%= config.bin %> tokens list -p acme-api --json"
|
|
5267
|
+
],
|
|
5268
|
+
"flags": {
|
|
5269
|
+
"json": {
|
|
5270
|
+
"description": "Format output as json.",
|
|
5271
|
+
"helpGroup": "GLOBAL",
|
|
5272
|
+
"name": "json",
|
|
5273
|
+
"allowNo": false,
|
|
5274
|
+
"type": "boolean"
|
|
5275
|
+
},
|
|
5276
|
+
"project": {
|
|
5277
|
+
"char": "p",
|
|
5278
|
+
"description": "Project id (UUID) or key",
|
|
5279
|
+
"name": "project",
|
|
5280
|
+
"required": true,
|
|
5281
|
+
"hasDynamicHelp": false,
|
|
5282
|
+
"multiple": false,
|
|
5283
|
+
"type": "option"
|
|
5284
|
+
}
|
|
5285
|
+
},
|
|
5286
|
+
"hasDynamicHelp": false,
|
|
5287
|
+
"hiddenAliases": [],
|
|
5288
|
+
"id": "tokens:list",
|
|
5289
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5290
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5291
|
+
"pluginType": "core",
|
|
5292
|
+
"strict": true,
|
|
5293
|
+
"enableJsonFlag": true,
|
|
5294
|
+
"isESM": false,
|
|
5295
|
+
"relativePath": [
|
|
5296
|
+
"dist",
|
|
5297
|
+
"commands",
|
|
5298
|
+
"tokens",
|
|
5299
|
+
"list.js"
|
|
5300
|
+
]
|
|
5301
|
+
},
|
|
5302
|
+
"tokens:revoke": {
|
|
5303
|
+
"aliases": [],
|
|
5304
|
+
"args": {
|
|
5305
|
+
"id": {
|
|
5306
|
+
"description": "Token id",
|
|
5307
|
+
"name": "id",
|
|
5308
|
+
"required": true
|
|
5309
|
+
}
|
|
5310
|
+
},
|
|
5311
|
+
"description": "Revoke an ingest token",
|
|
5312
|
+
"examples": [
|
|
5313
|
+
"<%= config.bin %> tokens revoke <token-id> --project acme-api"
|
|
5314
|
+
],
|
|
5315
|
+
"flags": {
|
|
5316
|
+
"json": {
|
|
5317
|
+
"description": "Format output as json.",
|
|
5318
|
+
"helpGroup": "GLOBAL",
|
|
5319
|
+
"name": "json",
|
|
5320
|
+
"allowNo": false,
|
|
5321
|
+
"type": "boolean"
|
|
5322
|
+
},
|
|
5323
|
+
"project": {
|
|
5324
|
+
"char": "p",
|
|
5325
|
+
"description": "Project id (UUID) or key",
|
|
5326
|
+
"name": "project",
|
|
5327
|
+
"required": true,
|
|
5328
|
+
"hasDynamicHelp": false,
|
|
5329
|
+
"multiple": false,
|
|
5330
|
+
"type": "option"
|
|
5331
|
+
}
|
|
5332
|
+
},
|
|
5333
|
+
"hasDynamicHelp": false,
|
|
5334
|
+
"hiddenAliases": [],
|
|
5335
|
+
"id": "tokens:revoke",
|
|
5336
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5337
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5338
|
+
"pluginType": "core",
|
|
5339
|
+
"strict": true,
|
|
5340
|
+
"enableJsonFlag": true,
|
|
5341
|
+
"isESM": false,
|
|
5342
|
+
"relativePath": [
|
|
5343
|
+
"dist",
|
|
5344
|
+
"commands",
|
|
5345
|
+
"tokens",
|
|
5346
|
+
"revoke.js"
|
|
5347
|
+
]
|
|
5348
|
+
},
|
|
5349
|
+
"tokens:rotate": {
|
|
5350
|
+
"aliases": [],
|
|
5351
|
+
"args": {
|
|
5352
|
+
"id": {
|
|
5353
|
+
"description": "Token id",
|
|
5354
|
+
"name": "id",
|
|
5355
|
+
"required": true
|
|
5356
|
+
}
|
|
5357
|
+
},
|
|
5358
|
+
"description": "Rotate an ingest token (the new secret is shown only once)",
|
|
5359
|
+
"examples": [
|
|
5360
|
+
"<%= config.bin %> tokens rotate <token-id> --project acme-api"
|
|
5361
|
+
],
|
|
5362
|
+
"flags": {
|
|
5363
|
+
"json": {
|
|
5364
|
+
"description": "Format output as json.",
|
|
5365
|
+
"helpGroup": "GLOBAL",
|
|
5366
|
+
"name": "json",
|
|
5367
|
+
"allowNo": false,
|
|
5368
|
+
"type": "boolean"
|
|
5369
|
+
},
|
|
5370
|
+
"project": {
|
|
5371
|
+
"char": "p",
|
|
5372
|
+
"description": "Project id (UUID) or key",
|
|
5373
|
+
"name": "project",
|
|
5374
|
+
"required": true,
|
|
5375
|
+
"hasDynamicHelp": false,
|
|
5376
|
+
"multiple": false,
|
|
5377
|
+
"type": "option"
|
|
5378
|
+
}
|
|
5379
|
+
},
|
|
5380
|
+
"hasDynamicHelp": false,
|
|
5381
|
+
"hiddenAliases": [],
|
|
5382
|
+
"id": "tokens:rotate",
|
|
5383
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5384
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5385
|
+
"pluginType": "core",
|
|
5386
|
+
"strict": true,
|
|
5387
|
+
"enableJsonFlag": true,
|
|
5388
|
+
"isESM": false,
|
|
5389
|
+
"relativePath": [
|
|
5390
|
+
"dist",
|
|
5391
|
+
"commands",
|
|
5392
|
+
"tokens",
|
|
5393
|
+
"rotate.js"
|
|
5394
|
+
]
|
|
5395
|
+
},
|
|
5259
5396
|
"tickets:approve": {
|
|
5260
5397
|
"aliases": [],
|
|
5261
5398
|
"args": {
|
|
@@ -6728,5 +6865,5 @@
|
|
|
6728
6865
|
]
|
|
6729
6866
|
}
|
|
6730
6867
|
},
|
|
6731
|
-
"version": "0.0.
|
|
6868
|
+
"version": "0.0.16"
|
|
6732
6869
|
}
|