@hyperdrive.bot/cli 1.0.5 → 1.0.7
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 +169 -63
- package/dist/commands/account/add.d.ts +6 -6
- package/dist/commands/account/remove.d.ts +3 -3
- package/dist/commands/auth/login.d.ts +4 -4
- package/dist/commands/auth/login.js +1 -0
- package/dist/commands/ci/account/create.d.ts +7 -6
- package/dist/commands/ci/account/create.js +49 -3
- package/dist/commands/ci/account/delete.d.ts +3 -3
- package/dist/commands/ci/account/list.d.ts +2 -2
- package/dist/commands/config/get.d.ts +1 -1
- package/dist/commands/config/set.d.ts +2 -2
- package/dist/commands/deployment/create.d.ts +10 -10
- package/dist/commands/deployment/get.d.ts +4 -4
- package/dist/commands/deployment/launch.d.ts +6 -6
- package/dist/commands/deployment/list.d.ts +3 -3
- package/dist/commands/deployment/list.js +17 -17
- package/dist/commands/domain/switch.d.ts +1 -1
- package/dist/commands/example.d.ts +3 -3
- package/dist/commands/git/connect.d.ts +2 -2
- package/dist/commands/git/disconnect.d.ts +3 -3
- package/dist/commands/git/list.d.ts +2 -2
- package/dist/commands/git/sync.d.ts +7 -7
- package/dist/commands/git/sync.js +24 -23
- package/dist/commands/jira/connect.d.ts +1 -1
- package/dist/commands/jira/status.d.ts +1 -1
- package/dist/commands/module/analyze.d.ts +5 -5
- package/dist/commands/module/create.d.ts +17 -17
- package/dist/commands/module/create.js +9 -1
- package/dist/commands/module/destroy.d.ts +3 -3
- package/dist/commands/module/get.d.ts +2 -2
- package/dist/commands/module/link.d.ts +4 -4
- package/dist/commands/module/list.d.ts +1 -1
- package/dist/commands/module/list.js +12 -11
- package/dist/commands/module/reanalyze.d.ts +6 -6
- package/dist/commands/module/update.d.ts +19 -19
- package/dist/commands/parameter/add.d.ts +7 -7
- package/dist/commands/parameter/backfill.d.ts +4 -4
- package/dist/commands/parameter/backfill.js +4 -3
- package/dist/commands/parameter/clear.d.ts +6 -6
- package/dist/commands/parameter/list.d.ts +6 -6
- package/dist/commands/parameter/list.js +4 -3
- package/dist/commands/parameter/pull.d.ts +6 -6
- package/dist/commands/parameter/remove.d.ts +7 -7
- package/dist/commands/parameter/sync.d.ts +6 -6
- package/dist/commands/parameter/update.d.ts +7 -7
- package/dist/commands/stage/access.d.ts +15 -0
- package/dist/commands/stage/access.js +130 -0
- package/dist/commands/stage/create.d.ts +11 -11
- package/dist/commands/stage/list.d.ts +1 -1
- package/dist/commands/stage/list.js +21 -20
- package/dist/commands/stage/revoke.d.ts +18 -0
- package/dist/commands/stage/revoke.js +171 -0
- package/dist/commands/stage/share.d.ts +23 -0
- package/dist/commands/stage/share.js +292 -0
- package/dist/commands/test-api.d.ts +1 -1
- package/dist/services/auth-service.d.ts +15 -82
- package/dist/services/auth-service.js +24 -237
- package/dist/services/hyperdrive-sigv4.d.ts +37 -24
- package/dist/services/hyperdrive-sigv4.js +62 -193
- package/dist/services/tenant-service.d.ts +6 -0
- package/dist/services/tenant-service.js +13 -0
- package/dist/utils/auth-flow.d.ts +1 -0
- package/dist/utils/auth-flow.js +2 -0
- package/dist/utils/table.d.ts +17 -0
- package/dist/utils/table.js +41 -0
- package/oclif.manifest.json +309 -81
- package/package.json +55 -15
package/oclif.manifest.json
CHANGED
|
@@ -481,6 +481,84 @@
|
|
|
481
481
|
"show.js"
|
|
482
482
|
]
|
|
483
483
|
},
|
|
484
|
+
"domain:current": {
|
|
485
|
+
"aliases": [],
|
|
486
|
+
"args": {},
|
|
487
|
+
"description": "Show the current default domain",
|
|
488
|
+
"examples": [
|
|
489
|
+
"<%= config.bin %> <%= command.id %>"
|
|
490
|
+
],
|
|
491
|
+
"flags": {},
|
|
492
|
+
"hasDynamicHelp": false,
|
|
493
|
+
"hiddenAliases": [],
|
|
494
|
+
"id": "domain:current",
|
|
495
|
+
"pluginAlias": "@hyperdrive.bot/cli",
|
|
496
|
+
"pluginName": "@hyperdrive.bot/cli",
|
|
497
|
+
"pluginType": "core",
|
|
498
|
+
"strict": true,
|
|
499
|
+
"enableJsonFlag": false,
|
|
500
|
+
"isESM": true,
|
|
501
|
+
"relativePath": [
|
|
502
|
+
"dist",
|
|
503
|
+
"commands",
|
|
504
|
+
"domain",
|
|
505
|
+
"current.js"
|
|
506
|
+
]
|
|
507
|
+
},
|
|
508
|
+
"domain:list": {
|
|
509
|
+
"aliases": [],
|
|
510
|
+
"args": {},
|
|
511
|
+
"description": "List all configured domains/installations",
|
|
512
|
+
"examples": [
|
|
513
|
+
"<%= config.bin %> <%= command.id %>"
|
|
514
|
+
],
|
|
515
|
+
"flags": {},
|
|
516
|
+
"hasDynamicHelp": false,
|
|
517
|
+
"hiddenAliases": [],
|
|
518
|
+
"id": "domain:list",
|
|
519
|
+
"pluginAlias": "@hyperdrive.bot/cli",
|
|
520
|
+
"pluginName": "@hyperdrive.bot/cli",
|
|
521
|
+
"pluginType": "core",
|
|
522
|
+
"strict": true,
|
|
523
|
+
"enableJsonFlag": false,
|
|
524
|
+
"isESM": true,
|
|
525
|
+
"relativePath": [
|
|
526
|
+
"dist",
|
|
527
|
+
"commands",
|
|
528
|
+
"domain",
|
|
529
|
+
"list.js"
|
|
530
|
+
]
|
|
531
|
+
},
|
|
532
|
+
"domain:switch": {
|
|
533
|
+
"aliases": [],
|
|
534
|
+
"args": {
|
|
535
|
+
"domain": {
|
|
536
|
+
"description": "The domain to set as default",
|
|
537
|
+
"name": "domain",
|
|
538
|
+
"required": true
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
"description": "Switch the default domain for CLI commands",
|
|
542
|
+
"examples": [
|
|
543
|
+
"<%= config.bin %> <%= command.id %> acme.hyperdrive.bot"
|
|
544
|
+
],
|
|
545
|
+
"flags": {},
|
|
546
|
+
"hasDynamicHelp": false,
|
|
547
|
+
"hiddenAliases": [],
|
|
548
|
+
"id": "domain:switch",
|
|
549
|
+
"pluginAlias": "@hyperdrive.bot/cli",
|
|
550
|
+
"pluginName": "@hyperdrive.bot/cli",
|
|
551
|
+
"pluginType": "core",
|
|
552
|
+
"strict": true,
|
|
553
|
+
"enableJsonFlag": false,
|
|
554
|
+
"isESM": true,
|
|
555
|
+
"relativePath": [
|
|
556
|
+
"dist",
|
|
557
|
+
"commands",
|
|
558
|
+
"domain",
|
|
559
|
+
"switch.js"
|
|
560
|
+
]
|
|
561
|
+
},
|
|
484
562
|
"deployment:create": {
|
|
485
563
|
"aliases": [],
|
|
486
564
|
"args": {},
|
|
@@ -535,7 +613,7 @@
|
|
|
535
613
|
"description": "The name of the deployment",
|
|
536
614
|
"name": "name",
|
|
537
615
|
"required": false,
|
|
538
|
-
"default": "Deployment-2026-
|
|
616
|
+
"default": "Deployment-2026-02-06-14-27-26",
|
|
539
617
|
"hasDynamicHelp": false,
|
|
540
618
|
"multiple": false,
|
|
541
619
|
"type": "option"
|
|
@@ -780,84 +858,6 @@
|
|
|
780
858
|
"list.js"
|
|
781
859
|
]
|
|
782
860
|
},
|
|
783
|
-
"domain:current": {
|
|
784
|
-
"aliases": [],
|
|
785
|
-
"args": {},
|
|
786
|
-
"description": "Show the current default domain",
|
|
787
|
-
"examples": [
|
|
788
|
-
"<%= config.bin %> <%= command.id %>"
|
|
789
|
-
],
|
|
790
|
-
"flags": {},
|
|
791
|
-
"hasDynamicHelp": false,
|
|
792
|
-
"hiddenAliases": [],
|
|
793
|
-
"id": "domain:current",
|
|
794
|
-
"pluginAlias": "@hyperdrive.bot/cli",
|
|
795
|
-
"pluginName": "@hyperdrive.bot/cli",
|
|
796
|
-
"pluginType": "core",
|
|
797
|
-
"strict": true,
|
|
798
|
-
"enableJsonFlag": false,
|
|
799
|
-
"isESM": true,
|
|
800
|
-
"relativePath": [
|
|
801
|
-
"dist",
|
|
802
|
-
"commands",
|
|
803
|
-
"domain",
|
|
804
|
-
"current.js"
|
|
805
|
-
]
|
|
806
|
-
},
|
|
807
|
-
"domain:list": {
|
|
808
|
-
"aliases": [],
|
|
809
|
-
"args": {},
|
|
810
|
-
"description": "List all configured domains/installations",
|
|
811
|
-
"examples": [
|
|
812
|
-
"<%= config.bin %> <%= command.id %>"
|
|
813
|
-
],
|
|
814
|
-
"flags": {},
|
|
815
|
-
"hasDynamicHelp": false,
|
|
816
|
-
"hiddenAliases": [],
|
|
817
|
-
"id": "domain:list",
|
|
818
|
-
"pluginAlias": "@hyperdrive.bot/cli",
|
|
819
|
-
"pluginName": "@hyperdrive.bot/cli",
|
|
820
|
-
"pluginType": "core",
|
|
821
|
-
"strict": true,
|
|
822
|
-
"enableJsonFlag": false,
|
|
823
|
-
"isESM": true,
|
|
824
|
-
"relativePath": [
|
|
825
|
-
"dist",
|
|
826
|
-
"commands",
|
|
827
|
-
"domain",
|
|
828
|
-
"list.js"
|
|
829
|
-
]
|
|
830
|
-
},
|
|
831
|
-
"domain:switch": {
|
|
832
|
-
"aliases": [],
|
|
833
|
-
"args": {
|
|
834
|
-
"domain": {
|
|
835
|
-
"description": "The domain to set as default",
|
|
836
|
-
"name": "domain",
|
|
837
|
-
"required": true
|
|
838
|
-
}
|
|
839
|
-
},
|
|
840
|
-
"description": "Switch the default domain for CLI commands",
|
|
841
|
-
"examples": [
|
|
842
|
-
"<%= config.bin %> <%= command.id %> acme.hyperdrive.bot"
|
|
843
|
-
],
|
|
844
|
-
"flags": {},
|
|
845
|
-
"hasDynamicHelp": false,
|
|
846
|
-
"hiddenAliases": [],
|
|
847
|
-
"id": "domain:switch",
|
|
848
|
-
"pluginAlias": "@hyperdrive.bot/cli",
|
|
849
|
-
"pluginName": "@hyperdrive.bot/cli",
|
|
850
|
-
"pluginType": "core",
|
|
851
|
-
"strict": true,
|
|
852
|
-
"enableJsonFlag": false,
|
|
853
|
-
"isESM": true,
|
|
854
|
-
"relativePath": [
|
|
855
|
-
"dist",
|
|
856
|
-
"commands",
|
|
857
|
-
"domain",
|
|
858
|
-
"switch.js"
|
|
859
|
-
]
|
|
860
|
-
},
|
|
861
861
|
"git:connect": {
|
|
862
862
|
"aliases": [],
|
|
863
863
|
"args": {},
|
|
@@ -1331,6 +1331,9 @@
|
|
|
1331
1331
|
"spring",
|
|
1332
1332
|
"aspnet",
|
|
1333
1333
|
"rails",
|
|
1334
|
+
"serverless",
|
|
1335
|
+
"serverless-express",
|
|
1336
|
+
"serverless-nestjs",
|
|
1334
1337
|
"other"
|
|
1335
1338
|
],
|
|
1336
1339
|
"type": "option"
|
|
@@ -2507,6 +2510,60 @@
|
|
|
2507
2510
|
"update.js"
|
|
2508
2511
|
]
|
|
2509
2512
|
},
|
|
2513
|
+
"stage:access": {
|
|
2514
|
+
"aliases": [],
|
|
2515
|
+
"args": {
|
|
2516
|
+
"stage": {
|
|
2517
|
+
"description": "Stage name to view access for",
|
|
2518
|
+
"name": "stage",
|
|
2519
|
+
"required": false
|
|
2520
|
+
}
|
|
2521
|
+
},
|
|
2522
|
+
"description": "View who has access to a stage",
|
|
2523
|
+
"examples": [
|
|
2524
|
+
"<%= config.bin %> <%= command.id %>",
|
|
2525
|
+
"<%= config.bin %> <%= command.id %> develop",
|
|
2526
|
+
"<%= config.bin %> <%= command.id %> develop --format json"
|
|
2527
|
+
],
|
|
2528
|
+
"flags": {
|
|
2529
|
+
"domain": {
|
|
2530
|
+
"char": "d",
|
|
2531
|
+
"description": "Tenant domain (for multi-domain setups)",
|
|
2532
|
+
"name": "domain",
|
|
2533
|
+
"hasDynamicHelp": false,
|
|
2534
|
+
"multiple": false,
|
|
2535
|
+
"type": "option"
|
|
2536
|
+
},
|
|
2537
|
+
"format": {
|
|
2538
|
+
"char": "f",
|
|
2539
|
+
"description": "Output format",
|
|
2540
|
+
"name": "format",
|
|
2541
|
+
"default": "table",
|
|
2542
|
+
"hasDynamicHelp": false,
|
|
2543
|
+
"multiple": false,
|
|
2544
|
+
"options": [
|
|
2545
|
+
"table",
|
|
2546
|
+
"json"
|
|
2547
|
+
],
|
|
2548
|
+
"type": "option"
|
|
2549
|
+
}
|
|
2550
|
+
},
|
|
2551
|
+
"hasDynamicHelp": false,
|
|
2552
|
+
"hiddenAliases": [],
|
|
2553
|
+
"id": "stage:access",
|
|
2554
|
+
"pluginAlias": "@hyperdrive.bot/cli",
|
|
2555
|
+
"pluginName": "@hyperdrive.bot/cli",
|
|
2556
|
+
"pluginType": "core",
|
|
2557
|
+
"strict": true,
|
|
2558
|
+
"enableJsonFlag": false,
|
|
2559
|
+
"isESM": true,
|
|
2560
|
+
"relativePath": [
|
|
2561
|
+
"dist",
|
|
2562
|
+
"commands",
|
|
2563
|
+
"stage",
|
|
2564
|
+
"access.js"
|
|
2565
|
+
]
|
|
2566
|
+
},
|
|
2510
2567
|
"stage:create": {
|
|
2511
2568
|
"aliases": [],
|
|
2512
2569
|
"args": {},
|
|
@@ -2642,6 +2699,177 @@
|
|
|
2642
2699
|
"list.js"
|
|
2643
2700
|
]
|
|
2644
2701
|
},
|
|
2702
|
+
"stage:revoke": {
|
|
2703
|
+
"aliases": [],
|
|
2704
|
+
"args": {
|
|
2705
|
+
"stage": {
|
|
2706
|
+
"description": "Stage name to revoke access from",
|
|
2707
|
+
"name": "stage",
|
|
2708
|
+
"required": false
|
|
2709
|
+
}
|
|
2710
|
+
},
|
|
2711
|
+
"description": "Revoke access from a stage for a user or CI account",
|
|
2712
|
+
"examples": [
|
|
2713
|
+
"<%= config.bin %> <%= command.id %>",
|
|
2714
|
+
"<%= config.bin %> <%= command.id %> develop",
|
|
2715
|
+
"<%= config.bin %> <%= command.id %> develop --user maria@company.com",
|
|
2716
|
+
"<%= config.bin %> <%= command.id %> develop --ci github-actions"
|
|
2717
|
+
],
|
|
2718
|
+
"flags": {
|
|
2719
|
+
"ci": {
|
|
2720
|
+
"char": "c",
|
|
2721
|
+
"description": "CI account name or ID to revoke access from",
|
|
2722
|
+
"exclusive": [
|
|
2723
|
+
"user"
|
|
2724
|
+
],
|
|
2725
|
+
"name": "ci",
|
|
2726
|
+
"hasDynamicHelp": false,
|
|
2727
|
+
"multiple": false,
|
|
2728
|
+
"type": "option"
|
|
2729
|
+
},
|
|
2730
|
+
"domain": {
|
|
2731
|
+
"char": "d",
|
|
2732
|
+
"description": "Tenant domain (for multi-domain setups)",
|
|
2733
|
+
"name": "domain",
|
|
2734
|
+
"hasDynamicHelp": false,
|
|
2735
|
+
"multiple": false,
|
|
2736
|
+
"type": "option"
|
|
2737
|
+
},
|
|
2738
|
+
"user": {
|
|
2739
|
+
"char": "u",
|
|
2740
|
+
"description": "User email to revoke access from",
|
|
2741
|
+
"exclusive": [
|
|
2742
|
+
"ci"
|
|
2743
|
+
],
|
|
2744
|
+
"name": "user",
|
|
2745
|
+
"hasDynamicHelp": false,
|
|
2746
|
+
"multiple": false,
|
|
2747
|
+
"type": "option"
|
|
2748
|
+
},
|
|
2749
|
+
"yes": {
|
|
2750
|
+
"char": "y",
|
|
2751
|
+
"description": "Skip confirmation",
|
|
2752
|
+
"name": "yes",
|
|
2753
|
+
"allowNo": false,
|
|
2754
|
+
"type": "boolean"
|
|
2755
|
+
}
|
|
2756
|
+
},
|
|
2757
|
+
"hasDynamicHelp": false,
|
|
2758
|
+
"hiddenAliases": [],
|
|
2759
|
+
"id": "stage:revoke",
|
|
2760
|
+
"pluginAlias": "@hyperdrive.bot/cli",
|
|
2761
|
+
"pluginName": "@hyperdrive.bot/cli",
|
|
2762
|
+
"pluginType": "core",
|
|
2763
|
+
"strict": true,
|
|
2764
|
+
"enableJsonFlag": false,
|
|
2765
|
+
"isESM": true,
|
|
2766
|
+
"relativePath": [
|
|
2767
|
+
"dist",
|
|
2768
|
+
"commands",
|
|
2769
|
+
"stage",
|
|
2770
|
+
"revoke.js"
|
|
2771
|
+
]
|
|
2772
|
+
},
|
|
2773
|
+
"stage:share": {
|
|
2774
|
+
"aliases": [],
|
|
2775
|
+
"args": {
|
|
2776
|
+
"stage": {
|
|
2777
|
+
"description": "Stage name to share access to",
|
|
2778
|
+
"name": "stage",
|
|
2779
|
+
"required": false
|
|
2780
|
+
}
|
|
2781
|
+
},
|
|
2782
|
+
"description": "Grant access to a stage for users or CI accounts",
|
|
2783
|
+
"examples": [
|
|
2784
|
+
"<%= config.bin %> <%= command.id %>",
|
|
2785
|
+
"<%= config.bin %> <%= command.id %> develop",
|
|
2786
|
+
"<%= config.bin %> <%= command.id %> develop --user maria@company.com --role deployer",
|
|
2787
|
+
"<%= config.bin %> <%= command.id %> develop --ci github-actions --role deployer",
|
|
2788
|
+
"<%= config.bin %> <%= command.id %> develop --group \"CI Accounts\" --role deployer",
|
|
2789
|
+
"<%= config.bin %> <%= command.id %> staging production --user dev@company.com --role viewer"
|
|
2790
|
+
],
|
|
2791
|
+
"flags": {
|
|
2792
|
+
"ci": {
|
|
2793
|
+
"char": "c",
|
|
2794
|
+
"description": "CI account name or ID to grant access to",
|
|
2795
|
+
"exclusive": [
|
|
2796
|
+
"user",
|
|
2797
|
+
"group"
|
|
2798
|
+
],
|
|
2799
|
+
"name": "ci",
|
|
2800
|
+
"hasDynamicHelp": false,
|
|
2801
|
+
"multiple": false,
|
|
2802
|
+
"type": "option"
|
|
2803
|
+
},
|
|
2804
|
+
"domain": {
|
|
2805
|
+
"char": "d",
|
|
2806
|
+
"description": "Tenant domain (for multi-domain setups)",
|
|
2807
|
+
"name": "domain",
|
|
2808
|
+
"hasDynamicHelp": false,
|
|
2809
|
+
"multiple": false,
|
|
2810
|
+
"type": "option"
|
|
2811
|
+
},
|
|
2812
|
+
"group": {
|
|
2813
|
+
"char": "g",
|
|
2814
|
+
"description": "Group ID or name to grant access to",
|
|
2815
|
+
"exclusive": [
|
|
2816
|
+
"user",
|
|
2817
|
+
"ci"
|
|
2818
|
+
],
|
|
2819
|
+
"name": "group",
|
|
2820
|
+
"hasDynamicHelp": false,
|
|
2821
|
+
"multiple": false,
|
|
2822
|
+
"type": "option"
|
|
2823
|
+
},
|
|
2824
|
+
"role": {
|
|
2825
|
+
"char": "r",
|
|
2826
|
+
"description": "Role to grant",
|
|
2827
|
+
"name": "role",
|
|
2828
|
+
"hasDynamicHelp": false,
|
|
2829
|
+
"multiple": false,
|
|
2830
|
+
"options": [
|
|
2831
|
+
"viewer",
|
|
2832
|
+
"deployer",
|
|
2833
|
+
"manager"
|
|
2834
|
+
],
|
|
2835
|
+
"type": "option"
|
|
2836
|
+
},
|
|
2837
|
+
"user": {
|
|
2838
|
+
"char": "u",
|
|
2839
|
+
"description": "User email to grant access to",
|
|
2840
|
+
"exclusive": [
|
|
2841
|
+
"ci",
|
|
2842
|
+
"group"
|
|
2843
|
+
],
|
|
2844
|
+
"name": "user",
|
|
2845
|
+
"hasDynamicHelp": false,
|
|
2846
|
+
"multiple": false,
|
|
2847
|
+
"type": "option"
|
|
2848
|
+
},
|
|
2849
|
+
"yes": {
|
|
2850
|
+
"char": "y",
|
|
2851
|
+
"description": "Skip confirmation for production stages",
|
|
2852
|
+
"name": "yes",
|
|
2853
|
+
"allowNo": false,
|
|
2854
|
+
"type": "boolean"
|
|
2855
|
+
}
|
|
2856
|
+
},
|
|
2857
|
+
"hasDynamicHelp": false,
|
|
2858
|
+
"hiddenAliases": [],
|
|
2859
|
+
"id": "stage:share",
|
|
2860
|
+
"pluginAlias": "@hyperdrive.bot/cli",
|
|
2861
|
+
"pluginName": "@hyperdrive.bot/cli",
|
|
2862
|
+
"pluginType": "core",
|
|
2863
|
+
"strict": false,
|
|
2864
|
+
"enableJsonFlag": false,
|
|
2865
|
+
"isESM": true,
|
|
2866
|
+
"relativePath": [
|
|
2867
|
+
"dist",
|
|
2868
|
+
"commands",
|
|
2869
|
+
"stage",
|
|
2870
|
+
"share.js"
|
|
2871
|
+
]
|
|
2872
|
+
},
|
|
2645
2873
|
"ci:account:create": {
|
|
2646
2874
|
"aliases": [],
|
|
2647
2875
|
"args": {},
|
|
@@ -2701,7 +2929,7 @@
|
|
|
2701
2929
|
"type": "option"
|
|
2702
2930
|
},
|
|
2703
2931
|
"stage": {
|
|
2704
|
-
"description": "
|
|
2932
|
+
"description": "Stages to grant deployer access to (can be specified multiple times)",
|
|
2705
2933
|
"name": "stage",
|
|
2706
2934
|
"hasDynamicHelp": false,
|
|
2707
2935
|
"multiple": true,
|
|
@@ -2815,5 +3043,5 @@
|
|
|
2815
3043
|
]
|
|
2816
3044
|
}
|
|
2817
3045
|
},
|
|
2818
|
-
"version": "1.0.
|
|
3046
|
+
"version": "1.0.7"
|
|
2819
3047
|
}
|
package/package.json
CHANGED
|
@@ -1,27 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyperdrive.bot/cli",
|
|
3
3
|
"description": "hyperdrive.bot is a command-line interface (CLI) tool designed for managing and deploying projects using the Hyperdrive API. The CLI acts as a proxy to the Hyperdrive API, enabling users to:",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.7",
|
|
5
5
|
"author": "marcelomarra",
|
|
6
6
|
"bin": {
|
|
7
7
|
"hd": "./bin/run.js",
|
|
8
8
|
"hyperdrive.bot": "./bin/run.js",
|
|
9
|
-
"hyperdrive": "./bin/run.js"
|
|
9
|
+
"hyperdrive": "./bin/run.js",
|
|
10
|
+
"gut": "./bin/run.js"
|
|
10
11
|
},
|
|
11
12
|
"bugs": "https://github.com/hyperdrive/hd/issues",
|
|
12
13
|
"dependencies": {
|
|
13
|
-
"@aws-crypto/sha256-js": "^5.2.0",
|
|
14
14
|
"@aws-sdk/client-cloudwatch-logs": "^3.958.0",
|
|
15
15
|
"@aws-sdk/client-cognito-identity": "^3.922.0",
|
|
16
16
|
"@aws-sdk/client-cognito-identity-provider": "^3.971.0",
|
|
17
|
-
"@
|
|
17
|
+
"@hyperdrive.bot/bmad-workflow": "file:../bmad-workflow",
|
|
18
|
+
"@hyperdrive.bot/cli-auth": "^1.0.2",
|
|
19
|
+
"@hyperdrive.bot/gh-plugin": "file:../hyperdrive-gh",
|
|
20
|
+
"@hyperdrive.bot/glab-plugin": "file:../hyperdrive-glab",
|
|
21
|
+
"@hyperdrive.bot/gut": "file:../gut",
|
|
22
|
+
"@hyperdrive.bot/jira-plugin": "file:../hyperdrive-jira",
|
|
23
|
+
"@hyperdrive.bot/vercel-plugin": "file:../hyperdrive-vercel",
|
|
24
|
+
"@oclif/core": "^4",
|
|
18
25
|
"@oclif/plugin-help": "^6",
|
|
19
26
|
"@oclif/plugin-not-found": "^3.1.8",
|
|
20
27
|
"@oclif/plugin-plugins": "^5",
|
|
21
|
-
"@smithy/protocol-http": "^5.3.4",
|
|
22
|
-
"@smithy/signature-v4": "^5.3.4",
|
|
23
28
|
"axios": "^1.7.1",
|
|
24
29
|
"chalk": "^5.3.0",
|
|
30
|
+
"cli-table3": "^0.6.5",
|
|
25
31
|
"inquirer": "^9.2.20",
|
|
26
32
|
"jsonwebtoken": "^9.0.3",
|
|
27
33
|
"moment": "^2.30.1",
|
|
@@ -30,7 +36,7 @@
|
|
|
30
36
|
},
|
|
31
37
|
"devDependencies": {
|
|
32
38
|
"@oclif/prettier-config": "^0.2.1",
|
|
33
|
-
"@oclif/test": "^
|
|
39
|
+
"@oclif/test": "^4",
|
|
34
40
|
"@types/chai": "^4",
|
|
35
41
|
"@types/inquirer": "^9.0.7",
|
|
36
42
|
"@types/jsonwebtoken": "^9.0.10",
|
|
@@ -79,9 +85,47 @@
|
|
|
79
85
|
},
|
|
80
86
|
"plugins": [
|
|
81
87
|
"@oclif/plugin-help",
|
|
82
|
-
"@oclif/plugin-plugins"
|
|
88
|
+
"@oclif/plugin-plugins",
|
|
89
|
+
"@hyperdrive.bot/gut",
|
|
90
|
+
"@hyperdrive.bot/bmad-workflow",
|
|
91
|
+
"@hyperdrive.bot/gh-plugin",
|
|
92
|
+
"@hyperdrive.bot/glab-plugin",
|
|
93
|
+
"@hyperdrive.bot/jira-plugin",
|
|
94
|
+
"@hyperdrive.bot/vercel-plugin"
|
|
83
95
|
],
|
|
84
|
-
"topicSeparator": " "
|
|
96
|
+
"topicSeparator": " ",
|
|
97
|
+
"topics": {
|
|
98
|
+
"entity": {
|
|
99
|
+
"description": "Manage workspace entities (from gut plugin)"
|
|
100
|
+
},
|
|
101
|
+
"ticket": {
|
|
102
|
+
"description": "Manage tickets from the ADHB system (from gut plugin)"
|
|
103
|
+
},
|
|
104
|
+
"workflow": {
|
|
105
|
+
"description": "AI-driven development workflow orchestration (from bmad-workflow plugin)"
|
|
106
|
+
},
|
|
107
|
+
"stories": {
|
|
108
|
+
"description": "Manage user stories (from bmad-workflow plugin)"
|
|
109
|
+
},
|
|
110
|
+
"epics": {
|
|
111
|
+
"description": "Manage epics (from bmad-workflow plugin)"
|
|
112
|
+
},
|
|
113
|
+
"prd": {
|
|
114
|
+
"description": "PRD validation and fixing (from bmad-workflow plugin)"
|
|
115
|
+
},
|
|
116
|
+
"gh": {
|
|
117
|
+
"description": "GitHub CLI passthrough (gh-plugin)"
|
|
118
|
+
},
|
|
119
|
+
"glab": {
|
|
120
|
+
"description": "GitLab CLI passthrough (glab-plugin)"
|
|
121
|
+
},
|
|
122
|
+
"jira": {
|
|
123
|
+
"description": "Jira CLI for issues, boards, and sprints (jira-plugin)"
|
|
124
|
+
},
|
|
125
|
+
"vercel": {
|
|
126
|
+
"description": "Vercel CLI passthrough (vercel-plugin)"
|
|
127
|
+
}
|
|
128
|
+
}
|
|
85
129
|
},
|
|
86
130
|
"repository": "hyperdrive/hd",
|
|
87
131
|
"scripts": {
|
|
@@ -104,9 +148,5 @@
|
|
|
104
148
|
"version": "oclif readme && git add README.md",
|
|
105
149
|
"publish:docker": "docker logout && aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws/j4f5a6i6 && docker build --platform linux/amd64 -t public.ecr.aws/j4f5a6i6/devsquad/hyperdrive:latest . && docker push public.ecr.aws/j4f5a6i6/devsquad/hyperdrive:latest"
|
|
106
150
|
},
|
|
107
|
-
"types": "dist/index.d.ts"
|
|
108
|
-
|
|
109
|
-
"access": "public",
|
|
110
|
-
"registry": "https://registry.npmjs.org/"
|
|
111
|
-
}
|
|
112
|
-
}
|
|
151
|
+
"types": "dist/index.d.ts"
|
|
152
|
+
}
|