hereya-cli 0.87.0 → 0.88.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.
Files changed (46) hide show
  1. package/README.md +80 -163
  2. package/dist/backend/index.js +0 -24
  3. package/dist/commands/app/deploy/index.d.ts +0 -2
  4. package/dist/commands/app/deploy/index.js +0 -17
  5. package/dist/commands/app/deployments/index.d.ts +0 -4
  6. package/dist/commands/app/deployments/index.js +1 -20
  7. package/dist/commands/app/destroy/index.d.ts +0 -2
  8. package/dist/commands/app/destroy/index.js +0 -17
  9. package/dist/commands/app/env/index.d.ts +0 -2
  10. package/dist/commands/app/env/index.js +0 -17
  11. package/dist/commands/app/list/index.d.ts +0 -4
  12. package/dist/commands/app/list/index.js +1 -20
  13. package/dist/commands/app/status/index.d.ts +0 -2
  14. package/dist/commands/app/status/index.js +0 -17
  15. package/dist/commands/deploy/index.d.ts +0 -2
  16. package/dist/commands/deploy/index.js +56 -69
  17. package/dist/commands/init/index.d.ts +0 -2
  18. package/dist/commands/init/index.js +1 -18
  19. package/dist/commands/login/index.js +0 -5
  20. package/dist/commands/publish/index.d.ts +0 -2
  21. package/dist/commands/publish/index.js +0 -17
  22. package/dist/commands/run/index.d.ts +0 -2
  23. package/dist/commands/run/index.js +0 -17
  24. package/dist/commands/search/index.d.ts +0 -2
  25. package/dist/commands/search/index.js +21 -38
  26. package/dist/commands/undeploy/index.d.ts +0 -2
  27. package/dist/commands/undeploy/index.js +14 -27
  28. package/dist/commands/up/index.d.ts +0 -2
  29. package/dist/commands/up/index.js +1 -17
  30. package/dist/commands/workspace/executor/install/index.d.ts +0 -2
  31. package/dist/commands/workspace/executor/install/index.js +1 -17
  32. package/dist/commands/workspace/executor/token/index.d.ts +0 -2
  33. package/dist/commands/workspace/executor/token/index.js +0 -17
  34. package/dist/commands/workspace/executor/uninstall/index.d.ts +0 -2
  35. package/dist/commands/workspace/executor/uninstall/index.js +1 -17
  36. package/dist/executor/context.js +15 -12
  37. package/dist/lib/hereya-token.js +11 -10
  38. package/dist/lib/package/index.js +24 -20
  39. package/oclif.manifest.json +81 -255
  40. package/package.json +1 -1
  41. package/dist/commands/git/index.d.ts +0 -12
  42. package/dist/commands/git/index.js +0 -116
  43. package/dist/lib/active-cloud.d.ts +0 -31
  44. package/dist/lib/active-cloud.js +0 -55
  45. package/dist/lib/ephemeral-token.d.ts +0 -45
  46. package/dist/lib/ephemeral-token.js +0 -89
@@ -241,14 +241,6 @@
241
241
  "allowNo": false,
242
242
  "type": "boolean"
243
243
  },
244
- "token": {
245
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.",
246
- "name": "token",
247
- "required": false,
248
- "hasDynamicHelp": false,
249
- "multiple": false,
250
- "type": "option"
251
- },
252
244
  "workspace": {
253
245
  "char": "w",
254
246
  "description": "name of the workspace to deploy the packages for",
@@ -455,50 +447,6 @@
455
447
  "index.js"
456
448
  ]
457
449
  },
458
- "git": {
459
- "aliases": [],
460
- "args": {},
461
- "description": "Run an arbitrary git command with the hereya credential helper available. Wraps `git <args...>`, propagating an ephemeral `--token` to the credential-helper grandchild via `HEREYA_EPHEMERAL_TOKEN`. After a successful `clone`, also wires the cloned repo to use the hereya credential helper for future `push`/`pull`/`fetch` operations. Use `--` to separate hereya flags from git flags so e.g. `--depth` reaches git instead of being parsed by oclif.",
462
- "examples": [
463
- "<%= config.bin %> <%= command.id %> --token <token> -- push",
464
- "<%= config.bin %> <%= command.id %> --token <token> -- pull --rebase",
465
- "<%= config.bin %> <%= command.id %> --token <token> -- clone https://github.com/owner/repo my-dir",
466
- "<%= config.bin %> <%= command.id %> -- log --oneline -10"
467
- ],
468
- "flags": {
469
- "chdir": {
470
- "description": "directory to run git in (cwd of the spawned git process)",
471
- "name": "chdir",
472
- "required": false,
473
- "hasDynamicHelp": false,
474
- "multiple": false,
475
- "type": "option"
476
- },
477
- "token": {
478
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Propagated to the git credential-helper grandchild via the HEREYA_EPHEMERAL_TOKEN env var. Takes precedence over the HEREYA_TOKEN environment variable.",
479
- "name": "token",
480
- "required": false,
481
- "hasDynamicHelp": false,
482
- "multiple": false,
483
- "type": "option"
484
- }
485
- },
486
- "hasDynamicHelp": false,
487
- "hiddenAliases": [],
488
- "id": "git",
489
- "pluginAlias": "hereya-cli",
490
- "pluginName": "hereya-cli",
491
- "pluginType": "core",
492
- "strict": false,
493
- "enableJsonFlag": false,
494
- "isESM": true,
495
- "relativePath": [
496
- "dist",
497
- "commands",
498
- "git",
499
- "index.js"
500
- ]
501
- },
502
450
  "import": {
503
451
  "aliases": [],
504
452
  "args": {
@@ -625,14 +573,6 @@
625
573
  "multiple": false,
626
574
  "type": "option"
627
575
  },
628
- "token": {
629
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.",
630
- "name": "token",
631
- "required": false,
632
- "hasDynamicHelp": false,
633
- "multiple": false,
634
- "type": "option"
635
- },
636
576
  "workspace": {
637
577
  "char": "w",
638
578
  "description": "workspace to set as default",
@@ -818,14 +758,6 @@
818
758
  "hasDynamicHelp": false,
819
759
  "multiple": false,
820
760
  "type": "option"
821
- },
822
- "token": {
823
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.",
824
- "name": "token",
825
- "required": false,
826
- "hasDynamicHelp": false,
827
- "multiple": false,
828
- "type": "option"
829
761
  }
830
762
  },
831
763
  "hasDynamicHelp": false,
@@ -921,14 +853,6 @@
921
853
  "multiple": false,
922
854
  "type": "option"
923
855
  },
924
- "token": {
925
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.",
926
- "name": "token",
927
- "required": false,
928
- "hasDynamicHelp": false,
929
- "multiple": false,
930
- "type": "option"
931
- },
932
856
  "workspace": {
933
857
  "char": "w",
934
858
  "description": "name of the workspace to run the command in",
@@ -996,14 +920,6 @@
996
920
  "hasDynamicHelp": false,
997
921
  "multiple": false,
998
922
  "type": "option"
999
- },
1000
- "token": {
1001
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.",
1002
- "name": "token",
1003
- "required": false,
1004
- "hasDynamicHelp": false,
1005
- "multiple": false,
1006
- "type": "option"
1007
923
  }
1008
924
  },
1009
925
  "hasDynamicHelp": false,
@@ -1089,14 +1005,6 @@
1089
1005
  "allowNo": false,
1090
1006
  "type": "boolean"
1091
1007
  },
1092
- "token": {
1093
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.",
1094
- "name": "token",
1095
- "required": false,
1096
- "hasDynamicHelp": false,
1097
- "multiple": false,
1098
- "type": "option"
1099
- },
1100
1008
  "workspace": {
1101
1009
  "char": "w",
1102
1010
  "description": "name of the workspace to undeploy the packages for",
@@ -1123,57 +1031,43 @@
1123
1031
  "index.js"
1124
1032
  ]
1125
1033
  },
