@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.
Files changed (67) hide show
  1. package/README.md +169 -63
  2. package/dist/commands/account/add.d.ts +6 -6
  3. package/dist/commands/account/remove.d.ts +3 -3
  4. package/dist/commands/auth/login.d.ts +4 -4
  5. package/dist/commands/auth/login.js +1 -0
  6. package/dist/commands/ci/account/create.d.ts +7 -6
  7. package/dist/commands/ci/account/create.js +49 -3
  8. package/dist/commands/ci/account/delete.d.ts +3 -3
  9. package/dist/commands/ci/account/list.d.ts +2 -2
  10. package/dist/commands/config/get.d.ts +1 -1
  11. package/dist/commands/config/set.d.ts +2 -2
  12. package/dist/commands/deployment/create.d.ts +10 -10
  13. package/dist/commands/deployment/get.d.ts +4 -4
  14. package/dist/commands/deployment/launch.d.ts +6 -6
  15. package/dist/commands/deployment/list.d.ts +3 -3
  16. package/dist/commands/deployment/list.js +17 -17
  17. package/dist/commands/domain/switch.d.ts +1 -1
  18. package/dist/commands/example.d.ts +3 -3
  19. package/dist/commands/git/connect.d.ts +2 -2
  20. package/dist/commands/git/disconnect.d.ts +3 -3
  21. package/dist/commands/git/list.d.ts +2 -2
  22. package/dist/commands/git/sync.d.ts +7 -7
  23. package/dist/commands/git/sync.js +24 -23
  24. package/dist/commands/jira/connect.d.ts +1 -1
  25. package/dist/commands/jira/status.d.ts +1 -1
  26. package/dist/commands/module/analyze.d.ts +5 -5
  27. package/dist/commands/module/create.d.ts +17 -17
  28. package/dist/commands/module/create.js +9 -1
  29. package/dist/commands/module/destroy.d.ts +3 -3
  30. package/dist/commands/module/get.d.ts +2 -2
  31. package/dist/commands/module/link.d.ts +4 -4
  32. package/dist/commands/module/list.d.ts +1 -1
  33. package/dist/commands/module/list.js +12 -11
  34. package/dist/commands/module/reanalyze.d.ts +6 -6
  35. package/dist/commands/module/update.d.ts +19 -19
  36. package/dist/commands/parameter/add.d.ts +7 -7
  37. package/dist/commands/parameter/backfill.d.ts +4 -4
  38. package/dist/commands/parameter/backfill.js +4 -3
  39. package/dist/commands/parameter/clear.d.ts +6 -6
  40. package/dist/commands/parameter/list.d.ts +6 -6
  41. package/dist/commands/parameter/list.js +4 -3
  42. package/dist/commands/parameter/pull.d.ts +6 -6
  43. package/dist/commands/parameter/remove.d.ts +7 -7
  44. package/dist/commands/parameter/sync.d.ts +6 -6
  45. package/dist/commands/parameter/update.d.ts +7 -7
  46. package/dist/commands/stage/access.d.ts +15 -0
  47. package/dist/commands/stage/access.js +130 -0
  48. package/dist/commands/stage/create.d.ts +11 -11
  49. package/dist/commands/stage/list.d.ts +1 -1
  50. package/dist/commands/stage/list.js +21 -20
  51. package/dist/commands/stage/revoke.d.ts +18 -0
  52. package/dist/commands/stage/revoke.js +171 -0
  53. package/dist/commands/stage/share.d.ts +23 -0
  54. package/dist/commands/stage/share.js +292 -0
  55. package/dist/commands/test-api.d.ts +1 -1
  56. package/dist/services/auth-service.d.ts +15 -82
  57. package/dist/services/auth-service.js +24 -237
  58. package/dist/services/hyperdrive-sigv4.d.ts +37 -24
  59. package/dist/services/hyperdrive-sigv4.js +62 -193
  60. package/dist/services/tenant-service.d.ts +6 -0
  61. package/dist/services/tenant-service.js +13 -0
  62. package/dist/utils/auth-flow.d.ts +1 -0
  63. package/dist/utils/auth-flow.js +2 -0
  64. package/dist/utils/table.d.ts +17 -0
  65. package/dist/utils/table.js +41 -0
  66. package/oclif.manifest.json +309 -81
  67. package/package.json +55 -15
package/README.md CHANGED
@@ -20,7 +20,7 @@ $ npm install -g @hyperdrive.bot/cli
20
20
  $ hd COMMAND
