@bussolabs/closeyourit-cli 0.0.4 → 0.0.6
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 +1 -0
- package/dist/commands/logs/list.d.ts +13 -0
- package/dist/commands/logs/list.js +51 -0
- package/dist/lib/output.js +22 -6
- package/oclif.manifest.json +902 -831
- package/package.json +4 -1
package/oclif.manifest.json
CHANGED
|
@@ -421,19 +421,19 @@
|
|
|
421
421
|
"update.js"
|
|
422
422
|
]
|
|
423
423
|
},
|
|
424
|
-
"
|
|
424
|
+
"environments:create": {
|
|
425
425
|
"aliases": [],
|
|
426
426
|
"args": {
|
|
427
|
-
"
|
|
428
|
-
"description": "
|
|
429
|
-
"name": "
|
|
427
|
+
"code": {
|
|
428
|
+
"description": "Environment code (lowercase, e.g. production)",
|
|
429
|
+
"name": "code",
|
|
430
430
|
"required": true
|
|
431
431
|
}
|
|
432
432
|
},
|
|
433
|
-
"description": "Create
|
|
433
|
+
"description": "Create an environment (production, staging, …) in your organization",
|
|
434
434
|
"examples": [
|
|
435
|
-
"<%= config.bin %>
|
|
436
|
-
"<%= config.bin %>
|
|
435
|
+
"<%= config.bin %> environments create production --label Production",
|
|
436
|
+
"<%= config.bin %> environments create staging --label Staging --color amber"
|
|
437
437
|
],
|
|
438
438
|
"flags": {
|
|
439
439
|
"json": {
|
|
@@ -443,17 +443,39 @@
|
|
|
443
443
|
"allowNo": false,
|
|
444
444
|
"type": "boolean"
|
|
445
445
|
},
|
|
446
|
+
"label": {
|
|
447
|
+
"description": "Human-readable label",
|
|
448
|
+
"name": "label",
|
|
449
|
+
"required": true,
|
|
450
|
+
"hasDynamicHelp": false,
|
|
451
|
+
"multiple": false,
|
|
452
|
+
"type": "option"
|
|
453
|
+
},
|
|
446
454
|
"color": {
|
|
447
455
|
"description": "Color label",
|
|
448
456
|
"name": "color",
|
|
457
|
+
"default": "emerald",
|
|
458
|
+
"hasDynamicHelp": false,
|
|
459
|
+
"multiple": false,
|
|
460
|
+
"type": "option"
|
|
461
|
+
},
|
|
462
|
+
"position": {
|
|
463
|
+
"description": "Sort position",
|
|
464
|
+
"name": "position",
|
|
449
465
|
"hasDynamicHelp": false,
|
|
450
466
|
"multiple": false,
|
|
451
467
|
"type": "option"
|
|
468
|
+
},
|
|
469
|
+
"active": {
|
|
470
|
+
"description": "Whether the environment is active",
|
|
471
|
+
"name": "active",
|
|
472
|
+
"allowNo": true,
|
|
473
|
+
"type": "boolean"
|
|
452
474
|
}
|
|
453
475
|
},
|
|
454
476
|
"hasDynamicHelp": false,
|
|
455
477
|
"hiddenAliases": [],
|
|
456
|
-
"id": "
|
|
478
|
+
"id": "environments:create",
|
|
457
479
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
458
480
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
459
481
|
"pluginType": "core",
|
|
@@ -463,22 +485,22 @@
|
|
|
463
485
|
"relativePath": [
|
|
464
486
|
"dist",
|
|
465
487
|
"commands",
|
|
466
|
-
"
|
|
488
|
+
"environments",
|
|
467
489
|
"create.js"
|
|
468
490
|
]
|
|
469
491
|
},
|
|
470
|
-
"
|
|
492
|
+
"environments:delete": {
|
|
471
493
|
"aliases": [],
|
|
472
494
|
"args": {
|
|
473
|
-
"
|
|
474
|
-
"description": "
|
|
475
|
-
"name": "
|
|
495
|
+
"environment": {
|
|
496
|
+
"description": "Environment id (UUID) or code",
|
|
497
|
+
"name": "environment",
|
|
476
498
|
"required": true
|
|
477
499
|
}
|
|
478
500
|
},
|
|
479
|
-
"description": "Delete
|
|
501
|
+
"description": "Delete an environment (blocked while projects, tokens or monitors reference it)",
|
|
480
502
|
"examples": [
|
|
481
|
-
"<%= config.bin %>
|
|
503
|
+
"<%= config.bin %> environments delete staging --confirm"
|
|
482
504
|
],
|
|
483
505
|
"flags": {
|
|
484
506
|
"json": {
|
|
@@ -497,7 +519,7 @@
|
|
|
497
519
|
},
|
|
498
520
|
"hasDynamicHelp": false,
|
|
499
521
|
"hiddenAliases": [],
|
|
500
|
-
"id": "
|
|
522
|
+
"id": "environments:delete",
|
|
501
523
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
502
524
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
503
525
|
"pluginType": "core",
|
|
@@ -507,17 +529,17 @@
|
|
|
507
529
|
"relativePath": [
|
|
508
530
|
"dist",
|
|
509
531
|
"commands",
|
|
510
|
-
"
|
|
532
|
+
"environments",
|
|
511
533
|
"delete.js"
|
|
512
534
|
]
|
|
513
535
|
},
|
|
514
|
-
"
|
|
536
|
+
"environments:list": {
|
|
515
537
|
"aliases": [],
|
|
516
538
|
"args": {},
|
|
517
|
-
"description": "List the
|
|
539
|
+
"description": "List the environments (production, staging, …) in your organization",
|
|
518
540
|
"examples": [
|
|
519
|
-
"<%= config.bin %>
|
|
520
|
-
"<%= config.bin %>
|
|
541
|
+
"<%= config.bin %> environments list",
|
|
542
|
+
"<%= config.bin %> environments list --page 2 --json"
|
|
521
543
|
],
|
|
522
544
|
"flags": {
|
|
523
545
|
"json": {
|
|
@@ -538,7 +560,7 @@
|
|
|
538
560
|
},
|
|
539
561
|
"hasDynamicHelp": false,
|
|
540
562
|
"hiddenAliases": [],
|
|
541
|
-
"id": "
|
|
563
|
+
"id": "environments:list",
|
|
542
564
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
543
565
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
544
566
|
"pluginType": "core",
|
|
@@ -548,23 +570,24 @@
|
|
|
548
570
|
"relativePath": [
|
|
549
571
|
"dist",
|
|
550
572
|
"commands",
|
|
551
|
-
"
|
|
573
|
+
"environments",
|
|
552
574
|
"list.js"
|
|
553
575
|
]
|
|
554
576
|
},
|
|
555
|
-
"
|
|
577
|
+
"environments:update": {
|
|
556
578
|
"aliases": [],
|
|
557
579
|
"args": {
|
|
558
|
-
"
|
|
559
|
-
"description": "
|
|
560
|
-
"name": "
|
|
580
|
+
"environment": {
|
|
581
|
+
"description": "Environment id (UUID) or code",
|
|
582
|
+
"name": "environment",
|
|
561
583
|
"required": true
|
|
562
584
|
}
|
|
563
585
|
},
|
|
564
|
-
"description": "Update
|
|
586
|
+
"description": "Update an environment (recode, relabel, recolor, reorder, activate/deactivate)",
|
|
565
587
|
"examples": [
|
|
566
|
-
"<%= config.bin %>
|
|
567
|
-
"<%= config.bin %>
|
|
588
|
+
"<%= config.bin %> environments update staging --label \"Staging env\"",
|
|
589
|
+
"<%= config.bin %> environments update production --color indigo",
|
|
590
|
+
"<%= config.bin %> environments update staging --no-active"
|
|
568
591
|
],
|
|
569
592
|
"flags": {
|
|
570
593
|
"json": {
|
|
@@ -574,9 +597,16 @@
|
|
|
574
597
|
"allowNo": false,
|
|
575
598
|
"type": "boolean"
|
|
576
599
|
},
|
|
577
|
-
"
|
|
578
|
-
"description": "New
|
|
579
|
-
"name": "
|
|
600
|
+
"code": {
|
|
601
|
+
"description": "New code (lowercase)",
|
|
602
|
+
"name": "code",
|
|
603
|
+
"hasDynamicHelp": false,
|
|
604
|
+
"multiple": false,
|
|
605
|
+
"type": "option"
|
|
606
|
+
},
|
|
607
|
+
"label": {
|
|
608
|
+
"description": "New label",
|
|
609
|
+
"name": "label",
|
|
580
610
|
"hasDynamicHelp": false,
|
|
581
611
|
"multiple": false,
|
|
582
612
|
"type": "option"
|
|
@@ -587,11 +617,24 @@
|
|
|
587
617
|
"hasDynamicHelp": false,
|
|
588
618
|
"multiple": false,
|
|
589
619
|
"type": "option"
|
|
620
|
+
},
|
|
621
|
+
"position": {
|
|
622
|
+
"description": "Sort position",
|
|
623
|
+
"name": "position",
|
|
624
|
+
"hasDynamicHelp": false,
|
|
625
|
+
"multiple": false,
|
|
626
|
+
"type": "option"
|
|
627
|
+
},
|
|
628
|
+
"active": {
|
|
629
|
+
"description": "Whether the environment is active",
|
|
630
|
+
"name": "active",
|
|
631
|
+
"allowNo": true,
|
|
632
|
+
"type": "boolean"
|
|
590
633
|
}
|
|
591
634
|
},
|
|
592
635
|
"hasDynamicHelp": false,
|
|
593
636
|
"hiddenAliases": [],
|
|
594
|
-
"id": "
|
|
637
|
+
"id": "environments:update",
|
|
595
638
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
596
639
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
597
640
|
"pluginType": "core",
|
|
@@ -601,23 +644,17 @@
|
|
|
601
644
|
"relativePath": [
|
|
602
645
|
"dist",
|
|
603
646
|
"commands",
|
|
604
|
-
"
|
|
647
|
+
"environments",
|
|
605
648
|
"update.js"
|
|
606
649
|
]
|
|
607
650
|
},
|
|
608
|
-
"
|
|
651
|
+
"errors:list": {
|
|
609
652
|
"aliases": [],
|
|
610
|
-
"args": {
|
|
611
|
-
|
|
612
|
-
"description": "Email address to invite",
|
|
613
|
-
"name": "email",
|
|
614
|
-
"required": true
|
|
615
|
-
}
|
|
616
|
-
},
|
|
617
|
-
"description": "Invite a person to the organization. Prints the acceptance link (shown only once).",
|
|
653
|
+
"args": {},
|
|
654
|
+
"description": "List error groups for a project",
|
|
618
655
|
"examples": [
|
|
619
|
-
"<%= config.bin %>
|
|
620
|
-
"<%= config.bin %>
|
|
656
|
+
"<%= config.bin %> errors list --project acme-api",
|
|
657
|
+
"<%= config.bin %> errors list -p acme-api --status unresolved --json"
|
|
621
658
|
],
|
|
622
659
|
"flags": {
|
|
623
660
|
"json": {
|
|
@@ -627,23 +664,34 @@
|
|
|
627
664
|
"allowNo": false,
|
|
628
665
|
"type": "boolean"
|
|
629
666
|
},
|
|
630
|
-
"
|
|
631
|
-
"
|
|
632
|
-
"
|
|
633
|
-
"
|
|
667
|
+
"project": {
|
|
668
|
+
"char": "p",
|
|
669
|
+
"description": "Project id (UUID) or key",
|
|
670
|
+
"name": "project",
|
|
671
|
+
"required": true,
|
|
672
|
+
"hasDynamicHelp": false,
|
|
673
|
+
"multiple": false,
|
|
674
|
+
"type": "option"
|
|
675
|
+
},
|
|
676
|
+
"page": {
|
|
677
|
+
"description": "Page number",
|
|
678
|
+
"name": "page",
|
|
679
|
+
"default": 1,
|
|
680
|
+
"hasDynamicHelp": false,
|
|
681
|
+
"multiple": false,
|
|
682
|
+
"type": "option"
|
|
683
|
+
},
|
|
684
|
+
"status": {
|
|
685
|
+
"description": "Filter by status (e.g. unresolved, resolved, muted)",
|
|
686
|
+
"name": "status",
|
|
634
687
|
"hasDynamicHelp": false,
|
|
635
688
|
"multiple": false,
|
|
636
|
-
"options": [
|
|
637
|
-
"customer",
|
|
638
|
-
"member",
|
|
639
|
-
"admin"
|
|
640
|
-
],
|
|
641
689
|
"type": "option"
|
|
642
690
|
}
|
|
643
691
|
},
|
|
644
692
|
"hasDynamicHelp": false,
|
|
645
693
|
"hiddenAliases": [],
|
|
646
|
-
"id": "
|
|
694
|
+
"id": "errors:list",
|
|
647
695
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
648
696
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
649
697
|
"pluginType": "core",
|
|
@@ -653,17 +701,22 @@
|
|
|
653
701
|
"relativePath": [
|
|
654
702
|
"dist",
|
|
655
703
|
"commands",
|
|
656
|
-
"
|
|
657
|
-
"
|
|
704
|
+
"errors",
|
|
705
|
+
"list.js"
|
|
658
706
|
]
|
|
659
707
|
},
|
|
660
|
-
"
|
|
708
|
+
"errors:mute": {
|
|
661
709
|
"aliases": [],
|
|
662
|
-
"args": {
|
|
663
|
-
|
|
710
|
+
"args": {
|
|
711
|
+
"id": {
|
|
712
|
+
"description": "Error group id",
|
|
713
|
+
"name": "id",
|
|
714
|
+
"required": true
|
|
715
|
+
}
|
|
716
|
+
},
|
|
717
|
+
"description": "Mute an error group",
|
|
664
718
|
"examples": [
|
|
665
|
-
"<%= config.bin %>
|
|
666
|
-
"<%= config.bin %> invitations list --json"
|
|
719
|
+
"<%= config.bin %> errors mute <group-id> --project acme-api"
|
|
667
720
|
],
|
|
668
721
|
"flags": {
|
|
669
722
|
"json": {
|
|
@@ -673,10 +726,11 @@
|
|
|
673
726
|
"allowNo": false,
|
|
674
727
|
"type": "boolean"
|
|
675
728
|
},
|
|
676
|
-
"
|
|
677
|
-
"
|
|
678
|
-
"
|
|
679
|
-
"
|
|
729
|
+
"project": {
|
|
730
|
+
"char": "p",
|
|
731
|
+
"description": "Project id (UUID) or key",
|
|
732
|
+
"name": "project",
|
|
733
|
+
"required": true,
|
|
680
734
|
"hasDynamicHelp": false,
|
|
681
735
|
"multiple": false,
|
|
682
736
|
"type": "option"
|
|
@@ -684,7 +738,7 @@
|
|
|
684
738
|
},
|
|
685
739
|
"hasDynamicHelp": false,
|
|
686
740
|
"hiddenAliases": [],
|
|
687
|
-
"id": "
|
|
741
|
+
"id": "errors:mute",
|
|
688
742
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
689
743
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
690
744
|
"pluginType": "core",
|
|
@@ -694,22 +748,22 @@
|
|
|
694
748
|
"relativePath": [
|
|
695
749
|
"dist",
|
|
696
750
|
"commands",
|
|
697
|
-
"
|
|
698
|
-
"
|
|
751
|
+
"errors",
|
|
752
|
+
"mute.js"
|
|
699
753
|
]
|
|
700
754
|
},
|
|
701
|
-
"
|
|
755
|
+
"errors:promote": {
|
|
702
756
|
"aliases": [],
|
|
703
757
|
"args": {
|
|
704
758
|
"id": {
|
|
705
|
-
"description": "
|
|
759
|
+
"description": "Error group id",
|
|
706
760
|
"name": "id",
|
|
707
761
|
"required": true
|
|
708
762
|
}
|
|
709
763
|
},
|
|
710
|
-
"description": "
|
|
764
|
+
"description": "Promote an error group to a ticket",
|
|
711
765
|
"examples": [
|
|
712
|
-
"<%= config.bin %>
|
|
766
|
+
"<%= config.bin %> errors promote <group-id> --project acme-api"
|
|
713
767
|
],
|
|
714
768
|
"flags": {
|
|
715
769
|
"json": {
|
|
@@ -718,11 +772,20 @@
|
|
|
718
772
|
"name": "json",
|
|
719
773
|
"allowNo": false,
|
|
720
774
|
"type": "boolean"
|
|
775
|
+
},
|
|
776
|
+
"project": {
|
|
777
|
+
"char": "p",
|
|
778
|
+
"description": "Project id (UUID) or key",
|
|
779
|
+
"name": "project",
|
|
780
|
+
"required": true,
|
|
781
|
+
"hasDynamicHelp": false,
|
|
782
|
+
"multiple": false,
|
|
783
|
+
"type": "option"
|
|
721
784
|
}
|
|
722
785
|
},
|
|
723
786
|
"hasDynamicHelp": false,
|
|
724
787
|
"hiddenAliases": [],
|
|
725
|
-
"id": "
|
|
788
|
+
"id": "errors:promote",
|
|
726
789
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
727
790
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
728
791
|
"pluginType": "core",
|
|
@@ -732,22 +795,22 @@
|
|
|
732
795
|
"relativePath": [
|
|
733
796
|
"dist",
|
|
734
797
|
"commands",
|
|
735
|
-
"
|
|
736
|
-
"
|
|
798
|
+
"errors",
|
|
799
|
+
"promote.js"
|
|
737
800
|
]
|
|
738
801
|
},
|
|
739
|
-
"
|
|
802
|
+
"errors:reopen": {
|
|
740
803
|
"aliases": [],
|
|
741
804
|
"args": {
|
|
742
805
|
"id": {
|
|
743
|
-
"description": "
|
|
806
|
+
"description": "Error group id",
|
|
744
807
|
"name": "id",
|
|
745
808
|
"required": true
|
|
746
809
|
}
|
|
747
810
|
},
|
|
748
|
-
"description": "
|
|
811
|
+
"description": "Reopen a resolved error group",
|
|
749
812
|
"examples": [
|
|
750
|
-
"<%= config.bin %>
|
|
813
|
+
"<%= config.bin %> errors reopen <group-id> --project acme-api"
|
|
751
814
|
],
|
|
752
815
|
"flags": {
|
|
753
816
|
"json": {
|
|
@@ -756,11 +819,20 @@
|
|
|
756
819
|
"name": "json",
|
|
757
820
|
"allowNo": false,
|
|
758
821
|
"type": "boolean"
|
|
822
|
+
},
|
|
823
|
+
"project": {
|
|
824
|
+
"char": "p",
|
|
825
|
+
"description": "Project id (UUID) or key",
|
|
826
|
+
"name": "project",
|
|
827
|
+
"required": true,
|
|
828
|
+
"hasDynamicHelp": false,
|
|
829
|
+
"multiple": false,
|
|
830
|
+
"type": "option"
|
|
759
831
|
}
|
|
760
832
|
},
|
|
761
833
|
"hasDynamicHelp": false,
|
|
762
834
|
"hiddenAliases": [],
|
|
763
|
-
"id": "
|
|
835
|
+
"id": "errors:reopen",
|
|
764
836
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
765
837
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
766
838
|
"pluginType": "core",
|
|
@@ -770,17 +842,22 @@
|
|
|
770
842
|
"relativePath": [
|
|
771
843
|
"dist",
|
|
772
844
|
"commands",
|
|
773
|
-
"
|
|
774
|
-
"
|
|
845
|
+
"errors",
|
|
846
|
+
"reopen.js"
|
|
775
847
|
]
|
|
776
848
|
},
|
|
777
|
-
"errors:
|
|
849
|
+
"errors:resolve": {
|
|
778
850
|
"aliases": [],
|
|
779
|
-
"args": {
|
|
780
|
-
|
|
851
|
+
"args": {
|
|
852
|
+
"id": {
|
|
853
|
+
"description": "Error group id",
|
|
854
|
+
"name": "id",
|
|
855
|
+
"required": true
|
|
856
|
+
}
|
|
857
|
+
},
|
|
858
|
+
"description": "Mark an error group as resolved",
|
|
781
859
|
"examples": [
|
|
782
|
-
"<%= config.bin %> errors
|
|
783
|
-
"<%= config.bin %> errors list -p acme-api --status unresolved --json"
|
|
860
|
+
"<%= config.bin %> errors resolve <group-id> --project acme-api"
|
|
784
861
|
],
|
|
785
862
|
"flags": {
|
|
786
863
|
"json": {
|
|
@@ -798,26 +875,11 @@
|
|
|
798
875
|
"hasDynamicHelp": false,
|
|
799
876
|
"multiple": false,
|
|
800
877
|
"type": "option"
|
|
801
|
-
},
|
|
802
|
-
"page": {
|
|
803
|
-
"description": "Page number",
|
|
804
|
-
"name": "page",
|
|
805
|
-
"default": 1,
|
|
806
|
-
"hasDynamicHelp": false,
|
|
807
|
-
"multiple": false,
|
|
808
|
-
"type": "option"
|
|
809
|
-
},
|
|
810
|
-
"status": {
|
|
811
|
-
"description": "Filter by status (e.g. unresolved, resolved, muted)",
|
|
812
|
-
"name": "status",
|
|
813
|
-
"hasDynamicHelp": false,
|
|
814
|
-
"multiple": false,
|
|
815
|
-
"type": "option"
|
|
816
878
|
}
|
|
817
879
|
},
|
|
818
880
|
"hasDynamicHelp": false,
|
|
819
881
|
"hiddenAliases": [],
|
|
820
|
-
"id": "errors:
|
|
882
|
+
"id": "errors:resolve",
|
|
821
883
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
822
884
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
823
885
|
"pluginType": "core",
|
|
@@ -828,10 +890,10 @@
|
|
|
828
890
|
"dist",
|
|
829
891
|
"commands",
|
|
830
892
|
"errors",
|
|
831
|
-
"
|
|
893
|
+
"resolve.js"
|
|
832
894
|
]
|
|
833
895
|
},
|
|
834
|
-
"errors:
|
|
896
|
+
"errors:show": {
|
|
835
897
|
"aliases": [],
|
|
836
898
|
"args": {
|
|
837
899
|
"id": {
|
|
@@ -840,9 +902,9 @@
|
|
|
840
902
|
"required": true
|
|
841
903
|
}
|
|
842
904
|
},
|
|
843
|
-
"description": "
|
|
905
|
+
"description": "Show a single error group",
|
|
844
906
|
"examples": [
|
|
845
|
-
"<%= config.bin %> errors
|
|
907
|
+
"<%= config.bin %> errors show <group-id> --project acme-api"
|
|
846
908
|
],
|
|
847
909
|
"flags": {
|
|
848
910
|
"json": {
|
|
@@ -864,7 +926,7 @@
|
|
|
864
926
|
},
|
|
865
927
|
"hasDynamicHelp": false,
|
|
866
928
|
"hiddenAliases": [],
|
|
867
|
-
"id": "errors:
|
|
929
|
+
"id": "errors:show",
|
|
868
930
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
869
931
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
870
932
|
"pluginType": "core",
|
|
@@ -875,10 +937,10 @@
|
|
|
875
937
|
"dist",
|
|
876
938
|
"commands",
|
|
877
939
|
"errors",
|
|
878
|
-
"
|
|
940
|
+
"show.js"
|
|
879
941
|
]
|
|
880
942
|
},
|
|
881
|
-
"errors:
|
|
943
|
+
"errors:unmute": {
|
|
882
944
|
"aliases": [],
|
|
883
945
|
"args": {
|
|
884
946
|
"id": {
|
|
@@ -887,9 +949,9 @@
|
|
|
887
949
|
"required": true
|
|
888
950
|
}
|
|
889
951
|
},
|
|
890
|
-
"description": "
|
|
952
|
+
"description": "Unmute an error group",
|
|
891
953
|
"examples": [
|
|
892
|
-
"<%= config.bin %> errors
|
|
954
|
+
"<%= config.bin %> errors unmute <group-id> --project acme-api"
|
|
893
955
|
],
|
|
894
956
|
"flags": {
|
|
895
957
|
"json": {
|
|
@@ -911,7 +973,7 @@
|
|
|
911
973
|
},
|
|
912
974
|
"hasDynamicHelp": false,
|
|
913
975
|
"hiddenAliases": [],
|
|
914
|
-
"id": "errors:
|
|
976
|
+
"id": "errors:unmute",
|
|
915
977
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
916
978
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
917
979
|
"pluginType": "core",
|
|
@@ -922,21 +984,22 @@
|
|
|
922
984
|
"dist",
|
|
923
985
|
"commands",
|
|
924
986
|
"errors",
|
|
925
|
-
"
|
|
987
|
+
"unmute.js"
|
|
926
988
|
]
|
|
927
989
|
},
|
|
928
|
-
"
|
|
990
|
+
"groups:create": {
|
|
929
991
|
"aliases": [],
|
|
930
992
|
"args": {
|
|
931
|
-
"
|
|
932
|
-
"description": "
|
|
933
|
-
"name": "
|
|
993
|
+
"name": {
|
|
994
|
+
"description": "Group name",
|
|
995
|
+
"name": "name",
|
|
934
996
|
"required": true
|
|
935
997
|
}
|
|
936
998
|
},
|
|
937
|
-
"description": "
|
|
999
|
+
"description": "Create a group (a container of related projects, e.g. \"DriverOne\")",
|
|
938
1000
|
"examples": [
|
|
939
|
-
"<%= config.bin %>
|
|
1001
|
+
"<%= config.bin %> groups create DriverOne",
|
|
1002
|
+
"<%= config.bin %> groups create DriverOne --color indigo"
|
|
940
1003
|
],
|
|
941
1004
|
"flags": {
|
|
942
1005
|
"json": {
|
|
@@ -946,11 +1009,9 @@
|
|
|
946
1009
|
"allowNo": false,
|
|
947
1010
|
"type": "boolean"
|
|
948
1011
|
},
|
|
949
|
-
"
|
|
950
|
-
"
|
|
951
|
-
"
|
|
952
|
-
"name": "project",
|
|
953
|
-
"required": true,
|
|
1012
|
+
"color": {
|
|
1013
|
+
"description": "Color label",
|
|
1014
|
+
"name": "color",
|
|
954
1015
|
"hasDynamicHelp": false,
|
|
955
1016
|
"multiple": false,
|
|
956
1017
|
"type": "option"
|
|
@@ -958,7 +1019,7 @@
|
|
|
958
1019
|
},
|
|
959
1020
|
"hasDynamicHelp": false,
|
|
960
1021
|
"hiddenAliases": [],
|
|
961
|
-
"id": "
|
|
1022
|
+
"id": "groups:create",
|
|
962
1023
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
963
1024
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
964
1025
|
"pluginType": "core",
|
|
@@ -968,22 +1029,22 @@
|
|
|
968
1029
|
"relativePath": [
|
|
969
1030
|
"dist",
|
|
970
1031
|
"commands",
|
|
971
|
-
"
|
|
972
|
-
"
|
|
1032
|
+
"groups",
|
|
1033
|
+
"create.js"
|
|
973
1034
|
]
|
|
974
1035
|
},
|
|
975
|
-
"
|
|
1036
|
+
"groups:delete": {
|
|
976
1037
|
"aliases": [],
|
|
977
1038
|
"args": {
|
|
978
|
-
"
|
|
979
|
-
"description": "
|
|
980
|
-
"name": "
|
|
1039
|
+
"group": {
|
|
1040
|
+
"description": "Group id (UUID) or name",
|
|
1041
|
+
"name": "group",
|
|
981
1042
|
"required": true
|
|
982
1043
|
}
|
|
983
1044
|
},
|
|
984
|
-
"description": "
|
|
1045
|
+
"description": "Delete a group (its projects are detached, not deleted)",
|
|
985
1046
|
"examples": [
|
|
986
|
-
"<%= config.bin %>
|
|
1047
|
+
"<%= config.bin %> groups delete Backend --confirm"
|
|
987
1048
|
],
|
|
988
1049
|
"flags": {
|
|
989
1050
|
"json": {
|
|
@@ -993,66 +1054,16 @@
|
|
|
993
1054
|
"allowNo": false,
|
|
994
1055
|
"type": "boolean"
|
|
995
1056
|
},
|
|
996
|
-
"
|
|
997
|
-
"
|
|
998
|
-
"
|
|
999
|
-
"name": "project",
|
|
1000
|
-
"required": true,
|
|
1001
|
-
"hasDynamicHelp": false,
|
|
1002
|
-
"multiple": false,
|
|
1003
|
-
"type": "option"
|
|
1004
|
-
}
|
|
1005
|
-
},
|
|
1006
|
-
"hasDynamicHelp": false,
|
|
1007
|
-
"hiddenAliases": [],
|
|
1008
|
-
"id": "errors:resolve",
|
|
1009
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1010
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1011
|
-
"pluginType": "core",
|
|
1012
|
-
"strict": true,
|
|
1013
|
-
"enableJsonFlag": true,
|
|
1014
|
-
"isESM": false,
|
|
1015
|
-
"relativePath": [
|
|
1016
|
-
"dist",
|
|
1017
|
-
"commands",
|
|
1018
|
-
"errors",
|
|
1019
|
-
"resolve.js"
|
|
1020
|
-
]
|
|
1021
|
-
},
|
|
1022
|
-
"errors:show": {
|
|
1023
|
-
"aliases": [],
|
|
1024
|
-
"args": {
|
|
1025
|
-
"id": {
|
|
1026
|
-
"description": "Error group id",
|
|
1027
|
-
"name": "id",
|
|
1028
|
-
"required": true
|
|
1029
|
-
}
|
|
1030
|
-
},
|
|
1031
|
-
"description": "Show a single error group",
|
|
1032
|
-
"examples": [
|
|
1033
|
-
"<%= config.bin %> errors show <group-id> --project acme-api"
|
|
1034
|
-
],
|
|
1035
|
-
"flags": {
|
|
1036
|
-
"json": {
|
|
1037
|
-
"description": "Format output as json.",
|
|
1038
|
-
"helpGroup": "GLOBAL",
|
|
1039
|
-
"name": "json",
|
|
1057
|
+
"confirm": {
|
|
1058
|
+
"description": "Required: confirm the deletion",
|
|
1059
|
+
"name": "confirm",
|
|
1040
1060
|
"allowNo": false,
|
|
1041
1061
|
"type": "boolean"
|
|
1042
|
-
},
|
|
1043
|
-
"project": {
|
|
1044
|
-
"char": "p",
|
|
1045
|
-
"description": "Project id (UUID) or key",
|
|
1046
|
-
"name": "project",
|
|
1047
|
-
"required": true,
|
|
1048
|
-
"hasDynamicHelp": false,
|
|
1049
|
-
"multiple": false,
|
|
1050
|
-
"type": "option"
|
|
1051
1062
|
}
|
|
1052
1063
|
},
|
|
1053
1064
|
"hasDynamicHelp": false,
|
|
1054
1065
|
"hiddenAliases": [],
|
|
1055
|
-
"id": "
|
|
1066
|
+
"id": "groups:delete",
|
|
1056
1067
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1057
1068
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1058
1069
|
"pluginType": "core",
|
|
@@ -1062,22 +1073,17 @@
|
|
|
1062
1073
|
"relativePath": [
|
|
1063
1074
|
"dist",
|
|
1064
1075
|
"commands",
|
|
1065
|
-
"
|
|
1066
|
-
"
|
|
1076
|
+
"groups",
|
|
1077
|
+
"delete.js"
|
|
1067
1078
|
]
|
|
1068
1079
|
},
|
|
1069
|
-
"
|
|
1080
|
+
"groups:list": {
|
|
1070
1081
|
"aliases": [],
|
|
1071
|
-
"args": {
|
|
1072
|
-
|
|
1073
|
-
"description": "Error group id",
|
|
1074
|
-
"name": "id",
|
|
1075
|
-
"required": true
|
|
1076
|
-
}
|
|
1077
|
-
},
|
|
1078
|
-
"description": "Unmute an error group",
|
|
1082
|
+
"args": {},
|
|
1083
|
+
"description": "List the groups (macro-projects) in your organization",
|
|
1079
1084
|
"examples": [
|
|
1080
|
-
"<%= config.bin %>
|
|
1085
|
+
"<%= config.bin %> groups list",
|
|
1086
|
+
"<%= config.bin %> groups list --page 2 --json"
|
|
1081
1087
|
],
|
|
1082
1088
|
"flags": {
|
|
1083
1089
|
"json": {
|
|
@@ -1087,11 +1093,10 @@
|
|
|
1087
1093
|
"allowNo": false,
|
|
1088
1094
|
"type": "boolean"
|
|
1089
1095
|
},
|
|
1090
|
-
"
|
|
1091
|
-
"
|
|
1092
|
-
"
|
|
1093
|
-
"
|
|
1094
|
-
"required": true,
|
|
1096
|
+
"page": {
|
|
1097
|
+
"description": "Page number",
|
|
1098
|
+
"name": "page",
|
|
1099
|
+
"default": 1,
|
|
1095
1100
|
"hasDynamicHelp": false,
|
|
1096
1101
|
"multiple": false,
|
|
1097
1102
|
"type": "option"
|
|
@@ -1099,7 +1104,7 @@
|
|
|
1099
1104
|
},
|
|
1100
1105
|
"hasDynamicHelp": false,
|
|
1101
1106
|
"hiddenAliases": [],
|
|
1102
|
-
"id": "
|
|
1107
|
+
"id": "groups:list",
|
|
1103
1108
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1104
1109
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1105
1110
|
"pluginType": "core",
|
|
@@ -1109,23 +1114,23 @@
|
|
|
1109
1114
|
"relativePath": [
|
|
1110
1115
|
"dist",
|
|
1111
1116
|
"commands",
|
|
1112
|
-
"
|
|
1113
|
-
"
|
|
1117
|
+
"groups",
|
|
1118
|
+
"list.js"
|
|
1114
1119
|
]
|
|
1115
1120
|
},
|
|
1116
|
-
"
|
|
1121
|
+
"groups:update": {
|
|
1117
1122
|
"aliases": [],
|
|
1118
1123
|
"args": {
|
|
1119
|
-
"
|
|
1120
|
-
"description": "
|
|
1121
|
-
"name": "
|
|
1124
|
+
"group": {
|
|
1125
|
+
"description": "Group id (UUID) or name",
|
|
1126
|
+
"name": "group",
|
|
1122
1127
|
"required": true
|
|
1123
1128
|
}
|
|
1124
1129
|
},
|
|
1125
|
-
"description": "
|
|
1130
|
+
"description": "Update a group (rename or recolor)",
|
|
1126
1131
|
"examples": [
|
|
1127
|
-
"<%= config.bin %>
|
|
1128
|
-
"<%= config.bin %>
|
|
1132
|
+
"<%= config.bin %> groups update Backend --name \"Backend services\"",
|
|
1133
|
+
"<%= config.bin %> groups update Backend --color indigo"
|
|
1129
1134
|
],
|
|
1130
1135
|
"flags": {
|
|
1131
1136
|
"json": {
|
|
@@ -1135,10 +1140,9 @@
|
|
|
1135
1140
|
"allowNo": false,
|
|
1136
1141
|
"type": "boolean"
|
|
1137
1142
|
},
|
|
1138
|
-
"
|
|
1139
|
-
"description": "
|
|
1140
|
-
"name": "
|
|
1141
|
-
"required": true,
|
|
1143
|
+
"name": {
|
|
1144
|
+
"description": "New name",
|
|
1145
|
+
"name": "name",
|
|
1142
1146
|
"hasDynamicHelp": false,
|
|
1143
1147
|
"multiple": false,
|
|
1144
1148
|
"type": "option"
|
|
@@ -1146,28 +1150,14 @@
|
|
|
1146
1150
|
"color": {
|
|
1147
1151
|
"description": "Color label",
|
|
1148
1152
|
"name": "color",
|
|
1149
|
-
"default": "emerald",
|
|
1150
|
-
"hasDynamicHelp": false,
|
|
1151
|
-
"multiple": false,
|
|
1152
|
-
"type": "option"
|
|
1153
|
-
},
|
|
1154
|
-
"position": {
|
|
1155
|
-
"description": "Sort position",
|
|
1156
|
-
"name": "position",
|
|
1157
1153
|
"hasDynamicHelp": false,
|
|
1158
1154
|
"multiple": false,
|
|
1159
1155
|
"type": "option"
|
|
1160
|
-
},
|
|
1161
|
-
"active": {
|
|
1162
|
-
"description": "Whether the environment is active",
|
|
1163
|
-
"name": "active",
|
|
1164
|
-
"allowNo": true,
|
|
1165
|
-
"type": "boolean"
|
|
1166
1156
|
}
|
|
1167
1157
|
},
|
|
1168
1158
|
"hasDynamicHelp": false,
|
|
1169
1159
|
"hiddenAliases": [],
|
|
1170
|
-
"id": "
|
|
1160
|
+
"id": "groups:update",
|
|
1171
1161
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1172
1162
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1173
1163
|
"pluginType": "core",
|
|
@@ -1177,22 +1167,23 @@
|
|
|
1177
1167
|
"relativePath": [
|
|
1178
1168
|
"dist",
|
|
1179
1169
|
"commands",
|
|
1180
|
-
"
|
|
1181
|
-
"
|
|
1170
|
+
"groups",
|
|
1171
|
+
"update.js"
|
|
1182
1172
|
]
|
|
1183
1173
|
},
|
|
1184
|
-
"
|
|
1174
|
+
"invitations:create": {
|
|
1185
1175
|
"aliases": [],
|
|
1186
1176
|
"args": {
|
|
1187
|
-
"
|
|
1188
|
-
"description": "
|
|
1189
|
-
"name": "
|
|
1177
|
+
"email": {
|
|
1178
|
+
"description": "Email address to invite",
|
|
1179
|
+
"name": "email",
|
|
1190
1180
|
"required": true
|
|
1191
1181
|
}
|
|
1192
1182
|
},
|
|
1193
|
-
"description": "
|
|
1183
|
+
"description": "Invite a person to the organization. Prints the acceptance link (shown only once).",
|
|
1194
1184
|
"examples": [
|
|
1195
|
-
"<%= config.bin %>
|
|
1185
|
+
"<%= config.bin %> invitations create client@acme.com",
|
|
1186
|
+
"<%= config.bin %> invitations create teammate@acme.com --role member"
|
|
1196
1187
|
],
|
|
1197
1188
|
"flags": {
|
|
1198
1189
|
"json": {
|
|
@@ -1202,16 +1193,23 @@
|
|
|
1202
1193
|
"allowNo": false,
|
|
1203
1194
|
"type": "boolean"
|
|
1204
1195
|
},
|
|
1205
|
-
"
|
|
1206
|
-
"description": "
|
|
1207
|
-
"name": "
|
|
1208
|
-
"
|
|
1209
|
-
"
|
|
1196
|
+
"role": {
|
|
1197
|
+
"description": "Membership role",
|
|
1198
|
+
"name": "role",
|
|
1199
|
+
"default": "customer",
|
|
1200
|
+
"hasDynamicHelp": false,
|
|
1201
|
+
"multiple": false,
|
|
1202
|
+
"options": [
|
|
1203
|
+
"customer",
|
|
1204
|
+
"member",
|
|
1205
|
+
"admin"
|
|
1206
|
+
],
|
|
1207
|
+
"type": "option"
|
|
1210
1208
|
}
|
|
1211
1209
|
},
|
|
1212
1210
|
"hasDynamicHelp": false,
|
|
1213
1211
|
"hiddenAliases": [],
|
|
1214
|
-
"id": "
|
|
1212
|
+
"id": "invitations:create",
|
|
1215
1213
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1216
1214
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1217
1215
|
"pluginType": "core",
|
|
@@ -1221,17 +1219,17 @@
|
|
|
1221
1219
|
"relativePath": [
|
|
1222
1220
|
"dist",
|
|
1223
1221
|
"commands",
|
|
1224
|
-
"
|
|
1225
|
-
"
|
|
1222
|
+
"invitations",
|
|
1223
|
+
"create.js"
|
|
1226
1224
|
]
|
|
1227
1225
|
},
|
|
1228
|
-
"
|
|
1226
|
+
"invitations:list": {
|
|
1229
1227
|
"aliases": [],
|
|
1230
1228
|
"args": {},
|
|
1231
|
-
"description": "List the
|
|
1229
|
+
"description": "List the pending/accepted invitations of your organization",
|
|
1232
1230
|
"examples": [
|
|
1233
|
-
"<%= config.bin %>
|
|
1234
|
-
"<%= config.bin %>
|
|
1231
|
+
"<%= config.bin %> invitations list",
|
|
1232
|
+
"<%= config.bin %> invitations list --json"
|
|
1235
1233
|
],
|
|
1236
1234
|
"flags": {
|
|
1237
1235
|
"json": {
|
|
@@ -1252,7 +1250,7 @@
|
|
|
1252
1250
|
},
|
|
1253
1251
|
"hasDynamicHelp": false,
|
|
1254
1252
|
"hiddenAliases": [],
|
|
1255
|
-
"id": "
|
|
1253
|
+
"id": "invitations:list",
|
|
1256
1254
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1257
1255
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1258
1256
|
"pluginType": "core",
|
|
@@ -1262,24 +1260,94 @@
|
|
|
1262
1260
|
"relativePath": [
|
|
1263
1261
|
"dist",
|
|
1264
1262
|
"commands",
|
|
1265
|
-
"
|
|
1263
|
+
"invitations",
|
|
1266
1264
|
"list.js"
|
|
1267
1265
|
]
|
|
1268
1266
|
},
|
|
1269
|
-
"
|
|
1267
|
+
"invitations:resend": {
|
|
1270
1268
|
"aliases": [],
|
|
1271
1269
|
"args": {
|
|
1272
|
-
"
|
|
1273
|
-
"description": "
|
|
1274
|
-
"name": "
|
|
1270
|
+
"id": {
|
|
1271
|
+
"description": "Invitation id (UUID)",
|
|
1272
|
+
"name": "id",
|
|
1275
1273
|
"required": true
|
|
1276
1274
|
}
|
|
1277
1275
|
},
|
|
1278
|
-
"description": "
|
|
1276
|
+
"description": "Resend a pending invitation. Prints the acceptance link (shown only once).",
|
|
1279
1277
|
"examples": [
|
|
1280
|
-
"<%= config.bin %>
|
|
1281
|
-
|
|
1282
|
-
|
|
1278
|
+
"<%= config.bin %> invitations resend <invitation-uuid>"
|
|
1279
|
+
],
|
|
1280
|
+
"flags": {
|
|
1281
|
+
"json": {
|
|
1282
|
+
"description": "Format output as json.",
|
|
1283
|
+
"helpGroup": "GLOBAL",
|
|
1284
|
+
"name": "json",
|
|
1285
|
+
"allowNo": false,
|
|
1286
|
+
"type": "boolean"
|
|
1287
|
+
}
|
|
1288
|
+
},
|
|
1289
|
+
"hasDynamicHelp": false,
|
|
1290
|
+
"hiddenAliases": [],
|
|
1291
|
+
"id": "invitations:resend",
|
|
1292
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1293
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1294
|
+
"pluginType": "core",
|
|
1295
|
+
"strict": true,
|
|
1296
|
+
"enableJsonFlag": true,
|
|
1297
|
+
"isESM": false,
|
|
1298
|
+
"relativePath": [
|
|
1299
|
+
"dist",
|
|
1300
|
+
"commands",
|
|
1301
|
+
"invitations",
|
|
1302
|
+
"resend.js"
|
|
1303
|
+
]
|
|
1304
|
+
},
|
|
1305
|
+
"invitations:revoke": {
|
|
1306
|
+
"aliases": [],
|
|
1307
|
+
"args": {
|
|
1308
|
+
"id": {
|
|
1309
|
+
"description": "Invitation id (UUID)",
|
|
1310
|
+
"name": "id",
|
|
1311
|
+
"required": true
|
|
1312
|
+
}
|
|
1313
|
+
},
|
|
1314
|
+
"description": "Revoke a pending invitation",
|
|
1315
|
+
"examples": [
|
|
1316
|
+
"<%= config.bin %> invitations revoke <invitation-uuid>"
|
|
1317
|
+
],
|
|
1318
|
+
"flags": {
|
|
1319
|
+
"json": {
|
|
1320
|
+
"description": "Format output as json.",
|
|
1321
|
+
"helpGroup": "GLOBAL",
|
|
1322
|
+
"name": "json",
|
|
1323
|
+
"allowNo": false,
|
|
1324
|
+
"type": "boolean"
|
|
1325
|
+
}
|
|
1326
|
+
},
|
|
1327
|
+
"hasDynamicHelp": false,
|
|
1328
|
+
"hiddenAliases": [],
|
|
1329
|
+
"id": "invitations:revoke",
|
|
1330
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1331
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1332
|
+
"pluginType": "core",
|
|
1333
|
+
"strict": true,
|
|
1334
|
+
"enableJsonFlag": true,
|
|
1335
|
+
"isESM": false,
|
|
1336
|
+
"relativePath": [
|
|
1337
|
+
"dist",
|
|
1338
|
+
"commands",
|
|
1339
|
+
"invitations",
|
|
1340
|
+
"revoke.js"
|
|
1341
|
+
]
|
|
1342
|
+
},
|
|
1343
|
+
"logs:list": {
|
|
1344
|
+
"aliases": [],
|
|
1345
|
+
"args": {},
|
|
1346
|
+
"description": "List structured log entries (cross-app stream)",
|
|
1347
|
+
"examples": [
|
|
1348
|
+
"<%= config.bin %> logs list",
|
|
1349
|
+
"<%= config.bin %> logs list --project acme-api --level error",
|
|
1350
|
+
"<%= config.bin %> logs list --trace-id 7f3c… --json"
|
|
1283
1351
|
],
|
|
1284
1352
|
"flags": {
|
|
1285
1353
|
"json": {
|
|
@@ -1289,44 +1357,47 @@
|
|
|
1289
1357
|
"allowNo": false,
|
|
1290
1358
|
"type": "boolean"
|
|
1291
1359
|
},
|
|
1292
|
-
"
|
|
1293
|
-
"
|
|
1294
|
-
"
|
|
1360
|
+
"project": {
|
|
1361
|
+
"char": "p",
|
|
1362
|
+
"description": "Filter by project id (UUID) or key",
|
|
1363
|
+
"name": "project",
|
|
1295
1364
|
"hasDynamicHelp": false,
|
|
1296
1365
|
"multiple": false,
|
|
1297
1366
|
"type": "option"
|
|
1298
1367
|
},
|
|
1299
|
-
"
|
|
1300
|
-
"description": "
|
|
1301
|
-
"name": "
|
|
1368
|
+
"level": {
|
|
1369
|
+
"description": "Filter by level (debug, info, warning, error, fatal)",
|
|
1370
|
+
"name": "level",
|
|
1302
1371
|
"hasDynamicHelp": false,
|
|
1303
1372
|
"multiple": false,
|
|
1304
1373
|
"type": "option"
|
|
1305
1374
|
},
|
|
1306
|
-
"
|
|
1307
|
-
"description": "
|
|
1308
|
-
"name": "
|
|
1375
|
+
"trace-id": {
|
|
1376
|
+
"description": "Filter by trace id (correlate one request)",
|
|
1377
|
+
"name": "trace-id",
|
|
1309
1378
|
"hasDynamicHelp": false,
|
|
1310
1379
|
"multiple": false,
|
|
1311
1380
|
"type": "option"
|
|
1312
1381
|
},
|
|
1313
|
-
"
|
|
1314
|
-
"description": "
|
|
1315
|
-
"name": "
|
|
1382
|
+
"environment": {
|
|
1383
|
+
"description": "Filter by environment (e.g. production)",
|
|
1384
|
+
"name": "environment",
|
|
1316
1385
|
"hasDynamicHelp": false,
|
|
1317
1386
|
"multiple": false,
|
|
1318
1387
|
"type": "option"
|
|
1319
1388
|
},
|
|
1320
|
-
"
|
|
1321
|
-
"description": "
|
|
1322
|
-
"name": "
|
|
1323
|
-
"
|
|
1324
|
-
"
|
|
1389
|
+
"page": {
|
|
1390
|
+
"description": "Page number",
|
|
1391
|
+
"name": "page",
|
|
1392
|
+
"default": 1,
|
|
1393
|
+
"hasDynamicHelp": false,
|
|
1394
|
+
"multiple": false,
|
|
1395
|
+
"type": "option"
|
|
1325
1396
|
}
|
|
1326
1397
|
},
|
|
1327
1398
|
"hasDynamicHelp": false,
|
|
1328
1399
|
"hiddenAliases": [],
|
|
1329
|
-
"id": "
|
|
1400
|
+
"id": "logs:list",
|
|
1330
1401
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1331
1402
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1332
1403
|
"pluginType": "core",
|
|
@@ -1336,17 +1407,17 @@
|
|
|
1336
1407
|
"relativePath": [
|
|
1337
1408
|
"dist",
|
|
1338
1409
|
"commands",
|
|
1339
|
-
"
|
|
1340
|
-
"
|
|
1410
|
+
"logs",
|
|
1411
|
+
"list.js"
|
|
1341
1412
|
]
|
|
1342
1413
|
},
|
|
1343
|
-
"
|
|
1414
|
+
"members:list": {
|
|
1344
1415
|
"aliases": [],
|
|
1345
1416
|
"args": {},
|
|
1346
|
-
"description": "List
|
|
1417
|
+
"description": "List the members of your organization (to resolve emails to account ids)",
|
|
1347
1418
|
"examples": [
|
|
1348
|
-
"<%= config.bin %>
|
|
1349
|
-
"<%= config.bin %>
|
|
1419
|
+
"<%= config.bin %> members list",
|
|
1420
|
+
"<%= config.bin %> members list --json"
|
|
1350
1421
|
],
|
|
1351
1422
|
"flags": {
|
|
1352
1423
|
"json": {
|
|
@@ -1356,15 +1427,6 @@
|
|
|
1356
1427
|
"allowNo": false,
|
|
1357
1428
|
"type": "boolean"
|
|
1358
1429
|
},
|
|
1359
|
-
"project": {
|
|
1360
|
-
"char": "p",
|
|
1361
|
-
"description": "Project id (UUID) or key",
|
|
1362
|
-
"name": "project",
|
|
1363
|
-
"required": true,
|
|
1364
|
-
"hasDynamicHelp": false,
|
|
1365
|
-
"multiple": false,
|
|
1366
|
-
"type": "option"
|
|
1367
|
-
},
|
|
1368
1430
|
"page": {
|
|
1369
1431
|
"description": "Page number",
|
|
1370
1432
|
"name": "page",
|
|
@@ -1372,18 +1434,11 @@
|
|
|
1372
1434
|
"hasDynamicHelp": false,
|
|
1373
1435
|
"multiple": false,
|
|
1374
1436
|
"type": "option"
|
|
1375
|
-
},
|
|
1376
|
-
"kind": {
|
|
1377
|
-
"description": "Filter by metric kind (e.g. sql, method)",
|
|
1378
|
-
"name": "kind",
|
|
1379
|
-
"hasDynamicHelp": false,
|
|
1380
|
-
"multiple": false,
|
|
1381
|
-
"type": "option"
|
|
1382
1437
|
}
|
|
1383
1438
|
},
|
|
1384
1439
|
"hasDynamicHelp": false,
|
|
1385
1440
|
"hiddenAliases": [],
|
|
1386
|
-
"id": "
|
|
1441
|
+
"id": "members:list",
|
|
1387
1442
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1388
1443
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1389
1444
|
"pluginType": "core",
|
|
@@ -1393,22 +1448,24 @@
|
|
|
1393
1448
|
"relativePath": [
|
|
1394
1449
|
"dist",
|
|
1395
1450
|
"commands",
|
|
1396
|
-
"
|
|
1451
|
+
"members",
|
|
1397
1452
|
"list.js"
|
|
1398
1453
|
]
|
|
1399
1454
|
},
|
|
1400
|
-
"
|
|
1455
|
+
"members:set-access": {
|
|
1401
1456
|
"aliases": [],
|
|
1402
1457
|
"args": {
|
|
1403
1458
|
"id": {
|
|
1404
|
-
"description": "
|
|
1459
|
+
"description": "Membership id",
|
|
1405
1460
|
"name": "id",
|
|
1406
1461
|
"required": true
|
|
1407
1462
|
}
|
|
1408
1463
|
},
|
|
1409
|
-
"description": "
|
|
1464
|
+
"description": "Set a member's group and project access (replaces the current set; omit a flag to clear it)",
|
|
1410
1465
|
"examples": [
|
|
1411
|
-
"<%= config.bin %>
|
|
1466
|
+
"<%= config.bin %> members set-access <membership-id> --project acme-api --project acme-web",
|
|
1467
|
+
"<%= config.bin %> members set-access <membership-id> --group DriverOne",
|
|
1468
|
+
"<%= config.bin %> members set-access <membership-id>"
|
|
1412
1469
|
],
|
|
1413
1470
|
"flags": {
|
|
1414
1471
|
"json": {
|
|
@@ -1418,19 +1475,26 @@
|
|
|
1418
1475
|
"allowNo": false,
|
|
1419
1476
|
"type": "boolean"
|
|
1420
1477
|
},
|
|
1478
|
+
"group": {
|
|
1479
|
+
"description": "Group id or name to grant access to (repeatable; omit to clear group access)",
|
|
1480
|
+
"name": "group",
|
|
1481
|
+
"default": [],
|
|
1482
|
+
"hasDynamicHelp": false,
|
|
1483
|
+
"multiple": true,
|
|
1484
|
+
"type": "option"
|
|
1485
|
+
},
|
|
1421
1486
|
"project": {
|
|
1422
|
-
"
|
|
1423
|
-
"description": "Project id (UUID) or key",
|
|
1487
|
+
"description": "Project id or key to grant access to (repeatable; omit to clear project access)",
|
|
1424
1488
|
"name": "project",
|
|
1425
|
-
"
|
|
1489
|
+
"default": [],
|
|
1426
1490
|
"hasDynamicHelp": false,
|
|
1427
|
-
"multiple":
|
|
1491
|
+
"multiple": true,
|
|
1428
1492
|
"type": "option"
|
|
1429
1493
|
}
|
|
1430
1494
|
},
|
|
1431
1495
|
"hasDynamicHelp": false,
|
|
1432
1496
|
"hiddenAliases": [],
|
|
1433
|
-
"id": "
|
|
1497
|
+
"id": "members:set-access",
|
|
1434
1498
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1435
1499
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1436
1500
|
"pluginType": "core",
|
|
@@ -1440,22 +1504,23 @@
|
|
|
1440
1504
|
"relativePath": [
|
|
1441
1505
|
"dist",
|
|
1442
1506
|
"commands",
|
|
1443
|
-
"
|
|
1444
|
-
"
|
|
1507
|
+
"members",
|
|
1508
|
+
"set-access.js"
|
|
1445
1509
|
]
|
|
1446
1510
|
},
|
|
1447
|
-
"
|
|
1511
|
+
"members:set-role": {
|
|
1448
1512
|
"aliases": [],
|
|
1449
1513
|
"args": {
|
|
1450
1514
|
"id": {
|
|
1451
|
-
"description": "
|
|
1515
|
+
"description": "Membership id",
|
|
1452
1516
|
"name": "id",
|
|
1453
1517
|
"required": true
|
|
1454
1518
|
}
|
|
1455
1519
|
},
|
|
1456
|
-
"description": "
|
|
1520
|
+
"description": "Change a member's organization role",
|
|
1457
1521
|
"examples": [
|
|
1458
|
-
"<%= config.bin %>
|
|
1522
|
+
"<%= config.bin %> members set-role <membership-id> --role admin",
|
|
1523
|
+
"<%= config.bin %> members set-role <membership-id> --role customer"
|
|
1459
1524
|
],
|
|
1460
1525
|
"flags": {
|
|
1461
1526
|
"json": {
|
|
@@ -1465,19 +1530,24 @@
|
|
|
1465
1530
|
"allowNo": false,
|
|
1466
1531
|
"type": "boolean"
|
|
1467
1532
|
},
|
|
1468
|
-
"
|
|
1469
|
-
"
|
|
1470
|
-
"
|
|
1471
|
-
"name": "project",
|
|
1533
|
+
"role": {
|
|
1534
|
+
"description": "Organization role",
|
|
1535
|
+
"name": "role",
|
|
1472
1536
|
"required": true,
|
|
1473
1537
|
"hasDynamicHelp": false,
|
|
1474
1538
|
"multiple": false,
|
|
1539
|
+
"options": [
|
|
1540
|
+
"member",
|
|
1541
|
+
"admin",
|
|
1542
|
+
"owner",
|
|
1543
|
+
"customer"
|
|
1544
|
+
],
|
|
1475
1545
|
"type": "option"
|
|
1476
1546
|
}
|
|
1477
1547
|
},
|
|
1478
1548
|
"hasDynamicHelp": false,
|
|
1479
1549
|
"hiddenAliases": [],
|
|
1480
|
-
"id": "
|
|
1550
|
+
"id": "members:set-role",
|
|
1481
1551
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1482
1552
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1483
1553
|
"pluginType": "core",
|
|
@@ -1487,17 +1557,17 @@
|
|
|
1487
1557
|
"relativePath": [
|
|
1488
1558
|
"dist",
|
|
1489
1559
|
"commands",
|
|
1490
|
-
"
|
|
1491
|
-
"
|
|
1560
|
+
"members",
|
|
1561
|
+
"set-role.js"
|
|
1492
1562
|
]
|
|
1493
1563
|
},
|
|
1494
|
-
"
|
|
1564
|
+
"metrics:list": {
|
|
1495
1565
|
"aliases": [],
|
|
1496
1566
|
"args": {},
|
|
1497
|
-
"description": "
|
|
1567
|
+
"description": "List performance metric groups (slow queries/methods) for a project",
|
|
1498
1568
|
"examples": [
|
|
1499
|
-
"<%= config.bin %>
|
|
1500
|
-
"<%= config.bin %>
|
|
1569
|
+
"<%= config.bin %> metrics list --project acme-api",
|
|
1570
|
+
"<%= config.bin %> metrics list -p acme-api --kind sql --json"
|
|
1501
1571
|
],
|
|
1502
1572
|
"flags": {
|
|
1503
1573
|
"json": {
|
|
@@ -1516,46 +1586,25 @@
|
|
|
1516
1586
|
"multiple": false,
|
|
1517
1587
|
"type": "option"
|
|
1518
1588
|
},
|
|
1519
|
-
"
|
|
1520
|
-
"description": "
|
|
1521
|
-
"name": "
|
|
1522
|
-
"
|
|
1523
|
-
"hasDynamicHelp": false,
|
|
1524
|
-
"multiple": false,
|
|
1525
|
-
"type": "option"
|
|
1526
|
-
},
|
|
1527
|
-
"label": {
|
|
1528
|
-
"description": "Human-readable label",
|
|
1529
|
-
"name": "label",
|
|
1530
|
-
"required": true,
|
|
1531
|
-
"hasDynamicHelp": false,
|
|
1532
|
-
"multiple": false,
|
|
1533
|
-
"type": "option"
|
|
1534
|
-
},
|
|
1535
|
-
"color": {
|
|
1536
|
-
"description": "Color label",
|
|
1537
|
-
"name": "color",
|
|
1589
|
+
"page": {
|
|
1590
|
+
"description": "Page number",
|
|
1591
|
+
"name": "page",
|
|
1592
|
+
"default": 1,
|
|
1538
1593
|
"hasDynamicHelp": false,
|
|
1539
1594
|
"multiple": false,
|
|
1540
1595
|
"type": "option"
|
|
1541
1596
|
},
|
|
1542
|
-
"
|
|
1543
|
-
"description": "
|
|
1544
|
-
"name": "
|
|
1597
|
+
"kind": {
|
|
1598
|
+
"description": "Filter by metric kind (e.g. sql, method)",
|
|
1599
|
+
"name": "kind",
|
|
1545
1600
|
"hasDynamicHelp": false,
|
|
1546
1601
|
"multiple": false,
|
|
1547
1602
|
"type": "option"
|
|
1548
|
-
},
|
|
1549
|
-
"active": {
|
|
1550
|
-
"description": "Whether the milestone is active",
|
|
1551
|
-
"name": "active",
|
|
1552
|
-
"allowNo": true,
|
|
1553
|
-
"type": "boolean"
|
|
1554
1603
|
}
|
|
1555
1604
|
},
|
|
1556
1605
|
"hasDynamicHelp": false,
|
|
1557
1606
|
"hiddenAliases": [],
|
|
1558
|
-
"id": "
|
|
1607
|
+
"id": "metrics:list",
|
|
1559
1608
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1560
1609
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1561
1610
|
"pluginType": "core",
|
|
@@ -1565,70 +1614,22 @@
|
|
|
1565
1614
|
"relativePath": [
|
|
1566
1615
|
"dist",
|
|
1567
1616
|
"commands",
|
|
1568
|
-
"
|
|
1569
|
-
"
|
|
1617
|
+
"metrics",
|
|
1618
|
+
"list.js"
|
|
1570
1619
|
]
|
|
1571
1620
|
},
|
|
1572
|
-
"
|
|
1621
|
+
"metrics:promote": {
|
|
1573
1622
|
"aliases": [],
|
|
1574
1623
|
"args": {
|
|
1575
1624
|
"id": {
|
|
1576
|
-
"description": "
|
|
1625
|
+
"description": "Metric group id",
|
|
1577
1626
|
"name": "id",
|
|
1578
1627
|
"required": true
|
|
1579
1628
|
}
|
|
1580
1629
|
},
|
|
1581
|
-
"description": "
|
|
1582
|
-
"examples": [
|
|
1583
|
-
"<%= config.bin %> milestones delete <milestone-id> --project acme-api --confirm"
|
|
1584
|
-
],
|
|
1585
|
-
"flags": {
|
|
1586
|
-
"json": {
|
|
1587
|
-
"description": "Format output as json.",
|
|
1588
|
-
"helpGroup": "GLOBAL",
|
|
1589
|
-
"name": "json",
|
|
1590
|
-
"allowNo": false,
|
|
1591
|
-
"type": "boolean"
|
|
1592
|
-
},
|
|
1593
|
-
"project": {
|
|
1594
|
-
"char": "p",
|
|
1595
|
-
"description": "Project id (UUID) or key",
|
|
1596
|
-
"name": "project",
|
|
1597
|
-
"required": true,
|
|
1598
|
-
"hasDynamicHelp": false,
|
|
1599
|
-
"multiple": false,
|
|
1600
|
-
"type": "option"
|
|
1601
|
-
},
|
|
1602
|
-
"confirm": {
|
|
1603
|
-
"description": "Required: confirm the deletion",
|
|
1604
|
-
"name": "confirm",
|
|
1605
|
-
"allowNo": false,
|
|
1606
|
-
"type": "boolean"
|
|
1607
|
-
}
|
|
1608
|
-
},
|
|
1609
|
-
"hasDynamicHelp": false,
|
|
1610
|
-
"hiddenAliases": [],
|
|
1611
|
-
"id": "milestones:delete",
|
|
1612
|
-
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1613
|
-
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1614
|
-
"pluginType": "core",
|
|
1615
|
-
"strict": true,
|
|
1616
|
-
"enableJsonFlag": true,
|
|
1617
|
-
"isESM": false,
|
|
1618
|
-
"relativePath": [
|
|
1619
|
-
"dist",
|
|
1620
|
-
"commands",
|
|
1621
|
-
"milestones",
|
|
1622
|
-
"delete.js"
|
|
1623
|
-
]
|
|
1624
|
-
},
|
|
1625
|
-
"milestones:list": {
|
|
1626
|
-
"aliases": [],
|
|
1627
|
-
"args": {},
|
|
1628
|
-
"description": "List the milestones for a project",
|
|
1630
|
+
"description": "Promote a metric group (slow query/method) to a ticket",
|
|
1629
1631
|
"examples": [
|
|
1630
|
-
"<%= config.bin %>
|
|
1631
|
-
"<%= config.bin %> milestones list -p acme-api --json"
|
|
1632
|
+
"<%= config.bin %> metrics promote <group-id> --project acme-api"
|
|
1632
1633
|
],
|
|
1633
1634
|
"flags": {
|
|
1634
1635
|
"json": {
|
|
@@ -1646,19 +1647,11 @@
|
|
|
1646
1647
|
"hasDynamicHelp": false,
|
|
1647
1648
|
"multiple": false,
|
|
1648
1649
|
"type": "option"
|
|
1649
|
-
},
|
|
1650
|
-
"page": {
|
|
1651
|
-
"description": "Page number",
|
|
1652
|
-
"name": "page",
|
|
1653
|
-
"default": 1,
|
|
1654
|
-
"hasDynamicHelp": false,
|
|
1655
|
-
"multiple": false,
|
|
1656
|
-
"type": "option"
|
|
1657
1650
|
}
|
|
1658
1651
|
},
|
|
1659
1652
|
"hasDynamicHelp": false,
|
|
1660
1653
|
"hiddenAliases": [],
|
|
1661
|
-
"id": "
|
|
1654
|
+
"id": "metrics:promote",
|
|
1662
1655
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1663
1656
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1664
1657
|
"pluginType": "core",
|
|
@@ -1668,22 +1661,22 @@
|
|
|
1668
1661
|
"relativePath": [
|
|
1669
1662
|
"dist",
|
|
1670
1663
|
"commands",
|
|
1671
|
-
"
|
|
1672
|
-
"
|
|
1664
|
+
"metrics",
|
|
1665
|
+
"promote.js"
|
|
1673
1666
|
]
|
|
1674
1667
|
},
|
|
1675
|
-
"
|
|
1668
|
+
"metrics:show": {
|
|
1676
1669
|
"aliases": [],
|
|
1677
1670
|
"args": {
|
|
1678
1671
|
"id": {
|
|
1679
|
-
"description": "
|
|
1672
|
+
"description": "Metric group id",
|
|
1680
1673
|
"name": "id",
|
|
1681
1674
|
"required": true
|
|
1682
1675
|
}
|
|
1683
1676
|
},
|
|
1684
|
-
"description": "Show a single
|
|
1677
|
+
"description": "Show a single metric group",
|
|
1685
1678
|
"examples": [
|
|
1686
|
-
"<%= config.bin %>
|
|
1679
|
+
"<%= config.bin %> metrics show <group-id> --project acme-api"
|
|
1687
1680
|
],
|
|
1688
1681
|
"flags": {
|
|
1689
1682
|
"json": {
|
|
@@ -1705,7 +1698,7 @@
|
|
|
1705
1698
|
},
|
|
1706
1699
|
"hasDynamicHelp": false,
|
|
1707
1700
|
"hiddenAliases": [],
|
|
1708
|
-
"id": "
|
|
1701
|
+
"id": "metrics:show",
|
|
1709
1702
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1710
1703
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1711
1704
|
"pluginType": "core",
|
|
@@ -1715,23 +1708,17 @@
|
|
|
1715
1708
|
"relativePath": [
|
|
1716
1709
|
"dist",
|
|
1717
1710
|
"commands",
|
|
1718
|
-
"
|
|
1711
|
+
"metrics",
|
|
1719
1712
|
"show.js"
|
|
1720
1713
|
]
|
|
1721
1714
|
},
|
|
1722
|
-
"milestones:
|
|
1715
|
+
"milestones:create": {
|
|
1723
1716
|
"aliases": [],
|
|
1724
|
-
"args": {
|
|
1725
|
-
|
|
1726
|
-
"description": "Milestone id",
|
|
1727
|
-
"name": "id",
|
|
1728
|
-
"required": true
|
|
1729
|
-
}
|
|
1730
|
-
},
|
|
1731
|
-
"description": "Update a milestone (send only the fields you want to change)",
|
|
1717
|
+
"args": {},
|
|
1718
|
+
"description": "Create a milestone for a project",
|
|
1732
1719
|
"examples": [
|
|
1733
|
-
"<%= config.bin %> milestones
|
|
1734
|
-
"<%= config.bin %> milestones
|
|
1720
|
+
"<%= config.bin %> milestones create --project acme-api --code v1 --label \"Version 1.0\"",
|
|
1721
|
+
"<%= config.bin %> milestones create -p acme-api --code v1 --label \"Version 1.0\" --due-on 2026-12-31"
|
|
1735
1722
|
],
|
|
1736
1723
|
"flags": {
|
|
1737
1724
|
"json": {
|
|
@@ -1753,6 +1740,7 @@
|
|
|
1753
1740
|
"code": {
|
|
1754
1741
|
"description": "Milestone code (short identifier)",
|
|
1755
1742
|
"name": "code",
|
|
1743
|
+
"required": true,
|
|
1756
1744
|
"hasDynamicHelp": false,
|
|
1757
1745
|
"multiple": false,
|
|
1758
1746
|
"type": "option"
|
|
@@ -1760,6 +1748,7 @@
|
|
|
1760
1748
|
"label": {
|
|
1761
1749
|
"description": "Human-readable label",
|
|
1762
1750
|
"name": "label",
|
|
1751
|
+
"required": true,
|
|
1763
1752
|
"hasDynamicHelp": false,
|
|
1764
1753
|
"multiple": false,
|
|
1765
1754
|
"type": "option"
|
|
@@ -1787,7 +1776,7 @@
|
|
|
1787
1776
|
},
|
|
1788
1777
|
"hasDynamicHelp": false,
|
|
1789
1778
|
"hiddenAliases": [],
|
|
1790
|
-
"id": "milestones:
|
|
1779
|
+
"id": "milestones:create",
|
|
1791
1780
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1792
1781
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1793
1782
|
"pluginType": "core",
|
|
@@ -1798,16 +1787,21 @@
|
|
|
1798
1787
|
"dist",
|
|
1799
1788
|
"commands",
|
|
1800
1789
|
"milestones",
|
|
1801
|
-
"
|
|
1790
|
+
"create.js"
|
|
1802
1791
|
]
|
|
1803
1792
|
},
|
|
1804
|
-
"
|
|
1793
|
+
"milestones:delete": {
|
|
1805
1794
|
"aliases": [],
|
|
1806
|
-
"args": {
|
|
1807
|
-
|
|
1795
|
+
"args": {
|
|
1796
|
+
"id": {
|
|
1797
|
+
"description": "Milestone id",
|
|
1798
|
+
"name": "id",
|
|
1799
|
+
"required": true
|
|
1800
|
+
}
|
|
1801
|
+
},
|
|
1802
|
+
"description": "Delete a milestone (irreversible)",
|
|
1808
1803
|
"examples": [
|
|
1809
|
-
"<%= config.bin %>
|
|
1810
|
-
"<%= config.bin %> members list --json"
|
|
1804
|
+
"<%= config.bin %> milestones delete <milestone-id> --project acme-api --confirm"
|
|
1811
1805
|
],
|
|
1812
1806
|
"flags": {
|
|
1813
1807
|
"json": {
|
|
@@ -1817,18 +1811,25 @@
|
|
|
1817
1811
|
"allowNo": false,
|
|
1818
1812
|
"type": "boolean"
|
|
1819
1813
|
},
|
|
1820
|
-
"
|
|
1821
|
-
"
|
|
1822
|
-
"
|
|
1823
|
-
"
|
|
1814
|
+
"project": {
|
|
1815
|
+
"char": "p",
|
|
1816
|
+
"description": "Project id (UUID) or key",
|
|
1817
|
+
"name": "project",
|
|
1818
|
+
"required": true,
|
|
1824
1819
|
"hasDynamicHelp": false,
|
|
1825
1820
|
"multiple": false,
|
|
1826
1821
|
"type": "option"
|
|
1822
|
+
},
|
|
1823
|
+
"confirm": {
|
|
1824
|
+
"description": "Required: confirm the deletion",
|
|
1825
|
+
"name": "confirm",
|
|
1826
|
+
"allowNo": false,
|
|
1827
|
+
"type": "boolean"
|
|
1827
1828
|
}
|
|
1828
1829
|
},
|
|
1829
1830
|
"hasDynamicHelp": false,
|
|
1830
1831
|
"hiddenAliases": [],
|
|
1831
|
-
"id": "
|
|
1832
|
+
"id": "milestones:delete",
|
|
1832
1833
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1833
1834
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1834
1835
|
"pluginType": "core",
|
|
@@ -1838,24 +1839,17 @@
|
|
|
1838
1839
|
"relativePath": [
|
|
1839
1840
|
"dist",
|
|
1840
1841
|
"commands",
|
|
1841
|
-
"
|
|
1842
|
-
"
|
|
1842
|
+
"milestones",
|
|
1843
|
+
"delete.js"
|
|
1843
1844
|
]
|
|
1844
1845
|
},
|
|
1845
|
-
"
|
|
1846
|
+
"milestones:list": {
|
|
1846
1847
|
"aliases": [],
|
|
1847
|
-
"args": {
|
|
1848
|
-
|
|
1849
|
-
"description": "Membership id",
|
|
1850
|
-
"name": "id",
|
|
1851
|
-
"required": true
|
|
1852
|
-
}
|
|
1853
|
-
},
|
|
1854
|
-
"description": "Set a member's group and project access (replaces the current set; omit a flag to clear it)",
|
|
1848
|
+
"args": {},
|
|
1849
|
+
"description": "List the milestones for a project",
|
|
1855
1850
|
"examples": [
|
|
1856
|
-
"<%= config.bin %>
|
|
1857
|
-
"<%= config.bin %>
|
|
1858
|
-
"<%= config.bin %> members set-access <membership-id>"
|
|
1851
|
+
"<%= config.bin %> milestones list --project acme-api",
|
|
1852
|
+
"<%= config.bin %> milestones list -p acme-api --json"
|
|
1859
1853
|
],
|
|
1860
1854
|
"flags": {
|
|
1861
1855
|
"json": {
|
|
@@ -1865,26 +1859,27 @@
|
|
|
1865
1859
|
"allowNo": false,
|
|
1866
1860
|
"type": "boolean"
|
|
1867
1861
|
},
|
|
1868
|
-
"
|
|
1869
|
-
"
|
|
1870
|
-
"
|
|
1871
|
-
"
|
|
1862
|
+
"project": {
|
|
1863
|
+
"char": "p",
|
|
1864
|
+
"description": "Project id (UUID) or key",
|
|
1865
|
+
"name": "project",
|
|
1866
|
+
"required": true,
|
|
1872
1867
|
"hasDynamicHelp": false,
|
|
1873
|
-
"multiple":
|
|
1868
|
+
"multiple": false,
|
|
1874
1869
|
"type": "option"
|
|
1875
1870
|
},
|
|
1876
|
-
"
|
|
1877
|
-
"description": "
|
|
1878
|
-
"name": "
|
|
1879
|
-
"default":
|
|
1871
|
+
"page": {
|
|
1872
|
+
"description": "Page number",
|
|
1873
|
+
"name": "page",
|
|
1874
|
+
"default": 1,
|
|
1880
1875
|
"hasDynamicHelp": false,
|
|
1881
|
-
"multiple":
|
|
1876
|
+
"multiple": false,
|
|
1882
1877
|
"type": "option"
|
|
1883
1878
|
}
|
|
1884
1879
|
},
|
|
1885
1880
|
"hasDynamicHelp": false,
|
|
1886
1881
|
"hiddenAliases": [],
|
|
1887
|
-
"id": "
|
|
1882
|
+
"id": "milestones:list",
|
|
1888
1883
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1889
1884
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1890
1885
|
"pluginType": "core",
|
|
@@ -1894,23 +1889,22 @@
|
|
|
1894
1889
|
"relativePath": [
|
|
1895
1890
|
"dist",
|
|
1896
1891
|
"commands",
|
|
1897
|
-
"
|
|
1898
|
-
"
|
|
1892
|
+
"milestones",
|
|
1893
|
+
"list.js"
|
|
1899
1894
|
]
|
|
1900
1895
|
},
|
|
1901
|
-
"
|
|
1896
|
+
"milestones:show": {
|
|
1902
1897
|
"aliases": [],
|
|
1903
1898
|
"args": {
|
|
1904
1899
|
"id": {
|
|
1905
|
-
"description": "
|
|
1900
|
+
"description": "Milestone id",
|
|
1906
1901
|
"name": "id",
|
|
1907
1902
|
"required": true
|
|
1908
1903
|
}
|
|
1909
1904
|
},
|
|
1910
|
-
"description": "
|
|
1905
|
+
"description": "Show a single milestone",
|
|
1911
1906
|
"examples": [
|
|
1912
|
-
"<%= config.bin %>
|
|
1913
|
-
"<%= config.bin %> members set-role <membership-id> --role customer"
|
|
1907
|
+
"<%= config.bin %> milestones show <milestone-id> --project acme-api"
|
|
1914
1908
|
],
|
|
1915
1909
|
"flags": {
|
|
1916
1910
|
"json": {
|
|
@@ -1920,24 +1914,19 @@
|
|
|
1920
1914
|
"allowNo": false,
|
|
1921
1915
|
"type": "boolean"
|
|
1922
1916
|
},
|
|
1923
|
-
"
|
|
1924
|
-
"
|
|
1925
|
-
"
|
|
1917
|
+
"project": {
|
|
1918
|
+
"char": "p",
|
|
1919
|
+
"description": "Project id (UUID) or key",
|
|
1920
|
+
"name": "project",
|
|
1926
1921
|
"required": true,
|
|
1927
1922
|
"hasDynamicHelp": false,
|
|
1928
1923
|
"multiple": false,
|
|
1929
|
-
"options": [
|
|
1930
|
-
"member",
|
|
1931
|
-
"admin",
|
|
1932
|
-
"owner",
|
|
1933
|
-
"customer"
|
|
1934
|
-
],
|
|
1935
1924
|
"type": "option"
|
|
1936
1925
|
}
|
|
1937
1926
|
},
|
|
1938
1927
|
"hasDynamicHelp": false,
|
|
1939
1928
|
"hiddenAliases": [],
|
|
1940
|
-
"id": "
|
|
1929
|
+
"id": "milestones:show",
|
|
1941
1930
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
1942
1931
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
1943
1932
|
"pluginType": "core",
|
|
@@ -1947,17 +1936,23 @@
|
|
|
1947
1936
|
"relativePath": [
|
|
1948
1937
|
"dist",
|
|
1949
1938
|
"commands",
|
|
1950
|
-
"
|
|
1951
|
-
"
|
|
1939
|
+
"milestones",
|
|
1940
|
+
"show.js"
|
|
1952
1941
|
]
|
|
1953
1942
|
},
|
|
1954
|
-
"
|
|
1943
|
+
"milestones:update": {
|
|
1955
1944
|
"aliases": [],
|
|
1956
|
-
"args": {
|
|
1957
|
-
|
|
1945
|
+
"args": {
|
|
1946
|
+
"id": {
|
|
1947
|
+
"description": "Milestone id",
|
|
1948
|
+
"name": "id",
|
|
1949
|
+
"required": true
|
|
1950
|
+
}
|
|
1951
|
+
},
|
|
1952
|
+
"description": "Update a milestone (send only the fields you want to change)",
|
|
1958
1953
|
"examples": [
|
|
1959
|
-
"<%= config.bin %>
|
|
1960
|
-
"<%= config.bin %>
|
|
1954
|
+
"<%= config.bin %> milestones update <milestone-id> --project acme-api --label \"Version 1.1\"",
|
|
1955
|
+
"<%= config.bin %> milestones update <milestone-id> -p acme-api --due-on 2027-01-15 --no-active"
|
|
1961
1956
|
],
|
|
1962
1957
|
"flags": {
|
|
1963
1958
|
"json": {
|
|
@@ -1976,38 +1971,114 @@
|
|
|
1976
1971
|
"multiple": false,
|
|
1977
1972
|
"type": "option"
|
|
1978
1973
|
},
|
|
1979
|
-
"
|
|
1980
|
-
"description": "
|
|
1981
|
-
"name": "
|
|
1982
|
-
"required": true,
|
|
1983
|
-
"hasDynamicHelp": false,
|
|
1984
|
-
"multiple": false,
|
|
1985
|
-
"type": "option"
|
|
1986
|
-
},
|
|
1987
|
-
"environment": {
|
|
1988
|
-
"description": "Environment id (must be declared by the project)",
|
|
1989
|
-
"name": "environment",
|
|
1974
|
+
"code": {
|
|
1975
|
+
"description": "Milestone code (short identifier)",
|
|
1976
|
+
"name": "code",
|
|
1990
1977
|
"hasDynamicHelp": false,
|
|
1991
1978
|
"multiple": false,
|
|
1992
1979
|
"type": "option"
|
|
1993
1980
|
},
|
|
1994
|
-
"
|
|
1995
|
-
"description": "
|
|
1996
|
-
"name": "
|
|
1981
|
+
"label": {
|
|
1982
|
+
"description": "Human-readable label",
|
|
1983
|
+
"name": "label",
|
|
1997
1984
|
"hasDynamicHelp": false,
|
|
1998
1985
|
"multiple": false,
|
|
1999
1986
|
"type": "option"
|
|
2000
1987
|
},
|
|
2001
|
-
"
|
|
2002
|
-
"description": "
|
|
2003
|
-
"name": "
|
|
1988
|
+
"color": {
|
|
1989
|
+
"description": "Color label",
|
|
1990
|
+
"name": "color",
|
|
2004
1991
|
"hasDynamicHelp": false,
|
|
2005
1992
|
"multiple": false,
|
|
2006
1993
|
"type": "option"
|
|
2007
1994
|
},
|
|
2008
|
-
"
|
|
2009
|
-
"description": "
|
|
2010
|
-
"name": "
|
|
1995
|
+
"due-on": {
|
|
1996
|
+
"description": "Due date (YYYY-MM-DD)",
|
|
1997
|
+
"name": "due-on",
|
|
1998
|
+
"hasDynamicHelp": false,
|
|
1999
|
+
"multiple": false,
|
|
2000
|
+
"type": "option"
|
|
2001
|
+
},
|
|
2002
|
+
"active": {
|
|
2003
|
+
"description": "Whether the milestone is active",
|
|
2004
|
+
"name": "active",
|
|
2005
|
+
"allowNo": true,
|
|
2006
|
+
"type": "boolean"
|
|
2007
|
+
}
|
|
2008
|
+
},
|
|
2009
|
+
"hasDynamicHelp": false,
|
|
2010
|
+
"hiddenAliases": [],
|
|
2011
|
+
"id": "milestones:update",
|
|
2012
|
+
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2013
|
+
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2014
|
+
"pluginType": "core",
|
|
2015
|
+
"strict": true,
|
|
2016
|
+
"enableJsonFlag": true,
|
|
2017
|
+
"isESM": false,
|
|
2018
|
+
"relativePath": [
|
|
2019
|
+
"dist",
|
|
2020
|
+
"commands",
|
|
2021
|
+
"milestones",
|
|
2022
|
+
"update.js"
|
|
2023
|
+
]
|
|
2024
|
+
},
|
|
2025
|
+
"monitors:create": {
|
|
2026
|
+
"aliases": [],
|
|
2027
|
+
"args": {},
|
|
2028
|
+
"description": "Create an uptime monitor for a project (one per environment)",
|
|
2029
|
+
"examples": [
|
|
2030
|
+
"<%= config.bin %> monitors create --project acme-api --url https://acme.example.com/up",
|
|
2031
|
+
"<%= config.bin %> monitors create -p acme-api --url https://acme.example.com/up --environment <env-id> --interval-seconds 60 --expected-status 200"
|
|
2032
|
+
],
|
|
2033
|
+
"flags": {
|
|
2034
|
+
"json": {
|
|
2035
|
+
"description": "Format output as json.",
|
|
2036
|
+
"helpGroup": "GLOBAL",
|
|
2037
|
+
"name": "json",
|
|
2038
|
+
"allowNo": false,
|
|
2039
|
+
"type": "boolean"
|
|
2040
|
+
},
|
|
2041
|
+
"project": {
|
|
2042
|
+
"char": "p",
|
|
2043
|
+
"description": "Project id (UUID) or key",
|
|
2044
|
+
"name": "project",
|
|
2045
|
+
"required": true,
|
|
2046
|
+
"hasDynamicHelp": false,
|
|
2047
|
+
"multiple": false,
|
|
2048
|
+
"type": "option"
|
|
2049
|
+
},
|
|
2050
|
+
"url": {
|
|
2051
|
+
"description": "URL to probe",
|
|
2052
|
+
"name": "url",
|
|
2053
|
+
"required": true,
|
|
2054
|
+
"hasDynamicHelp": false,
|
|
2055
|
+
"multiple": false,
|
|
2056
|
+
"type": "option"
|
|
2057
|
+
},
|
|
2058
|
+
"environment": {
|
|
2059
|
+
"description": "Environment id (must be declared by the project)",
|
|
2060
|
+
"name": "environment",
|
|
2061
|
+
"hasDynamicHelp": false,
|
|
2062
|
+
"multiple": false,
|
|
2063
|
+
"type": "option"
|
|
2064
|
+
},
|
|
2065
|
+
"http-method": {
|
|
2066
|
+
"description": "HTTP method (default GET)",
|
|
2067
|
+
"name": "http-method",
|
|
2068
|
+
"hasDynamicHelp": false,
|
|
2069
|
+
"multiple": false,
|
|
2070
|
+
"type": "option"
|
|
2071
|
+
},
|
|
2072
|
+
"interval-seconds": {
|
|
2073
|
+
"description": "Seconds between checks",
|
|
2074
|
+
"name": "interval-seconds",
|
|
2075
|
+
"hasDynamicHelp": false,
|
|
2076
|
+
"multiple": false,
|
|
2077
|
+
"type": "option"
|
|
2078
|
+
},
|
|
2079
|
+
"expected-status": {
|
|
2080
|
+
"description": "Expected HTTP status code",
|
|
2081
|
+
"name": "expected-status",
|
|
2011
2082
|
"hasDynamicHelp": false,
|
|
2012
2083
|
"multiple": false,
|
|
2013
2084
|
"type": "option"
|
|
@@ -2455,20 +2526,19 @@
|
|
|
2455
2526
|
"update.js"
|
|
2456
2527
|
]
|
|
2457
2528
|
},
|
|
2458
|
-
"
|
|
2529
|
+
"platforms:create": {
|
|
2459
2530
|
"aliases": [],
|
|
2460
2531
|
"args": {
|
|
2461
|
-
"
|
|
2462
|
-
"description": "
|
|
2463
|
-
"name": "
|
|
2532
|
+
"code": {
|
|
2533
|
+
"description": "Platform code (e.g. \"ios\", \"android\", \"web\")",
|
|
2534
|
+
"name": "code",
|
|
2464
2535
|
"required": true
|
|
2465
2536
|
}
|
|
2466
2537
|
},
|
|
2467
|
-
"description": "Create a
|
|
2538
|
+
"description": "Create a platform (a device/system your projects run on)",
|
|
2468
2539
|
"examples": [
|
|
2469
|
-
"<%= config.bin %>
|
|
2470
|
-
"<%= config.bin %>
|
|
2471
|
-
"<%= config.bin %> projects create driverone-flutter -g <group-uuid> -k DRFL"
|
|
2540
|
+
"<%= config.bin %> platforms create ios --label iOS",
|
|
2541
|
+
"<%= config.bin %> platforms create android --label Android --color emerald --position 2"
|
|
2472
2542
|
],
|
|
2473
2543
|
"flags": {
|
|
2474
2544
|
"json": {
|
|
@@ -2478,41 +2548,39 @@
|
|
|
2478
2548
|
"allowNo": false,
|
|
2479
2549
|
"type": "boolean"
|
|
2480
2550
|
},
|
|
2481
|
-
"
|
|
2482
|
-
"description": "
|
|
2483
|
-
"name": "
|
|
2551
|
+
"label": {
|
|
2552
|
+
"description": "Human-readable label",
|
|
2553
|
+
"name": "label",
|
|
2554
|
+
"required": true,
|
|
2484
2555
|
"hasDynamicHelp": false,
|
|
2485
2556
|
"multiple": false,
|
|
2486
2557
|
"type": "option"
|
|
2487
2558
|
},
|
|
2488
|
-
"
|
|
2489
|
-
"description": "
|
|
2490
|
-
"name": "
|
|
2559
|
+
"color": {
|
|
2560
|
+
"description": "Color label",
|
|
2561
|
+
"name": "color",
|
|
2562
|
+
"default": "sky",
|
|
2491
2563
|
"hasDynamicHelp": false,
|
|
2492
2564
|
"multiple": false,
|
|
2493
2565
|
"type": "option"
|
|
2494
2566
|
},
|
|
2495
|
-
"
|
|
2496
|
-
"
|
|
2497
|
-
"
|
|
2498
|
-
"name": "group",
|
|
2567
|
+
"position": {
|
|
2568
|
+
"description": "Sort position",
|
|
2569
|
+
"name": "position",
|
|
2499
2570
|
"hasDynamicHelp": false,
|
|
2500
2571
|
"multiple": false,
|
|
2501
2572
|
"type": "option"
|
|
2502
2573
|
},
|
|
2503
|
-
"
|
|
2504
|
-
"
|
|
2505
|
-
"
|
|
2506
|
-
"
|
|
2507
|
-
"
|
|
2508
|
-
"hasDynamicHelp": false,
|
|
2509
|
-
"multiple": false,
|
|
2510
|
-
"type": "option"
|
|
2574
|
+
"active": {
|
|
2575
|
+
"description": "Whether the platform is active",
|
|
2576
|
+
"name": "active",
|
|
2577
|
+
"allowNo": true,
|
|
2578
|
+
"type": "boolean"
|
|
2511
2579
|
}
|
|
2512
2580
|
},
|
|
2513
2581
|
"hasDynamicHelp": false,
|
|
2514
2582
|
"hiddenAliases": [],
|
|
2515
|
-
"id": "
|
|
2583
|
+
"id": "platforms:create",
|
|
2516
2584
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2517
2585
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2518
2586
|
"pluginType": "core",
|
|
@@ -2522,16 +2590,22 @@
|
|
|
2522
2590
|
"relativePath": [
|
|
2523
2591
|
"dist",
|
|
2524
2592
|
"commands",
|
|
2525
|
-
"
|
|
2593
|
+
"platforms",
|
|
2526
2594
|
"create.js"
|
|
2527
2595
|
]
|
|
2528
2596
|
},
|
|
2529
|
-
"
|
|
2597
|
+
"platforms:delete": {
|
|
2530
2598
|
"aliases": [],
|
|
2531
|
-
"args": {
|
|
2532
|
-
|
|
2599
|
+
"args": {
|
|
2600
|
+
"platform": {
|
|
2601
|
+
"description": "Platform id (UUID) or code",
|
|
2602
|
+
"name": "platform",
|
|
2603
|
+
"required": true
|
|
2604
|
+
}
|
|
2605
|
+
},
|
|
2606
|
+
"description": "Delete a platform (blocked if any project or ticket still references it)",
|
|
2533
2607
|
"examples": [
|
|
2534
|
-
"<%= config.bin %>
|
|
2608
|
+
"<%= config.bin %> platforms delete legacy --confirm"
|
|
2535
2609
|
],
|
|
2536
2610
|
"flags": {
|
|
2537
2611
|
"json": {
|
|
@@ -2541,17 +2615,8 @@
|
|
|
2541
2615
|
"allowNo": false,
|
|
2542
2616
|
"type": "boolean"
|
|
2543
2617
|
},
|
|
2544
|
-
"project": {
|
|
2545
|
-
"char": "p",
|
|
2546
|
-
"description": "Project id (UUID) or key",
|
|
2547
|
-
"name": "project",
|
|
2548
|
-
"required": true,
|
|
2549
|
-
"hasDynamicHelp": false,
|
|
2550
|
-
"multiple": false,
|
|
2551
|
-
"type": "option"
|
|
2552
|
-
},
|
|
2553
2618
|
"confirm": {
|
|
2554
|
-
"description": "Required: confirm the
|
|
2619
|
+
"description": "Required: confirm the deletion",
|
|
2555
2620
|
"name": "confirm",
|
|
2556
2621
|
"allowNo": false,
|
|
2557
2622
|
"type": "boolean"
|
|
@@ -2559,7 +2624,7 @@
|
|
|
2559
2624
|
},
|
|
2560
2625
|
"hasDynamicHelp": false,
|
|
2561
2626
|
"hiddenAliases": [],
|
|
2562
|
-
"id": "
|
|
2627
|
+
"id": "platforms:delete",
|
|
2563
2628
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2564
2629
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2565
2630
|
"pluginType": "core",
|
|
@@ -2569,17 +2634,17 @@
|
|
|
2569
2634
|
"relativePath": [
|
|
2570
2635
|
"dist",
|
|
2571
2636
|
"commands",
|
|
2572
|
-
"
|
|
2637
|
+
"platforms",
|
|
2573
2638
|
"delete.js"
|
|
2574
2639
|
]
|
|
2575
2640
|
},
|
|
2576
|
-
"
|
|
2641
|
+
"platforms:list": {
|
|
2577
2642
|
"aliases": [],
|
|
2578
2643
|
"args": {},
|
|
2579
|
-
"description": "List the
|
|
2644
|
+
"description": "List the platforms (devices/systems) in your organization",
|
|
2580
2645
|
"examples": [
|
|
2581
|
-
"<%= config.bin %>
|
|
2582
|
-
"<%= config.bin %>
|
|
2646
|
+
"<%= config.bin %> platforms list",
|
|
2647
|
+
"<%= config.bin %> platforms list --page 2 --json"
|
|
2583
2648
|
],
|
|
2584
2649
|
"flags": {
|
|
2585
2650
|
"json": {
|
|
@@ -2600,7 +2665,7 @@
|
|
|
2600
2665
|
},
|
|
2601
2666
|
"hasDynamicHelp": false,
|
|
2602
2667
|
"hiddenAliases": [],
|
|
2603
|
-
"id": "
|
|
2668
|
+
"id": "platforms:list",
|
|
2604
2669
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2605
2670
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2606
2671
|
"pluginType": "core",
|
|
@@ -2610,17 +2675,24 @@
|
|
|
2610
2675
|
"relativePath": [
|
|
2611
2676
|
"dist",
|
|
2612
2677
|
"commands",
|
|
2613
|
-
"
|
|
2678
|
+
"platforms",
|
|
2614
2679
|
"list.js"
|
|
2615
2680
|
]
|
|
2616
2681
|
},
|
|
2617
|
-
"
|
|
2682
|
+
"platforms:update": {
|
|
2618
2683
|
"aliases": [],
|
|
2619
|
-
"args": {
|
|
2620
|
-
|
|
2684
|
+
"args": {
|
|
2685
|
+
"platform": {
|
|
2686
|
+
"description": "Platform id (UUID) or code",
|
|
2687
|
+
"name": "platform",
|
|
2688
|
+
"required": true
|
|
2689
|
+
}
|
|
2690
|
+
},
|
|
2691
|
+
"description": "Update a platform (relabel, recolor, reorder, activate/deactivate)",
|
|
2621
2692
|
"examples": [
|
|
2622
|
-
"<%= config.bin %>
|
|
2623
|
-
"<%= config.bin %>
|
|
2693
|
+
"<%= config.bin %> platforms update ios --label \"iOS / iPadOS\"",
|
|
2694
|
+
"<%= config.bin %> platforms update web --color indigo --position 1",
|
|
2695
|
+
"<%= config.bin %> platforms update legacy --no-active"
|
|
2624
2696
|
],
|
|
2625
2697
|
"flags": {
|
|
2626
2698
|
"json": {
|
|
@@ -2630,35 +2702,44 @@
|
|
|
2630
2702
|
"allowNo": false,
|
|
2631
2703
|
"type": "boolean"
|
|
2632
2704
|
},
|
|
2633
|
-
"
|
|
2634
|
-
"
|
|
2635
|
-
"
|
|
2636
|
-
"name": "project",
|
|
2637
|
-
"required": true,
|
|
2705
|
+
"code": {
|
|
2706
|
+
"description": "New code",
|
|
2707
|
+
"name": "code",
|
|
2638
2708
|
"hasDynamicHelp": false,
|
|
2639
2709
|
"multiple": false,
|
|
2640
2710
|
"type": "option"
|
|
2641
2711
|
},
|
|
2642
|
-
"
|
|
2643
|
-
"description": "
|
|
2644
|
-
"name": "
|
|
2645
|
-
"default": [],
|
|
2712
|
+
"label": {
|
|
2713
|
+
"description": "New label",
|
|
2714
|
+
"name": "label",
|
|
2646
2715
|
"hasDynamicHelp": false,
|
|
2647
|
-
"multiple":
|
|
2716
|
+
"multiple": false,
|
|
2648
2717
|
"type": "option"
|
|
2649
2718
|
},
|
|
2650
|
-
"
|
|
2651
|
-
"description": "
|
|
2652
|
-
"name": "
|
|
2653
|
-
"default": [],
|
|
2719
|
+
"color": {
|
|
2720
|
+
"description": "Color label",
|
|
2721
|
+
"name": "color",
|
|
2654
2722
|
"hasDynamicHelp": false,
|
|
2655
|
-
"multiple":
|
|
2723
|
+
"multiple": false,
|
|
2724
|
+
"type": "option"
|
|
2725
|
+
},
|
|
2726
|
+
"position": {
|
|
2727
|
+
"description": "Sort position",
|
|
2728
|
+
"name": "position",
|
|
2729
|
+
"hasDynamicHelp": false,
|
|
2730
|
+
"multiple": false,
|
|
2656
2731
|
"type": "option"
|
|
2732
|
+
},
|
|
2733
|
+
"active": {
|
|
2734
|
+
"description": "Whether the platform is active",
|
|
2735
|
+
"name": "active",
|
|
2736
|
+
"allowNo": true,
|
|
2737
|
+
"type": "boolean"
|
|
2657
2738
|
}
|
|
2658
2739
|
},
|
|
2659
2740
|
"hasDynamicHelp": false,
|
|
2660
2741
|
"hiddenAliases": [],
|
|
2661
|
-
"id": "
|
|
2742
|
+
"id": "platforms:update",
|
|
2662
2743
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2663
2744
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2664
2745
|
"pluginType": "core",
|
|
@@ -2668,23 +2749,22 @@
|
|
|
2668
2749
|
"relativePath": [
|
|
2669
2750
|
"dist",
|
|
2670
2751
|
"commands",
|
|
2671
|
-
"
|
|
2672
|
-
"
|
|
2752
|
+
"platforms",
|
|
2753
|
+
"update.js"
|
|
2673
2754
|
]
|
|
2674
2755
|
},
|
|
2675
|
-
"
|
|
2756
|
+
"roles:create": {
|
|
2676
2757
|
"aliases": [],
|
|
2677
2758
|
"args": {
|
|
2678
|
-
"
|
|
2679
|
-
"description": "
|
|
2680
|
-
"name": "
|
|
2759
|
+
"name": {
|
|
2760
|
+
"description": "Role name",
|
|
2761
|
+
"name": "name",
|
|
2681
2762
|
"required": true
|
|
2682
2763
|
}
|
|
2683
2764
|
},
|
|
2684
|
-
"description": "
|
|
2765
|
+
"description": "Create an RBAC role (a named bundle of permission keys)",
|
|
2685
2766
|
"examples": [
|
|
2686
|
-
"<%= config.bin %>
|
|
2687
|
-
"<%= config.bin %> projects show <uuid> --json"
|
|
2767
|
+
"<%= config.bin %> roles create Client --permission tickets.edit --permission tickets.assign"
|
|
2688
2768
|
],
|
|
2689
2769
|
"flags": {
|
|
2690
2770
|
"json": {
|
|
@@ -2693,11 +2773,25 @@
|
|
|
2693
2773
|
"name": "json",
|
|
2694
2774
|
"allowNo": false,
|
|
2695
2775
|
"type": "boolean"
|
|
2776
|
+
},
|
|
2777
|
+
"color": {
|
|
2778
|
+
"description": "Color label",
|
|
2779
|
+
"name": "color",
|
|
2780
|
+
"hasDynamicHelp": false,
|
|
2781
|
+
"multiple": false,
|
|
2782
|
+
"type": "option"
|
|
2783
|
+
},
|
|
2784
|
+
"permission": {
|
|
2785
|
+
"description": "Permission key from the catalog (repeatable)",
|
|
2786
|
+
"name": "permission",
|
|
2787
|
+
"hasDynamicHelp": false,
|
|
2788
|
+
"multiple": true,
|
|
2789
|
+
"type": "option"
|
|
2696
2790
|
}
|
|
2697
2791
|
},
|
|
2698
2792
|
"hasDynamicHelp": false,
|
|
2699
2793
|
"hiddenAliases": [],
|
|
2700
|
-
"id": "
|
|
2794
|
+
"id": "roles:create",
|
|
2701
2795
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2702
2796
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2703
2797
|
"pluginType": "core",
|
|
@@ -2707,17 +2801,22 @@
|
|
|
2707
2801
|
"relativePath": [
|
|
2708
2802
|
"dist",
|
|
2709
2803
|
"commands",
|
|
2710
|
-
"
|
|
2711
|
-
"
|
|
2804
|
+
"roles",
|
|
2805
|
+
"create.js"
|
|
2712
2806
|
]
|
|
2713
2807
|
},
|
|
2714
|
-
"
|
|
2808
|
+
"roles:delete": {
|
|
2715
2809
|
"aliases": [],
|
|
2716
|
-
"args": {
|
|
2717
|
-
|
|
2810
|
+
"args": {
|
|
2811
|
+
"role": {
|
|
2812
|
+
"description": "Role id (UUID) or name",
|
|
2813
|
+
"name": "role",
|
|
2814
|
+
"required": true
|
|
2815
|
+
}
|
|
2816
|
+
},
|
|
2817
|
+
"description": "Delete a role (its assignments to teams and accounts are removed)",
|
|
2718
2818
|
"examples": [
|
|
2719
|
-
"<%= config.bin %>
|
|
2720
|
-
"<%= config.bin %> projects update -p LBRA --group Backend"
|
|
2819
|
+
"<%= config.bin %> roles delete Client"
|
|
2721
2820
|
],
|
|
2722
2821
|
"flags": {
|
|
2723
2822
|
"json": {
|
|
@@ -2726,55 +2825,11 @@
|
|
|
2726
2825
|
"name": "json",
|
|
2727
2826
|
"allowNo": false,
|
|
2728
2827
|
"type": "boolean"
|
|
2729
|
-
},
|
|
2730
|
-
"project": {
|
|
2731
|
-
"char": "p",
|
|
2732
|
-
"description": "Project id (UUID) or key",
|
|
2733
|
-
"name": "project",
|
|
2734
|
-
"required": true,
|
|
2735
|
-
"hasDynamicHelp": false,
|
|
2736
|
-
"multiple": false,
|
|
2737
|
-
"type": "option"
|
|
2738
|
-
},
|
|
2739
|
-
"name": {
|
|
2740
|
-
"description": "New project name",
|
|
2741
|
-
"name": "name",
|
|
2742
|
-
"hasDynamicHelp": false,
|
|
2743
|
-
"multiple": false,
|
|
2744
|
-
"type": "option"
|
|
2745
|
-
},
|
|
2746
|
-
"key": {
|
|
2747
|
-
"description": "New project key (uppercase A-Z0-9)",
|
|
2748
|
-
"name": "key",
|
|
2749
|
-
"hasDynamicHelp": false,
|
|
2750
|
-
"multiple": false,
|
|
2751
|
-
"type": "option"
|
|
2752
|
-
},
|
|
2753
|
-
"color": {
|
|
2754
|
-
"description": "Color label",
|
|
2755
|
-
"name": "color",
|
|
2756
|
-
"hasDynamicHelp": false,
|
|
2757
|
-
"multiple": false,
|
|
2758
|
-
"type": "option"
|
|
2759
|
-
},
|
|
2760
|
-
"description": {
|
|
2761
|
-
"description": "Free-form description",
|
|
2762
|
-
"name": "description",
|
|
2763
|
-
"hasDynamicHelp": false,
|
|
2764
|
-
"multiple": false,
|
|
2765
|
-
"type": "option"
|
|
2766
|
-
},
|
|
2767
|
-
"group": {
|
|
2768
|
-
"description": "Group id (UUID) or name to move the project into",
|
|
2769
|
-
"name": "group",
|
|
2770
|
-
"hasDynamicHelp": false,
|
|
2771
|
-
"multiple": false,
|
|
2772
|
-
"type": "option"
|
|
2773
2828
|
}
|
|
2774
2829
|
},
|
|
2775
2830
|
"hasDynamicHelp": false,
|
|
2776
2831
|
"hiddenAliases": [],
|
|
2777
|
-
"id": "
|
|
2832
|
+
"id": "roles:delete",
|
|
2778
2833
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2779
2834
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2780
2835
|
"pluginType": "core",
|
|
@@ -2784,23 +2839,17 @@
|
|
|
2784
2839
|
"relativePath": [
|
|
2785
2840
|
"dist",
|
|
2786
2841
|
"commands",
|
|
2787
|
-
"
|
|
2788
|
-
"
|
|
2842
|
+
"roles",
|
|
2843
|
+
"delete.js"
|
|
2789
2844
|
]
|
|
2790
2845
|
},
|
|
2791
|
-
"
|
|
2846
|
+
"roles:list": {
|
|
2792
2847
|
"aliases": [],
|
|
2793
|
-
"args": {
|
|
2794
|
-
|
|
2795
|
-
"description": "Platform code (e.g. \"ios\", \"android\", \"web\")",
|
|
2796
|
-
"name": "code",
|
|
2797
|
-
"required": true
|
|
2798
|
-
}
|
|
2799
|
-
},
|
|
2800
|
-
"description": "Create a platform (a device/system your projects run on)",
|
|
2848
|
+
"args": {},
|
|
2849
|
+
"description": "List the RBAC roles in your organization",
|
|
2801
2850
|
"examples": [
|
|
2802
|
-
"<%= config.bin %>
|
|
2803
|
-
"<%= config.bin %>
|
|
2851
|
+
"<%= config.bin %> roles list",
|
|
2852
|
+
"<%= config.bin %> roles list --json"
|
|
2804
2853
|
],
|
|
2805
2854
|
"flags": {
|
|
2806
2855
|
"json": {
|
|
@@ -2810,39 +2859,18 @@
|
|
|
2810
2859
|
"allowNo": false,
|
|
2811
2860
|
"type": "boolean"
|
|
2812
2861
|
},
|
|
2813
|
-
"
|
|
2814
|
-
"description": "
|
|
2815
|
-
"name": "
|
|
2816
|
-
"
|
|
2817
|
-
"hasDynamicHelp": false,
|
|
2818
|
-
"multiple": false,
|
|
2819
|
-
"type": "option"
|
|
2820
|
-
},
|
|
2821
|
-
"color": {
|
|
2822
|
-
"description": "Color label",
|
|
2823
|
-
"name": "color",
|
|
2824
|
-
"default": "sky",
|
|
2825
|
-
"hasDynamicHelp": false,
|
|
2826
|
-
"multiple": false,
|
|
2827
|
-
"type": "option"
|
|
2828
|
-
},
|
|
2829
|
-
"position": {
|
|
2830
|
-
"description": "Sort position",
|
|
2831
|
-
"name": "position",
|
|
2862
|
+
"page": {
|
|
2863
|
+
"description": "Page number",
|
|
2864
|
+
"name": "page",
|
|
2865
|
+
"default": 1,
|
|
2832
2866
|
"hasDynamicHelp": false,
|
|
2833
2867
|
"multiple": false,
|
|
2834
2868
|
"type": "option"
|
|
2835
|
-
},
|
|
2836
|
-
"active": {
|
|
2837
|
-
"description": "Whether the platform is active",
|
|
2838
|
-
"name": "active",
|
|
2839
|
-
"allowNo": true,
|
|
2840
|
-
"type": "boolean"
|
|
2841
2869
|
}
|
|
2842
2870
|
},
|
|
2843
2871
|
"hasDynamicHelp": false,
|
|
2844
2872
|
"hiddenAliases": [],
|
|
2845
|
-
"id": "
|
|
2873
|
+
"id": "roles:list",
|
|
2846
2874
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2847
2875
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2848
2876
|
"pluginType": "core",
|
|
@@ -2852,22 +2880,22 @@
|
|
|
2852
2880
|
"relativePath": [
|
|
2853
2881
|
"dist",
|
|
2854
2882
|
"commands",
|
|
2855
|
-
"
|
|
2856
|
-
"
|
|
2883
|
+
"roles",
|
|
2884
|
+
"list.js"
|
|
2857
2885
|
]
|
|
2858
2886
|
},
|
|
2859
|
-
"
|
|
2887
|
+
"roles:show": {
|
|
2860
2888
|
"aliases": [],
|
|
2861
2889
|
"args": {
|
|
2862
|
-
"
|
|
2863
|
-
"description": "
|
|
2864
|
-
"name": "
|
|
2890
|
+
"role": {
|
|
2891
|
+
"description": "Role id (UUID) or name",
|
|
2892
|
+
"name": "role",
|
|
2865
2893
|
"required": true
|
|
2866
2894
|
}
|
|
2867
2895
|
},
|
|
2868
|
-
"description": "
|
|
2896
|
+
"description": "Show a role by id or name (with its permission keys)",
|
|
2869
2897
|
"examples": [
|
|
2870
|
-
"<%= config.bin %>
|
|
2898
|
+
"<%= config.bin %> roles show Client"
|
|
2871
2899
|
],
|
|
2872
2900
|
"flags": {
|
|
2873
2901
|
"json": {
|
|
@@ -2876,17 +2904,11 @@
|
|
|
2876
2904
|
"name": "json",
|
|
2877
2905
|
"allowNo": false,
|
|
2878
2906
|
"type": "boolean"
|
|
2879
|
-
},
|
|
2880
|
-
"confirm": {
|
|
2881
|
-
"description": "Required: confirm the deletion",
|
|
2882
|
-
"name": "confirm",
|
|
2883
|
-
"allowNo": false,
|
|
2884
|
-
"type": "boolean"
|
|
2885
2907
|
}
|
|
2886
2908
|
},
|
|
2887
2909
|
"hasDynamicHelp": false,
|
|
2888
2910
|
"hiddenAliases": [],
|
|
2889
|
-
"id": "
|
|
2911
|
+
"id": "roles:show",
|
|
2890
2912
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2891
2913
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2892
2914
|
"pluginType": "core",
|
|
@@ -2896,17 +2918,23 @@
|
|
|
2896
2918
|
"relativePath": [
|
|
2897
2919
|
"dist",
|
|
2898
2920
|
"commands",
|
|
2899
|
-
"
|
|
2900
|
-
"
|
|
2921
|
+
"roles",
|
|
2922
|
+
"show.js"
|
|
2901
2923
|
]
|
|
2902
2924
|
},
|
|
2903
|
-
"
|
|
2925
|
+
"roles:update": {
|
|
2904
2926
|
"aliases": [],
|
|
2905
|
-
"args": {
|
|
2906
|
-
|
|
2927
|
+
"args": {
|
|
2928
|
+
"role": {
|
|
2929
|
+
"description": "Role id (UUID) or name",
|
|
2930
|
+
"name": "role",
|
|
2931
|
+
"required": true
|
|
2932
|
+
}
|
|
2933
|
+
},
|
|
2934
|
+
"description": "Update a role (rename, recolor, or replace its permission keys)",
|
|
2907
2935
|
"examples": [
|
|
2908
|
-
"<%= config.bin %>
|
|
2909
|
-
"<%= config.bin %>
|
|
2936
|
+
"<%= config.bin %> roles update Client --permission tickets.edit --permission tickets.assign",
|
|
2937
|
+
"<%= config.bin %> roles update Client --name \"Client manager\""
|
|
2910
2938
|
],
|
|
2911
2939
|
"flags": {
|
|
2912
2940
|
"json": {
|
|
@@ -2916,18 +2944,31 @@
|
|
|
2916
2944
|
"allowNo": false,
|
|
2917
2945
|
"type": "boolean"
|
|
2918
2946
|
},
|
|
2919
|
-
"
|
|
2920
|
-
"description": "
|
|
2921
|
-
"name": "
|
|
2922
|
-
"
|
|
2947
|
+
"color": {
|
|
2948
|
+
"description": "Color label",
|
|
2949
|
+
"name": "color",
|
|
2950
|
+
"hasDynamicHelp": false,
|
|
2951
|
+
"multiple": false,
|
|
2952
|
+
"type": "option"
|
|
2953
|
+
},
|
|
2954
|
+
"name": {
|
|
2955
|
+
"description": "New name",
|
|
2956
|
+
"name": "name",
|
|
2923
2957
|
"hasDynamicHelp": false,
|
|
2924
2958
|
"multiple": false,
|
|
2925
2959
|
"type": "option"
|
|
2960
|
+
},
|
|
2961
|
+
"permission": {
|
|
2962
|
+
"description": "Permission key (repeatable); when given, REPLACES the whole set",
|
|
2963
|
+
"name": "permission",
|
|
2964
|
+
"hasDynamicHelp": false,
|
|
2965
|
+
"multiple": true,
|
|
2966
|
+
"type": "option"
|
|
2926
2967
|
}
|
|
2927
2968
|
},
|
|
2928
2969
|
"hasDynamicHelp": false,
|
|
2929
2970
|
"hiddenAliases": [],
|
|
2930
|
-
"id": "
|
|
2971
|
+
"id": "roles:update",
|
|
2931
2972
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
2932
2973
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
2933
2974
|
"pluginType": "core",
|
|
@@ -2937,24 +2978,24 @@
|
|
|
2937
2978
|
"relativePath": [
|
|
2938
2979
|
"dist",
|
|
2939
2980
|
"commands",
|
|
2940
|
-
"
|
|
2941
|
-
"
|
|
2981
|
+
"roles",
|
|
2982
|
+
"update.js"
|
|
2942
2983
|
]
|
|
2943
2984
|
},
|
|
2944
|
-
"
|
|
2985
|
+
"projects:create": {
|
|
2945
2986
|
"aliases": [],
|
|
2946
2987
|
"args": {
|
|
2947
|
-
"
|
|
2948
|
-
"description": "
|
|
2949
|
-
"name": "
|
|
2988
|
+
"name": {
|
|
2989
|
+
"description": "Project name",
|
|
2990
|
+
"name": "name",
|
|
2950
2991
|
"required": true
|
|
2951
2992
|
}
|
|
2952
2993
|
},
|
|
2953
|
-
"description": "
|
|
2994
|
+
"description": "Create a project (optionally inside a group)",
|
|
2954
2995
|
"examples": [
|
|
2955
|
-
"<%= config.bin %>
|
|
2956
|
-
"<%= config.bin %>
|
|
2957
|
-
"<%= config.bin %>
|
|
2996
|
+
"<%= config.bin %> projects create driverone-rails --key DRRA",
|
|
2997
|
+
"<%= config.bin %> projects create driverone-rails --group DriverOne --key DRRA",
|
|
2998
|
+
"<%= config.bin %> projects create driverone-flutter -g <group-uuid> -k DRFL"
|
|
2958
2999
|
],
|
|
2959
3000
|
"flags": {
|
|
2960
3001
|
"json": {
|
|
@@ -2964,44 +3005,41 @@
|
|
|
2964
3005
|
"allowNo": false,
|
|
2965
3006
|
"type": "boolean"
|
|
2966
3007
|
},
|
|
2967
|
-
"
|
|
2968
|
-
"description": "
|
|
2969
|
-
"name": "
|
|
3008
|
+
"color": {
|
|
3009
|
+
"description": "Color label",
|
|
3010
|
+
"name": "color",
|
|
2970
3011
|
"hasDynamicHelp": false,
|
|
2971
3012
|
"multiple": false,
|
|
2972
3013
|
"type": "option"
|
|
2973
3014
|
},
|
|
2974
|
-
"
|
|
2975
|
-
"description": "
|
|
2976
|
-
"name": "
|
|
3015
|
+
"description": {
|
|
3016
|
+
"description": "Free-form description",
|
|
3017
|
+
"name": "description",
|
|
2977
3018
|
"hasDynamicHelp": false,
|
|
2978
3019
|
"multiple": false,
|
|
2979
3020
|
"type": "option"
|
|
2980
3021
|
},
|
|
2981
|
-
"
|
|
2982
|
-
"
|
|
2983
|
-
"
|
|
3022
|
+
"group": {
|
|
3023
|
+
"char": "g",
|
|
3024
|
+
"description": "Group id (UUID) or name to place the project in",
|
|
3025
|
+
"name": "group",
|
|
2984
3026
|
"hasDynamicHelp": false,
|
|
2985
3027
|
"multiple": false,
|
|
2986
3028
|
"type": "option"
|
|
2987
3029
|
},
|
|
2988
|
-
"
|
|
2989
|
-
"
|
|
2990
|
-
"
|
|
3030
|
+
"key": {
|
|
3031
|
+
"char": "k",
|
|
3032
|
+
"description": "Project key (uppercase A-Z0-9, max 4 chars, unique per org)",
|
|
3033
|
+
"name": "key",
|
|
3034
|
+
"required": true,
|
|
2991
3035
|
"hasDynamicHelp": false,
|
|
2992
3036
|
"multiple": false,
|
|
2993
3037
|
"type": "option"
|
|
2994
|
-
},
|
|
2995
|
-
"active": {
|
|
2996
|
-
"description": "Whether the platform is active",
|
|
2997
|
-
"name": "active",
|
|
2998
|
-
"allowNo": true,
|
|
2999
|
-
"type": "boolean"
|
|
3000
3038
|
}
|
|
3001
3039
|
},
|
|
3002
3040
|
"hasDynamicHelp": false,
|
|
3003
3041
|
"hiddenAliases": [],
|
|
3004
|
-
"id": "
|
|
3042
|
+
"id": "projects:create",
|
|
3005
3043
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3006
3044
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3007
3045
|
"pluginType": "core",
|
|
@@ -3011,22 +3049,16 @@
|
|
|
3011
3049
|
"relativePath": [
|
|
3012
3050
|
"dist",
|
|
3013
3051
|
"commands",
|
|
3014
|
-
"
|
|
3015
|
-
"
|
|
3052
|
+
"projects",
|
|
3053
|
+
"create.js"
|
|
3016
3054
|
]
|
|
3017
3055
|
},
|
|
3018
|
-
"
|
|
3056
|
+
"projects:delete": {
|
|
3019
3057
|
"aliases": [],
|
|
3020
|
-
"args": {
|
|
3021
|
-
|
|
3022
|
-
"description": "Role name",
|
|
3023
|
-
"name": "name",
|
|
3024
|
-
"required": true
|
|
3025
|
-
}
|
|
3026
|
-
},
|
|
3027
|
-
"description": "Create an RBAC role (a named bundle of permission keys)",
|
|
3058
|
+
"args": {},
|
|
3059
|
+
"description": "Delete a project (irreversible)",
|
|
3028
3060
|
"examples": [
|
|
3029
|
-
"<%= config.bin %>
|
|
3061
|
+
"<%= config.bin %> projects delete --project LBRA --confirm"
|
|
3030
3062
|
],
|
|
3031
3063
|
"flags": {
|
|
3032
3064
|
"json": {
|
|
@@ -3036,24 +3068,25 @@
|
|
|
3036
3068
|
"allowNo": false,
|
|
3037
3069
|
"type": "boolean"
|
|
3038
3070
|
},
|
|
3039
|
-
"
|
|
3040
|
-
"
|
|
3041
|
-
"
|
|
3071
|
+
"project": {
|
|
3072
|
+
"char": "p",
|
|
3073
|
+
"description": "Project id (UUID) or key",
|
|
3074
|
+
"name": "project",
|
|
3075
|
+
"required": true,
|
|
3042
3076
|
"hasDynamicHelp": false,
|
|
3043
3077
|
"multiple": false,
|
|
3044
3078
|
"type": "option"
|
|
3045
3079
|
},
|
|
3046
|
-
"
|
|
3047
|
-
"description": "
|
|
3048
|
-
"name": "
|
|
3049
|
-
"
|
|
3050
|
-
"
|
|
3051
|
-
"type": "option"
|
|
3080
|
+
"confirm": {
|
|
3081
|
+
"description": "Required: confirm the irreversible deletion",
|
|
3082
|
+
"name": "confirm",
|
|
3083
|
+
"allowNo": false,
|
|
3084
|
+
"type": "boolean"
|
|
3052
3085
|
}
|
|
3053
3086
|
},
|
|
3054
3087
|
"hasDynamicHelp": false,
|
|
3055
3088
|
"hiddenAliases": [],
|
|
3056
|
-
"id": "
|
|
3089
|
+
"id": "projects:delete",
|
|
3057
3090
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3058
3091
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3059
3092
|
"pluginType": "core",
|
|
@@ -3063,22 +3096,17 @@
|
|
|
3063
3096
|
"relativePath": [
|
|
3064
3097
|
"dist",
|
|
3065
3098
|
"commands",
|
|
3066
|
-
"
|
|
3067
|
-
"
|
|
3099
|
+
"projects",
|
|
3100
|
+
"delete.js"
|
|
3068
3101
|
]
|
|
3069
3102
|
},
|
|
3070
|
-
"
|
|
3103
|
+
"projects:list": {
|
|
3071
3104
|
"aliases": [],
|
|
3072
|
-
"args": {
|
|
3073
|
-
|
|
3074
|
-
"description": "Role id (UUID) or name",
|
|
3075
|
-
"name": "role",
|
|
3076
|
-
"required": true
|
|
3077
|
-
}
|
|
3078
|
-
},
|
|
3079
|
-
"description": "Delete a role (its assignments to teams and accounts are removed)",
|
|
3105
|
+
"args": {},
|
|
3106
|
+
"description": "List the projects visible to you",
|
|
3080
3107
|
"examples": [
|
|
3081
|
-
"<%= config.bin %>
|
|
3108
|
+
"<%= config.bin %> projects list",
|
|
3109
|
+
"<%= config.bin %> projects list --page 2 --json"
|
|
3082
3110
|
],
|
|
3083
3111
|
"flags": {
|
|
3084
3112
|
"json": {
|
|
@@ -3087,11 +3115,19 @@
|
|
|
3087
3115
|
"name": "json",
|
|
3088
3116
|
"allowNo": false,
|
|
3089
3117
|
"type": "boolean"
|
|
3118
|
+
},
|
|
3119
|
+
"page": {
|
|
3120
|
+
"description": "Page number",
|
|
3121
|
+
"name": "page",
|
|
3122
|
+
"default": 1,
|
|
3123
|
+
"hasDynamicHelp": false,
|
|
3124
|
+
"multiple": false,
|
|
3125
|
+
"type": "option"
|
|
3090
3126
|
}
|
|
3091
3127
|
},
|
|
3092
3128
|
"hasDynamicHelp": false,
|
|
3093
3129
|
"hiddenAliases": [],
|
|
3094
|
-
"id": "
|
|
3130
|
+
"id": "projects:list",
|
|
3095
3131
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3096
3132
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3097
3133
|
"pluginType": "core",
|
|
@@ -3101,17 +3137,17 @@
|
|
|
3101
3137
|
"relativePath": [
|
|
3102
3138
|
"dist",
|
|
3103
3139
|
"commands",
|
|
3104
|
-
"
|
|
3105
|
-
"
|
|
3140
|
+
"projects",
|
|
3141
|
+
"list.js"
|
|
3106
3142
|
]
|
|
3107
3143
|
},
|
|
3108
|
-
"
|
|
3144
|
+
"projects:set-environments": {
|
|
3109
3145
|
"aliases": [],
|
|
3110
3146
|
"args": {},
|
|
3111
|
-
"description": "
|
|
3147
|
+
"description": "Declare the environments a project receives data from (replaces the current set)",
|
|
3112
3148
|
"examples": [
|
|
3113
|
-
"<%= config.bin %>
|
|
3114
|
-
"<%= config.bin %>
|
|
3149
|
+
"<%= config.bin %> projects set-environments --project legalbloom-rails --code production",
|
|
3150
|
+
"<%= config.bin %> projects set-environments -p LBRA --code production --code staging"
|
|
3115
3151
|
],
|
|
3116
3152
|
"flags": {
|
|
3117
3153
|
"json": {
|
|
@@ -3121,18 +3157,35 @@
|
|
|
3121
3157
|
"allowNo": false,
|
|
3122
3158
|
"type": "boolean"
|
|
3123
3159
|
},
|
|
3124
|
-
"
|
|
3125
|
-
"
|
|
3126
|
-
"
|
|
3127
|
-
"
|
|
3160
|
+
"project": {
|
|
3161
|
+
"char": "p",
|
|
3162
|
+
"description": "Project id (UUID) or key",
|
|
3163
|
+
"name": "project",
|
|
3164
|
+
"required": true,
|
|
3128
3165
|
"hasDynamicHelp": false,
|
|
3129
3166
|
"multiple": false,
|
|
3130
3167
|
"type": "option"
|
|
3168
|
+
},
|
|
3169
|
+
"code": {
|
|
3170
|
+
"description": "Environment code, e.g. production (repeatable)",
|
|
3171
|
+
"name": "code",
|
|
3172
|
+
"default": [],
|
|
3173
|
+
"hasDynamicHelp": false,
|
|
3174
|
+
"multiple": true,
|
|
3175
|
+
"type": "option"
|
|
3176
|
+
},
|
|
3177
|
+
"environment-id": {
|
|
3178
|
+
"description": "Environment id / UUID (repeatable)",
|
|
3179
|
+
"name": "environment-id",
|
|
3180
|
+
"default": [],
|
|
3181
|
+
"hasDynamicHelp": false,
|
|
3182
|
+
"multiple": true,
|
|
3183
|
+
"type": "option"
|
|
3131
3184
|
}
|
|
3132
3185
|
},
|
|
3133
3186
|
"hasDynamicHelp": false,
|
|
3134
3187
|
"hiddenAliases": [],
|
|
3135
|
-
"id": "
|
|
3188
|
+
"id": "projects:set-environments",
|
|
3136
3189
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3137
3190
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3138
3191
|
"pluginType": "core",
|
|
@@ -3142,22 +3195,23 @@
|
|
|
3142
3195
|
"relativePath": [
|
|
3143
3196
|
"dist",
|
|
3144
3197
|
"commands",
|
|
3145
|
-
"
|
|
3146
|
-
"
|
|
3198
|
+
"projects",
|
|
3199
|
+
"set-environments.js"
|
|
3147
3200
|
]
|
|
3148
3201
|
},
|
|
3149
|
-
"
|
|
3202
|
+
"projects:show": {
|
|
3150
3203
|
"aliases": [],
|
|
3151
3204
|
"args": {
|
|
3152
|
-
"
|
|
3153
|
-
"description": "
|
|
3154
|
-
"name": "
|
|
3205
|
+
"id": {
|
|
3206
|
+
"description": "Project id (UUID) or key",
|
|
3207
|
+
"name": "id",
|
|
3155
3208
|
"required": true
|
|
3156
3209
|
}
|
|
3157
3210
|
},
|
|
3158
|
-
"description": "Show a
|
|
3211
|
+
"description": "Show a single project by id or key",
|
|
3159
3212
|
"examples": [
|
|
3160
|
-
"<%= config.bin %>
|
|
3213
|
+
"<%= config.bin %> projects show acme-api",
|
|
3214
|
+
"<%= config.bin %> projects show <uuid> --json"
|
|
3161
3215
|
],
|
|
3162
3216
|
"flags": {
|
|
3163
3217
|
"json": {
|
|
@@ -3170,7 +3224,7 @@
|
|
|
3170
3224
|
},
|
|
3171
3225
|
"hasDynamicHelp": false,
|
|
3172
3226
|
"hiddenAliases": [],
|
|
3173
|
-
"id": "
|
|
3227
|
+
"id": "projects:show",
|
|
3174
3228
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3175
3229
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3176
3230
|
"pluginType": "core",
|
|
@@ -3180,23 +3234,17 @@
|
|
|
3180
3234
|
"relativePath": [
|
|
3181
3235
|
"dist",
|
|
3182
3236
|
"commands",
|
|
3183
|
-
"
|
|
3237
|
+
"projects",
|
|
3184
3238
|
"show.js"
|
|
3185
3239
|
]
|
|
3186
3240
|
},
|
|
3187
|
-
"
|
|
3241
|
+
"projects:update": {
|
|
3188
3242
|
"aliases": [],
|
|
3189
|
-
"args": {
|
|
3190
|
-
|
|
3191
|
-
"description": "Role id (UUID) or name",
|
|
3192
|
-
"name": "role",
|
|
3193
|
-
"required": true
|
|
3194
|
-
}
|
|
3195
|
-
},
|
|
3196
|
-
"description": "Update a role (rename, recolor, or replace its permission keys)",
|
|
3243
|
+
"args": {},
|
|
3244
|
+
"description": "Update a project (name, key, color, description, group)",
|
|
3197
3245
|
"examples": [
|
|
3198
|
-
"<%= config.bin %>
|
|
3199
|
-
"<%= config.bin %>
|
|
3246
|
+
"<%= config.bin %> projects update --project LBRA --name \"New name\"",
|
|
3247
|
+
"<%= config.bin %> projects update -p LBRA --group Backend"
|
|
3200
3248
|
],
|
|
3201
3249
|
"flags": {
|
|
3202
3250
|
"json": {
|
|
@@ -3206,6 +3254,29 @@
|
|
|
3206
3254
|
"allowNo": false,
|
|
3207
3255
|
"type": "boolean"
|
|
3208
3256
|
},
|
|
3257
|
+
"project": {
|
|
3258
|
+
"char": "p",
|
|
3259
|
+
"description": "Project id (UUID) or key",
|
|
3260
|
+
"name": "project",
|
|
3261
|
+
"required": true,
|
|
3262
|
+
"hasDynamicHelp": false,
|
|
3263
|
+
"multiple": false,
|
|
3264
|
+
"type": "option"
|
|
3265
|
+
},
|
|
3266
|
+
"name": {
|
|
3267
|
+
"description": "New project name",
|
|
3268
|
+
"name": "name",
|
|
3269
|
+
"hasDynamicHelp": false,
|
|
3270
|
+
"multiple": false,
|
|
3271
|
+
"type": "option"
|
|
3272
|
+
},
|
|
3273
|
+
"key": {
|
|
3274
|
+
"description": "New project key (uppercase A-Z0-9)",
|
|
3275
|
+
"name": "key",
|
|
3276
|
+
"hasDynamicHelp": false,
|
|
3277
|
+
"multiple": false,
|
|
3278
|
+
"type": "option"
|
|
3279
|
+
},
|
|
3209
3280
|
"color": {
|
|
3210
3281
|
"description": "Color label",
|
|
3211
3282
|
"name": "color",
|
|
@@ -3213,24 +3284,24 @@
|
|
|
3213
3284
|
"multiple": false,
|
|
3214
3285
|
"type": "option"
|
|
3215
3286
|
},
|
|
3216
|
-
"
|
|
3217
|
-
"description": "
|
|
3218
|
-
"name": "
|
|
3287
|
+
"description": {
|
|
3288
|
+
"description": "Free-form description",
|
|
3289
|
+
"name": "description",
|
|
3219
3290
|
"hasDynamicHelp": false,
|
|
3220
3291
|
"multiple": false,
|
|
3221
3292
|
"type": "option"
|
|
3222
3293
|
},
|
|
3223
|
-
"
|
|
3224
|
-
"description": "
|
|
3225
|
-
"name": "
|
|
3294
|
+
"group": {
|
|
3295
|
+
"description": "Group id (UUID) or name to move the project into",
|
|
3296
|
+
"name": "group",
|
|
3226
3297
|
"hasDynamicHelp": false,
|
|
3227
|
-
"multiple":
|
|
3298
|
+
"multiple": false,
|
|
3228
3299
|
"type": "option"
|
|
3229
3300
|
}
|
|
3230
3301
|
},
|
|
3231
3302
|
"hasDynamicHelp": false,
|
|
3232
3303
|
"hiddenAliases": [],
|
|
3233
|
-
"id": "
|
|
3304
|
+
"id": "projects:update",
|
|
3234
3305
|
"pluginAlias": "@bussolabs/closeyourit-cli",
|
|
3235
3306
|
"pluginName": "@bussolabs/closeyourit-cli",
|
|
3236
3307
|
"pluginType": "core",
|
|
@@ -3240,7 +3311,7 @@
|
|
|
3240
3311
|
"relativePath": [
|
|
3241
3312
|
"dist",
|
|
3242
3313
|
"commands",
|
|
3243
|
-
"
|
|
3314
|
+
"projects",
|
|
3244
3315
|
"update.js"
|
|
3245
3316
|
]
|
|
3246
3317
|
},
|
|
@@ -4708,5 +4779,5 @@
|
|
|
4708
4779
|
]
|
|
4709
4780
|
}
|
|
4710
4781
|
},
|
|
4711
|
-
"version": "0.0.
|
|
4782
|
+
"version": "0.0.6"
|
|
4712
4783
|
}
|