1126
- "up": {
1034
+ "uninit": {
1127
1035
  "aliases": [],
1128
- "args": {},
1129
- "description": "Provision all packages in the project.",
1036
+ "args": {
1037
+ "project": {
1038
+ "description": "project name",
1039
+ "name": "project",
1040
+ "required": true
1041
+ }
1042
+ },
1043
+ "description": "Destroy template infrastructure and uninitialize a project.",
1130
1044
  "examples": [
1131
- "<%= config.bin %> <%= command.id %>"
1045
+ "<%= config.bin %> <%= command.id %> myProject -w dev",
1046
+ "<%= config.bin %> <%= command.id %> myProject -w dev -p prodWorkspace=prod"
1132
1047
  ],
1133
1048
  "flags": {
1134
1049
  "chdir": {
1135
- "description": "\n Directory where the command will be executed.\n If not specified, it defaults to the current working directory.\n Alternatively, you can define the project root by setting the HEREYA_PROJECT_ROOT_DIR environment variable.\n ",
1050
+ "description": "directory to run command in",
1136
1051
  "name": "chdir",
1137
1052
  "required": false,
1138
1053
  "hasDynamicHelp": false,
1139
1054
  "multiple": false,
1140
1055
  "type": "option"
1141
1056
  },
1142
- "debug": {
1143
- "description": "enable debug mode",
1144
- "name": "debug",
1145
- "allowNo": false,
1146
- "type": "boolean"
1147
- },
1148
- "deploy": {
1149
- "description": "provision deployment companion packages",
1150
- "name": "deploy",
1151
- "required": false,
1152
- "allowNo": false,
1153
- "type": "boolean"
1154
- },
1155
- "select": {
1156
- "char": "s",
1157
- "description": "select the packages to provision",
1158
- "name": "select",
1057
+ "parameter": {
1058
+ "char": "p",
1059
+ "description": "parameter for the template, in the form of 'key=value'. Overrides saved parameters.",
1060
+ "name": "parameter",
1159
1061
  "default": [],
1160
1062
  "hasDynamicHelp": false,
1161
1063
  "multiple": true,
1162
1064
  "type": "option"
1163
1065
  },
1164
- "token": {
1165
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.",
1166
- "name": "token",
1167
- "required": false,
1168
- "hasDynamicHelp": false,
1169
- "multiple": false,
1170
- "type": "option"
1171
- },
1172
1066
  "workspace": {
1173
1067
  "char": "w",
1174
- "description": "name of the workspace to install the packages for",
1068
+ "description": "workspace used during init",
1175
1069
  "name": "workspace",
1176
- "required": false,
1070
+ "required": true,
1177
1071
  "hasDynamicHelp": false,
1178
1072
  "multiple": false,
1179
1073
  "type": "option"
@@ -1181,7 +1075,7 @@
1181
1075
  },
1182
1076
  "hasDynamicHelp": false,
1183
1077
  "hiddenAliases": [],
1184
- "id": "up",
1078
+ "id": "uninit",
1185
1079
  "pluginAlias": "hereya-cli",
1186
1080
  "pluginName": "hereya-cli",
1187
1081
  "pluginType": "core",
@@ -1191,37 +1085,43 @@
1191
1085
  "relativePath": [
1192
1086
  "dist",
1193
1087
  "commands",
1194
- "up",
1088
+ "uninit",
1195
1089
  "index.js"
1196
1090
  ]
1197
1091
  },
1198
- "uninit": {
1092
+ "up": {
1199
1093
  "aliases": [],
1200
- "args": {
1201
- "project": {
1202
- "description": "project name",
1203
- "name": "project",
1204
- "required": true
1205
- }
1206
- },
1207
- "description": "Destroy template infrastructure and uninitialize a project.",
1094
+ "args": {},
1095
+ "description": "Provision all packages in the project.",
1208
1096
  "examples": [
1209
- "<%= config.bin %> <%= command.id %> myProject -w dev",
1210
- "<%= config.bin %> <%= command.id %> myProject -w dev -p prodWorkspace=prod"
1097
+ "<%= config.bin %> <%= command.id %>"
1211
1098
  ],
1212
1099
  "flags": {
1213
1100
  "chdir": {
1214
- "description": "directory to run command in",
1101
+ "description": "\n Directory where the command will be executed.\n If not specified, it defaults to the current working directory.\n Alternatively, you can define the project root by setting the HEREYA_PROJECT_ROOT_DIR environment variable.\n ",
1215
1102
  "name": "chdir",
1216
1103
  "required": false,
1217
1104
  "hasDynamicHelp": false,
1218
1105
  "multiple": false,
1219
1106
  "type": "option"
1220
1107
  },
1221
- "parameter": {
1222
- "char": "p",
1223
- "description": "parameter for the template, in the form of 'key=value'. Overrides saved parameters.",
1224
- "name": "parameter",
1108
+ "debug": {
1109
+ "description": "enable debug mode",
1110
+ "name": "debug",
1111
+ "allowNo": false,
1112
+ "type": "boolean"
1113
+ },
1114
+ "deploy": {
1115
+ "description": "provision deployment companion packages",
1116
+ "name": "deploy",
1117
+ "required": false,
1118
+ "allowNo": false,
1119
+ "type": "boolean"
1120
+ },
1121
+ "select": {
1122
+ "char": "s",
1123
+ "description": "select the packages to provision",
1124
+ "name": "select",
1225
1125
  "default": [],
1226
1126
  "hasDynamicHelp": false,
1227
1127
  "multiple": true,
@@ -1229,9 +1129,9 @@
1229
1129
  },
1230
1130
  "workspace": {
1231
1131
  "char": "w",
1232
- "description": "workspace used during init",
1132
+ "description": "name of the workspace to install the packages for",
1233
1133
  "name": "workspace",
1234
- "required": true,
1134
+ "required": false,
1235
1135
  "hasDynamicHelp": false,
1236
1136
  "multiple": false,
1237
1137
  "type": "option"
@@ -1239,7 +1139,7 @@
1239
1139
  },
1240
1140
  "hasDynamicHelp": false,
1241
1141
  "hiddenAliases": [],
1242
- "id": "uninit",
1142
+ "id": "up",
1243
1143
  "pluginAlias": "hereya-cli",
1244
1144
  "pluginName": "hereya-cli",
1245
1145
  "pluginType": "core",
@@ -1249,7 +1149,7 @@
1249
1149
  "relativePath": [
1250
1150
  "dist",
1251
1151
  "commands",
1252
- "uninit",
1152
+ "up",
1253
1153
  "index.js"
1254
1154
  ]
1255
1155
  },
@@ -1324,14 +1224,6 @@
1324
1224
  "multiple": true,
1325
1225
  "type": "option"
1326
1226
  },
1327
- "token": {
1328
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.",
1329
- "name": "token",
1330
- "required": false,
1331
- "hasDynamicHelp": false,
1332
- "multiple": false,
1333
- "type": "option"
1334
- },
1335
1227
  "version": {
1336
1228
  "description": "specific app version to deploy (defaults to latest)",
1337
1229
  "name": "version",
@@ -1379,16 +1271,7 @@
1379
1271
  "examples": [
1380
1272
  "<%= config.bin %> <%= command.id %> my-org/my-app"
1381
1273
  ],
1382
- "flags": {
1383
- "token": {
1384
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.",
1385
- "name": "token",
1386
- "required": false,
1387
- "hasDynamicHelp": false,
1388
- "multiple": false,
1389
- "type": "option"
1390
- }
1391
- },
1274
+ "flags": {},
1392
1275
  "hasDynamicHelp": false,
1393
1276
  "hiddenAliases": [],
1394
1277
  "id": "app:deployments",
@@ -1443,14 +1326,6 @@
1443
1326
  "multiple": true,
1444
1327
  "type": "option"
1445
1328
  },
1446
- "token": {
1447
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.",
1448
- "name": "token",
1449
- "required": false,
1450
- "hasDynamicHelp": false,
1451
- "multiple": false,
1452
- "type": "option"
1453
- },
1454
1329
  "workspace": {
1455
1330
  "char": "w",
1456
1331
  "description": "workspace where the app is currently deployed",
@@ -1498,14 +1373,6 @@
1498
1373
  "<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace DATABASE_URL"
1499
1374
  ],
1500
1375
  "flags": {
1501
- "token": {
1502
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.",
1503
- "name": "token",
1504
- "required": false,
1505
- "hasDynamicHelp": false,
1506
- "multiple": false,
1507
- "type": "option"
1508
- },
1509
1376
  "workspace": {
1510
1377
  "char": "w",
1511
1378
  "description": "workspace to read env outputs from",
@@ -1540,16 +1407,7 @@
1540
1407
  "examples": [
1541
1408
  "<%= config.bin %> <%= command.id %>"
1542
1409
  ],
1543
- "flags": {
1544
- "token": {
1545
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.",
1546
- "name": "token",
1547
- "required": false,
1548
- "hasDynamicHelp": false,
1549
- "multiple": false,
1550
- "type": "option"
1551
- }
1552
- },
1410
+ "flags": {},
1553
1411
  "hasDynamicHelp": false,
1554
1412
  "hiddenAliases": [],
1555
1413
  "id": "app:list",
@@ -1631,14 +1489,6 @@
1631
1489
  "<%= config.bin %> <%= command.id %> my-org/my-app -w my-workspace"
1632
1490
  ],
1633
1491
  "flags": {
1634
- "token": {
1635
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.",
1636
- "name": "token",
1637
- "required": false,
1638
- "hasDynamicHelp": false,
1639
- "multiple": false,
1640
- "type": "option"
1641
- },
1642
1492
  "workspace": {
1643
1493
  "char": "w",
1644
1494
  "description": "workspace to read deployment status from",
@@ -3198,35 +3048,26 @@
3198
3048
  "index.js"
3199
3049
  ]
3200
3050
  },
3201
- "workspace:executor:install": {
3051
+ "workspace:env:unset": {
3202
3052
  "aliases": [],
3203
3053
  "args": {},
3204
- "description": "Install a remote executor into a workspace",
3054
+ "description": "unset an env var for a workspace",
3055
+ "examples": [
3056
+ "<%= config.bin %> <%= command.id %> -w my-workspace -n myVar"
3057
+ ],
3205
3058
  "flags": {
3206
- "debug": {
3207
- "description": "enable debug mode",
3208
- "name": "debug",
3209
- "allowNo": false,
3210
- "type": "boolean"
3211
- },
3212
- "force": {
3213
- "char": "f",
3214
- "description": "force reinstall even if executor is already installed",
3215
- "name": "force",
3216
- "allowNo": false,
3217
- "type": "boolean"
3218
- },
3219
- "token": {
3220
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.",
3221
- "name": "token",
3222
- "required": false,
3059
+ "name": {
3060
+ "char": "n",
3061
+ "description": "name of the env var to unset",
3062
+ "name": "name",
3063
+ "required": true,
3223
3064
  "hasDynamicHelp": false,
3224
3065
  "multiple": false,
3225
3066
  "type": "option"
3226
3067
  },
3227
3068
  "workspace": {
3228
3069
  "char": "w",
3229
- "description": "name of the workspace",
3070
+ "description": "name of the workspace to unset an env var for",
3230
3071
  "name": "workspace",
3231
3072
  "required": true,
3232
3073
  "hasDynamicHelp": false,
@@ -3236,7 +3077,7 @@
3236
3077
  },
3237
3078
  "hasDynamicHelp": false,
3238
3079
  "hiddenAliases": [],
3239
- "id": "workspace:executor:install",
3080
+ "id": "workspace:env:unset",
3240
3081
  "pluginAlias": "hereya-cli",
3241
3082
  "pluginName": "hereya-cli",
3242
3083
  "pluginType": "core",
@@ -3247,31 +3088,32 @@
3247
3088
  "dist",
3248
3089
  "commands",
3249
3090
  "workspace",
3250
- "executor",
3251
- "install",
3091
+ "env",
3092
+ "unset",
3252
3093
  "index.js"
3253
3094
  ]
3254
3095
  },
3255
- "workspace:env:unset": {
3096
+ "workspace:executor:install": {
3256
3097
  "aliases": [],
3257
3098
  "args": {},
3258
- "description": "unset an env var for a workspace",
3259
- "examples": [
3260
- "<%= config.bin %> <%= command.id %> -w my-workspace -n myVar"
3261
- ],
3099
+ "description": "Install a remote executor into a workspace",
3262
3100
  "flags": {
3263
- "name": {
3264
- "char": "n",
3265
- "description": "name of the env var to unset",
3266
- "name": "name",
3267
- "required": true,
3268
- "hasDynamicHelp": false,
3269
- "multiple": false,
3270
- "type": "option"
3101
+ "debug": {
3102
+ "description": "enable debug mode",
3103
+ "name": "debug",
3104
+ "allowNo": false,
3105
+ "type": "boolean"
3106
+ },
3107
+ "force": {
3108
+ "char": "f",
3109
+ "description": "force reinstall even if executor is already installed",
3110
+ "name": "force",
3111
+ "allowNo": false,
3112
+ "type": "boolean"
3271
3113
  },
3272
3114
  "workspace": {
3273
3115
  "char": "w",
3274
- "description": "name of the workspace to unset an env var for",
3116
+ "description": "name of the workspace",
3275
3117
  "name": "workspace",
3276
3118
  "required": true,
3277
3119
  "hasDynamicHelp": false,
@@ -3281,7 +3123,7 @@
3281
3123
  },
3282
3124
  "hasDynamicHelp": false,
3283
3125
  "hiddenAliases": [],
3284
- "id": "workspace:env:unset",
3126
+ "id": "workspace:executor:install",
3285
3127
  "pluginAlias": "hereya-cli",
3286
3128
  "pluginName": "hereya-cli",
3287
3129
  "pluginType": "core",
@@ -3292,8 +3134,8 @@
3292
3134
  "dist",
3293
3135
  "commands",
3294
3136
  "workspace",
3295
- "env",
3296
- "unset",
3137
+ "executor",
3138
+ "install",
3297
3139
  "index.js"
3298
3140
  ]
3299
3141
  },
@@ -3302,14 +3144,6 @@
3302
3144
  "args": {},
3303
3145
  "description": "Generate a workspace-scoped executor token for the remote executor",
3304
3146
  "flags": {
3305
- "token": {
3306
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.",
3307
- "name": "token",
3308
- "required": false,
3309
- "hasDynamicHelp": false,
3310
- "multiple": false,
3311
- "type": "option"
3312
- },
3313
3147
  "workspace": {
3314
3148
  "char": "w",
3315
3149
  "description": "name of the workspace",
@@ -3349,14 +3183,6 @@
3349
3183
  "allowNo": false,
3350
3184
  "type": "boolean"
3351
3185
  },
3352
- "token": {
3353
- "description": "Ephemeral cloud access token used for this invocation only. Held in memory; never written to the keychain or `~/.hereya/secrets/`. Takes precedence over the HEREYA_TOKEN environment variable.",
3354
- "name": "token",
3355
- "required": false,
3356
- "hasDynamicHelp": false,
3357
- "multiple": false,
3358
- "type": "option"
3359
- },
3360
3186
  "workspace": {
3361
3187
  "char": "w",
3362
3188
  "description": "name of the workspace",
@@ -3386,5 +3212,5 @@
3386
3212
  ]
3387
3213
  }
3388
3214
  },
3389
- "version": "0.87.0"
3215
+ "version": "0.88.0"
3390
3216
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hereya-cli",
3
3
  "description": "Infrastructure as Package",
4
- "version": "0.87.0",
4
+ "version": "0.88.0",
5
5
  "author": "Hereya Developers",
6
6
  "bin": {
7
7
  "hereya": "./bin/run.js"
@@ -1,12 +0,0 @@
1
- import { Command } from '@oclif/core';
2
- export default class Git extends Command {
3
- static description: string;
4
- static examples: string[];
5
- static flags: {
6
- chdir: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
7
- token: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
8
- };
9
- static strict: boolean;
10
- run(): Promise<void>;
11
- private runInner;
12
- }