21
21
  running command...
22
22
  $ hd (--version)
23
- @hyperdrive.bot/cli/1.0.5 linux-x64 node-v18.20.8
23
+ @hyperdrive.bot/cli/1.0.7 linux-x64 node-v22.22.0
24
24
  $ hd --help [COMMAND]
25
25
  USAGE
26
26
  $ hd COMMAND
@@ -84,8 +84,11 @@ USAGE
84
84
  * [`hd plugins uninstall [PLUGIN]`](#hd-plugins-uninstall-plugin)
85
85
  * [`hd plugins unlink [PLUGIN]`](#hd-plugins-unlink-plugin)
86
86
  * [`hd plugins update`](#hd-plugins-update)
87
+ * [`hd stage access [STAGE]`](#hd-stage-access-stage)
87
88
  * [`hd stage create`](#hd-stage-create)
88
89
  * [`hd stage list`](#hd-stage-list)
90
+ * [`hd stage revoke [STAGE]`](#hd-stage-revoke-stage)
91
+ * [`hd stage share [STAGE]`](#hd-stage-share-stage)
89
92
  * [`hd test-api`](#hd-test-api)
90
93
 
91
94
  ## `hd account add`
@@ -115,7 +118,7 @@ EXAMPLES
115
118
  $ hd account add # Interactive mode
116
119
  ```
117
120
 
118
- _See code: [src/commands/account/add.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/account/add.ts)_
121
+ _See code: [src/commands/account/add.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/account/add.ts)_
119
122
 
120
123
  ## `hd account list`
121
124
 
@@ -132,7 +135,7 @@ EXAMPLES
132
135
  $ hd account list
133
136
  ```
134
137
 
135
- _See code: [src/commands/account/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/account/list.ts)_
138
+ _See code: [src/commands/account/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/account/list.ts)_
136
139
 
137
140
  ## `hd account remove`
138
141
 
@@ -156,7 +159,7 @@ EXAMPLES
156
159
  $ hd account remove --accountId 123456789012 --force
157
160
  ```
158
161
 
159
- _See code: [src/commands/account/remove.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/account/remove.ts)_
162
+ _See code: [src/commands/account/remove.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/account/remove.ts)_
160
163
 
161
164
  ## `hd auth login`
162
165
 
@@ -184,7 +187,7 @@ EXAMPLES
184
187
  $ hd auth login --ci --domain acme.hyperdrive.bot
185
188
  ```
186
189
 
187
- _See code: [src/commands/auth/login.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/auth/login.ts)_
190
+ _See code: [src/commands/auth/login.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/auth/login.ts)_
188
191
 
189
192
  ## `hd auth logout`
190
193
 
@@ -201,7 +204,7 @@ EXAMPLES
201
204
  $ hd auth logout
202
205
  ```
203
206
 
204
- _See code: [src/commands/auth/logout.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/auth/logout.ts)_
207
+ _See code: [src/commands/auth/logout.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/auth/logout.ts)_
205
208
 
206
209
  ## `hd auth refresh`
207
210
 
@@ -218,7 +221,7 @@ EXAMPLES
218
221
  $ hd auth refresh
219
222
  ```
220
223
 
221
- _See code: [src/commands/auth/refresh.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/auth/refresh.ts)_
224
+ _See code: [src/commands/auth/refresh.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/auth/refresh.ts)_
222
225
 
223
226
  ## `hd auth status`
224
227
 
@@ -235,7 +238,7 @@ EXAMPLES
235
238
  $ hd auth status
236
239
  ```
237
240
 
238
- _See code: [src/commands/auth/status.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/auth/status.ts)_
241
+ _See code: [src/commands/auth/status.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/auth/status.ts)_
239
242
 
240
243
  ## `hd ci account create`
241
244
 
@@ -243,9 +246,9 @@ Create a CI token for non-interactive authentication in CI/CD pipelines
243
246
 
244
247
  ```
245
248
  USAGE
246
- $ hd ci account create [--description <value>] [-d <value>] [-n <value>] [--project <value>] [-s
247
- deploy|deploy:create|deploy:launch|module:read|module:write|parameter:read|parameter:write|stage:read|stage:write]
248
- [--stage <value>]
249
+ $ hd ci account create [--description <value>] [-d <value>] [-n <value>] [--project <value>...] [-s
250
+ deploy|deploy:create|deploy:launch|module:read|module:write|parameter:read|parameter:write|stage:read|stage:write...
251
+ ] [--stage <value>...]
249
252
 
250
253
  FLAGS
251
254
  -d, --domain=<value> Tenant domain
@@ -255,7 +258,7 @@ FLAGS
255
258
  ter:write|stage:read|stage:write>
256
259
  --description=<value> Optional description for the CI account
257
260
  --project=<value>... Restrict to specific project slugs (can be specified multiple times)
258
- --stage=<value>... Restrict to specific stages (can be specified multiple times)
261
+ --stage=<value>... Stages to grant deployer access to (can be specified multiple times)
259
262
 
260
263
  DESCRIPTION
261
264
  Create a CI token for non-interactive authentication in CI/CD pipelines
@@ -266,7 +269,7 @@ EXAMPLES
266
269
  $ hd ci account create --name="gitlab-staging" --scope=deploy --scope=parameter:read
267
270
  ```
268
271
 
269
- _See code: [src/commands/ci/account/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/ci/account/create.ts)_
272
+ _See code: [src/commands/ci/account/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/ci/account/create.ts)_
270
273
 
271
274
  ## `hd ci account delete [ACCOUNTID]`
272
275
 
@@ -292,7 +295,7 @@ EXAMPLES
292
295
  $ hd ci account delete <account-id> --force
293
296
  ```
294
297
 
295
- _See code: [src/commands/ci/account/delete.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/ci/account/delete.ts)_
298
+ _See code: [src/commands/ci/account/delete.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/ci/account/delete.ts)_
296
299
 
297
300
  ## `hd ci account list`
298
301
 
@@ -315,7 +318,7 @@ EXAMPLES
315
318
  $ hd ci account list --json
316
319
  ```
317
320
 
318
- _See code: [src/commands/ci/account/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/ci/account/list.ts)_
321
+ _See code: [src/commands/ci/account/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/ci/account/list.ts)_
319
322
 
320
323
  ## `hd config get KEY`
321
324
 
@@ -337,7 +340,7 @@ EXAMPLES
337
340
  $ hd config get bootstrap-url
338
341
  ```
339
342
 
340
- _See code: [src/commands/config/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/config/get.ts)_
343
+ _See code: [src/commands/config/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/config/get.ts)_
341
344
 
342
345
  ## `hd config set KEY VALUE`
343
346
 
@@ -364,7 +367,7 @@ EXAMPLES
364
367
  $ hd config set region us-west-2
365
368
  ```
366
369
 
367
- _See code: [src/commands/config/set.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/config/set.ts)_
370
+ _See code: [src/commands/config/set.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/config/set.ts)_
368
371
 
369
372
  ## `hd config show`
370
373
 
@@ -381,7 +384,7 @@ EXAMPLES
381
384
  $ hd config show
382
385
  ```
383
386
 
384
- _See code: [src/commands/config/show.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/config/show.ts)_
387
+ _See code: [src/commands/config/show.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/config/show.ts)_
385
388
 
386
389
  ## `hd deployment create`
387
390
 
@@ -390,13 +393,13 @@ Create a new deployment with real-time log streaming
390
393
  ```
391
394
  USAGE
392
395
  $ hd deployment create -c <value> -m <value> -s <value> [--debug] [-d <value>] [--launch] [-n <value>] [--noStream]
393
- [-r <value>] [-v]
396
+ [-r <value>...] [-v]
394
397
 
395
398
  FLAGS
396
399
  -c, --commit=<value> (required) Commit hash
397
400
  -d, --domain=<value> Tenant domain (for multi-domain setups)
398
401
  -m, --moduleSlug=<value> (required) Module slug
399
- -n, --name=<value> [default: Deployment-2026-01-18-20-05-57] The name of the deployment
402
+ -n, --name=<value> [default: Deployment-2026-02-06-14-27-26] The name of the deployment
400
403
  -r, --regions=<value>... [default: ] Regions for the deployment
401
404
  -s, --stage=<value> (required) Stage for the deployment
402
405
  -v, --verbose Show detailed build logs
@@ -415,7 +418,7 @@ EXAMPLES
415
418
  $ hd deployment create --stage="dev" --commit="abc123" --verbose
416
419
  ```
417
420
 
418
- _See code: [src/commands/deployment/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/deployment/create.ts)_
421
+ _See code: [src/commands/deployment/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/deployment/create.ts)_
419
422
 
420
423
  ## `hd deployment get`
421
424
 
@@ -440,7 +443,7 @@ EXAMPLES
440
443
  $ hd deployment get --name="prod-release-v1" --stage="prod"
441
444
  ```
442
445
 
443
- _See code: [src/commands/deployment/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/deployment/get.ts)_
446
+ _See code: [src/commands/deployment/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/deployment/get.ts)_
444
447
 
445
448
  ## `hd deployment launch`
446
449
 
@@ -467,7 +470,7 @@ EXAMPLES
467
470
  $ hd deployment launch --name="prod-release" --stage="prod" --region="us-west-2"
468
471
  ```
469
472
 
470
- _See code: [src/commands/deployment/launch.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/deployment/launch.ts)_
473
+ _See code: [src/commands/deployment/launch.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/deployment/launch.ts)_
471
474
 
472
475
  ## `hd deployment list`
473
476
 
@@ -491,7 +494,7 @@ EXAMPLES
491
494
  $ hd deployment list --stage="prod" --moduleSlug="my-api"
492
495
  ```
493
496
 
494
- _See code: [src/commands/deployment/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/deployment/list.ts)_
497
+ _See code: [src/commands/deployment/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/deployment/list.ts)_
495
498
 
496
499
  ## `hd domain current`
497
500
 
@@ -508,7 +511,7 @@ EXAMPLES
508
511
  $ hd domain current
509
512
  ```
510
513
 
511
- _See code: [src/commands/domain/current.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/domain/current.ts)_
514
+ _See code: [src/commands/domain/current.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/domain/current.ts)_
512
515
 
513
516
  ## `hd domain list`
514
517
 
@@ -525,7 +528,7 @@ EXAMPLES
525
528
  $ hd domain list
526
529
  ```
527
530
 
528
- _See code: [src/commands/domain/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/domain/list.ts)_
531
+ _See code: [src/commands/domain/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/domain/list.ts)_
529
532
 
530
533
  ## `hd domain switch DOMAIN`
531
534
 
@@ -545,7 +548,7 @@ EXAMPLES
545
548
  $ hd domain switch acme.hyperdrive.bot
546
549
  ```
547
550
 
548
- _See code: [src/commands/domain/switch.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/domain/switch.ts)_
551
+ _See code: [src/commands/domain/switch.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/domain/switch.ts)_
549
552
 
550
553
  ## `hd example [FILE]`
551
554
 
@@ -569,7 +572,7 @@ EXAMPLES
569
572
  $ hd example
570
573
  ```
571
574
 
572
- _See code: [src/commands/example.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/example.ts)_
575
+ _See code: [src/commands/example.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/example.ts)_
573
576
 
574
577
  ## `hd git connect`
575
578
 
@@ -593,7 +596,7 @@ EXAMPLES
593
596
  $ hd git connect --provider=gitlab
594
597
  ```
595
598
 
596
- _See code: [src/commands/git/connect.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/git/connect.ts)_
599
+ _See code: [src/commands/git/connect.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/git/connect.ts)_
597
600
 
598
601
  ## `hd git disconnect`
599
602
 
@@ -618,7 +621,7 @@ EXAMPLES
618
621
  $ hd git disconnect --provider=github --installation-id=12345
619
622
  ```
620
623
 
621
- _See code: [src/commands/git/disconnect.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/git/disconnect.ts)_
624
+ _See code: [src/commands/git/disconnect.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/git/disconnect.ts)_
622
625
 
623
626
  ## `hd git list`
624
627
 
@@ -642,7 +645,7 @@ EXAMPLES
642
645
  $ hd git list --provider=github
643
646
  ```
644
647
 
645
- _See code: [src/commands/git/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/git/list.ts)_
648
+ _See code: [src/commands/git/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/git/list.ts)_
646
649
 
647
650
  ## `hd git sync`
648
651
 
@@ -650,8 +653,8 @@ Sync specific branches or all open branches with a source branch (default: maste
650
653
 
651
654
  ```
652
655
  USAGE
653
- $ hd git sync [-a] [-b <value>] [-d <value>] [-m no-ff|--ff-only|--no-ff|--squash] [-r <value>] [-s <value>]
654
- [-v]
656
+ $ hd git sync [-a] [-b <value>...] [-d <value>] [-m no-ff|--ff-only|--no-ff|--squash] [-r <value>] [-s
657
+ <value>] [-v]
655
658
 
656
659
  FLAGS
657
660
  -a, --all Sync all remote branches
@@ -678,7 +681,7 @@ EXAMPLES
678
681
  $ hd git sync --all --remote upstream --merge-strategy no-ff
679
682
  ```
680
683
 
681
- _See code: [src/commands/git/sync.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/git/sync.ts)_
684
+ _See code: [src/commands/git/sync.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/git/sync.ts)_
682
685
 
683
686
  ## `hd help [COMMAND]`
684
687
 
@@ -715,7 +718,7 @@ EXAMPLES
715
718
  $ hd init
716
719
  ```
717
720
 
718
- _See code: [src/commands/init.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/init.ts)_
721
+ _See code: [src/commands/init.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/init.ts)_
719
722
 
720
723
  ## `hd jira connect`
721
724
 
@@ -737,7 +740,7 @@ EXAMPLES
737
740
  $ hd jira connect --domain dev-squad.atlassian.net
738
741
  ```
739
742
 
740
- _See code: [src/commands/jira/connect.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/jira/connect.ts)_
743
+ _See code: [src/commands/jira/connect.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/jira/connect.ts)_
741
744
 
742
745
  ## `hd jira status`
743
746
 
@@ -757,7 +760,7 @@ EXAMPLES
757
760
  $ hd jira status
758
761
  ```
759
762
 
760
- _See code: [src/commands/jira/status.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/jira/status.ts)_
763
+ _See code: [src/commands/jira/status.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/jira/status.ts)_
761
764
 
762
765
  ## `hd module analyze`
763
766
 
@@ -785,7 +788,7 @@ EXAMPLES
785
788
  $ hd module analyze --slug="my-module" --verbose
786
789
  ```
787
790
 
788
- _See code: [src/commands/module/analyze.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/module/analyze.ts)_
791
+ _See code: [src/commands/module/analyze.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/module/analyze.ts)_
789
792
 
790
793
  ## `hd module create`
791
794
 
@@ -796,9 +799,10 @@ USAGE
796
799
  $ hd module create [--buildCommand <value>] [--buildDirectory <value>] [--buildFolder <value>] [--buildRuntime
797
800
  nodejs|python|go|rust|java|dotnet|ruby] [--buildRuntimeVersion <value>] [--ciService
798
801
  github-actions|gitlab-ci|circle-ci|jenkins] [--defaultBranch <value>] [-d <value>] [--framework
799
- express|fastify|koa|nextjs|react|vue|angular|svelte|flask|django|fastapi|gin|actix|spring|aspnet|rails|other]
800
- [--installCommand <value>] [--name <value>] [--runCommand <value>] [-r nodejs|python|go|rust|java|dotnet|ruby]
801
- [--runtimeVersion <value>] [--slug <value>] [--sourceDirectory <value>] [--sourceLocation <value>]
802
+ express|fastify|koa|nextjs|react|vue|angular|svelte|flask|django|fastapi|gin|actix|spring|aspnet|rails|serverless|se
803
+ rverless-express|serverless-nestjs|other] [--installCommand <value>] [--name <value>] [--runCommand <value>] [-r
804
+ nodejs|python|go|rust|java|dotnet|ruby] [--runtimeVersion <value>] [--slug <value>] [--sourceDirectory <value>]
805
+ [--sourceLocation <value>]
802
806
 
803
807
  FLAGS
804
808
  -d, --domain=<value> Tenant domain (for multi-domain setups)
@@ -815,8 +819,9 @@ FLAGS
815
819
  <options: github-actions|gitlab-ci|circle-ci|jenkins>
816
820
  --defaultBranch=<value> Default git branch to branch from (e.g., main, master)
817
821
  --framework=<option> Framework used
818
- <options: express|fastify|koa|nextjs|react|vue|angular|svelte|flask|django|fastapi|
819
- gin|actix|spring|aspnet|rails|other>
822
+ <options:
823
+ express|fastify|koa|nextjs|react|vue|angular|svelte|flask|django|fastapi|gin|actix|
824
+ spring|aspnet|rails|serverless|serverless-express|serverless-nestjs|other>
820
825
  --installCommand=<value> Install command
821
826
  --name=<value> Name of the project
822
827
  --runCommand=<value> Run command
@@ -835,7 +840,7 @@ EXAMPLES
835
840
  $ hd module create --name="API Service" --framework="Serverless Framework"
836
841
  ```
837
842
 
838
- _See code: [src/commands/module/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/module/create.ts)_
843
+ _See code: [src/commands/module/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/module/create.ts)_
839
844
 
840
845
  ## `hd module destroy`
841
846
 
@@ -859,7 +864,7 @@ EXAMPLES
859
864
  $ hd module destroy --slug="old-project" --force
860
865
  ```
861
866
 
862
- _See code: [src/commands/module/destroy.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/module/destroy.ts)_
867
+ _See code: [src/commands/module/destroy.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/module/destroy.ts)_
863
868
 
864
869
  ## `hd module get`
865
870
 
@@ -882,7 +887,7 @@ EXAMPLES
882
887
  $ hd module get
883
888
  ```
884
889
 
885
- _See code: [src/commands/module/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/module/get.ts)_
890
+ _See code: [src/commands/module/get.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/module/get.ts)_
886
891
 
887
892
  ## `hd module link`
888
893
 
@@ -890,7 +895,7 @@ Links two modules using specified environment variables as connectors
890
895
 
891
896
  ```
892
897
  USAGE
893
- $ hd module link --originSlug <value> --parameter <value> --targetSlug <value> [-d <value>]
898
+ $ hd module link --originSlug <value> --parameter <value>... --targetSlug <value> [-d <value>]
894
899
 
895
900
  FLAGS
896
901
  -d, --domain=<value> Tenant domain (for multi-domain setups)
@@ -905,7 +910,7 @@ EXAMPLES
905
910
  $ hd module link --originSlug="vixting-integration" --targetSlug="vixting-api" --parameter="VLOW_API_ENDPOINT_PREFIX"
906
911
  ```
907
912
 
908
- _See code: [src/commands/module/link.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/module/link.ts)_
913
+ _See code: [src/commands/module/link.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/module/link.ts)_
909
914
 
910
915
  ## `hd module list`
911
916
 
@@ -925,7 +930,7 @@ EXAMPLES
925
930
  $ hd module list
926
931
  ```
927
932
 
928
- _See code: [src/commands/module/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/module/list.ts)_
933
+ _See code: [src/commands/module/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/module/list.ts)_
929
934
 
930
935
  ## `hd module reanalyze`
931
936
 
@@ -954,7 +959,7 @@ EXAMPLES
954
959
  $ hd module reanalyze -s my-module -p "Exclude source maps from S3 upload" --verbose
955
960
  ```
956
961
 
957
- _See code: [src/commands/module/reanalyze.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/module/reanalyze.ts)_
962
+ _See code: [src/commands/module/reanalyze.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/module/reanalyze.ts)_
958
963
 
959
964
  ## `hd module update`
960
965
 
@@ -1010,7 +1015,7 @@ EXAMPLES
1010
1015
  $ hd module update --slug="my-module" --name="New Name" --framework="React.js"
1011
1016
  ```
1012
1017
 
1013
- _See code: [src/commands/module/update.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/module/update.ts)_
1018
+ _See code: [src/commands/module/update.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/module/update.ts)_
1014
1019
 
1015
1020
  ## `hd parameter add`
1016
1021
 
@@ -1040,7 +1045,7 @@ EXAMPLES
1040
1045
  $ hd parameter add --key="PORT" --value="3000"
1041
1046
  ```
1042
1047
 
1043
- _See code: [src/commands/parameter/add.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/parameter/add.ts)_
1048
+ _See code: [src/commands/parameter/add.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/parameter/add.ts)_
1044
1049
 
1045
1050
  ## `hd parameter backfill`
1046
1051
 
@@ -1065,7 +1070,7 @@ EXAMPLES
1065
1070
  $ hd parameter backfill --accountId="123456789012"
1066
1071
  ```
1067
1072
 
1068
- _See code: [src/commands/parameter/backfill.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/parameter/backfill.ts)_
1073
+ _See code: [src/commands/parameter/backfill.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/parameter/backfill.ts)_
1069
1074
 
1070
1075
  ## `hd parameter clear`
1071
1076
 
@@ -1092,7 +1097,7 @@ EXAMPLES
1092
1097
  $ hd parameter clear --stage="prod" --specific --force
1093
1098
  ```
1094
1099
 
1095
- _See code: [src/commands/parameter/clear.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/parameter/clear.ts)_
1100
+ _See code: [src/commands/parameter/clear.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/parameter/clear.ts)_
1096
1101
 
1097
1102
  ## `hd parameter list`
1098
1103
 
@@ -1121,7 +1126,7 @@ EXAMPLES
1121
1126
  $ hd parameter list --all-stages
1122
1127
  ```
1123
1128
 
1124
- _See code: [src/commands/parameter/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/parameter/list.ts)_
1129
+ _See code: [src/commands/parameter/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/parameter/list.ts)_
1125
1130
 
1126
1131
  ## `hd parameter pull`
1127
1132
 
@@ -1150,7 +1155,7 @@ EXAMPLES
1150
1155
  $ hd parameter pull --stage="dev" --no-backup
1151
1156
  ```
1152
1157
 
1153
- _See code: [src/commands/parameter/pull.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/parameter/pull.ts)_
1158
+ _See code: [src/commands/parameter/pull.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/parameter/pull.ts)_
1154
1159
 
1155
1160
  ## `hd parameter remove`
1156
1161
 
@@ -1180,7 +1185,7 @@ EXAMPLES
1180
1185
  $ hd parameter remove --key="PORT" --force
1181
1186
  ```
1182
1187
 
1183
- _See code: [src/commands/parameter/remove.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/parameter/remove.ts)_
1188
+ _See code: [src/commands/parameter/remove.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/parameter/remove.ts)_
1184
1189
 
1185
1190
  ## `hd parameter sync`
1186
1191
 
@@ -1209,7 +1214,7 @@ EXAMPLES
1209
1214
  $ hd parameter sync --no-specific --stage="all"
1210
1215
  ```
1211
1216
 
1212
- _See code: [src/commands/parameter/sync.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/parameter/sync.ts)_
1217
+ _See code: [src/commands/parameter/sync.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/parameter/sync.ts)_
1213
1218
 
1214
1219
  ## `hd parameter update`
1215
1220
 
@@ -1237,7 +1242,7 @@ EXAMPLES
1237
1242
  $ hd parameter update --key="DB_HOST" --value="new-host" --specific
1238
1243
  ```
1239
1244
 
1240
- _See code: [src/commands/parameter/update.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/parameter/update.ts)_
1245
+ _See code: [src/commands/parameter/update.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/parameter/update.ts)_
1241
1246
 
1242
1247
  ## `hd plugins`
1243
1248
 
@@ -1528,6 +1533,35 @@ DESCRIPTION
1528
1533
 
1529
1534
  _See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v5.0.19/src/commands/plugins/update.ts)_
1530
1535
 
1536
+ ## `hd stage access [STAGE]`
1537
+
1538
+ View who has access to a stage
1539
+
1540
+ ```
1541
+ USAGE
1542
+ $ hd stage access [STAGE] [-d <value>] [-f table|json]
1543
+
1544
+ ARGUMENTS
1545
+ STAGE Stage name to view access for
1546
+
1547
+ FLAGS
1548
+ -d, --domain=<value> Tenant domain (for multi-domain setups)
1549
+ -f, --format=<option> [default: table] Output format
1550
+ <options: table|json>
1551
+
1552
+ DESCRIPTION
1553
+ View who has access to a stage
1554
+
1555
+ EXAMPLES
1556
+ $ hd stage access
1557
+
1558
+ $ hd stage access develop
1559
+
1560
+ $ hd stage access develop --format json
1561
+ ```
1562
+
1563
+ _See code: [src/commands/stage/access.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/stage/access.ts)_
1564
+
1531
1565
  ## `hd stage create`
1532
1566
 
1533
1567
  Create a new stage
@@ -1535,7 +1569,7 @@ Create a new stage
1535
1569
  ```
1536
1570
  USAGE
1537
1571
  $ hd stage create [-a <value>] [--autoLaunch] [-b <value>] [--defaultStage] [--deletionProtection] [-d <value>]
1538
- [-n <value>] [--production] [-p <value>] [--provider <value>] [-r <value>]
1572
+ [-n <value>] [--production] [-p <value>...] [--provider <value>] [-r <value>...]
1539
1573
 
1540
1574
  FLAGS
1541
1575
  -a, --accountId=<value> AWS Account ID for deployments
@@ -1554,7 +1588,7 @@ DESCRIPTION
1554
1588
  Create a new stage
1555
1589
  ```
1556
1590
 
1557
- _See code: [src/commands/stage/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/stage/create.ts)_
1591
+ _See code: [src/commands/stage/create.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/stage/create.ts)_
1558
1592
 
1559
1593
  ## `hd stage list`
1560
1594
 
@@ -1574,7 +1608,79 @@ EXAMPLES
1574
1608
  $ hd stage list
1575
1609
  ```
1576
1610
 
1577
- _See code: [src/commands/stage/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/stage/list.ts)_
1611
+ _See code: [src/commands/stage/list.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/stage/list.ts)_
1612
+
1613
+ ## `hd stage revoke [STAGE]`
1614
+
1615
+ Revoke access from a stage for a user or CI account
1616
+
1617
+ ```
1618
+ USAGE
1619
+ $ hd stage revoke [STAGE] [-c <value> | -u <value>] [-d <value>] [-y]
1620
+
1621
+ ARGUMENTS
1622
+ STAGE Stage name to revoke access from
1623
+
1624
+ FLAGS
1625
+ -c, --ci=<value> CI account name or ID to revoke access from
1626
+ -d, --domain=<value> Tenant domain (for multi-domain setups)
1627
+ -u, --user=<value> User email to revoke access from
1628
+ -y, --yes Skip confirmation
1629
+
1630
+ DESCRIPTION
1631
+ Revoke access from a stage for a user or CI account
1632
+
1633
+ EXAMPLES
1634
+ $ hd stage revoke
1635
+
1636
+ $ hd stage revoke develop
1637
+
1638
+ $ hd stage revoke develop --user maria@company.com
1639
+
1640
+ $ hd stage revoke develop --ci github-actions
1641
+ ```
1642
+
1643
+ _See code: [src/commands/stage/revoke.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/stage/revoke.ts)_
1644
+
1645
+ ## `hd stage share [STAGE]`
1646
+
1647
+ Grant access to a stage for users or CI accounts
1648
+
1649
+ ```
1650
+ USAGE
1651
+ $ hd stage share [STAGE...] [-c <value> | -u <value> | -g <value>] [-d <value>] [-r viewer|deployer|manager]
1652
+ [-y]
1653
+
1654
+ ARGUMENTS
1655
+ STAGE... Stage name to share access to
1656
+
1657
+ FLAGS
1658
+ -c, --ci=<value> CI account name or ID to grant access to
1659
+ -d, --domain=<value> Tenant domain (for multi-domain setups)
1660
+ -g, --group=<value> Group ID or name to grant access to
1661
+ -r, --role=<option> Role to grant
1662
+ <options: viewer|deployer|manager>
1663
+ -u, --user=<value> User email to grant access to
1664
+ -y, --yes Skip confirmation for production stages
1665
+
1666
+ DESCRIPTION
1667
+ Grant access to a stage for users or CI accounts
1668
+
1669
+ EXAMPLES
1670
+ $ hd stage share
1671
+
1672
+ $ hd stage share develop
1673
+
1674
+ $ hd stage share develop --user maria@company.com --role deployer
1675
+
1676
+ $ hd stage share develop --ci github-actions --role deployer
1677
+
1678
+ $ hd stage share develop --group "CI Accounts" --role deployer
1679
+
1680
+ $ hd stage share staging production --user dev@company.com --role viewer
1681
+ ```
1682
+
1683
+ _See code: [src/commands/stage/share.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/stage/share.ts)_
1578
1684
 
1579
1685
  ## `hd test-api`
1580
1686
 
@@ -1594,5 +1700,5 @@ EXAMPLES
1594
1700
  $ hd test-api
1595
1701
  ```
1596
1702
 
1597
- _See code: [src/commands/test-api.ts](https://github.com/hyperdrive/hd/blob/v1.0.5/src/commands/test-api.ts)_
1703
+ _See code: [src/commands/test-api.ts](https://github.com/hyperdrive/hd/blob/v1.0.7/src/commands/test-api.ts)_
1598
1704
  <!-- commandsstop -->
@@ -3,12 +3,12 @@ export default class AccountAdd extends Command {
3
3
  static description: string;
4
4
  static examples: string[];
5
5
  static flags: {
6
- accountId: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
7
- defaultRegion: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
8
- domain: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
9
- name: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
10
- 'no-wait': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
11
- roleArn: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
6
+ accountId: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
7
+ defaultRegion: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
8
+ domain: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
9
+ name: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
10
+ 'no-wait': import("@oclif/core/interfaces").BooleanFlag<boolean>;
11
+ roleArn: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
12
12
  };
13
13
  run(): Promise<void>;
14
14
  private promptUser;
@@ -3,9 +3,9 @@ export default class AccountRemove extends Command {
3
3
  static description: string;
4
4
  static examples: string[];
5
5
  static flags: {
6
- accountId: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
7
- domain: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
8
- force: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
6
+ accountId: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
7
+ domain: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
8
+ force: import("@oclif/core/interfaces").BooleanFlag<boolean>;
9
9
  };
10
10
  run(): Promise<void>;
11
11
  }