openmates 0.14.7-alpha.23 → 0.14.7-alpha.4
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.
|
@@ -50461,8 +50461,8 @@ async function handleE2E(client, subcommand, rest, flags) {
|
|
|
50461
50461
|
}
|
|
50462
50462
|
if (flags.password !== void 0) throw new Error("Use generated passwords or OPENMATES_CLI_SIGNUP_PASSWORD, not --password.");
|
|
50463
50463
|
const slot = parseRequiredNumber(flags.slot, "--slot");
|
|
50464
|
-
if (![
|
|
50465
|
-
throw new Error("Only reserved slots
|
|
50464
|
+
if (![15, 16, 17, 18, 19, 20].includes(slot)) {
|
|
50465
|
+
throw new Error("Only reserved slots 15-20 are supported.");
|
|
50466
50466
|
}
|
|
50467
50467
|
const artifact = typeof flags.artifact === "string" ? flags.artifact : `test-results/credential-updates/slot-${slot}.env`;
|
|
50468
50468
|
const domain = typeof flags.domain === "string" ? flags.domain : process.env.OPENMATES_CLI_E2E_EMAIL_DOMAIN;
|
|
@@ -53247,7 +53247,7 @@ Creates local ignored credential artifacts for reserved E2E auth accounts. The
|
|
|
53247
53247
|
command refuses production API URLs and does not upload GitHub secrets.
|
|
53248
53248
|
|
|
53249
53249
|
Options:
|
|
53250
|
-
--slot <
|
|
53250
|
+
--slot <15-20> Reserved auth-account slot
|
|
53251
53251
|
--artifact <path> Output .env artifact path
|
|
53252
53252
|
--email <email> Test email; prompted/generated when omitted
|
|
53253
53253
|
--domain <mail-domain> Generate email at this domain
|
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED