@bussolabs/closeyourit-cli 0.0.11 → 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/commands/tickets/approve.d.ts +12 -0
- package/dist/commands/tickets/approve.js +24 -0
- package/dist/commands/tickets/reject.d.ts +13 -0
- package/dist/commands/tickets/reject.js +29 -0
- package/oclif.manifest.json +1125 -1023
- package/opencli.json +65 -0
- 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,23 +692,23 @@
|
|
|
649
692
|
"relativePath": [
|
|
650
693
|
"dist",
|
|
651
694
|
"commands",
|
|
652
|
-
"
|
|
695
|
+
"environments",
|
|
653
696
|
"update.js"
|
|
654
697
|
]
|
|
655
698
|
},
|
|
656
|
-
"
|
|
699
|
+
"groups:create": {
|
|
657
700
|
"aliases": [],
|
|
658
701
|
"args": {
|
|
659
|
-
"
|
|
660
|
-
"description": "
|
|
661
|
-
"name": "
|
|
702
|
+
"name": {
|
|
703
|
+
"description": "Group name",
|
|
704
|
+
"name": "name",
|
|
662
705
|
"required": true
|
|
663
706
|
}
|
|
664
707
|
},
|
|
665
|
-
"description": "
|
|
708
|
+
"description": "Create a group (a container of related projects, e.g. \"DriverOne\")",
|
|
666
709
|
"examples": [
|
|
667
|
-
"<%= config.bin %>
|
|
668
|
-
"<%= config.bin %>
|
|
710
|
+
"<%= config.bin %> groups create DriverOne",
|
|
711
|
+
"<%= config.bin %> groups create DriverOne --color indigo"
|
|
669
712
|
],
|
|
670
713
|
"flags": {
|
|
671
714
|
"json": {
|
|
@@ -675,23 +718,17 @@
|
|
|
675
718
|
"allowNo": false,
|
|
676
719
|
"type": "boolean"
|
|
677
720
|
},
|
|
678
|
-
"
|
|
679
|
-
"description": "
|
|
680
|
-
"name": "
|
|
681
|
-
"default": "customer",
|
|
721
|
+
"color": {
|
|
722
|
+
"description": "Color label",
|
|
723
|
+
"name": "color",
|
|
682
724
|
"hasDynamicHelp": false,
|
|
683
725
|
"multiple": false,
|
|
684
|
-
"options": [
|
|
685
|
-
"customer",
|
|
686
|
-
"member",
|
|
687
|
-
"admin"
|
|
688
|
-
],
|
|
689
726
|
"type": "option"
|
|
690
727
|
}
|
|
691
728
|
},
|
|
692
729
|
"hasDynamicHelp": false,
|
|
693
730
|
"hiddenAliases": [],
|
|
694
|
-
"id": "
|
|
731
|
+
"id": "groups:create",
|
|
695
732
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
696
733
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
697
734
|
"pluginType": "core",
|
|
@@ -701,17 +738,22 @@
|
|
|
701
738
|
"relativePath": [
|
|
702
739
|
"dist",
|
|
703
740
|
"commands",
|
|
704
|
-
"
|
|
741
|
+
"groups",
|
|
705
742
|
"create.js"
|
|
706
743
|
]
|
|
707
744
|
},
|
|
708
|
-
"
|
|
745
|
+
"groups:delete": {
|
|
709
746
|
"aliases": [],
|
|
710
|
-
"args": {
|
|
711
|
-
|
|
747
|
+
"args": {
|
|
748
|
+
"group": {
|
|
749
|
+
"description": "Group id (UUID) or name",
|
|
750
|
+
"name": "group",
|
|
751
|
+
"required": true
|
|
752
|
+
}
|
|
753
|
+
},
|
|
754
|
+
"description": "Delete a group (its projects are detached, not deleted)",
|
|
712
755
|
"examples": [
|
|
713
|
-
"<%= config.bin %>
|
|
714
|
-
"<%= config.bin %> invitations list --json"
|
|
756
|
+
"<%= config.bin %> groups delete Backend --confirm"
|
|
715
757
|
],
|
|
716
758
|
"flags": {
|
|
717
759
|
"json": {
|
|
@@ -721,18 +763,16 @@
|
|
|
721
763
|
"allowNo": false,
|
|
722
764
|
"type": "boolean"
|
|
723
765
|
},
|
|
724
|
-
"
|
|
725
|
-
"description": "
|
|
726
|
-
"name": "
|
|
727
|
-
"
|
|
728
|
-
"
|
|
729
|
-
"multiple": false,
|
|
730
|
-
"type": "option"
|
|
766
|
+
"confirm": {
|
|
767
|
+
"description": "Required: confirm the deletion",
|
|
768
|
+
"name": "confirm",
|
|
769
|
+
"allowNo": false,
|
|
770
|
+
"type": "boolean"
|
|
731
771
|
}
|
|
732
772
|
},
|
|
733
773
|
"hasDynamicHelp": false,
|
|
734
774
|
"hiddenAliases": [],
|
|
735
|
-
"id": "
|
|
775
|
+
"id": "groups:delete",
|
|
736
776
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
737
777
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
738
778
|
"pluginType": "core",
|
|
@@ -742,22 +782,17 @@
|
|
|
742
782
|
"relativePath": [
|
|
743
783
|
"dist",
|
|
744
784
|
"commands",
|
|
745
|
-
"
|
|
746
|
-
"
|
|
785
|
+
"groups",
|
|
786
|
+
"delete.js"
|
|
747
787
|
]
|
|
748
788
|
},
|
|
749
|
-
"
|
|
789
|
+
"groups:list": {
|
|
750
790
|
"aliases": [],
|
|
751
|
-
"args": {
|
|
752
|
-
|
|
753
|
-
"description": "Invitation id (UUID)",
|
|
754
|
-
"name": "id",
|
|
755
|
-
"required": true
|
|
756
|
-
}
|
|
757
|
-
},
|
|
758
|
-
"description": "Resend a pending invitation. Prints the acceptance link (shown only once).",
|
|
791
|
+
"args": {},
|
|
792
|
+
"description": "List the groups (macro-projects) in your organization",
|
|
759
793
|
"examples": [
|
|
760
|
-
"<%= config.bin %>
|
|
794
|
+
"<%= config.bin %> groups list",
|
|
795
|
+
"<%= config.bin %> groups list --page 2 --json"
|
|
761
796
|
],
|
|
762
797
|
"flags": {
|
|
763
798
|
"json": {
|
|
@@ -766,11 +801,19 @@
|
|
|
766
801
|
"name": "json",
|
|
767
802
|
"allowNo": false,
|
|
768
803
|
"type": "boolean"
|
|
804
|
+
},
|
|
805
|
+
"page": {
|
|
806
|
+
"description": "Page number",
|
|
807
|
+
"name": "page",
|
|
808
|
+
"default": 1,
|
|
809
|
+
"hasDynamicHelp": false,
|
|
810
|
+
"multiple": false,
|
|
811
|
+
"type": "option"
|
|
769
812
|
}
|
|
770
813
|
},
|
|
771
814
|
"hasDynamicHelp": false,
|
|
772
815
|
"hiddenAliases": [],
|
|
773
|
-
"id": "
|
|
816
|
+
"id": "groups:list",
|
|
774
817
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
775
818
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
776
819
|
"pluginType": "core",
|
|
@@ -780,22 +823,23 @@
|
|
|
780
823
|
"relativePath": [
|
|
781
824
|
"dist",
|
|
782
825
|
"commands",
|
|
783
|
-
"
|
|
784
|
-
"
|
|
826
|
+
"groups",
|
|
827
|
+
"list.js"
|
|
785
828
|
]
|
|
786
829
|
},
|
|
787
|
-
"
|
|
830
|
+
"groups:update": {
|
|
788
831
|
"aliases": [],
|
|
789
832
|
"args": {
|
|
790
|
-
"
|
|
791
|
-
"description": "
|
|
792
|
-
"name": "
|
|
833
|
+
"group": {
|
|
834
|
+
"description": "Group id (UUID) or name",
|
|
835
|
+
"name": "group",
|
|
793
836
|
"required": true
|
|
794
837
|
}
|
|
795
838
|
},
|
|
796
|
-
"description": "
|
|
839
|
+
"description": "Update a group (rename or recolor)",
|
|
797
840
|
"examples": [
|
|
798
|
-
"<%= config.bin %>
|
|
841
|
+
"<%= config.bin %> groups update Backend --name \"Backend services\"",
|
|
842
|
+
"<%= config.bin %> groups update Backend --color indigo"
|
|
799
843
|
],
|
|
800
844
|
"flags": {
|
|
801
845
|
"json": {
|
|
@@ -804,11 +848,25 @@
|
|
|
804
848
|
"name": "json",
|
|
805
849
|
"allowNo": false,
|
|
806
850
|
"type": "boolean"
|
|
851
|
+
},
|
|
852
|
+
"name": {
|
|
853
|
+
"description": "New name",
|
|
854
|
+
"name": "name",
|
|
855
|
+
"hasDynamicHelp": false,
|
|
856
|
+
"multiple": false,
|
|
857
|
+
"type": "option"
|
|
858
|
+
},
|
|
859
|
+
"color": {
|
|
860
|
+
"description": "Color label",
|
|
861
|
+
"name": "color",
|
|
862
|
+
"hasDynamicHelp": false,
|
|
863
|
+
"multiple": false,
|
|
864
|
+
"type": "option"
|
|
807
865
|
}
|
|
808
866
|
},
|
|
809
867
|
"hasDynamicHelp": false,
|
|
810
868
|
"hiddenAliases": [],
|
|
811
|
-
"id": "
|
|
869
|
+
"id": "groups:update",
|
|
812
870
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
813
871
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
814
872
|
"pluginType": "core",
|
|
@@ -818,244 +876,17 @@
|
|
|
818
876
|
"relativePath": [
|
|
819
877
|
"dist",
|
|
820
878
|
"commands",
|
|
821
|
-
"
|
|
822
|
-
"
|
|
879
|
+
"groups",
|
|
880
|
+
"update.js"
|
|
823
881
|
]
|
|
824
882
|
},
|
|
825
|
-
"
|
|
883
|
+
"errors:list": {
|
|
826
884
|
"aliases": [],
|
|
827
|
-
"args": {
|
|
828
|
-
|
|
829
|
-
"description": "Environment code (lowercase, e.g. production)",
|
|
830
|
-
"name": "code",
|
|
831
|
-
"required": true
|
|
832
|
-
}
|
|
833
|
-
},
|
|
834
|
-
"description": "Create an environment (production, staging, …) in your organization",
|
|
885
|
+
"args": {},
|
|
886
|
+
"description": "List error groups for a project",
|
|
835
887
|
"examples": [
|
|
836
|
-
"<%= config.bin %>
|
|
837
|
-
"<%= config.bin %>
|
|
838
|
-
],
|
|
839
|
-
"flags": {
|
|
840
|
-
"json": {
|
|
841
|
-
"description": "Format output as json.",
|
|
842
|
-
"helpGroup": "GLOBAL",
|
|
843
|
-
"name": "json",
|
|
844
|
-
"allowNo": false,
|
|
845
|
-
"type": "boolean"
|
|
846
|
-
},
|
|
847
|
-
"label": {
|
|
848
|
-
"description": "Human-readable label",
|
|
849
|
-
"name": "label",
|
|
850
|
-
"required": true,
|
|
851
|
-
"hasDynamicHelp": false,
|
|
852
|
-
"multiple": false,
|
|
853
|
-
"type": "option"
|
|
854
|
-
},
|
|
855
|
-
"color": {
|
|
856
|
-
"description": "Color label",
|
|
857
|
-
"name": "color",
|
|
858
|
-
"default": "emerald",
|
|
859
|
-
"hasDynamicHelp": false,
|
|
860
|
-
"multiple": false,
|
|
861
|
-
"type": "option"
|
|
862
|
-
},
|
|
863
|
-
"position": {
|
|
864
|
-
"description": "Sort position",
|
|
865
|
-
"name": "position",
|
|
866
|
-
"hasDynamicHelp": false,
|
|
867
|
-
"multiple": false,
|
|
868
|
-
"type": "option"
|
|
869
|
-
},
|
|
870
|
-
"active": {
|
|
871
|
-
"description": "Whether the environment is active",
|
|
872
|
-
"name": "active",
|
|
873
|
-
"allowNo": true,
|
|
874
|
-
"type": "boolean"
|
|
875
|
-
}
|
|
876
|
-
},
|
|
877
|
-
"hasDynamicHelp": false,
|
|
878
|
-
"hiddenAliases": [],
|
|
879
|
-
"id": "environments:create",
|
|
880
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
881
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
882
|
-
"pluginType": "core",
|
|
883
|
-
"strict": true,
|
|
884
|
-
"enableJsonFlag": true,
|
|
885
|
-
"isESM": false,
|
|
886
|
-
"relativePath": [
|
|
887
|
-
"dist",
|
|
888
|
-
"commands",
|
|
889
|
-
"environments",
|
|
890
|
-
"create.js"
|
|
891
|
-
]
|
|
892
|
-
},
|
|
893
|
-
"environments:delete": {
|
|
894
|
-
"aliases": [],
|
|
895
|
-
"args": {
|
|
896
|
-
"environment": {
|
|
897
|
-
"description": "Environment id (UUID) or code",
|
|
898
|
-
"name": "environment",
|
|
899
|
-
"required": true
|
|
900
|
-
}
|
|
901
|
-
},
|
|
902
|
-
"description": "Delete an environment (blocked while projects, tokens or monitors reference it)",
|
|
903
|
-
"examples": [
|
|
904
|
-
"<%= config.bin %> environments delete staging --confirm"
|
|
905
|
-
],
|
|
906
|
-
"flags": {
|
|
907
|
-
"json": {
|
|
908
|
-
"description": "Format output as json.",
|
|
909
|
-
"helpGroup": "GLOBAL",
|
|
910
|
-
"name": "json",
|
|
911
|
-
"allowNo": false,
|
|
912
|
-
"type": "boolean"
|
|
913
|
-
},
|
|
914
|
-
"confirm": {
|
|
915
|
-
"description": "Required: confirm the deletion",
|
|
916
|
-
"name": "confirm",
|
|
917
|
-
"allowNo": false,
|
|
918
|
-
"type": "boolean"
|
|
919
|
-
}
|
|
920
|
-
},
|
|
921
|
-
"hasDynamicHelp": false,
|
|
922
|
-
"hiddenAliases": [],
|
|
923
|
-
"id": "environments:delete",
|
|
924
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
925
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
926
|
-
"pluginType": "core",
|
|
927
|
-
"strict": true,
|
|
928
|
-
"enableJsonFlag": true,
|
|
929
|
-
"isESM": false,
|
|
930
|
-
"relativePath": [
|
|
931
|
-
"dist",
|
|
932
|
-
"commands",
|
|
933
|
-
"environments",
|
|
934
|
-
"delete.js"
|
|
935
|
-
]
|
|
936
|
-
},
|
|
937
|
-
"environments:list": {
|
|
938
|
-
"aliases": [],
|
|
939
|
-
"args": {},
|
|
940
|
-
"description": "List the environments (production, staging, …) in your organization",
|
|
941
|
-
"examples": [
|
|
942
|
-
"<%= config.bin %> environments list",
|
|
943
|
-
"<%= config.bin %> environments list --page 2 --json"
|
|
944
|
-
],
|
|
945
|
-
"flags": {
|
|
946
|
-
"json": {
|
|
947
|
-
"description": "Format output as json.",
|
|
948
|
-
"helpGroup": "GLOBAL",
|
|
949
|
-
"name": "json",
|
|
950
|
-
"allowNo": false,
|
|
951
|
-
"type": "boolean"
|
|
952
|
-
},
|
|
953
|
-
"page": {
|
|
954
|
-
"description": "Page number",
|
|
955
|
-
"name": "page",
|
|
956
|
-
"default": 1,
|
|
957
|
-
"hasDynamicHelp": false,
|
|
958
|
-
"multiple": false,
|
|
959
|
-
"type": "option"
|
|
960
|
-
}
|
|
961
|
-
},
|
|
962
|
-
"hasDynamicHelp": false,
|
|
963
|
-
"hiddenAliases": [],
|
|
964
|
-
"id": "environments:list",
|
|
965
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
966
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
967
|
-
"pluginType": "core",
|
|
968
|
-
"strict": true,
|
|
969
|
-
"enableJsonFlag": true,
|
|
970
|
-
"isESM": false,
|
|
971
|
-
"relativePath": [
|
|
972
|
-
"dist",
|
|
973
|
-
"commands",
|
|
974
|
-
"environments",
|
|
975
|
-
"list.js"
|
|
976
|
-
]
|
|
977
|
-
},
|
|
978
|
-
"environments:update": {
|
|
979
|
-
"aliases": [],
|
|
980
|
-
"args": {
|
|
981
|
-
"environment": {
|
|
982
|
-
"description": "Environment id (UUID) or code",
|
|
983
|
-
"name": "environment",
|
|
984
|
-
"required": true
|
|
985
|
-
}
|
|
986
|
-
},
|
|
987
|
-
"description": "Update an environment (recode, relabel, recolor, reorder, activate/deactivate)",
|
|
988
|
-
"examples": [
|
|
989
|
-
"<%= config.bin %> environments update staging --label \"Staging env\"",
|
|
990
|
-
"<%= config.bin %> environments update production --color indigo",
|
|
991
|
-
"<%= config.bin %> environments update staging --no-active"
|
|
992
|
-
],
|
|
993
|
-
"flags": {
|
|
994
|
-
"json": {
|
|
995
|
-
"description": "Format output as json.",
|
|
996
|
-
"helpGroup": "GLOBAL",
|
|
997
|
-
"name": "json",
|
|
998
|
-
"allowNo": false,
|
|
999
|
-
"type": "boolean"
|
|
1000
|
-
},
|
|
1001
|
-
"code": {
|
|
1002
|
-
"description": "New code (lowercase)",
|
|
1003
|
-
"name": "code",
|
|
1004
|
-
"hasDynamicHelp": false,
|
|
1005
|
-
"multiple": false,
|
|
1006
|
-
"type": "option"
|
|
1007
|
-
},
|
|
1008
|
-
"label": {
|
|
1009
|
-
"description": "New label",
|
|
1010
|
-
"name": "label",
|
|
1011
|
-
"hasDynamicHelp": false,
|
|
1012
|
-
"multiple": false,
|
|
1013
|
-
"type": "option"
|
|
1014
|
-
},
|
|
1015
|
-
"color": {
|
|
1016
|
-
"description": "Color label",
|
|
1017
|
-
"name": "color",
|
|
1018
|
-
"hasDynamicHelp": false,
|
|
1019
|
-
"multiple": false,
|
|
1020
|
-
"type": "option"
|
|
1021
|
-
},
|
|
1022
|
-
"position": {
|
|
1023
|
-
"description": "Sort position",
|
|
1024
|
-
"name": "position",
|
|
1025
|
-
"hasDynamicHelp": false,
|
|
1026
|
-
"multiple": false,
|
|
1027
|
-
"type": "option"
|
|
1028
|
-
},
|
|
1029
|
-
"active": {
|
|
1030
|
-
"description": "Whether the environment is active",
|
|
1031
|
-
"name": "active",
|
|
1032
|
-
"allowNo": true,
|
|
1033
|
-
"type": "boolean"
|
|
1034
|
-
}
|
|
1035
|
-
},
|
|
1036
|
-
"hasDynamicHelp": false,
|
|
1037
|
-
"hiddenAliases": [],
|
|
1038
|
-
"id": "environments:update",
|
|
1039
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1040
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1041
|
-
"pluginType": "core",
|
|
1042
|
-
"strict": true,
|
|
1043
|
-
"enableJsonFlag": true,
|
|
1044
|
-
"isESM": false,
|
|
1045
|
-
"relativePath": [
|
|
1046
|
-
"dist",
|
|
1047
|
-
"commands",
|
|
1048
|
-
"environments",
|
|
1049
|
-
"update.js"
|
|
1050
|
-
]
|
|
1051
|
-
},
|
|
1052
|
-
"errors:list": {
|
|
1053
|
-
"aliases": [],
|
|
1054
|
-
"args": {},
|
|
1055
|
-
"description": "List error groups for a project",
|
|
1056
|
-
"examples": [
|
|
1057
|
-
"<%= config.bin %> errors list --project acme-api",
|
|
1058
|
-
"<%= config.bin %> errors list -p acme-api --status unresolved --json"
|
|
888
|
+
"<%= config.bin %> errors list --project acme-api",
|
|
889
|
+
"<%= config.bin %> errors list -p acme-api --status unresolved --json"
|
|
1059
890
|
],
|
|
1060
891
|
"flags": {
|
|
1061
892
|
"json": {
|
|
@@ -1388,14 +1219,19 @@
|
|
|
1388
1219
|
"unmute.js"
|
|
1389
1220
|
]
|
|
1390
1221
|
},
|
|
1391
|
-
"
|
|
1222
|
+
"invitations:create": {
|
|
1392
1223
|
"aliases": [],
|
|
1393
|
-
"args": {
|
|
1394
|
-
|
|
1224
|
+
"args": {
|
|
1225
|
+
"email": {
|
|
1226
|
+
"description": "Email address to invite",
|
|
1227
|
+
"name": "email",
|
|
1228
|
+
"required": true
|
|
1229
|
+
}
|
|
1230
|
+
},
|
|
1231
|
+
"description": "Invite a person to the organization. Prints the acceptance link (shown only once).",
|
|
1395
1232
|
"examples": [
|
|
1396
|
-
"<%= config.bin %>
|
|
1397
|
-
"<%= config.bin %>
|
|
1398
|
-
"<%= config.bin %> logs list --trace-id 7f3c… --json"
|
|
1233
|
+
"<%= config.bin %> invitations create client@acme.com",
|
|
1234
|
+
"<%= config.bin %> invitations create teammate@acme.com --role member"
|
|
1399
1235
|
],
|
|
1400
1236
|
"flags": {
|
|
1401
1237
|
"json": {
|
|
@@ -1405,17 +1241,181 @@
|
|
|
1405
1241
|
"allowNo": false,
|
|
1406
1242
|
"type": "boolean"
|
|
1407
1243
|
},
|
|
1408
|
-
"
|
|
1409
|
-
"
|
|
1410
|
-
"
|
|
1411
|
-
"
|
|
1412
|
-
"hasDynamicHelp": false,
|
|
1413
|
-
"multiple": false,
|
|
1414
|
-
"
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1244
|
+
"role": {
|
|
1245
|
+
"description": "Membership role",
|
|
1246
|
+
"name": "role",
|
|
1247
|
+
"default": "customer",
|
|
1248
|
+
"hasDynamicHelp": false,
|
|
1249
|
+
"multiple": false,
|
|
1250
|
+
"options": [
|
|
1251
|
+
"customer",
|
|
1252
|
+
"member",
|
|
1253
|
+
"admin"
|
|
1254
|
+
],
|
|
1255
|
+
"type": "option"
|
|
1256
|
+
}
|
|
1257
|
+
},
|
|
1258
|
+
"hasDynamicHelp": false,
|
|
1259
|
+
"hiddenAliases": [],
|
|
1260
|
+
"id": "invitations:create",
|
|
1261
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1262
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1263
|
+
"pluginType": "core",
|
|
1264
|
+
"strict": true,
|
|
1265
|
+
"enableJsonFlag": true,
|
|
1266
|
+
"isESM": false,
|
|
1267
|
+
"relativePath": [
|
|
1268
|
+
"dist",
|
|
1269
|
+
"commands",
|
|
1270
|
+
"invitations",
|
|
1271
|
+
"create.js"
|
|
1272
|
+
]
|
|
1273
|
+
},
|
|
1274
|
+
"invitations:list": {
|
|
1275
|
+
"aliases": [],
|
|
1276
|
+
"args": {},
|
|
1277
|
+
"description": "List the pending/accepted invitations of your organization",
|
|
1278
|
+
"examples": [
|
|
1279
|
+
"<%= config.bin %> invitations list",
|
|
1280
|
+
"<%= config.bin %> invitations list --json"
|
|
1281
|
+
],
|
|
1282
|
+
"flags": {
|
|
1283
|
+
"json": {
|
|
1284
|
+
"description": "Format output as json.",
|
|
1285
|
+
"helpGroup": "GLOBAL",
|
|
1286
|
+
"name": "json",
|
|
1287
|
+
"allowNo": false,
|
|
1288
|
+
"type": "boolean"
|
|
1289
|
+
},
|
|
1290
|
+
"page": {
|
|
1291
|
+
"description": "Page number",
|
|
1292
|
+
"name": "page",
|
|
1293
|
+
"default": 1,
|
|
1294
|
+
"hasDynamicHelp": false,
|
|
1295
|
+
"multiple": false,
|
|
1296
|
+
"type": "option"
|
|
1297
|
+
}
|
|
1298
|
+
},
|
|
1299
|
+
"hasDynamicHelp": false,
|
|
1300
|
+
"hiddenAliases": [],
|
|
1301
|
+
"id": "invitations:list",
|
|
1302
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1303
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1304
|
+
"pluginType": "core",
|
|
1305
|
+
"strict": true,
|
|
1306
|
+
"enableJsonFlag": true,
|
|
1307
|
+
"isESM": false,
|
|
1308
|
+
"relativePath": [
|
|
1309
|
+
"dist",
|
|
1310
|
+
"commands",
|
|
1311
|
+
"invitations",
|
|
1312
|
+
"list.js"
|
|
1313
|
+
]
|
|
1314
|
+
},
|
|
1315
|
+
"invitations:resend": {
|
|
1316
|
+
"aliases": [],
|
|
1317
|
+
"args": {
|
|
1318
|
+
"id": {
|
|
1319
|
+
"description": "Invitation id (UUID)",
|
|
1320
|
+
"name": "id",
|
|
1321
|
+
"required": true
|
|
1322
|
+
}
|
|
1323
|
+
},
|
|
1324
|
+
"description": "Resend a pending invitation. Prints the acceptance link (shown only once).",
|
|
1325
|
+
"examples": [
|
|
1326
|
+
"<%= config.bin %> invitations resend <invitation-uuid>"
|
|
1327
|
+
],
|
|
1328
|
+
"flags": {
|
|
1329
|
+
"json": {
|
|
1330
|
+
"description": "Format output as json.",
|
|
1331
|
+
"helpGroup": "GLOBAL",
|
|
1332
|
+
"name": "json",
|
|
1333
|
+
"allowNo": false,
|
|
1334
|
+
"type": "boolean"
|
|
1335
|
+
}
|
|
1336
|
+
},
|
|
1337
|
+
"hasDynamicHelp": false,
|
|
1338
|
+
"hiddenAliases": [],
|
|
1339
|
+
"id": "invitations:resend",
|
|
1340
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1341
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1342
|
+
"pluginType": "core",
|
|
1343
|
+
"strict": true,
|
|
1344
|
+
"enableJsonFlag": true,
|
|
1345
|
+
"isESM": false,
|
|
1346
|
+
"relativePath": [
|
|
1347
|
+
"dist",
|
|
1348
|
+
"commands",
|
|
1349
|
+
"invitations",
|
|
1350
|
+
"resend.js"
|
|
1351
|
+
]
|
|
1352
|
+
},
|
|
1353
|
+
"invitations:revoke": {
|
|
1354
|
+
"aliases": [],
|
|
1355
|
+
"args": {
|
|
1356
|
+
"id": {
|
|
1357
|
+
"description": "Invitation id (UUID)",
|
|
1358
|
+
"name": "id",
|
|
1359
|
+
"required": true
|
|
1360
|
+
}
|
|
1361
|
+
},
|
|
1362
|
+
"description": "Revoke a pending invitation",
|
|
1363
|
+
"examples": [
|
|
1364
|
+
"<%= config.bin %> invitations revoke <invitation-uuid>"
|
|
1365
|
+
],
|
|
1366
|
+
"flags": {
|
|
1367
|
+
"json": {
|
|
1368
|
+
"description": "Format output as json.",
|
|
1369
|
+
"helpGroup": "GLOBAL",
|
|
1370
|
+
"name": "json",
|
|
1371
|
+
"allowNo": false,
|
|
1372
|
+
"type": "boolean"
|
|
1373
|
+
}
|
|
1374
|
+
},
|
|
1375
|
+
"hasDynamicHelp": false,
|
|
1376
|
+
"hiddenAliases": [],
|
|
1377
|
+
"id": "invitations:revoke",
|
|
1378
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1379
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1380
|
+
"pluginType": "core",
|
|
1381
|
+
"strict": true,
|
|
1382
|
+
"enableJsonFlag": true,
|
|
1383
|
+
"isESM": false,
|
|
1384
|
+
"relativePath": [
|
|
1385
|
+
"dist",
|
|
1386
|
+
"commands",
|
|
1387
|
+
"invitations",
|
|
1388
|
+
"revoke.js"
|
|
1389
|
+
]
|
|
1390
|
+
},
|
|
1391
|
+
"logs:list": {
|
|
1392
|
+
"aliases": [],
|
|
1393
|
+
"args": {},
|
|
1394
|
+
"description": "List structured log entries (cross-app stream)",
|
|
1395
|
+
"examples": [
|
|
1396
|
+
"<%= config.bin %> logs list",
|
|
1397
|
+
"<%= config.bin %> logs list --project acme-api --level error",
|
|
1398
|
+
"<%= config.bin %> logs list --trace-id 7f3c… --json"
|
|
1399
|
+
],
|
|
1400
|
+
"flags": {
|
|
1401
|
+
"json": {
|
|
1402
|
+
"description": "Format output as json.",
|
|
1403
|
+
"helpGroup": "GLOBAL",
|
|
1404
|
+
"name": "json",
|
|
1405
|
+
"allowNo": false,
|
|
1406
|
+
"type": "boolean"
|
|
1407
|
+
},
|
|
1408
|
+
"project": {
|
|
1409
|
+
"char": "p",
|
|
1410
|
+
"description": "Filter by project id (UUID) or key",
|
|
1411
|
+
"name": "project",
|
|
1412
|
+
"hasDynamicHelp": false,
|
|
1413
|
+
"multiple": false,
|
|
1414
|
+
"type": "option"
|
|
1415
|
+
},
|
|
1416
|
+
"level": {
|
|
1417
|
+
"description": "Filter by level (debug, info, warning, error, fatal)",
|
|
1418
|
+
"name": "level",
|
|
1419
1419
|
"hasDynamicHelp": false,
|
|
1420
1420
|
"multiple": false,
|
|
1421
1421
|
"type": "option"
|
|
@@ -2602,19 +2602,20 @@
|
|
|
2602
2602
|
"update.js"
|
|
2603
2603
|
]
|
|
2604
2604
|
},
|
|
2605
|
-
"
|
|
2605
|
+
"projects:create": {
|
|
2606
2606
|
"aliases": [],
|
|
2607
2607
|
"args": {
|
|
2608
|
-
"
|
|
2609
|
-
"description": "
|
|
2610
|
-
"name": "
|
|
2608
|
+
"name": {
|
|
2609
|
+
"description": "Project name",
|
|
2610
|
+
"name": "name",
|
|
2611
2611
|
"required": true
|
|
2612
2612
|
}
|
|
2613
2613
|
},
|
|
2614
|
-
"description": "Create a
|
|
2614
|
+
"description": "Create a project (optionally inside a group)",
|
|
2615
2615
|
"examples": [
|
|
2616
|
-
"<%= config.bin %>
|
|
2617
|
-
"<%= config.bin %>
|
|
2616
|
+
"<%= config.bin %> projects create driverone-rails --key DRRA",
|
|
2617
|
+
"<%= config.bin %> projects create driverone-rails --group DriverOne --key DRRA",
|
|
2618
|
+
"<%= config.bin %> projects create driverone-flutter -g <group-uuid> -k DRFL"
|
|
2618
2619
|
],
|
|
2619
2620
|
"flags": {
|
|
2620
2621
|
"json": {
|
|
@@ -2624,39 +2625,41 @@
|
|
|
2624
2625
|
"allowNo": false,
|
|
2625
2626
|
"type": "boolean"
|
|
2626
2627
|
},
|
|
2627
|
-
"
|
|
2628
|
-
"description": "
|
|
2629
|
-
"name": "
|
|
2630
|
-
"required": true,
|
|
2628
|
+
"color": {
|
|
2629
|
+
"description": "Color label",
|
|
2630
|
+
"name": "color",
|
|
2631
2631
|
"hasDynamicHelp": false,
|
|
2632
2632
|
"multiple": false,
|
|
2633
2633
|
"type": "option"
|
|
2634
2634
|
},
|
|
2635
|
-
"
|
|
2636
|
-
"description": "
|
|
2637
|
-
"name": "
|
|
2638
|
-
"default": "sky",
|
|
2635
|
+
"description": {
|
|
2636
|
+
"description": "Free-form description",
|
|
2637
|
+
"name": "description",
|
|
2639
2638
|
"hasDynamicHelp": false,
|
|
2640
2639
|
"multiple": false,
|
|
2641
2640
|
"type": "option"
|
|
2642
2641
|
},
|
|
2643
|
-
"
|
|
2644
|
-
"
|
|
2645
|
-
"
|
|
2642
|
+
"group": {
|
|
2643
|
+
"char": "g",
|
|
2644
|
+
"description": "Group id (UUID) or name to place the project in",
|
|
2645
|
+
"name": "group",
|
|
2646
2646
|
"hasDynamicHelp": false,
|
|
2647
2647
|
"multiple": false,
|
|
2648
2648
|
"type": "option"
|
|
2649
2649
|
},
|
|
2650
|
-
"
|
|
2651
|
-
"
|
|
2652
|
-
"
|
|
2653
|
-
"
|
|
2654
|
-
"
|
|
2650
|
+
"key": {
|
|
2651
|
+
"char": "k",
|
|
2652
|
+
"description": "Project key (uppercase A-Z0-9, max 4 chars, unique per org)",
|
|
2653
|
+
"name": "key",
|
|
2654
|
+
"required": true,
|
|
2655
|
+
"hasDynamicHelp": false,
|
|
2656
|
+
"multiple": false,
|
|
2657
|
+
"type": "option"
|
|
2655
2658
|
}
|
|
2656
2659
|
},
|
|
2657
2660
|
"hasDynamicHelp": false,
|
|
2658
2661
|
"hiddenAliases": [],
|
|
2659
|
-
"id": "
|
|
2662
|
+
"id": "projects:create",
|
|
2660
2663
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2661
2664
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2662
2665
|
"pluginType": "core",
|
|
@@ -2666,22 +2669,16 @@
|
|
|
2666
2669
|
"relativePath": [
|
|
2667
2670
|
"dist",
|
|
2668
2671
|
"commands",
|
|
2669
|
-
"
|
|
2672
|
+
"projects",
|
|
2670
2673
|
"create.js"
|
|
2671
2674
|
]
|
|
2672
2675
|
},
|
|
2673
|
-
"
|
|
2676
|
+
"projects:delete": {
|
|
2674
2677
|
"aliases": [],
|
|
2675
|
-
"args": {
|
|
2676
|
-
|
|
2677
|
-
"description": "Platform id (UUID) or code",
|
|
2678
|
-
"name": "platform",
|
|
2679
|
-
"required": true
|
|
2680
|
-
}
|
|
2681
|
-
},
|
|
2682
|
-
"description": "Delete a platform (blocked if any project or ticket still references it)",
|
|
2678
|
+
"args": {},
|
|
2679
|
+
"description": "Delete a project (irreversible)",
|
|
2683
2680
|
"examples": [
|
|
2684
|
-
"<%= config.bin %>
|
|
2681
|
+
"<%= config.bin %> projects delete --project LBRA --confirm"
|
|
2685
2682
|
],
|
|
2686
2683
|
"flags": {
|
|
2687
2684
|
"json": {
|
|
@@ -2691,8 +2688,17 @@
|
|
|
2691
2688
|
"allowNo": false,
|
|
2692
2689
|
"type": "boolean"
|
|
2693
2690
|
},
|
|
2691
|
+
"project": {
|
|
2692
|
+
"char": "p",
|
|
2693
|
+
"description": "Project id (UUID) or key",
|
|
2694
|
+
"name": "project",
|
|
2695
|
+
"required": true,
|
|
2696
|
+
"hasDynamicHelp": false,
|
|
2697
|
+
"multiple": false,
|
|
2698
|
+
"type": "option"
|
|
2699
|
+
},
|
|
2694
2700
|
"confirm": {
|
|
2695
|
-
"description": "Required: confirm the deletion",
|
|
2701
|
+
"description": "Required: confirm the irreversible deletion",
|
|
2696
2702
|
"name": "confirm",
|
|
2697
2703
|
"allowNo": false,
|
|
2698
2704
|
"type": "boolean"
|
|
@@ -2700,7 +2706,7 @@
|
|
|
2700
2706
|
},
|
|
2701
2707
|
"hasDynamicHelp": false,
|
|
2702
2708
|
"hiddenAliases": [],
|
|
2703
|
-
"id": "
|
|
2709
|
+
"id": "projects:delete",
|
|
2704
2710
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2705
2711
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2706
2712
|
"pluginType": "core",
|
|
@@ -2710,17 +2716,17 @@
|
|
|
2710
2716
|
"relativePath": [
|
|
2711
2717
|
"dist",
|
|
2712
2718
|
"commands",
|
|
2713
|
-
"
|
|
2719
|
+
"projects",
|
|
2714
2720
|
"delete.js"
|
|
2715
2721
|
]
|
|
2716
2722
|
},
|
|
2717
|
-
"
|
|
2723
|
+
"projects:list": {
|
|
2718
2724
|
"aliases": [],
|
|
2719
2725
|
"args": {},
|
|
2720
|
-
"description": "List the
|
|
2726
|
+
"description": "List the projects visible to you",
|
|
2721
2727
|
"examples": [
|
|
2722
|
-
"<%= config.bin %>
|
|
2723
|
-
"<%= config.bin %>
|
|
2728
|
+
"<%= config.bin %> projects list",
|
|
2729
|
+
"<%= config.bin %> projects list --page 2 --json"
|
|
2724
2730
|
],
|
|
2725
2731
|
"flags": {
|
|
2726
2732
|
"json": {
|
|
@@ -2741,7 +2747,7 @@
|
|
|
2741
2747
|
},
|
|
2742
2748
|
"hasDynamicHelp": false,
|
|
2743
2749
|
"hiddenAliases": [],
|
|
2744
|
-
"id": "
|
|
2750
|
+
"id": "projects:list",
|
|
2745
2751
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2746
2752
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2747
2753
|
"pluginType": "core",
|
|
@@ -2751,24 +2757,17 @@
|
|
|
2751
2757
|
"relativePath": [
|
|
2752
2758
|
"dist",
|
|
2753
2759
|
"commands",
|
|
2754
|
-
"
|
|
2760
|
+
"projects",
|
|
2755
2761
|
"list.js"
|
|
2756
2762
|
]
|
|
2757
2763
|
},
|
|
2758
|
-
"
|
|
2764
|
+
"projects:set-environments": {
|
|
2759
2765
|
"aliases": [],
|
|
2760
|
-
"args": {
|
|
2761
|
-
|
|
2762
|
-
"description": "Platform id (UUID) or code",
|
|
2763
|
-
"name": "platform",
|
|
2764
|
-
"required": true
|
|
2765
|
-
}
|
|
2766
|
-
},
|
|
2767
|
-
"description": "Update a platform (relabel, recolor, reorder, activate/deactivate)",
|
|
2766
|
+
"args": {},
|
|
2767
|
+
"description": "Declare the environments a project receives data from (replaces the current set)",
|
|
2768
2768
|
"examples": [
|
|
2769
|
-
"<%= config.bin %>
|
|
2770
|
-
"<%= config.bin %>
|
|
2771
|
-
"<%= config.bin %> platforms update legacy --no-active"
|
|
2769
|
+
"<%= config.bin %> projects set-environments --project legalbloom-rails --code production",
|
|
2770
|
+
"<%= config.bin %> projects set-environments -p LBRA --code production --code staging"
|
|
2772
2771
|
],
|
|
2773
2772
|
"flags": {
|
|
2774
2773
|
"json": {
|
|
@@ -2778,44 +2777,35 @@
|
|
|
2778
2777
|
"allowNo": false,
|
|
2779
2778
|
"type": "boolean"
|
|
2780
2779
|
},
|
|
2781
|
-
"
|
|
2782
|
-
"
|
|
2783
|
-
"
|
|
2784
|
-
"
|
|
2785
|
-
"
|
|
2786
|
-
"type": "option"
|
|
2787
|
-
},
|
|
2788
|
-
"label": {
|
|
2789
|
-
"description": "New label",
|
|
2790
|
-
"name": "label",
|
|
2780
|
+
"project": {
|
|
2781
|
+
"char": "p",
|
|
2782
|
+
"description": "Project id (UUID) or key",
|
|
2783
|
+
"name": "project",
|
|
2784
|
+
"required": true,
|
|
2791
2785
|
"hasDynamicHelp": false,
|
|
2792
2786
|
"multiple": false,
|
|
2793
2787
|
"type": "option"
|
|
2794
2788
|
},
|
|
2795
|
-
"
|
|
2796
|
-
"description": "
|
|
2797
|
-
"name": "
|
|
2789
|
+
"code": {
|
|
2790
|
+
"description": "Environment code, e.g. production (repeatable)",
|
|
2791
|
+
"name": "code",
|
|
2792
|
+
"default": [],
|
|
2798
2793
|
"hasDynamicHelp": false,
|
|
2799
|
-
"multiple":
|
|
2794
|
+
"multiple": true,
|
|
2800
2795
|
"type": "option"
|
|
2801
2796
|
},
|
|
2802
|
-
"
|
|
2803
|
-
"description": "
|
|
2804
|
-
"name": "
|
|
2797
|
+
"environment-id": {
|
|
2798
|
+
"description": "Environment id / UUID (repeatable)",
|
|
2799
|
+
"name": "environment-id",
|
|
2800
|
+
"default": [],
|
|
2805
2801
|
"hasDynamicHelp": false,
|
|
2806
|
-
"multiple":
|
|
2802
|
+
"multiple": true,
|
|
2807
2803
|
"type": "option"
|
|
2808
|
-
},
|
|
2809
|
-
"active": {
|
|
2810
|
-
"description": "Whether the platform is active",
|
|
2811
|
-
"name": "active",
|
|
2812
|
-
"allowNo": true,
|
|
2813
|
-
"type": "boolean"
|
|
2814
2804
|
}
|
|
2815
2805
|
},
|
|
2816
2806
|
"hasDynamicHelp": false,
|
|
2817
2807
|
"hiddenAliases": [],
|
|
2818
|
-
"id": "
|
|
2808
|
+
"id": "projects:set-environments",
|
|
2819
2809
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2820
2810
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2821
2811
|
"pluginType": "core",
|
|
@@ -2825,22 +2815,17 @@
|
|
|
2825
2815
|
"relativePath": [
|
|
2826
2816
|
"dist",
|
|
2827
2817
|
"commands",
|
|
2828
|
-
"
|
|
2829
|
-
"
|
|
2818
|
+
"projects",
|
|
2819
|
+
"set-environments.js"
|
|
2830
2820
|
]
|
|
2831
2821
|
},
|
|
2832
|
-
"
|
|
2822
|
+
"projects:set-platforms": {
|
|
2833
2823
|
"aliases": [],
|
|
2834
|
-
"args": {
|
|
2835
|
-
|
|
2836
|
-
"description": "Role name",
|
|
2837
|
-
"name": "name",
|
|
2838
|
-
"required": true
|
|
2839
|
-
}
|
|
2840
|
-
},
|
|
2841
|
-
"description": "Create an RBAC role (a named bundle of permission keys)",
|
|
2824
|
+
"args": {},
|
|
2825
|
+
"description": "Declare the platforms of a project (replaces the current set)",
|
|
2842
2826
|
"examples": [
|
|
2843
|
-
"<%= config.bin %>
|
|
2827
|
+
"<%= config.bin %> projects set-platforms --project legalbloom-rails --code web",
|
|
2828
|
+
"<%= config.bin %> projects set-platforms -p LBRA --code web --code ios"
|
|
2844
2829
|
],
|
|
2845
2830
|
"flags": {
|
|
2846
2831
|
"json": {
|
|
@@ -2850,16 +2835,27 @@
|
|
|
2850
2835
|
"allowNo": false,
|
|
2851
2836
|
"type": "boolean"
|
|
2852
2837
|
},
|
|
2853
|
-
"
|
|
2854
|
-
"
|
|
2855
|
-
"
|
|
2838
|
+
"project": {
|
|
2839
|
+
"char": "p",
|
|
2840
|
+
"description": "Project id (UUID) or key",
|
|
2841
|
+
"name": "project",
|
|
2842
|
+
"required": true,
|
|
2856
2843
|
"hasDynamicHelp": false,
|
|
2857
2844
|
"multiple": false,
|
|
2858
2845
|
"type": "option"
|
|
2859
2846
|
},
|
|
2860
|
-
"
|
|
2861
|
-
"description": "
|
|
2862
|
-
"name": "
|
|
2847
|
+
"code": {
|
|
2848
|
+
"description": "Platform code, e.g. web (repeatable)",
|
|
2849
|
+
"name": "code",
|
|
2850
|
+
"default": [],
|
|
2851
|
+
"hasDynamicHelp": false,
|
|
2852
|
+
"multiple": true,
|
|
2853
|
+
"type": "option"
|
|
2854
|
+
},
|
|
2855
|
+
"platform-id": {
|
|
2856
|
+
"description": "Platform id / UUID (repeatable)",
|
|
2857
|
+
"name": "platform-id",
|
|
2858
|
+
"default": [],
|
|
2863
2859
|
"hasDynamicHelp": false,
|
|
2864
2860
|
"multiple": true,
|
|
2865
2861
|
"type": "option"
|
|
@@ -2867,7 +2863,7 @@
|
|
|
2867
2863
|
},
|
|
2868
2864
|
"hasDynamicHelp": false,
|
|
2869
2865
|
"hiddenAliases": [],
|
|
2870
|
-
"id": "
|
|
2866
|
+
"id": "projects:set-platforms",
|
|
2871
2867
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2872
2868
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2873
2869
|
"pluginType": "core",
|
|
@@ -2877,22 +2873,23 @@
|
|
|
2877
2873
|
"relativePath": [
|
|
2878
2874
|
"dist",
|
|
2879
2875
|
"commands",
|
|
2880
|
-
"
|
|
2881
|
-
"
|
|
2876
|
+
"projects",
|
|
2877
|
+
"set-platforms.js"
|
|
2882
2878
|
]
|
|
2883
2879
|
},
|
|
2884
|
-
"
|
|
2880
|
+
"projects:show": {
|
|
2885
2881
|
"aliases": [],
|
|
2886
2882
|
"args": {
|
|
2887
|
-
"
|
|
2888
|
-
"description": "
|
|
2889
|
-
"name": "
|
|
2883
|
+
"id": {
|
|
2884
|
+
"description": "Project id (UUID) or key",
|
|
2885
|
+
"name": "id",
|
|
2890
2886
|
"required": true
|
|
2891
2887
|
}
|
|
2892
2888
|
},
|
|
2893
|
-
"description": "
|
|
2889
|
+
"description": "Show a single project by id or key",
|
|
2894
2890
|
"examples": [
|
|
2895
|
-
"<%= config.bin %>
|
|
2891
|
+
"<%= config.bin %> projects show acme-api",
|
|
2892
|
+
"<%= config.bin %> projects show <uuid> --json"
|
|
2896
2893
|
],
|
|
2897
2894
|
"flags": {
|
|
2898
2895
|
"json": {
|
|
@@ -2905,7 +2902,7 @@
|
|
|
2905
2902
|
},
|
|
2906
2903
|
"hasDynamicHelp": false,
|
|
2907
2904
|
"hiddenAliases": [],
|
|
2908
|
-
"id": "
|
|
2905
|
+
"id": "projects:show",
|
|
2909
2906
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2910
2907
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2911
2908
|
"pluginType": "core",
|
|
@@ -2915,17 +2912,17 @@
|
|
|
2915
2912
|
"relativePath": [
|
|
2916
2913
|
"dist",
|
|
2917
2914
|
"commands",
|
|
2918
|
-
"
|
|
2919
|
-
"
|
|
2915
|
+
"projects",
|
|
2916
|
+
"show.js"
|
|
2920
2917
|
]
|
|
2921
2918
|
},
|
|
2922
|
-
"
|
|
2919
|
+
"projects:update": {
|
|
2923
2920
|
"aliases": [],
|
|
2924
2921
|
"args": {},
|
|
2925
|
-
"description": "
|
|
2922
|
+
"description": "Update a project (name, key, color, description, group)",
|
|
2926
2923
|
"examples": [
|
|
2927
|
-
"<%= config.bin %>
|
|
2928
|
-
"<%= config.bin %>
|
|
2924
|
+
"<%= config.bin %> projects update --project LBRA --name \"New name\"",
|
|
2925
|
+
"<%= config.bin %> projects update -p LBRA --group Backend"
|
|
2929
2926
|
],
|
|
2930
2927
|
"flags": {
|
|
2931
2928
|
"json": {
|
|
@@ -2935,10 +2932,46 @@
|
|
|
2935
2932
|
"allowNo": false,
|
|
2936
2933
|
"type": "boolean"
|
|
2937
2934
|
},
|
|
2938
|
-
"
|
|
2939
|
-
"
|
|
2940
|
-
"
|
|
2941
|
-
"
|
|
2935
|
+
"project": {
|
|
2936
|
+
"char": "p",
|
|
2937
|
+
"description": "Project id (UUID) or key",
|
|
2938
|
+
"name": "project",
|
|
2939
|
+
"required": true,
|
|
2940
|
+
"hasDynamicHelp": false,
|
|
2941
|
+
"multiple": false,
|
|
2942
|
+
"type": "option"
|
|
2943
|
+
},
|
|
2944
|
+
"name": {
|
|
2945
|
+
"description": "New project name",
|
|
2946
|
+
"name": "name",
|
|
2947
|
+
"hasDynamicHelp": false,
|
|
2948
|
+
"multiple": false,
|
|
2949
|
+
"type": "option"
|
|
2950
|
+
},
|
|
2951
|
+
"key": {
|
|
2952
|
+
"description": "New project key (uppercase A-Z0-9)",
|
|
2953
|
+
"name": "key",
|
|
2954
|
+
"hasDynamicHelp": false,
|
|
2955
|
+
"multiple": false,
|
|
2956
|
+
"type": "option"
|
|
2957
|
+
},
|
|
2958
|
+
"color": {
|
|
2959
|
+
"description": "Color label",
|
|
2960
|
+
"name": "color",
|
|
2961
|
+
"hasDynamicHelp": false,
|
|
2962
|
+
"multiple": false,
|
|
2963
|
+
"type": "option"
|
|
2964
|
+
},
|
|
2965
|
+
"description": {
|
|
2966
|
+
"description": "Free-form description",
|
|
2967
|
+
"name": "description",
|
|
2968
|
+
"hasDynamicHelp": false,
|
|
2969
|
+
"multiple": false,
|
|
2970
|
+
"type": "option"
|
|
2971
|
+
},
|
|
2972
|
+
"group": {
|
|
2973
|
+
"description": "Group id (UUID) or name to move the project into",
|
|
2974
|
+
"name": "group",
|
|
2942
2975
|
"hasDynamicHelp": false,
|
|
2943
2976
|
"multiple": false,
|
|
2944
2977
|
"type": "option"
|
|
@@ -2946,7 +2979,7 @@
|
|
|
2946
2979
|
},
|
|
2947
2980
|
"hasDynamicHelp": false,
|
|
2948
2981
|
"hiddenAliases": [],
|
|
2949
|
-
"id": "
|
|
2982
|
+
"id": "projects:update",
|
|
2950
2983
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2951
2984
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2952
2985
|
"pluginType": "core",
|
|
@@ -2956,22 +2989,23 @@
|
|
|
2956
2989
|
"relativePath": [
|
|
2957
2990
|
"dist",
|
|
2958
2991
|
"commands",
|
|
2959
|
-
"
|
|
2960
|
-
"
|
|
2992
|
+
"projects",
|
|
2993
|
+
"update.js"
|
|
2961
2994
|
]
|
|
2962
2995
|
},
|
|
2963
|
-
"
|
|
2996
|
+
"platforms:create": {
|
|
2964
2997
|
"aliases": [],
|
|
2965
2998
|
"args": {
|
|
2966
|
-
"
|
|
2967
|
-
"description": "
|
|
2968
|
-
"name": "
|
|
2999
|
+
"code": {
|
|
3000
|
+
"description": "Platform code (e.g. \"ios\", \"android\", \"web\")",
|
|
3001
|
+
"name": "code",
|
|
2969
3002
|
"required": true
|
|
2970
3003
|
}
|
|
2971
3004
|
},
|
|
2972
|
-
"description": "
|
|
3005
|
+
"description": "Create a platform (a device/system your projects run on)",
|
|
2973
3006
|
"examples": [
|
|
2974
|
-
"<%= config.bin %>
|
|
3007
|
+
"<%= config.bin %> platforms create ios --label iOS",
|
|
3008
|
+
"<%= config.bin %> platforms create android --label Android --color emerald --position 2"
|
|
2975
3009
|
],
|
|
2976
3010
|
"flags": {
|
|
2977
3011
|
"json": {
|
|
@@ -2980,11 +3014,40 @@
|
|
|
2980
3014
|
"name": "json",
|
|
2981
3015
|
"allowNo": false,
|
|
2982
3016
|
"type": "boolean"
|
|
3017
|
+
},
|
|
3018
|
+
"label": {
|
|
3019
|
+
"description": "Human-readable label",
|
|
3020
|
+
"name": "label",
|
|
3021
|
+
"required": true,
|
|
3022
|
+
"hasDynamicHelp": false,
|
|
3023
|
+
"multiple": false,
|
|
3024
|
+
"type": "option"
|
|
3025
|
+
},
|
|
3026
|
+
"color": {
|
|
3027
|
+
"description": "Color label",
|
|
3028
|
+
"name": "color",
|
|
3029
|
+
"default": "sky",
|
|
3030
|
+
"hasDynamicHelp": false,
|
|
3031
|
+
"multiple": false,
|
|
3032
|
+
"type": "option"
|
|
3033
|
+
},
|
|
3034
|
+
"position": {
|
|
3035
|
+
"description": "Sort position",
|
|
3036
|
+
"name": "position",
|
|
3037
|
+
"hasDynamicHelp": false,
|
|
3038
|
+
"multiple": false,
|
|
3039
|
+
"type": "option"
|
|
3040
|
+
},
|
|
3041
|
+
"active": {
|
|
3042
|
+
"description": "Whether the platform is active",
|
|
3043
|
+
"name": "active",
|
|
3044
|
+
"allowNo": true,
|
|
3045
|
+
"type": "boolean"
|
|
2983
3046
|
}
|
|
2984
3047
|
},
|
|
2985
3048
|
"hasDynamicHelp": false,
|
|
2986
3049
|
"hiddenAliases": [],
|
|
2987
|
-
"id": "
|
|
3050
|
+
"id": "platforms:create",
|
|
2988
3051
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2989
3052
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2990
3053
|
"pluginType": "core",
|
|
@@ -2994,82 +3057,22 @@
|
|
|
2994
3057
|
"relativePath": [
|
|
2995
3058
|
"dist",
|
|
2996
3059
|
"commands",
|
|
2997
|
-
"
|
|
2998
|
-
"
|
|
3060
|
+
"platforms",
|
|
3061
|
+
"create.js"
|
|
2999
3062
|
]
|
|
3000
3063
|
},
|
|
3001
|
-
"
|
|
3064
|
+
"platforms:delete": {
|
|
3002
3065
|
"aliases": [],
|
|
3003
3066
|
"args": {
|
|
3004
|
-
"
|
|
3005
|
-
"description": "
|
|
3006
|
-
"name": "
|
|
3067
|
+
"platform": {
|
|
3068
|
+
"description": "Platform id (UUID) or code",
|
|
3069
|
+
"name": "platform",
|
|
3007
3070
|
"required": true
|
|
3008
3071
|
}
|
|
3009
3072
|
},
|
|
3010
|
-
"description": "
|
|
3073
|
+
"description": "Delete a platform (blocked if any project or ticket still references it)",
|
|
3011
3074
|
"examples": [
|
|
3012
|
-
"<%= config.bin %>
|
|
3013
|
-
"<%= config.bin %> roles update Client --name \"Client manager\""
|
|
3014
|
-
],
|
|
3015
|
-
"flags": {
|
|
3016
|
-
"json": {
|
|
3017
|
-
"description": "Format output as json.",
|
|
3018
|
-
"helpGroup": "GLOBAL",
|
|
3019
|
-
"name": "json",
|
|
3020
|
-
"allowNo": false,
|
|
3021
|
-
"type": "boolean"
|
|
3022
|
-
},
|
|
3023
|
-
"color": {
|
|
3024
|
-
"description": "Color label",
|
|
3025
|
-
"name": "color",
|
|
3026
|
-
"hasDynamicHelp": false,
|
|
3027
|
-
"multiple": false,
|
|
3028
|
-
"type": "option"
|
|
3029
|
-
},
|
|
3030
|
-
"name": {
|
|
3031
|
-
"description": "New name",
|
|
3032
|
-
"name": "name",
|
|
3033
|
-
"hasDynamicHelp": false,
|
|
3034
|
-
"multiple": false,
|
|
3035
|
-
"type": "option"
|
|
3036
|
-
},
|
|
3037
|
-
"permission": {
|
|
3038
|
-
"description": "Permission key (repeatable); when given, REPLACES the whole set",
|
|
3039
|
-
"name": "permission",
|
|
3040
|
-
"hasDynamicHelp": false,
|
|
3041
|
-
"multiple": true,
|
|
3042
|
-
"type": "option"
|
|
3043
|
-
}
|
|
3044
|
-
},
|
|
3045
|
-
"hasDynamicHelp": false,
|
|
3046
|
-
"hiddenAliases": [],
|
|
3047
|
-
"id": "roles:update",
|
|
3048
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3049
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3050
|
-
"pluginType": "core",
|
|
3051
|
-
"strict": true,
|
|
3052
|
-
"enableJsonFlag": true,
|
|
3053
|
-
"isESM": false,
|
|
3054
|
-
"relativePath": [
|
|
3055
|
-
"dist",
|
|
3056
|
-
"commands",
|
|
3057
|
-
"roles",
|
|
3058
|
-
"update.js"
|
|
3059
|
-
]
|
|
3060
|
-
},
|
|
3061
|
-
"servers:delete": {
|
|
3062
|
-
"aliases": [],
|
|
3063
|
-
"args": {
|
|
3064
|
-
"id": {
|
|
3065
|
-
"description": "Server id",
|
|
3066
|
-
"name": "id",
|
|
3067
|
-
"required": true
|
|
3068
|
-
}
|
|
3069
|
-
},
|
|
3070
|
-
"description": "Delete a server and all its metrics (a live agent would re-register it)",
|
|
3071
|
-
"examples": [
|
|
3072
|
-
"<%= config.bin %> servers delete <server-id> --confirm"
|
|
3075
|
+
"<%= config.bin %> platforms delete legacy --confirm"
|
|
3073
3076
|
],
|
|
3074
3077
|
"flags": {
|
|
3075
3078
|
"json": {
|
|
@@ -3088,7 +3091,7 @@
|
|
|
3088
3091
|
},
|
|
3089
3092
|
"hasDynamicHelp": false,
|
|
3090
3093
|
"hiddenAliases": [],
|
|
3091
|
-
"id": "
|
|
3094
|
+
"id": "platforms:delete",
|
|
3092
3095
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3093
3096
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3094
3097
|
"pluginType": "core",
|
|
@@ -3098,17 +3101,17 @@
|
|
|
3098
3101
|
"relativePath": [
|
|
3099
3102
|
"dist",
|
|
3100
3103
|
"commands",
|
|
3101
|
-
"
|
|
3104
|
+
"platforms",
|
|
3102
3105
|
"delete.js"
|
|
3103
3106
|
]
|
|
3104
3107
|
},
|
|
3105
|
-
"
|
|
3108
|
+
"platforms:list": {
|
|
3106
3109
|
"aliases": [],
|
|
3107
3110
|
"args": {},
|
|
3108
|
-
"description": "List the
|
|
3111
|
+
"description": "List the platforms (devices/systems) in your organization",
|
|
3109
3112
|
"examples": [
|
|
3110
|
-
"<%= config.bin %>
|
|
3111
|
-
"<%= config.bin %>
|
|
3113
|
+
"<%= config.bin %> platforms list",
|
|
3114
|
+
"<%= config.bin %> platforms list --page 2 --json"
|
|
3112
3115
|
],
|
|
3113
3116
|
"flags": {
|
|
3114
3117
|
"json": {
|
|
@@ -3125,24 +3128,11 @@
|
|
|
3125
3128
|
"hasDynamicHelp": false,
|
|
3126
3129
|
"multiple": false,
|
|
3127
3130
|
"type": "option"
|
|
3128
|
-
},
|
|
3129
|
-
"status": {
|
|
3130
|
-
"description": "Filter by status (repeatable)",
|
|
3131
|
-
"name": "status",
|
|
3132
|
-
"hasDynamicHelp": false,
|
|
3133
|
-
"multiple": true,
|
|
3134
|
-
"options": [
|
|
3135
|
-
"pending",
|
|
3136
|
-
"up",
|
|
3137
|
-
"down",
|
|
3138
|
-
"paused"
|
|
3139
|
-
],
|
|
3140
|
-
"type": "option"
|
|
3141
3131
|
}
|
|
3142
3132
|
},
|
|
3143
3133
|
"hasDynamicHelp": false,
|
|
3144
3134
|
"hiddenAliases": [],
|
|
3145
|
-
"id": "
|
|
3135
|
+
"id": "platforms:list",
|
|
3146
3136
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3147
3137
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3148
3138
|
"pluginType": "core",
|
|
@@ -3152,22 +3142,24 @@
|
|
|
3152
3142
|
"relativePath": [
|
|
3153
3143
|
"dist",
|
|
3154
3144
|
"commands",
|
|
3155
|
-
"
|
|
3145
|
+
"platforms",
|
|
3156
3146
|
"list.js"
|
|
3157
3147
|
]
|
|
3158
3148
|
},
|
|
3159
|
-
"
|
|
3149
|
+
"platforms:update": {
|
|
3160
3150
|
"aliases": [],
|
|
3161
3151
|
"args": {
|
|
3162
|
-
"
|
|
3163
|
-
"description": "
|
|
3164
|
-
"name": "
|
|
3152
|
+
"platform": {
|
|
3153
|
+
"description": "Platform id (UUID) or code",
|
|
3154
|
+
"name": "platform",
|
|
3165
3155
|
"required": true
|
|
3166
3156
|
}
|
|
3167
3157
|
},
|
|
3168
|
-
"description": "
|
|
3158
|
+
"description": "Update a platform (relabel, recolor, reorder, activate/deactivate)",
|
|
3169
3159
|
"examples": [
|
|
3170
|
-
"<%= config.bin %>
|
|
3160
|
+
"<%= config.bin %> platforms update ios --label \"iOS / iPadOS\"",
|
|
3161
|
+
"<%= config.bin %> platforms update web --color indigo --position 1",
|
|
3162
|
+
"<%= config.bin %> platforms update legacy --no-active"
|
|
3171
3163
|
],
|
|
3172
3164
|
"flags": {
|
|
3173
3165
|
"json": {
|
|
@@ -3176,11 +3168,45 @@
|
|
|
3176
3168
|
"name": "json",
|
|
3177
3169
|
"allowNo": false,
|
|
3178
3170
|
"type": "boolean"
|
|
3171
|
+
},
|
|
3172
|
+
"code": {
|
|
3173
|
+
"description": "New code",
|
|
3174
|
+
"name": "code",
|
|
3175
|
+
"hasDynamicHelp": false,
|
|
3176
|
+
"multiple": false,
|
|
3177
|
+
"type": "option"
|
|
3178
|
+
},
|
|
3179
|
+
"label": {
|
|
3180
|
+
"description": "New label",
|
|
3181
|
+
"name": "label",
|
|
3182
|
+
"hasDynamicHelp": false,
|
|
3183
|
+
"multiple": false,
|
|
3184
|
+
"type": "option"
|
|
3185
|
+
},
|
|
3186
|
+
"color": {
|
|
3187
|
+
"description": "Color label",
|
|
3188
|
+
"name": "color",
|
|
3189
|
+
"hasDynamicHelp": false,
|
|
3190
|
+
"multiple": false,
|
|
3191
|
+
"type": "option"
|
|
3192
|
+
},
|
|
3193
|
+
"position": {
|
|
3194
|
+
"description": "Sort position",
|
|
3195
|
+
"name": "position",
|
|
3196
|
+
"hasDynamicHelp": false,
|
|
3197
|
+
"multiple": false,
|
|
3198
|
+
"type": "option"
|
|
3199
|
+
},
|
|
3200
|
+
"active": {
|
|
3201
|
+
"description": "Whether the platform is active",
|
|
3202
|
+
"name": "active",
|
|
3203
|
+
"allowNo": true,
|
|
3204
|
+
"type": "boolean"
|
|
3179
3205
|
}
|
|
3180
3206
|
},
|
|
3181
3207
|
"hasDynamicHelp": false,
|
|
3182
3208
|
"hiddenAliases": [],
|
|
3183
|
-
"id": "
|
|
3209
|
+
"id": "platforms:update",
|
|
3184
3210
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3185
3211
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3186
3212
|
"pluginType": "core",
|
|
@@ -3190,22 +3216,22 @@
|
|
|
3190
3216
|
"relativePath": [
|
|
3191
3217
|
"dist",
|
|
3192
3218
|
"commands",
|
|
3193
|
-
"
|
|
3194
|
-
"
|
|
3219
|
+
"platforms",
|
|
3220
|
+
"update.js"
|
|
3195
3221
|
]
|
|
3196
3222
|
},
|
|
3197
|
-
"
|
|
3223
|
+
"roles:create": {
|
|
3198
3224
|
"aliases": [],
|
|
3199
3225
|
"args": {
|
|
3200
|
-
"
|
|
3201
|
-
"description": "
|
|
3202
|
-
"name": "
|
|
3226
|
+
"name": {
|
|
3227
|
+
"description": "Role name",
|
|
3228
|
+
"name": "name",
|
|
3203
3229
|
"required": true
|
|
3204
3230
|
}
|
|
3205
3231
|
},
|
|
3206
|
-
"description": "
|
|
3232
|
+
"description": "Create an RBAC role (a named bundle of permission keys)",
|
|
3207
3233
|
"examples": [
|
|
3208
|
-
"<%= config.bin %>
|
|
3234
|
+
"<%= config.bin %> roles create Client --permission tickets.edit --permission tickets.assign"
|
|
3209
3235
|
],
|
|
3210
3236
|
"flags": {
|
|
3211
3237
|
"json": {
|
|
@@ -3215,18 +3241,24 @@
|
|
|
3215
3241
|
"allowNo": false,
|
|
3216
3242
|
"type": "boolean"
|
|
3217
3243
|
},
|
|
3218
|
-
"
|
|
3219
|
-
"description": "
|
|
3220
|
-
"name": "
|
|
3221
|
-
"required": true,
|
|
3244
|
+
"color": {
|
|
3245
|
+
"description": "Color label",
|
|
3246
|
+
"name": "color",
|
|
3222
3247
|
"hasDynamicHelp": false,
|
|
3223
3248
|
"multiple": false,
|
|
3224
3249
|
"type": "option"
|
|
3250
|
+
},
|
|
3251
|
+
"permission": {
|
|
3252
|
+
"description": "Permission key from the catalog (repeatable)",
|
|
3253
|
+
"name": "permission",
|
|
3254
|
+
"hasDynamicHelp": false,
|
|
3255
|
+
"multiple": true,
|
|
3256
|
+
"type": "option"
|
|
3225
3257
|
}
|
|
3226
3258
|
},
|
|
3227
3259
|
"hasDynamicHelp": false,
|
|
3228
3260
|
"hiddenAliases": [],
|
|
3229
|
-
"id": "
|
|
3261
|
+
"id": "roles:create",
|
|
3230
3262
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3231
3263
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3232
3264
|
"pluginType": "core",
|
|
@@ -3236,22 +3268,22 @@
|
|
|
3236
3268
|
"relativePath": [
|
|
3237
3269
|
"dist",
|
|
3238
3270
|
"commands",
|
|
3239
|
-
"
|
|
3240
|
-
"
|
|
3271
|
+
"roles",
|
|
3272
|
+
"create.js"
|
|
3241
3273
|
]
|
|
3242
3274
|
},
|
|
3243
|
-
"
|
|
3275
|
+
"roles:delete": {
|
|
3244
3276
|
"aliases": [],
|
|
3245
3277
|
"args": {
|
|
3246
|
-
"
|
|
3247
|
-
"description": "
|
|
3248
|
-
"name": "
|
|
3278
|
+
"role": {
|
|
3279
|
+
"description": "Role id (UUID) or name",
|
|
3280
|
+
"name": "role",
|
|
3249
3281
|
"required": true
|
|
3250
3282
|
}
|
|
3251
3283
|
},
|
|
3252
|
-
"description": "
|
|
3284
|
+
"description": "Delete a role (its assignments to teams and accounts are removed)",
|
|
3253
3285
|
"examples": [
|
|
3254
|
-
"<%= config.bin %>
|
|
3286
|
+
"<%= config.bin %> roles delete Client"
|
|
3255
3287
|
],
|
|
3256
3288
|
"flags": {
|
|
3257
3289
|
"json": {
|
|
@@ -3264,7 +3296,7 @@
|
|
|
3264
3296
|
},
|
|
3265
3297
|
"hasDynamicHelp": false,
|
|
3266
3298
|
"hiddenAliases": [],
|
|
3267
|
-
"id": "
|
|
3299
|
+
"id": "roles:delete",
|
|
3268
3300
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3269
3301
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3270
3302
|
"pluginType": "core",
|
|
@@ -3274,22 +3306,17 @@
|
|
|
3274
3306
|
"relativePath": [
|
|
3275
3307
|
"dist",
|
|
3276
3308
|
"commands",
|
|
3277
|
-
"
|
|
3278
|
-
"
|
|
3309
|
+
"roles",
|
|
3310
|
+
"delete.js"
|
|
3279
3311
|
]
|
|
3280
3312
|
},
|
|
3281
|
-
"
|
|
3313
|
+
"roles:list": {
|
|
3282
3314
|
"aliases": [],
|
|
3283
|
-
"args": {
|
|
3284
|
-
|
|
3285
|
-
"description": "Server id",
|
|
3286
|
-
"name": "id",
|
|
3287
|
-
"required": true
|
|
3288
|
-
}
|
|
3289
|
-
},
|
|
3290
|
-
"description": "Revoke a server: its agent gets 403 and stops (host stays, reversible)",
|
|
3315
|
+
"args": {},
|
|
3316
|
+
"description": "List the RBAC roles in your organization",
|
|
3291
3317
|
"examples": [
|
|
3292
|
-
"<%= config.bin %>
|
|
3318
|
+
"<%= config.bin %> roles list",
|
|
3319
|
+
"<%= config.bin %> roles list --json"
|
|
3293
3320
|
],
|
|
3294
3321
|
"flags": {
|
|
3295
3322
|
"json": {
|
|
@@ -3299,16 +3326,18 @@
|
|
|
3299
3326
|
"allowNo": false,
|
|
3300
3327
|
"type": "boolean"
|
|
3301
3328
|
},
|
|
3302
|
-
"
|
|
3303
|
-
"description": "
|
|
3304
|
-
"name": "
|
|
3305
|
-
"
|
|
3306
|
-
"
|
|
3329
|
+
"page": {
|
|
3330
|
+
"description": "Page number",
|
|
3331
|
+
"name": "page",
|
|
3332
|
+
"default": 1,
|
|
3333
|
+
"hasDynamicHelp": false,
|
|
3334
|
+
"multiple": false,
|
|
3335
|
+
"type": "option"
|
|
3307
3336
|
}
|
|
3308
3337
|
},
|
|
3309
3338
|
"hasDynamicHelp": false,
|
|
3310
3339
|
"hiddenAliases": [],
|
|
3311
|
-
"id": "
|
|
3340
|
+
"id": "roles:list",
|
|
3312
3341
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3313
3342
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3314
3343
|
"pluginType": "core",
|
|
@@ -3318,22 +3347,22 @@
|
|
|
3318
3347
|
"relativePath": [
|
|
3319
3348
|
"dist",
|
|
3320
3349
|
"commands",
|
|
3321
|
-
"
|
|
3322
|
-
"
|
|
3350
|
+
"roles",
|
|
3351
|
+
"list.js"
|
|
3323
3352
|
]
|
|
3324
3353
|
},
|
|
3325
|
-
"
|
|
3354
|
+
"roles:show": {
|
|
3326
3355
|
"aliases": [],
|
|
3327
3356
|
"args": {
|
|
3328
|
-
"
|
|
3329
|
-
"description": "
|
|
3330
|
-
"name": "
|
|
3357
|
+
"role": {
|
|
3358
|
+
"description": "Role id (UUID) or name",
|
|
3359
|
+
"name": "role",
|
|
3331
3360
|
"required": true
|
|
3332
3361
|
}
|
|
3333
3362
|
},
|
|
3334
|
-
"description": "Show a
|
|
3363
|
+
"description": "Show a role by id or name (with its permission keys)",
|
|
3335
3364
|
"examples": [
|
|
3336
|
-
"<%= config.bin %>
|
|
3365
|
+
"<%= config.bin %> roles show Client"
|
|
3337
3366
|
],
|
|
3338
3367
|
"flags": {
|
|
3339
3368
|
"json": {
|
|
@@ -3346,7 +3375,7 @@
|
|
|
3346
3375
|
},
|
|
3347
3376
|
"hasDynamicHelp": false,
|
|
3348
3377
|
"hiddenAliases": [],
|
|
3349
|
-
"id": "
|
|
3378
|
+
"id": "roles:show",
|
|
3350
3379
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3351
3380
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3352
3381
|
"pluginType": "core",
|
|
@@ -3356,62 +3385,23 @@
|
|
|
3356
3385
|
"relativePath": [
|
|
3357
3386
|
"dist",
|
|
3358
3387
|
"commands",
|
|
3359
|
-
"
|
|
3388
|
+
"roles",
|
|
3360
3389
|
"show.js"
|
|
3361
3390
|
]
|
|
3362
3391
|
},
|
|
3363
|
-
"
|
|
3392
|
+
"roles:update": {
|
|
3364
3393
|
"aliases": [],
|
|
3365
3394
|
"args": {
|
|
3366
|
-
"
|
|
3367
|
-
"description": "
|
|
3368
|
-
"name": "
|
|
3395
|
+
"role": {
|
|
3396
|
+
"description": "Role id (UUID) or name",
|
|
3397
|
+
"name": "role",
|
|
3369
3398
|
"required": true
|
|
3370
3399
|
}
|
|
3371
3400
|
},
|
|
3372
|
-
"description": "
|
|
3401
|
+
"description": "Update a role (rename, recolor, or replace its permission keys)",
|
|
3373
3402
|
"examples": [
|
|
3374
|
-
"<%= config.bin %>
|
|
3375
|
-
|
|
3376
|
-
"flags": {
|
|
3377
|
-
"json": {
|
|
3378
|
-
"description": "Format output as json.",
|
|
3379
|
-
"helpGroup": "GLOBAL",
|
|
3380
|
-
"name": "json",
|
|
3381
|
-
"allowNo": false,
|
|
3382
|
-
"type": "boolean"
|
|
3383
|
-
}
|
|
3384
|
-
},
|
|
3385
|
-
"hasDynamicHelp": false,
|
|
3386
|
-
"hiddenAliases": [],
|
|
3387
|
-
"id": "servers:unrevoke",
|
|
3388
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3389
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3390
|
-
"pluginType": "core",
|
|
3391
|
-
"strict": true,
|
|
3392
|
-
"enableJsonFlag": true,
|
|
3393
|
-
"isESM": false,
|
|
3394
|
-
"relativePath": [
|
|
3395
|
-
"dist",
|
|
3396
|
-
"commands",
|
|
3397
|
-
"servers",
|
|
3398
|
-
"unrevoke.js"
|
|
3399
|
-
]
|
|
3400
|
-
},
|
|
3401
|
-
"projects:create": {
|
|
3402
|
-
"aliases": [],
|
|
3403
|
-
"args": {
|
|
3404
|
-
"name": {
|
|
3405
|
-
"description": "Project name",
|
|
3406
|
-
"name": "name",
|
|
3407
|
-
"required": true
|
|
3408
|
-
}
|
|
3409
|
-
},
|
|
3410
|
-
"description": "Create a project (optionally inside a group)",
|
|
3411
|
-
"examples": [
|
|
3412
|
-
"<%= config.bin %> projects create driverone-rails --key DRRA",
|
|
3413
|
-
"<%= config.bin %> projects create driverone-rails --group DriverOne --key DRRA",
|
|
3414
|
-
"<%= config.bin %> projects create driverone-flutter -g <group-uuid> -k DRFL"
|
|
3403
|
+
"<%= config.bin %> roles update Client --permission tickets.edit --permission tickets.assign",
|
|
3404
|
+
"<%= config.bin %> roles update Client --name \"Client manager\""
|
|
3415
3405
|
],
|
|
3416
3406
|
"flags": {
|
|
3417
3407
|
"json": {
|
|
@@ -3428,34 +3418,24 @@
|
|
|
3428
3418
|
"multiple": false,
|
|
3429
3419
|
"type": "option"
|
|
3430
3420
|
},
|
|
3431
|
-
"
|
|
3432
|
-
"description": "
|
|
3433
|
-
"name": "
|
|
3434
|
-
"hasDynamicHelp": false,
|
|
3435
|
-
"multiple": false,
|
|
3436
|
-
"type": "option"
|
|
3437
|
-
},
|
|
3438
|
-
"group": {
|
|
3439
|
-
"char": "g",
|
|
3440
|
-
"description": "Group id (UUID) or name to place the project in",
|
|
3441
|
-
"name": "group",
|
|
3421
|
+
"name": {
|
|
3422
|
+
"description": "New name",
|
|
3423
|
+
"name": "name",
|
|
3442
3424
|
"hasDynamicHelp": false,
|
|
3443
3425
|
"multiple": false,
|
|
3444
3426
|
"type": "option"
|
|
3445
3427
|
},
|
|
3446
|
-
"
|
|
3447
|
-
"
|
|
3448
|
-
"
|
|
3449
|
-
"name": "key",
|
|
3450
|
-
"required": true,
|
|
3428
|
+
"permission": {
|
|
3429
|
+
"description": "Permission key (repeatable); when given, REPLACES the whole set",
|
|
3430
|
+
"name": "permission",
|
|
3451
3431
|
"hasDynamicHelp": false,
|
|
3452
|
-
"multiple":
|
|
3432
|
+
"multiple": true,
|
|
3453
3433
|
"type": "option"
|
|
3454
3434
|
}
|
|
3455
3435
|
},
|
|
3456
3436
|
"hasDynamicHelp": false,
|
|
3457
3437
|
"hiddenAliases": [],
|
|
3458
|
-
"id": "
|
|
3438
|
+
"id": "roles:update",
|
|
3459
3439
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3460
3440
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3461
3441
|
"pluginType": "core",
|
|
@@ -3465,16 +3445,22 @@
|
|
|
3465
3445
|
"relativePath": [
|
|
3466
3446
|
"dist",
|
|
3467
3447
|
"commands",
|
|
3468
|
-
"
|
|
3469
|
-
"
|
|
3448
|
+
"roles",
|
|
3449
|
+
"update.js"
|
|
3470
3450
|
]
|
|
3471
3451
|
},
|
|
3472
|
-
"
|
|
3452
|
+
"servers:delete": {
|
|
3473
3453
|
"aliases": [],
|
|
3474
|
-
"args": {
|
|
3475
|
-
|
|
3454
|
+
"args": {
|
|
3455
|
+
"id": {
|
|
3456
|
+
"description": "Server id",
|
|
3457
|
+
"name": "id",
|
|
3458
|
+
"required": true
|
|
3459
|
+
}
|
|
3460
|
+
},
|
|
3461
|
+
"description": "Delete a server and all its metrics (a live agent would re-register it)",
|
|
3476
3462
|
"examples": [
|
|
3477
|
-
"<%= config.bin %>
|
|
3463
|
+
"<%= config.bin %> servers delete <server-id> --confirm"
|
|
3478
3464
|
],
|
|
3479
3465
|
"flags": {
|
|
3480
3466
|
"json": {
|
|
@@ -3484,17 +3470,8 @@
|
|
|
3484
3470
|
"allowNo": false,
|
|
3485
3471
|
"type": "boolean"
|
|
3486
3472
|
},
|
|
3487
|
-
"project": {
|
|
3488
|
-
"char": "p",
|
|
3489
|
-
"description": "Project id (UUID) or key",
|
|
3490
|
-
"name": "project",
|
|
3491
|
-
"required": true,
|
|
3492
|
-
"hasDynamicHelp": false,
|
|
3493
|
-
"multiple": false,
|
|
3494
|
-
"type": "option"
|
|
3495
|
-
},
|
|
3496
3473
|
"confirm": {
|
|
3497
|
-
"description": "Required: confirm the
|
|
3474
|
+
"description": "Required: confirm the deletion",
|
|
3498
3475
|
"name": "confirm",
|
|
3499
3476
|
"allowNo": false,
|
|
3500
3477
|
"type": "boolean"
|
|
@@ -3502,7 +3479,7 @@
|
|
|
3502
3479
|
},
|
|
3503
3480
|
"hasDynamicHelp": false,
|
|
3504
3481
|
"hiddenAliases": [],
|
|
3505
|
-
"id": "
|
|
3482
|
+
"id": "servers:delete",
|
|
3506
3483
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3507
3484
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3508
3485
|
"pluginType": "core",
|
|
@@ -3512,17 +3489,17 @@
|
|
|
3512
3489
|
"relativePath": [
|
|
3513
3490
|
"dist",
|
|
3514
3491
|
"commands",
|
|
3515
|
-
"
|
|
3492
|
+
"servers",
|
|
3516
3493
|
"delete.js"
|
|
3517
3494
|
]
|
|
3518
3495
|
},
|
|
3519
|
-
"
|
|
3496
|
+
"servers:list": {
|
|
3520
3497
|
"aliases": [],
|
|
3521
3498
|
"args": {},
|
|
3522
|
-
"description": "List the
|
|
3499
|
+
"description": "List the monitored servers in your organization (fleet snapshot)",
|
|
3523
3500
|
"examples": [
|
|
3524
|
-
"<%= config.bin %>
|
|
3525
|
-
"<%= config.bin %>
|
|
3501
|
+
"<%= config.bin %> servers list",
|
|
3502
|
+
"<%= config.bin %> servers list --status down --json"
|
|
3526
3503
|
],
|
|
3527
3504
|
"flags": {
|
|
3528
3505
|
"json": {
|
|
@@ -3539,11 +3516,24 @@
|
|
|
3539
3516
|
"hasDynamicHelp": false,
|
|
3540
3517
|
"multiple": false,
|
|
3541
3518
|
"type": "option"
|
|
3519
|
+
},
|
|
3520
|
+
"status": {
|
|
3521
|
+
"description": "Filter by status (repeatable)",
|
|
3522
|
+
"name": "status",
|
|
3523
|
+
"hasDynamicHelp": false,
|
|
3524
|
+
"multiple": true,
|
|
3525
|
+
"options": [
|
|
3526
|
+
"pending",
|
|
3527
|
+
"up",
|
|
3528
|
+
"down",
|
|
3529
|
+
"paused"
|
|
3530
|
+
],
|
|
3531
|
+
"type": "option"
|
|
3542
3532
|
}
|
|
3543
3533
|
},
|
|
3544
3534
|
"hasDynamicHelp": false,
|
|
3545
3535
|
"hiddenAliases": [],
|
|
3546
|
-
"id": "
|
|
3536
|
+
"id": "servers:list",
|
|
3547
3537
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3548
3538
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3549
3539
|
"pluginType": "core",
|
|
@@ -3553,17 +3543,22 @@
|
|
|
3553
3543
|
"relativePath": [
|
|
3554
3544
|
"dist",
|
|
3555
3545
|
"commands",
|
|
3556
|
-
"
|
|
3546
|
+
"servers",
|
|
3557
3547
|
"list.js"
|
|
3558
3548
|
]
|
|
3559
3549
|
},
|
|
3560
|
-
"
|
|
3550
|
+
"servers:pause": {
|
|
3561
3551
|
"aliases": [],
|
|
3562
|
-
"args": {
|
|
3563
|
-
|
|
3552
|
+
"args": {
|
|
3553
|
+
"id": {
|
|
3554
|
+
"description": "Server id",
|
|
3555
|
+
"name": "id",
|
|
3556
|
+
"required": true
|
|
3557
|
+
}
|
|
3558
|
+
},
|
|
3559
|
+
"description": "Pause a server (no staleness checks or alerts until resumed)",
|
|
3564
3560
|
"examples": [
|
|
3565
|
-
"<%= config.bin %>
|
|
3566
|
-
"<%= config.bin %> projects set-environments -p LBRA --code production --code staging"
|
|
3561
|
+
"<%= config.bin %> servers pause <server-id>"
|
|
3567
3562
|
],
|
|
3568
3563
|
"flags": {
|
|
3569
3564
|
"json": {
|
|
@@ -3572,36 +3567,11 @@
|
|
|
3572
3567
|
"name": "json",
|
|
3573
3568
|
"allowNo": false,
|
|
3574
3569
|
"type": "boolean"
|
|
3575
|
-
},
|
|
3576
|
-
"project": {
|
|
3577
|
-
"char": "p",
|
|
3578
|
-
"description": "Project id (UUID) or key",
|
|
3579
|
-
"name": "project",
|
|
3580
|
-
"required": true,
|
|
3581
|
-
"hasDynamicHelp": false,
|
|
3582
|
-
"multiple": false,
|
|
3583
|
-
"type": "option"
|
|
3584
|
-
},
|
|
3585
|
-
"code": {
|
|
3586
|
-
"description": "Environment code, e.g. production (repeatable)",
|
|
3587
|
-
"name": "code",
|
|
3588
|
-
"default": [],
|
|
3589
|
-
"hasDynamicHelp": false,
|
|
3590
|
-
"multiple": true,
|
|
3591
|
-
"type": "option"
|
|
3592
|
-
},
|
|
3593
|
-
"environment-id": {
|
|
3594
|
-
"description": "Environment id / UUID (repeatable)",
|
|
3595
|
-
"name": "environment-id",
|
|
3596
|
-
"default": [],
|
|
3597
|
-
"hasDynamicHelp": false,
|
|
3598
|
-
"multiple": true,
|
|
3599
|
-
"type": "option"
|
|
3600
3570
|
}
|
|
3601
3571
|
},
|
|
3602
3572
|
"hasDynamicHelp": false,
|
|
3603
3573
|
"hiddenAliases": [],
|
|
3604
|
-
"id": "
|
|
3574
|
+
"id": "servers:pause",
|
|
3605
3575
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3606
3576
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3607
3577
|
"pluginType": "core",
|
|
@@ -3611,17 +3581,22 @@
|
|
|
3611
3581
|
"relativePath": [
|
|
3612
3582
|
"dist",
|
|
3613
3583
|
"commands",
|
|
3614
|
-
"
|
|
3615
|
-
"
|
|
3584
|
+
"servers",
|
|
3585
|
+
"pause.js"
|
|
3616
3586
|
]
|
|
3617
3587
|
},
|
|
3618
|
-
"
|
|
3588
|
+
"servers:rename": {
|
|
3619
3589
|
"aliases": [],
|
|
3620
|
-
"args": {
|
|
3621
|
-
|
|
3590
|
+
"args": {
|
|
3591
|
+
"id": {
|
|
3592
|
+
"description": "Server id",
|
|
3593
|
+
"name": "id",
|
|
3594
|
+
"required": true
|
|
3595
|
+
}
|
|
3596
|
+
},
|
|
3597
|
+
"description": "Rename a monitored server (display name only)",
|
|
3622
3598
|
"examples": [
|
|
3623
|
-
"<%= config.bin %>
|
|
3624
|
-
"<%= config.bin %> projects set-platforms -p LBRA --code web --code ios"
|
|
3599
|
+
"<%= config.bin %> servers rename <server-id> --name apps-prod"
|
|
3625
3600
|
],
|
|
3626
3601
|
"flags": {
|
|
3627
3602
|
"json": {
|
|
@@ -3631,35 +3606,18 @@
|
|
|
3631
3606
|
"allowNo": false,
|
|
3632
3607
|
"type": "boolean"
|
|
3633
3608
|
},
|
|
3634
|
-
"
|
|
3635
|
-
"
|
|
3636
|
-
"
|
|
3637
|
-
"name": "project",
|
|
3609
|
+
"name": {
|
|
3610
|
+
"description": "New display name",
|
|
3611
|
+
"name": "name",
|
|
3638
3612
|
"required": true,
|
|
3639
3613
|
"hasDynamicHelp": false,
|
|
3640
3614
|
"multiple": false,
|
|
3641
3615
|
"type": "option"
|
|
3642
|
-
},
|
|
3643
|
-
"code": {
|
|
3644
|
-
"description": "Platform code, e.g. web (repeatable)",
|
|
3645
|
-
"name": "code",
|
|
3646
|
-
"default": [],
|
|
3647
|
-
"hasDynamicHelp": false,
|
|
3648
|
-
"multiple": true,
|
|
3649
|
-
"type": "option"
|
|
3650
|
-
},
|
|
3651
|
-
"platform-id": {
|
|
3652
|
-
"description": "Platform id / UUID (repeatable)",
|
|
3653
|
-
"name": "platform-id",
|
|
3654
|
-
"default": [],
|
|
3655
|
-
"hasDynamicHelp": false,
|
|
3656
|
-
"multiple": true,
|
|
3657
|
-
"type": "option"
|
|
3658
3616
|
}
|
|
3659
3617
|
},
|
|
3660
3618
|
"hasDynamicHelp": false,
|
|
3661
3619
|
"hiddenAliases": [],
|
|
3662
|
-
"id": "
|
|
3620
|
+
"id": "servers:rename",
|
|
3663
3621
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3664
3622
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3665
3623
|
"pluginType": "core",
|
|
@@ -3669,23 +3627,22 @@
|
|
|
3669
3627
|
"relativePath": [
|
|
3670
3628
|
"dist",
|
|
3671
3629
|
"commands",
|
|
3672
|
-
"
|
|
3673
|
-
"
|
|
3630
|
+
"servers",
|
|
3631
|
+
"rename.js"
|
|
3674
3632
|
]
|
|
3675
3633
|
},
|
|
3676
|
-
"
|
|
3634
|
+
"servers:resume": {
|
|
3677
3635
|
"aliases": [],
|
|
3678
3636
|
"args": {
|
|
3679
3637
|
"id": {
|
|
3680
|
-
"description": "
|
|
3638
|
+
"description": "Server id",
|
|
3681
3639
|
"name": "id",
|
|
3682
3640
|
"required": true
|
|
3683
3641
|
}
|
|
3684
3642
|
},
|
|
3685
|
-
"description": "
|
|
3643
|
+
"description": "Resume a paused server (back up at the next agent push)",
|
|
3686
3644
|
"examples": [
|
|
3687
|
-
"<%= config.bin %>
|
|
3688
|
-
"<%= config.bin %> projects show <uuid> --json"
|
|
3645
|
+
"<%= config.bin %> servers resume <server-id>"
|
|
3689
3646
|
],
|
|
3690
3647
|
"flags": {
|
|
3691
3648
|
"json": {
|
|
@@ -3698,7 +3655,7 @@
|
|
|
3698
3655
|
},
|
|
3699
3656
|
"hasDynamicHelp": false,
|
|
3700
3657
|
"hiddenAliases": [],
|
|
3701
|
-
"id": "
|
|
3658
|
+
"id": "servers:resume",
|
|
3702
3659
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3703
3660
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3704
3661
|
"pluginType": "core",
|
|
@@ -3708,17 +3665,22 @@
|
|
|
3708
3665
|
"relativePath": [
|
|
3709
3666
|
"dist",
|
|
3710
3667
|
"commands",
|
|
3711
|
-
"
|
|
3712
|
-
"
|
|
3668
|
+
"servers",
|
|
3669
|
+
"resume.js"
|
|
3713
3670
|
]
|
|
3714
3671
|
},
|
|
3715
|
-
"
|
|
3672
|
+
"servers:revoke": {
|
|
3716
3673
|
"aliases": [],
|
|
3717
|
-
"args": {
|
|
3718
|
-
|
|
3674
|
+
"args": {
|
|
3675
|
+
"id": {
|
|
3676
|
+
"description": "Server id",
|
|
3677
|
+
"name": "id",
|
|
3678
|
+
"required": true
|
|
3679
|
+
}
|
|
3680
|
+
},
|
|
3681
|
+
"description": "Revoke a server: its agent gets 403 and stops (host stays, reversible)",
|
|
3719
3682
|
"examples": [
|
|
3720
|
-
"<%= config.bin %>
|
|
3721
|
-
"<%= config.bin %> projects update -p LBRA --group Backend"
|
|
3683
|
+
"<%= config.bin %> servers revoke <server-id> --confirm"
|
|
3722
3684
|
],
|
|
3723
3685
|
"flags": {
|
|
3724
3686
|
"json": {
|
|
@@ -3728,54 +3690,92 @@
|
|
|
3728
3690
|
"allowNo": false,
|
|
3729
3691
|
"type": "boolean"
|
|
3730
3692
|
},
|
|
3731
|
-
"
|
|
3732
|
-
"
|
|
3733
|
-
"
|
|
3734
|
-
"
|
|
3735
|
-
"
|
|
3736
|
-
|
|
3737
|
-
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
"
|
|
3759
|
-
"
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
"
|
|
3769
|
-
"description": "
|
|
3770
|
-
"
|
|
3771
|
-
"
|
|
3772
|
-
"
|
|
3773
|
-
"type": "
|
|
3693
|
+
"confirm": {
|
|
3694
|
+
"description": "Required: confirm the revocation",
|
|
3695
|
+
"name": "confirm",
|
|
3696
|
+
"allowNo": false,
|
|
3697
|
+
"type": "boolean"
|
|
3698
|
+
}
|
|
3699
|
+
},
|
|
3700
|
+
"hasDynamicHelp": false,
|
|
3701
|
+
"hiddenAliases": [],
|
|
3702
|
+
"id": "servers:revoke",
|
|
3703
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3704
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3705
|
+
"pluginType": "core",
|
|
3706
|
+
"strict": true,
|
|
3707
|
+
"enableJsonFlag": true,
|
|
3708
|
+
"isESM": false,
|
|
3709
|
+
"relativePath": [
|
|
3710
|
+
"dist",
|
|
3711
|
+
"commands",
|
|
3712
|
+
"servers",
|
|
3713
|
+
"revoke.js"
|
|
3714
|
+
]
|
|
3715
|
+
},
|
|
3716
|
+
"servers:show": {
|
|
3717
|
+
"aliases": [],
|
|
3718
|
+
"args": {
|
|
3719
|
+
"id": {
|
|
3720
|
+
"description": "Server id",
|
|
3721
|
+
"name": "id",
|
|
3722
|
+
"required": true
|
|
3723
|
+
}
|
|
3724
|
+
},
|
|
3725
|
+
"description": "Show a monitored server (latest snapshot)",
|
|
3726
|
+
"examples": [
|
|
3727
|
+
"<%= config.bin %> servers show <server-id>"
|
|
3728
|
+
],
|
|
3729
|
+
"flags": {
|
|
3730
|
+
"json": {
|
|
3731
|
+
"description": "Format output as json.",
|
|
3732
|
+
"helpGroup": "GLOBAL",
|
|
3733
|
+
"name": "json",
|
|
3734
|
+
"allowNo": false,
|
|
3735
|
+
"type": "boolean"
|
|
3736
|
+
}
|
|
3737
|
+
},
|
|
3738
|
+
"hasDynamicHelp": false,
|
|
3739
|
+
"hiddenAliases": [],
|
|
3740
|
+
"id": "servers:show",
|
|
3741
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3742
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3743
|
+
"pluginType": "core",
|
|
3744
|
+
"strict": true,
|
|
3745
|
+
"enableJsonFlag": true,
|
|
3746
|
+
"isESM": false,
|
|
3747
|
+
"relativePath": [
|
|
3748
|
+
"dist",
|
|
3749
|
+
"commands",
|
|
3750
|
+
"servers",
|
|
3751
|
+
"show.js"
|
|
3752
|
+
]
|
|
3753
|
+
},
|
|
3754
|
+
"servers:unrevoke": {
|
|
3755
|
+
"aliases": [],
|
|
3756
|
+
"args": {
|
|
3757
|
+
"id": {
|
|
3758
|
+
"description": "Server id",
|
|
3759
|
+
"name": "id",
|
|
3760
|
+
"required": true
|
|
3761
|
+
}
|
|
3762
|
+
},
|
|
3763
|
+
"description": "Restore a revoked server (its agent can push again)",
|
|
3764
|
+
"examples": [
|
|
3765
|
+
"<%= config.bin %> servers unrevoke <server-id>"
|
|
3766
|
+
],
|
|
3767
|
+
"flags": {
|
|
3768
|
+
"json": {
|
|
3769
|
+
"description": "Format output as json.",
|
|
3770
|
+
"helpGroup": "GLOBAL",
|
|
3771
|
+
"name": "json",
|
|
3772
|
+
"allowNo": false,
|
|
3773
|
+
"type": "boolean"
|
|
3774
3774
|
}
|
|
3775
3775
|
},
|
|
3776
3776
|
"hasDynamicHelp": false,
|
|
3777
3777
|
"hiddenAliases": [],
|
|
3778
|
-
"id": "
|
|
3778
|
+
"id": "servers:unrevoke",
|
|
3779
3779
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3780
3780
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3781
3781
|
"pluginType": "core",
|
|
@@ -3785,8 +3785,8 @@
|
|
|
3785
3785
|
"relativePath": [
|
|
3786
3786
|
"dist",
|
|
3787
3787
|
"commands",
|
|
3788
|
-
"
|
|
3789
|
-
"
|
|
3788
|
+
"servers",
|
|
3789
|
+
"unrevoke.js"
|
|
3790
3790
|
]
|
|
3791
3791
|
},
|
|
3792
3792
|
"teams:add-member": {
|
|
@@ -4123,17 +4123,257 @@
|
|
|
4123
4123
|
"multiple": true,
|
|
4124
4124
|
"type": "option"
|
|
4125
4125
|
},
|
|
4126
|
-
"role": {
|
|
4127
|
-
"description": "Role id or name (repeatable; replaces the roles)",
|
|
4128
|
-
"name": "role",
|
|
4126
|
+
"role": {
|
|
4127
|
+
"description": "Role id or name (repeatable; replaces the roles)",
|
|
4128
|
+
"name": "role",
|
|
4129
|
+
"hasDynamicHelp": false,
|
|
4130
|
+
"multiple": true,
|
|
4131
|
+
"type": "option"
|
|
4132
|
+
}
|
|
4133
|
+
},
|
|
4134
|
+
"hasDynamicHelp": false,
|
|
4135
|
+
"hiddenAliases": [],
|
|
4136
|
+
"id": "teams:update",
|
|
4137
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4138
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4139
|
+
"pluginType": "core",
|
|
4140
|
+
"strict": true,
|
|
4141
|
+
"enableJsonFlag": true,
|
|
4142
|
+
"isESM": false,
|
|
4143
|
+
"relativePath": [
|
|
4144
|
+
"dist",
|
|
4145
|
+
"commands",
|
|
4146
|
+
"teams",
|
|
4147
|
+
"update.js"
|
|
4148
|
+
]
|
|
4149
|
+
},
|
|
4150
|
+
"tokens:create": {
|
|
4151
|
+
"aliases": [],
|
|
4152
|
+
"args": {},
|
|
4153
|
+
"description": "Create an ingest token (the secret is shown only once)",
|
|
4154
|
+
"examples": [
|
|
4155
|
+
"<%= config.bin %> tokens create --project acme-api --name \"CI prod\" --environment-id <env-id>"
|
|
4156
|
+
],
|
|
4157
|
+
"flags": {
|
|
4158
|
+
"json": {
|
|
4159
|
+
"description": "Format output as json.",
|
|
4160
|
+
"helpGroup": "GLOBAL",
|
|
4161
|
+
"name": "json",
|
|
4162
|
+
"allowNo": false,
|
|
4163
|
+
"type": "boolean"
|
|
4164
|
+
},
|
|
4165
|
+
"project": {
|
|
4166
|
+
"char": "p",
|
|
4167
|
+
"description": "Project id (UUID) or key",
|
|
4168
|
+
"name": "project",
|
|
4169
|
+
"required": true,
|
|
4170
|
+
"hasDynamicHelp": false,
|
|
4171
|
+
"multiple": false,
|
|
4172
|
+
"type": "option"
|
|
4173
|
+
},
|
|
4174
|
+
"name": {
|
|
4175
|
+
"description": "Human-readable token name",
|
|
4176
|
+
"name": "name",
|
|
4177
|
+
"required": true,
|
|
4178
|
+
"hasDynamicHelp": false,
|
|
4179
|
+
"multiple": false,
|
|
4180
|
+
"type": "option"
|
|
4181
|
+
},
|
|
4182
|
+
"environment-id": {
|
|
4183
|
+
"description": "Environment id the token is scoped to",
|
|
4184
|
+
"name": "environment-id",
|
|
4185
|
+
"required": true,
|
|
4186
|
+
"hasDynamicHelp": false,
|
|
4187
|
+
"multiple": false,
|
|
4188
|
+
"type": "option"
|
|
4189
|
+
}
|
|
4190
|
+
},
|
|
4191
|
+
"hasDynamicHelp": false,
|
|
4192
|
+
"hiddenAliases": [],
|
|
4193
|
+
"id": "tokens:create",
|
|
4194
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4195
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4196
|
+
"pluginType": "core",
|
|
4197
|
+
"strict": true,
|
|
4198
|
+
"enableJsonFlag": true,
|
|
4199
|
+
"isESM": false,
|
|
4200
|
+
"relativePath": [
|
|
4201
|
+
"dist",
|
|
4202
|
+
"commands",
|
|
4203
|
+
"tokens",
|
|
4204
|
+
"create.js"
|
|
4205
|
+
]
|
|
4206
|
+
},
|
|
4207
|
+
"tokens:list": {
|
|
4208
|
+
"aliases": [],
|
|
4209
|
+
"args": {},
|
|
4210
|
+
"description": "List ingest tokens for a project",
|
|
4211
|
+
"examples": [
|
|
4212
|
+
"<%= config.bin %> tokens list --project acme-api",
|
|
4213
|
+
"<%= config.bin %> tokens list -p acme-api --json"
|
|
4214
|
+
],
|
|
4215
|
+
"flags": {
|
|
4216
|
+
"json": {
|
|
4217
|
+
"description": "Format output as json.",
|
|
4218
|
+
"helpGroup": "GLOBAL",
|
|
4219
|
+
"name": "json",
|
|
4220
|
+
"allowNo": false,
|
|
4221
|
+
"type": "boolean"
|
|
4222
|
+
},
|
|
4223
|
+
"project": {
|
|
4224
|
+
"char": "p",
|
|
4225
|
+
"description": "Project id (UUID) or key",
|
|
4226
|
+
"name": "project",
|
|
4227
|
+
"required": true,
|
|
4228
|
+
"hasDynamicHelp": false,
|
|
4229
|
+
"multiple": false,
|
|
4230
|
+
"type": "option"
|
|
4231
|
+
}
|
|
4232
|
+
},
|
|
4233
|
+
"hasDynamicHelp": false,
|
|
4234
|
+
"hiddenAliases": [],
|
|
4235
|
+
"id": "tokens:list",
|
|
4236
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4237
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4238
|
+
"pluginType": "core",
|
|
4239
|
+
"strict": true,
|
|
4240
|
+
"enableJsonFlag": true,
|
|
4241
|
+
"isESM": false,
|
|
4242
|
+
"relativePath": [
|
|
4243
|
+
"dist",
|
|
4244
|
+
"commands",
|
|
4245
|
+
"tokens",
|
|
4246
|
+
"list.js"
|
|
4247
|
+
]
|
|
4248
|
+
},
|
|
4249
|
+
"tokens:revoke": {
|
|
4250
|
+
"aliases": [],
|
|
4251
|
+
"args": {
|
|
4252
|
+
"id": {
|
|
4253
|
+
"description": "Token id",
|
|
4254
|
+
"name": "id",
|
|
4255
|
+
"required": true
|
|
4256
|
+
}
|
|
4257
|
+
},
|
|
4258
|
+
"description": "Revoke an ingest token",
|
|
4259
|
+
"examples": [
|
|
4260
|
+
"<%= config.bin %> tokens revoke <token-id> --project acme-api"
|
|
4261
|
+
],
|
|
4262
|
+
"flags": {
|
|
4263
|
+
"json": {
|
|
4264
|
+
"description": "Format output as json.",
|
|
4265
|
+
"helpGroup": "GLOBAL",
|
|
4266
|
+
"name": "json",
|
|
4267
|
+
"allowNo": false,
|
|
4268
|
+
"type": "boolean"
|
|
4269
|
+
},
|
|
4270
|
+
"project": {
|
|
4271
|
+
"char": "p",
|
|
4272
|
+
"description": "Project id (UUID) or key",
|
|
4273
|
+
"name": "project",
|
|
4274
|
+
"required": true,
|
|
4275
|
+
"hasDynamicHelp": false,
|
|
4276
|
+
"multiple": false,
|
|
4277
|
+
"type": "option"
|
|
4278
|
+
}
|
|
4279
|
+
},
|
|
4280
|
+
"hasDynamicHelp": false,
|
|
4281
|
+
"hiddenAliases": [],
|
|
4282
|
+
"id": "tokens:revoke",
|
|
4283
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4284
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4285
|
+
"pluginType": "core",
|
|
4286
|
+
"strict": true,
|
|
4287
|
+
"enableJsonFlag": true,
|
|
4288
|
+
"isESM": false,
|
|
4289
|
+
"relativePath": [
|
|
4290
|
+
"dist",
|
|
4291
|
+
"commands",
|
|
4292
|
+
"tokens",
|
|
4293
|
+
"revoke.js"
|
|
4294
|
+
]
|
|
4295
|
+
},
|
|
4296
|
+
"tokens:rotate": {
|
|
4297
|
+
"aliases": [],
|
|
4298
|
+
"args": {
|
|
4299
|
+
"id": {
|
|
4300
|
+
"description": "Token id",
|
|
4301
|
+
"name": "id",
|
|
4302
|
+
"required": true
|
|
4303
|
+
}
|
|
4304
|
+
},
|
|
4305
|
+
"description": "Rotate an ingest token (the new secret is shown only once)",
|
|
4306
|
+
"examples": [
|
|
4307
|
+
"<%= config.bin %> tokens rotate <token-id> --project acme-api"
|
|
4308
|
+
],
|
|
4309
|
+
"flags": {
|
|
4310
|
+
"json": {
|
|
4311
|
+
"description": "Format output as json.",
|
|
4312
|
+
"helpGroup": "GLOBAL",
|
|
4313
|
+
"name": "json",
|
|
4314
|
+
"allowNo": false,
|
|
4315
|
+
"type": "boolean"
|
|
4316
|
+
},
|
|
4317
|
+
"project": {
|
|
4318
|
+
"char": "p",
|
|
4319
|
+
"description": "Project id (UUID) or key",
|
|
4320
|
+
"name": "project",
|
|
4321
|
+
"required": true,
|
|
4322
|
+
"hasDynamicHelp": false,
|
|
4323
|
+
"multiple": false,
|
|
4324
|
+
"type": "option"
|
|
4325
|
+
}
|
|
4326
|
+
},
|
|
4327
|
+
"hasDynamicHelp": false,
|
|
4328
|
+
"hiddenAliases": [],
|
|
4329
|
+
"id": "tokens:rotate",
|
|
4330
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4331
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4332
|
+
"pluginType": "core",
|
|
4333
|
+
"strict": true,
|
|
4334
|
+
"enableJsonFlag": true,
|
|
4335
|
+
"isESM": false,
|
|
4336
|
+
"relativePath": [
|
|
4337
|
+
"dist",
|
|
4338
|
+
"commands",
|
|
4339
|
+
"tokens",
|
|
4340
|
+
"rotate.js"
|
|
4341
|
+
]
|
|
4342
|
+
},
|
|
4343
|
+
"tickets:approve": {
|
|
4344
|
+
"aliases": [],
|
|
4345
|
+
"args": {
|
|
4346
|
+
"id": {
|
|
4347
|
+
"description": "Ticket id or code (e.g. DRFL-3)",
|
|
4348
|
+
"name": "id",
|
|
4349
|
+
"required": true
|
|
4350
|
+
}
|
|
4351
|
+
},
|
|
4352
|
+
"description": "Approve a ticket review: move it to the first done status",
|
|
4353
|
+
"examples": [
|
|
4354
|
+
"<%= config.bin %> tickets approve <ticket-id> --project acme-api"
|
|
4355
|
+
],
|
|
4356
|
+
"flags": {
|
|
4357
|
+
"json": {
|
|
4358
|
+
"description": "Format output as json.",
|
|
4359
|
+
"helpGroup": "GLOBAL",
|
|
4360
|
+
"name": "json",
|
|
4361
|
+
"allowNo": false,
|
|
4362
|
+
"type": "boolean"
|
|
4363
|
+
},
|
|
4364
|
+
"project": {
|
|
4365
|
+
"char": "p",
|
|
4366
|
+
"description": "Project id (UUID) or key",
|
|
4367
|
+
"name": "project",
|
|
4368
|
+
"required": true,
|
|
4129
4369
|
"hasDynamicHelp": false,
|
|
4130
|
-
"multiple":
|
|
4370
|
+
"multiple": false,
|
|
4131
4371
|
"type": "option"
|
|
4132
4372
|
}
|
|
4133
4373
|
},
|
|
4134
4374
|
"hasDynamicHelp": false,
|
|
4135
4375
|
"hiddenAliases": [],
|
|
4136
|
-
"id": "
|
|
4376
|
+
"id": "tickets:approve",
|
|
4137
4377
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
4138
4378
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
4139
4379
|
"pluginType": "core",
|
|
@@ -4143,8 +4383,8 @@
|
|
|
4143
4383
|
"relativePath": [
|
|
4144
4384
|
"dist",
|
|
4145
4385
|
"commands",
|
|
4146
|
-
"
|
|
4147
|
-
"
|
|
4386
|
+
"tickets",
|
|
4387
|
+
"approve.js"
|
|
4148
4388
|
]
|
|
4149
4389
|
},
|
|
4150
4390
|
"tickets:assign": {
|
|
@@ -4888,6 +5128,61 @@
|
|
|
4888
5128
|
"milestone.js"
|
|
4889
5129
|
]
|
|
4890
5130
|
},
|
|
5131
|
+
"tickets:reject": {
|
|
5132
|
+
"aliases": [],
|
|
5133
|
+
"args": {
|
|
5134
|
+
"id": {
|
|
5135
|
+
"description": "Ticket id or code (e.g. DRFL-3)",
|
|
5136
|
+
"name": "id",
|
|
5137
|
+
"required": true
|
|
5138
|
+
}
|
|
5139
|
+
},
|
|
5140
|
+
"description": "Reject a ticket review: send it back to work with a reason",
|
|
5141
|
+
"examples": [
|
|
5142
|
+
"<%= config.bin %> tickets reject <ticket-id> --project acme-api --reason \"Edge case not covered\""
|
|
5143
|
+
],
|
|
5144
|
+
"flags": {
|
|
5145
|
+
"json": {
|
|
5146
|
+
"description": "Format output as json.",
|
|
5147
|
+
"helpGroup": "GLOBAL",
|
|
5148
|
+
"name": "json",
|
|
5149
|
+
"allowNo": false,
|
|
5150
|
+
"type": "boolean"
|
|
5151
|
+
},
|
|
5152
|
+
"project": {
|
|
5153
|
+
"char": "p",
|
|
5154
|
+
"description": "Project id (UUID) or key",
|
|
5155
|
+
"name": "project",
|
|
5156
|
+
"required": true,
|
|
5157
|
+
"hasDynamicHelp": false,
|
|
5158
|
+
"multiple": false,
|
|
5159
|
+
"type": "option"
|
|
5160
|
+
},
|
|
5161
|
+
"reason": {
|
|
5162
|
+
"description": "Why the review is rejected (posted as a comment)",
|
|
5163
|
+
"name": "reason",
|
|
5164
|
+
"required": true,
|
|
5165
|
+
"hasDynamicHelp": false,
|
|
5166
|
+
"multiple": false,
|
|
5167
|
+
"type": "option"
|
|
5168
|
+
}
|
|
5169
|
+
},
|
|
5170
|
+
"hasDynamicHelp": false,
|
|
5171
|
+
"hiddenAliases": [],
|
|
5172
|
+
"id": "tickets:reject",
|
|
5173
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5174
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5175
|
+
"pluginType": "core",
|
|
5176
|
+
"strict": true,
|
|
5177
|
+
"enableJsonFlag": true,
|
|
5178
|
+
"isESM": false,
|
|
5179
|
+
"relativePath": [
|
|
5180
|
+
"dist",
|
|
5181
|
+
"commands",
|
|
5182
|
+
"tickets",
|
|
5183
|
+
"reject.js"
|
|
5184
|
+
]
|
|
5185
|
+
},
|
|
4891
5186
|
"tickets:show": {
|
|
4892
5187
|
"aliases": [],
|
|
4893
5188
|
"args": {
|
|
@@ -5225,199 +5520,6 @@
|
|
|
5225
5520
|
"vote.js"
|
|
5226
5521
|
]
|
|
5227
5522
|
},
|
|
5228
|
-
"tokens:create": {
|
|
5229
|
-
"aliases": [],
|
|
5230
|
-
"args": {},
|
|
5231
|
-
"description": "Create an ingest token (the secret is shown only once)",
|
|
5232
|
-
"examples": [
|
|
5233
|
-
"<%= config.bin %> tokens create --project acme-api --name \"CI prod\" --environment-id <env-id>"
|
|
5234
|
-
],
|
|
5235
|
-
"flags": {
|
|
5236
|
-
"json": {
|
|
5237
|
-
"description": "Format output as json.",
|
|
5238
|
-
"helpGroup": "GLOBAL",
|
|
5239
|
-
"name": "json",
|
|
5240
|
-
"allowNo": false,
|
|
5241
|
-
"type": "boolean"
|
|
5242
|
-
},
|
|
5243
|
-
"project": {
|
|
5244
|
-
"char": "p",
|
|
5245
|
-
"description": "Project id (UUID) or key",
|
|
5246
|
-
"name": "project",
|
|
5247
|
-
"required": true,
|
|
5248
|
-
"hasDynamicHelp": false,
|
|
5249
|
-
"multiple": false,
|
|
5250
|
-
"type": "option"
|
|
5251
|
-
},
|
|
5252
|
-
"name": {
|
|
5253
|
-
"description": "Human-readable token name",
|
|
5254
|
-
"name": "name",
|
|
5255
|
-
"required": true,
|
|
5256
|
-
"hasDynamicHelp": false,
|
|
5257
|
-
"multiple": false,
|
|
5258
|
-
"type": "option"
|
|
5259
|
-
},
|
|
5260
|
-
"environment-id": {
|
|
5261
|
-
"description": "Environment id the token is scoped to",
|
|
5262
|
-
"name": "environment-id",
|
|
5263
|
-
"required": true,
|
|
5264
|
-
"hasDynamicHelp": false,
|
|
5265
|
-
"multiple": false,
|
|
5266
|
-
"type": "option"
|
|
5267
|
-
}
|
|
5268
|
-
},
|
|
5269
|
-
"hasDynamicHelp": false,
|
|
5270
|
-
"hiddenAliases": [],
|
|
5271
|
-
"id": "tokens:create",
|
|
5272
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5273
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5274
|
-
"pluginType": "core",
|
|
5275
|
-
"strict": true,
|
|
5276
|
-
"enableJsonFlag": true,
|
|
5277
|
-
"isESM": false,
|
|
5278
|
-
"relativePath": [
|
|
5279
|
-
"dist",
|
|
5280
|
-
"commands",
|
|
5281
|
-
"tokens",
|
|
5282
|
-
"create.js"
|
|
5283
|
-
]
|
|
5284
|
-
},
|
|
5285
|
-
"tokens:list": {
|
|
5286
|
-
"aliases": [],
|
|
5287
|
-
"args": {},
|
|
5288
|
-
"description": "List ingest tokens for a project",
|
|
5289
|
-
"examples": [
|
|
5290
|
-
"<%= config.bin %> tokens list --project acme-api",
|
|
5291
|
-
"<%= config.bin %> tokens list -p acme-api --json"
|
|
5292
|
-
],
|
|
5293
|
-
"flags": {
|
|
5294
|
-
"json": {
|
|
5295
|
-
"description": "Format output as json.",
|
|
5296
|
-
"helpGroup": "GLOBAL",
|
|
5297
|
-
"name": "json",
|
|
5298
|
-
"allowNo": false,
|
|
5299
|
-
"type": "boolean"
|
|
5300
|
-
},
|
|
5301
|
-
"project": {
|
|
5302
|
-
"char": "p",
|
|
5303
|
-
"description": "Project id (UUID) or key",
|
|
5304
|
-
"name": "project",
|
|
5305
|
-
"required": true,
|
|
5306
|
-
"hasDynamicHelp": false,
|
|
5307
|
-
"multiple": false,
|
|
5308
|
-
"type": "option"
|
|
5309
|
-
}
|
|
5310
|
-
},
|
|
5311
|
-
"hasDynamicHelp": false,
|
|
5312
|
-
"hiddenAliases": [],
|
|
5313
|
-
"id": "tokens:list",
|
|
5314
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5315
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5316
|
-
"pluginType": "core",
|
|
5317
|
-
"strict": true,
|
|
5318
|
-
"enableJsonFlag": true,
|
|
5319
|
-
"isESM": false,
|
|
5320
|
-
"relativePath": [
|
|
5321
|
-
"dist",
|
|
5322
|
-
"commands",
|
|
5323
|
-
"tokens",
|
|
5324
|
-
"list.js"
|
|
5325
|
-
]
|
|
5326
|
-
},
|
|
5327
|
-
"tokens:revoke": {
|
|
5328
|
-
"aliases": [],
|
|
5329
|
-
"args": {
|
|
5330
|
-
"id": {
|
|
5331
|
-
"description": "Token id",
|
|
5332
|
-
"name": "id",
|
|
5333
|
-
"required": true
|
|
5334
|
-
}
|
|
5335
|
-
},
|
|
5336
|
-
"description": "Revoke an ingest token",
|
|
5337
|
-
"examples": [
|
|
5338
|
-
"<%= config.bin %> tokens revoke <token-id> --project acme-api"
|
|
5339
|
-
],
|
|
5340
|
-
"flags": {
|
|
5341
|
-
"json": {
|
|
5342
|
-
"description": "Format output as json.",
|
|
5343
|
-
"helpGroup": "GLOBAL",
|
|
5344
|
-
"name": "json",
|
|
5345
|
-
"allowNo": false,
|
|
5346
|
-
"type": "boolean"
|
|
5347
|
-
},
|
|
5348
|
-
"project": {
|
|
5349
|
-
"char": "p",
|
|
5350
|
-
"description": "Project id (UUID) or key",
|
|
5351
|
-
"name": "project",
|
|
5352
|
-
"required": true,
|
|
5353
|
-
"hasDynamicHelp": false,
|
|
5354
|
-
"multiple": false,
|
|
5355
|
-
"type": "option"
|
|
5356
|
-
}
|
|
5357
|
-
},
|
|
5358
|
-
"hasDynamicHelp": false,
|
|
5359
|
-
"hiddenAliases": [],
|
|
5360
|
-
"id": "tokens:revoke",
|
|
5361
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5362
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5363
|
-
"pluginType": "core",
|
|
5364
|
-
"strict": true,
|
|
5365
|
-
"enableJsonFlag": true,
|
|
5366
|
-
"isESM": false,
|
|
5367
|
-
"relativePath": [
|
|
5368
|
-
"dist",
|
|
5369
|
-
"commands",
|
|
5370
|
-
"tokens",
|
|
5371
|
-
"revoke.js"
|
|
5372
|
-
]
|
|
5373
|
-
},
|
|
5374
|
-
"tokens:rotate": {
|
|
5375
|
-
"aliases": [],
|
|
5376
|
-
"args": {
|
|
5377
|
-
"id": {
|
|
5378
|
-
"description": "Token id",
|
|
5379
|
-
"name": "id",
|
|
5380
|
-
"required": true
|
|
5381
|
-
}
|
|
5382
|
-
},
|
|
5383
|
-
"description": "Rotate an ingest token (the new secret is shown only once)",
|
|
5384
|
-
"examples": [
|
|
5385
|
-
"<%= config.bin %> tokens rotate <token-id> --project acme-api"
|
|
5386
|
-
],
|
|
5387
|
-
"flags": {
|
|
5388
|
-
"json": {
|
|
5389
|
-
"description": "Format output as json.",
|
|
5390
|
-
"helpGroup": "GLOBAL",
|
|
5391
|
-
"name": "json",
|
|
5392
|
-
"allowNo": false,
|
|
5393
|
-
"type": "boolean"
|
|
5394
|
-
},
|
|
5395
|
-
"project": {
|
|
5396
|
-
"char": "p",
|
|
5397
|
-
"description": "Project id (UUID) or key",
|
|
5398
|
-
"name": "project",
|
|
5399
|
-
"required": true,
|
|
5400
|
-
"hasDynamicHelp": false,
|
|
5401
|
-
"multiple": false,
|
|
5402
|
-
"type": "option"
|
|
5403
|
-
}
|
|
5404
|
-
},
|
|
5405
|
-
"hasDynamicHelp": false,
|
|
5406
|
-
"hiddenAliases": [],
|
|
5407
|
-
"id": "tokens:rotate",
|
|
5408
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
5409
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
5410
|
-
"pluginType": "core",
|
|
5411
|
-
"strict": true,
|
|
5412
|
-
"enableJsonFlag": true,
|
|
5413
|
-
"isESM": false,
|
|
5414
|
-
"relativePath": [
|
|
5415
|
-
"dist",
|
|
5416
|
-
"commands",
|
|
5417
|
-
"tokens",
|
|
5418
|
-
"rotate.js"
|
|
5419
|
-
]
|
|
5420
|
-
},
|
|
5421
5523
|
"alerts:channels:create": {
|
|
5422
5524
|
"aliases": [],
|
|
5423
5525
|
"args": {
|
|
@@ -5710,5 +5812,5 @@
|
|
|
5710
5812
|
]
|
|
5711
5813
|
}
|
|
5712
5814
|
},
|
|
5713
|
-
"version": "0.0.
|
|
5815
|
+
"version": "0.0.12"
|
|
5714
5816
|
}
|