hereya-cli 0.96.0 → 0.97.0

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.
@@ -170,13 +170,12 @@
170
170
  "index.js"
171
171
  ]
172
172
  },
173
- "delete-state": {
173
+ "deploy": {
174
174
  "aliases": [],
175
175
  "args": {},
176
- "description": "Delete the remote state of a project for a given workspace",
176
+ "description": "Deploy a hereya project using the project deployment package",
177
177
  "examples": [
178
- "<%= config.bin %> <%= command.id %> -w dev",
179
- "<%= config.bin %> <%= command.id %> --workspace staging"
178
+ "<%= config.bin %> <%= command.id %>"
180
179
  ],
181
180
  "flags": {
182
181
  "chdir": {
@@ -187,9 +186,21 @@
187
186
  "multiple": false,
188
187
  "type": "option"
189
188
  },
189
+ "debug": {
190
+ "description": "enable debug mode",
191
+ "name": "debug",
192
+ "allowNo": false,
193
+ "type": "boolean"
194
+ },
195
+ "local": {
196
+ "description": "force local execution (skip remote executor)",
197
+ "name": "local",
198
+ "allowNo": false,
199
+ "type": "boolean"
200
+ },
190
201
  "workspace": {
191
202
  "char": "w",
192
- "description": "workspace name",
203
+ "description": "name of the workspace to deploy the packages for",
193
204
  "name": "workspace",
194
205
  "required": true,
195
206
  "hasDynamicHelp": false,
@@ -199,7 +210,7 @@
199
210
  },
200
211
  "hasDynamicHelp": false,
201
212
  "hiddenAliases": [],
202
- "id": "delete-state",
213
+ "id": "deploy",
203
214
  "pluginAlias": "hereya-cli",
204
215
  "pluginName": "hereya-cli",
205
216
  "pluginType": "core",
@@ -209,16 +220,17 @@
209
220
  "relativePath": [
210
221
  "dist",
211
222
  "commands",
212
- "delete-state",
223
+ "deploy",
213
224
  "index.js"
214
225
  ]
215
226
  },
216
- "deploy": {
227
+ "delete-state": {
217
228
  "aliases": [],
218
229
  "args": {},
219
- "description": "Deploy a hereya project using the project deployment package",
230
+ "description": "Delete the remote state of a project for a given workspace",
220
231
  "examples": [
221
- "<%= config.bin %> <%= command.id %>"
232
+ "<%= config.bin %> <%= command.id %> -w dev",
233
+ "<%= config.bin %> <%= command.id %> --workspace staging"
222
234
  ],
223
235
  "flags": {
224
236
  "chdir": {
@@ -229,21 +241,9 @@
229
241
  "multiple": false,
230
242
  "type": "option"
231
243
  },
232
- "debug": {
233
- "description": "enable debug mode",
234
- "name": "debug",
235
- "allowNo": false,
236
- "type": "boolean"
237
- },
238
- "local": {
239
- "description": "force local execution (skip remote executor)",
240
- "name": "local",
241
- "allowNo": false,
242
- "type": "boolean"
243
- },
244
244
  "workspace": {
245
245
  "char": "w",
246
- "description": "name of the workspace to deploy the packages for",
246
+ "description": "workspace name",
247
247
  "name": "workspace",
248
248
  "required": true,
249
249
  "hasDynamicHelp": false,
@@ -253,7 +253,7 @@
253
253
  },
254
254
  "hasDynamicHelp": false,
255
255
  "hiddenAliases": [],
256
- "id": "deploy",
256
+ "id": "delete-state",
257
257
  "pluginAlias": "hereya-cli",
258
258
  "pluginName": "hereya-cli",
259
259
  "pluginType": "core",
@@ -263,7 +263,7 @@
263
263
  "relativePath": [
264
264
  "dist",
265
265
  "commands",
266
- "deploy",
266
+ "delete-state",
267
267
  "index.js"
268
268
  ]
269
269
  },
@@ -2344,6 +2344,64 @@
2344
2344
  "index.js"
2345
2345
  ]
2346
2346
  },
2347
+ "flow:provid": {
2348
+ "aliases": [],
2349
+ "args": {
2350
+ "package": {
2351
+ "description": "Package name (e.g., hereya/postgres)",
2352
+ "name": "package",
2353
+ "required": true
2354
+ }
2355
+ },
2356
+ "description": "Display the provisioning ID for a package in a git branch-based workspace",
2357
+ "examples": [
2358
+ "<%= config.bin %> <%= command.id %> hereya/postgres",
2359
+ "<%= config.bin %> <%= command.id %> hereya/postgres --profile staging",
2360
+ "<%= config.bin %> <%= command.id %> hereya/postgres --pin"
2361
+ ],
2362
+ "flags": {
2363
+ "chdir": {
2364
+ "char": "C",
2365
+ "description": "Project root directory",
2366
+ "name": "chdir",
2367
+ "required": false,
2368
+ "hasDynamicHelp": false,
2369
+ "multiple": false,
2370
+ "type": "option"
2371
+ },
2372
+ "pin": {
2373
+ "description": "Append git commit SHA to workspace name for commit-specific isolation",
2374
+ "name": "pin",
2375
+ "required": false,
2376
+ "allowNo": false,
2377
+ "type": "boolean"
2378
+ },
2379
+ "profile": {
2380
+ "description": "Profile to use for the workspace (will be appended to workspace name)",
2381
+ "name": "profile",
2382
+ "required": false,
2383
+ "hasDynamicHelp": false,
2384
+ "multiple": false,
2385
+ "type": "option"
2386
+ }
2387
+ },
2388
+ "hasDynamicHelp": false,
2389
+ "hiddenAliases": [],
2390
+ "id": "flow:provid",
2391
+ "pluginAlias": "hereya-cli",
2392
+ "pluginName": "hereya-cli",
2393
+ "pluginType": "core",
2394
+ "strict": true,
2395
+ "enableJsonFlag": false,
2396
+ "isESM": true,
2397
+ "relativePath": [
2398
+ "dist",
2399
+ "commands",
2400
+ "flow",
2401
+ "provid",
2402
+ "index.js"
2403
+ ]
2404
+ },
2347
2405
  "flow:remove": {
2348
2406
  "aliases": [],
2349
2407
  "args": {
@@ -2399,25 +2457,24 @@
2399
2457
  "index.js"
2400
2458
  ]
2401
2459
  },
2402
- "flow:provid": {
2460
+ "flow:run": {
2403
2461
  "aliases": [],
2404
2462
  "args": {
2405
- "package": {
2406
- "description": "Package name (e.g., hereya/postgres)",
2407
- "name": "package",
2463
+ "cmd": {
2464
+ "description": "command to run",
2465
+ "name": "cmd",
2408
2466
  "required": true
2409
2467
  }
2410
2468
  },
2411
- "description": "Display the provisioning ID for a package in a git branch-based workspace",
2469
+ "description": "Run a command with hereya env vars in a git branch-based workspace",
2412
2470
  "examples": [
2413
- "<%= config.bin %> <%= command.id %> hereya/postgres",
2414
- "<%= config.bin %> <%= command.id %> hereya/postgres --profile staging",
2415
- "<%= config.bin %> <%= command.id %> hereya/postgres --pin"
2471
+ "<%= config.bin %> <%= command.id %> -- npm run dev",
2472
+ "<%= config.bin %> <%= command.id %> --profile staging -- node index.js",
2473
+ "<%= config.bin %> <%= command.id %> --pin -- npm test"
2416
2474
  ],
2417
2475
  "flags": {
2418
2476
  "chdir": {
2419
- "char": "C",
2420
- "description": "Project root directory",
2477
+ "description": "directory to run command in",
2421
2478
  "name": "chdir",
2422
2479
  "required": false,
2423
2480
  "hasDynamicHelp": false,
@@ -2425,14 +2482,14 @@
2425
2482
  "type": "option"
2426
2483
  },
2427
2484
  "pin": {
2428
- "description": "Append git commit SHA to workspace name for commit-specific isolation",
2485
+ "description": "append git commit SHA to workspace name for commit-specific isolation",
2429
2486
  "name": "pin",
2430
2487
  "required": false,
2431
2488
  "allowNo": false,
2432
2489
  "type": "boolean"
2433
2490
  },
2434
2491
  "profile": {
2435
- "description": "Profile to use for the workspace (will be appended to workspace name)",
2492
+ "description": "profile to use for the workspace (will be appended to workspace name)",
2436
2493
  "name": "profile",
2437
2494
  "required": false,
2438
2495
  "hasDynamicHelp": false,
@@ -2442,18 +2499,18 @@
2442
2499
  },
2443
2500
  "hasDynamicHelp": false,
2444
2501
  "hiddenAliases": [],
2445
- "id": "flow:provid",
2502
+ "id": "flow:run",
2446
2503
  "pluginAlias": "hereya-cli",
2447
2504
  "pluginName": "hereya-cli",
2448
2505
  "pluginType": "core",
2449
- "strict": true,
2506
+ "strict": false,
2450
2507
  "enableJsonFlag": false,
2451
2508
  "isESM": true,
2452
2509
  "relativePath": [
2453
2510
  "dist",
2454
2511
  "commands",
2455
2512
  "flow",
2456
- "provid",
2513
+ "run",
2457
2514
  "index.js"
2458
2515
  ]
2459
2516
  },
@@ -2531,39 +2588,38 @@
2531
2588
  "index.js"
2532
2589
  ]
2533
2590
  },
2534
- "flow:run": {
2591
+ "workspace:create": {
2535
2592
  "aliases": [],
2536
2593
  "args": {
2537
- "cmd": {
2538
- "description": "command to run",
2539
- "name": "cmd",
2594
+ "name": {
2595
+ "description": "name of the workspace to create",
2596
+ "name": "name",
2540
2597
  "required": true
2541
2598
  }
2542
2599
  },
2543
- "description": "Run a command with hereya env vars in a git branch-based workspace",
2600
+ "description": "Create a new workspace if it does not exist.",
2544
2601
  "examples": [
2545
- "<%= config.bin %> <%= command.id %> -- npm run dev",
2546
- "<%= config.bin %> <%= command.id %> --profile staging -- node index.js",
2547
- "<%= config.bin %> <%= command.id %> --pin -- npm test"
2602
+ "<%= config.bin %> <%= command.id %> dev"
2548
2603
  ],
2549
2604
  "flags": {
2550
- "chdir": {
2551
- "description": "directory to run command in",
2552
- "name": "chdir",
2605
+ "deployment": {
2606
+ "char": "d",
2607
+ "description": "mark workspace as a deployment workspace",
2608
+ "name": "deployment",
2609
+ "required": false,
2610
+ "allowNo": false,
2611
+ "type": "boolean"
2612
+ },
2613
+ "mirror": {
2614
+ "description": "workspace to mirror",
2615
+ "name": "mirror",
2553
2616
  "required": false,
2554
2617
  "hasDynamicHelp": false,
2555
2618
  "multiple": false,
2556
2619
  "type": "option"
2557
2620
  },
2558
- "pin": {
2559
- "description": "append git commit SHA to workspace name for commit-specific isolation",
2560
- "name": "pin",
2561
- "required": false,
2562
- "allowNo": false,
2563
- "type": "boolean"
2564
- },
2565
2621
  "profile": {
2566
- "description": "profile to use for the workspace (will be appended to workspace name)",
2622
+ "description": "workspace profile to set (cloud backend only)",
2567
2623
  "name": "profile",
2568
2624
  "required": false,
2569
2625
  "hasDynamicHelp": false,
@@ -2573,18 +2629,18 @@
2573
2629
  },
2574
2630
  "hasDynamicHelp": false,
2575
2631
  "hiddenAliases": [],
2576
- "id": "flow:run",
2632
+ "id": "workspace:create",
2577
2633
  "pluginAlias": "hereya-cli",
2578
2634
  "pluginName": "hereya-cli",
2579
2635
  "pluginType": "core",
2580
- "strict": false,
2636
+ "strict": true,
2581
2637
  "enableJsonFlag": false,
2582
2638
  "isESM": true,
2583
2639
  "relativePath": [
2584
2640
  "dist",
2585
2641
  "commands",
2586
- "flow",
2587
- "run",
2642
+ "workspace",
2643
+ "create",
2588
2644
  "index.js"
2589
2645
  ]
2590
2646
  },
@@ -2619,62 +2675,6 @@
2619
2675
  "index.js"
2620
2676
  ]
2621
2677
  },
2622
- "workspace:create": {
2623
- "aliases": [],
2624
- "args": {
2625
- "name": {
2626
- "description": "name of the workspace to create",
2627
- "name": "name",
2628
- "required": true
2629
- }
2630
- },
2631
- "description": "Create a new workspace if it does not exist.",
2632
- "examples": [
2633
- "<%= config.bin %> <%= command.id %> dev"
2634
- ],
2635
- "flags": {
2636
- "deployment": {
2637
- "char": "d",
2638
- "description": "mark workspace as a deployment workspace",
2639
- "name": "deployment",
2640
- "required": false,
2641
- "allowNo": false,
2642
- "type": "boolean"
2643
- },
2644
- "mirror": {
2645
- "description": "workspace to mirror",
2646
- "name": "mirror",
2647
- "required": false,
2648
- "hasDynamicHelp": false,
2649
- "multiple": false,
2650
- "type": "option"
2651
- },
2652
- "profile": {
2653
- "description": "workspace profile to set (cloud backend only)",
2654
- "name": "profile",
2655
- "required": false,
2656
- "hasDynamicHelp": false,
2657
- "multiple": false,
2658
- "type": "option"
2659
- }
2660
- },
2661
- "hasDynamicHelp": false,
2662
- "hiddenAliases": [],
2663
- "id": "workspace:create",
2664
- "pluginAlias": "hereya-cli",
2665
- "pluginName": "hereya-cli",
2666
- "pluginType": "core",
2667
- "strict": true,
2668
- "enableJsonFlag": false,
2669
- "isESM": true,
2670
- "relativePath": [
2671
- "dist",
2672
- "commands",
2673
- "workspace",
2674
- "create",
2675
- "index.js"
2676
- ]
2677
- },
2678
2678
  "workspace:env": {
2679
2679
  "aliases": [],
2680
2680
  "args": {
@@ -2875,60 +2875,46 @@
2875
2875
  "index.js"
2876
2876
  ]
2877
2877
  },
2878
- "devenv:project:init": {
2878
+ "workspace:uninstall": {
2879
2879
  "aliases": [],
2880
2880
  "args": {
2881
- "project": {
2882
- "description": "project name",
2883
- "name": "project",
2881
+ "package": {
2882
+ "description": "The package to remove. Packages are gitHub repositories. Use the format owner/repository",
2883
+ "name": "package",
2884
2884
  "required": true
2885
2885
  }
2886
2886
  },
2887
- "description": "Initialize a project on a remote dev environment.",
2887
+ "description": "Remove a package from a workspace.",
2888
2888
  "examples": [
2889
- "<%= config.bin %> <%= command.id %> my-app -w my-workspace",
2890
- "<%= config.bin %> <%= command.id %> my-app -w my-workspace -t acme/node-starter",
2891
- "<%= config.bin %> <%= command.id %> my-app -w my-workspace -t acme/node-starter -p region=us-east-1"
2889
+ "<%= config.bin %> <%= command.id %> hereya/aws-cognito"
2892
2890
  ],
2893
2891
  "flags": {
2894
- "deploy-workspace": {
2895
- "char": "d",
2896
- "description": "workspace used for deployment (required when using a template)",
2897
- "name": "deploy-workspace",
2898
- "required": false,
2899
- "hasDynamicHelp": false,
2900
- "multiple": false,
2901
- "type": "option"
2902
- },
2903
- "force": {
2904
- "char": "f",
2905
- "description": "continue even if folder already exists",
2906
- "name": "force",
2892
+ "debug": {
2893
+ "description": "enable debug mode",
2894
+ "name": "debug",
2907
2895
  "allowNo": false,
2908
2896
  "type": "boolean"
2909
2897
  },
2910
2898
  "parameter": {
2911
2899
  "char": "p",
2912
- "description": "parameter for the template, in the form of 'key=value'. Can be specified multiple times.",
2900
+ "description": "parameter for the package, in the form of 'key=value'. Can be specified multiple times.",
2913
2901
  "name": "parameter",
2914
- "required": false,
2915
2902
  "default": [],
2916
2903
  "hasDynamicHelp": false,
2917
2904
  "multiple": true,
2918
2905
  "type": "option"
2919
2906
  },
2920
- "template": {
2921
- "char": "t",
2922
- "description": "template package to scaffold the project from",
2923
- "name": "template",
2924
- "required": false,
2907
+ "parameter-file": {
2908
+ "char": "f",
2909
+ "description": "path to a file containing parameters for the package",
2910
+ "name": "parameter-file",
2925
2911
  "hasDynamicHelp": false,
2926
2912
  "multiple": false,
2927
2913
  "type": "option"
2928
2914
  },
2929
2915
  "workspace": {
2930
2916
  "char": "w",
2931
- "description": "name of the workspace",
2917
+ "description": "name of the workspace to remove the package from",
2932
2918
  "name": "workspace",
2933
2919
  "required": true,
2934
2920
  "hasDynamicHelp": false,
@@ -2938,7 +2924,7 @@
2938
2924
  },
2939
2925
  "hasDynamicHelp": false,
2940
2926
  "hiddenAliases": [],
2941
- "id": "devenv:project:init",
2927
+ "id": "workspace:uninstall",
2942
2928
  "pluginAlias": "hereya-cli",
2943
2929
  "pluginName": "hereya-cli",
2944
2930
  "pluginType": "core",
@@ -2948,52 +2934,65 @@
2948
2934
  "relativePath": [
2949
2935
  "dist",
2950
2936
  "commands",
2951
- "devenv",
2952
- "project",
2953
- "init",
2937
+ "workspace",
2938
+ "uninstall",
2954
2939
  "index.js"
2955
2940
  ]
2956
2941
  },
2957
- "workspace:uninstall": {
2942
+ "devenv:project:init": {
2958
2943
  "aliases": [],
2959
2944
  "args": {
2960
- "package": {
2961
- "description": "The package to remove. Packages are gitHub repositories. Use the format owner/repository",
2962
- "name": "package",
2945
+ "project": {
2946
+ "description": "project name",
2947
+ "name": "project",
2963
2948
  "required": true
2964
2949
  }
2965
2950
  },
2966
- "description": "Remove a package from a workspace.",
2951
+ "description": "Initialize a project on a remote dev environment.",
2967
2952
  "examples": [
2968
- "<%= config.bin %> <%= command.id %> hereya/aws-cognito"
2953
+ "<%= config.bin %> <%= command.id %> my-app -w my-workspace",
2954
+ "<%= config.bin %> <%= command.id %> my-app -w my-workspace -t acme/node-starter",
2955
+ "<%= config.bin %> <%= command.id %> my-app -w my-workspace -t acme/node-starter -p region=us-east-1"
2969
2956
  ],
2970
2957
  "flags": {
2971
- "debug": {
2972
- "description": "enable debug mode",
2973
- "name": "debug",
2958
+ "deploy-workspace": {
2959
+ "char": "d",
2960
+ "description": "workspace used for deployment (required when using a template)",
2961
+ "name": "deploy-workspace",
2962
+ "required": false,
2963
+ "hasDynamicHelp": false,
2964
+ "multiple": false,
2965
+ "type": "option"
2966
+ },
2967
+ "force": {
2968
+ "char": "f",
2969
+ "description": "continue even if folder already exists",
2970
+ "name": "force",
2974
2971
  "allowNo": false,
2975
2972
  "type": "boolean"
2976
2973
  },
2977
2974
  "parameter": {
2978
2975
  "char": "p",
2979
- "description": "parameter for the package, in the form of 'key=value'. Can be specified multiple times.",
2976
+ "description": "parameter for the template, in the form of 'key=value'. Can be specified multiple times.",
2980
2977
  "name": "parameter",
2978
+ "required": false,
2981
2979
  "default": [],
2982
2980
  "hasDynamicHelp": false,
2983
2981
  "multiple": true,
2984
2982
  "type": "option"
2985
2983
  },
2986
- "parameter-file": {
2987
- "char": "f",
2988
- "description": "path to a file containing parameters for the package",
2989
- "name": "parameter-file",
2984
+ "template": {
2985
+ "char": "t",
2986
+ "description": "template package to scaffold the project from",
2987
+ "name": "template",
2988
+ "required": false,
2990
2989
  "hasDynamicHelp": false,
2991
2990
  "multiple": false,
2992
2991
  "type": "option"
2993
2992
  },
2994
2993
  "workspace": {
2995
2994
  "char": "w",
2996
- "description": "name of the workspace to remove the package from",
2995
+ "description": "name of the workspace",
2997
2996
  "name": "workspace",
2998
2997
  "required": true,
2999
2998
  "hasDynamicHelp": false,
@@ -3003,7 +3002,7 @@
3003
3002
  },
3004
3003
  "hasDynamicHelp": false,
3005
3004
  "hiddenAliases": [],
3006
- "id": "workspace:uninstall",
3005
+ "id": "devenv:project:init",
3007
3006
  "pluginAlias": "hereya-cli",
3008
3007
  "pluginName": "hereya-cli",
3009
3008
  "pluginType": "core",
@@ -3013,8 +3012,9 @@
3013
3012
  "relativePath": [
3014
3013
  "dist",
3015
3014
  "commands",
3016
- "workspace",
3017
- "uninstall",
3015
+ "devenv",
3016
+ "project",
3017
+ "init",
3018
3018
  "index.js"
3019
3019
  ]
3020
3020
  },
@@ -3136,14 +3136,51 @@
3136
3136
  "index.js"
3137
3137
  ]
3138
3138
  },
3139
- "workspace:executor:token": {
3139
+ "workspace:env:set": {
3140
3140
  "aliases": [],
3141
3141
  "args": {},
3142
- "description": "Generate a workspace-scoped executor token for the remote executor",
3142
+ "description": "set an env var for a workspace",
3143
+ "examples": [
3144
+ "<%= config.bin %> <%= command.id %> -w my-workspace -n myVar -v my-value -i aws -s"
3145
+ ],
3143
3146
  "flags": {
3147
+ "infra": {
3148
+ "char": "i",
3149
+ "description": "the infrastructure to store the env var in",
3150
+ "name": "infra",
3151
+ "required": true,
3152
+ "hasDynamicHelp": false,
3153
+ "multiple": false,
3154
+ "type": "option"
3155
+ },
3156
+ "name": {
3157
+ "char": "n",
3158
+ "description": "name of the env var to set",
3159
+ "name": "name",
3160
+ "required": true,
3161
+ "hasDynamicHelp": false,
3162
+ "multiple": false,
3163
+ "type": "option"
3164
+ },
3165
+ "sensitive": {
3166
+ "char": "s",
3167
+ "description": "whether the env var is sensitive",
3168
+ "name": "sensitive",
3169
+ "allowNo": false,
3170
+ "type": "boolean"
3171
+ },
3172
+ "value": {
3173
+ "char": "v",
3174
+ "description": "value of the env var to set",
3175
+ "name": "value",
3176
+ "required": true,
3177
+ "hasDynamicHelp": false,
3178
+ "multiple": false,
3179
+ "type": "option"
3180
+ },
3144
3181
  "workspace": {
3145
3182
  "char": "w",
3146
- "description": "name of the workspace",
3183
+ "description": "name of the workspace to set an env var for",
3147
3184
  "name": "workspace",
3148
3185
  "required": true,
3149
3186
  "hasDynamicHelp": false,
@@ -3153,7 +3190,7 @@
3153
3190
  },
3154
3191
  "hasDynamicHelp": false,
3155
3192
  "hiddenAliases": [],
3156
- "id": "workspace:executor:token",
3193
+ "id": "workspace:env:set",
3157
3194
  "pluginAlias": "hereya-cli",
3158
3195
  "pluginName": "hereya-cli",
3159
3196
  "pluginType": "core",
@@ -3164,8 +3201,53 @@
3164
3201
  "dist",
3165
3202
  "commands",
3166
3203
  "workspace",
3167
- "executor",
3168
- "token",
3204
+ "env",
3205
+ "set",
3206
+ "index.js"
3207
+ ]
3208
+ },
3209
+ "workspace:env:unset": {
3210
+ "aliases": [],
3211
+ "args": {},
3212
+ "description": "unset an env var for a workspace",
3213
+ "examples": [
3214
+ "<%= config.bin %> <%= command.id %> -w my-workspace -n myVar"
3215
+ ],
3216
+ "flags": {
3217
+ "name": {
3218
+ "char": "n",
3219
+ "description": "name of the env var to unset",
3220
+ "name": "name",
3221
+ "required": true,
3222
+ "hasDynamicHelp": false,
3223
+ "multiple": false,
3224
+ "type": "option"
3225
+ },
3226
+ "workspace": {
3227
+ "char": "w",
3228
+ "description": "name of the workspace to unset an env var for",
3229
+ "name": "workspace",
3230
+ "required": true,
3231
+ "hasDynamicHelp": false,
3232
+ "multiple": false,
3233
+ "type": "option"
3234
+ }
3235
+ },
3236
+ "hasDynamicHelp": false,
3237
+ "hiddenAliases": [],
3238
+ "id": "workspace:env:unset",
3239
+ "pluginAlias": "hereya-cli",
3240
+ "pluginName": "hereya-cli",
3241
+ "pluginType": "core",
3242
+ "strict": true,
3243
+ "enableJsonFlag": false,
3244
+ "isESM": true,
3245
+ "relativePath": [
3246
+ "dist",
3247
+ "commands",
3248
+ "workspace",
3249
+ "env",
3250
+ "unset",
3169
3251
  "index.js"
3170
3252
  ]
3171
3253
  },
@@ -3235,51 +3317,14 @@
3235
3317
  "index.js"
3236
3318
  ]
3237
3319
  },
3238
- "workspace:env:set": {
3320
+ "workspace:executor:token": {
3239
3321
  "aliases": [],
3240
3322
  "args": {},
3241
- "description": "set an env var for a workspace",
3242
- "examples": [
3243
- "<%= config.bin %> <%= command.id %> -w my-workspace -n myVar -v my-value -i aws -s"
3244
- ],
3323
+ "description": "Generate a workspace-scoped executor token for the remote executor",
3245
3324
  "flags": {
3246
- "infra": {
3247
- "char": "i",
3248
- "description": "the infrastructure to store the env var in",
3249
- "name": "infra",
3250
- "required": true,
3251
- "hasDynamicHelp": false,
3252
- "multiple": false,
3253
- "type": "option"
3254
- },
3255
- "name": {
3256
- "char": "n",
3257
- "description": "name of the env var to set",
3258
- "name": "name",
3259
- "required": true,
3260
- "hasDynamicHelp": false,
3261
- "multiple": false,
3262
- "type": "option"
3263
- },
3264
- "sensitive": {
3265
- "char": "s",
3266
- "description": "whether the env var is sensitive",
3267
- "name": "sensitive",
3268
- "allowNo": false,
3269
- "type": "boolean"
3270
- },
3271
- "value": {
3272
- "char": "v",
3273
- "description": "value of the env var to set",
3274
- "name": "value",
3275
- "required": true,
3276
- "hasDynamicHelp": false,
3277
- "multiple": false,
3278
- "type": "option"
3279
- },
3280
3325
  "workspace": {
3281
3326
  "char": "w",
3282
- "description": "name of the workspace to set an env var for",
3327
+ "description": "name of the workspace",
3283
3328
  "name": "workspace",
3284
3329
  "required": true,
3285
3330
  "hasDynamicHelp": false,
@@ -3289,7 +3334,7 @@
3289
3334
  },
3290
3335
  "hasDynamicHelp": false,
3291
3336
  "hiddenAliases": [],
3292
- "id": "workspace:env:set",
3337
+ "id": "workspace:executor:token",
3293
3338
  "pluginAlias": "hereya-cli",
3294
3339
  "pluginName": "hereya-cli",
3295
3340
  "pluginType": "core",
@@ -3300,8 +3345,8 @@
3300
3345
  "dist",
3301
3346
  "commands",
3302
3347
  "workspace",
3303
- "env",
3304
- "set",
3348
+ "executor",
3349
+ "token",
3305
3350
  "index.js"
3306
3351
  ]
3307
3352
  },
@@ -3355,52 +3400,7 @@
3355
3400
  "uninstall",
3356
3401
  "index.js"
3357
3402
  ]
3358
- },
3359
- "workspace:env:unset": {
3360
- "aliases": [],
3361
- "args": {},
3362
- "description": "unset an env var for a workspace",
3363
- "examples": [
3364
- "<%= config.bin %> <%= command.id %> -w my-workspace -n myVar"
3365
- ],
3366
- "flags": {
3367
- "name": {
3368
- "char": "n",
3369
- "description": "name of the env var to unset",
3370
- "name": "name",
3371
- "required": true,
3372
- "hasDynamicHelp": false,
3373
- "multiple": false,
3374
- "type": "option"
3375
- },
3376
- "workspace": {
3377
- "char": "w",
3378
- "description": "name of the workspace to unset an env var for",
3379
- "name": "workspace",
3380
- "required": true,
3381
- "hasDynamicHelp": false,
3382
- "multiple": false,
3383
- "type": "option"
3384
- }
3385
- },
3386
- "hasDynamicHelp": false,
3387
- "hiddenAliases": [],
3388
- "id": "workspace:env:unset",
3389
- "pluginAlias": "hereya-cli",
3390
- "pluginName": "hereya-cli",
3391
- "pluginType": "core",
3392
- "strict": true,
3393
- "enableJsonFlag": false,
3394
- "isESM": true,
3395
- "relativePath": [
3396
- "dist",
3397
- "commands",
3398
- "workspace",
3399
- "env",
3400
- "unset",
3401
- "index.js"
3402
- ]
3403
3403
  }
3404
3404
  },
3405
- "version": "0.96.0"
3405
+ "version": "0.97.0"
3406
3406
  }