@wraps.dev/cli 2.21.14 → 2.21.15
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/dist/api-lambda.zip
CHANGED
|
Binary file
|
package/dist/cli.js
CHANGED
|
@@ -33570,6 +33570,18 @@ async function selfhostDeploy(options) {
|
|
|
33570
33570
|
neonApiKey = neonApiKeyAnswer;
|
|
33571
33571
|
}
|
|
33572
33572
|
neonOrgId = options.neonOrgId;
|
|
33573
|
+
if (!neonOrgId) {
|
|
33574
|
+
const neonOrgIdAnswer = await clack43.text({
|
|
33575
|
+
message: "Neon organization ID (find at console.neon.tech/app/settings \u2014 leave blank for personal account):",
|
|
33576
|
+
placeholder: "org-..."
|
|
33577
|
+
});
|
|
33578
|
+
if (clack43.isCancel(neonOrgIdAnswer)) {
|
|
33579
|
+
clack43.cancel("Operation cancelled.");
|
|
33580
|
+
process.exit(0);
|
|
33581
|
+
}
|
|
33582
|
+
const trimmed = neonOrgIdAnswer.trim();
|
|
33583
|
+
if (trimmed) neonOrgId = trimmed;
|
|
33584
|
+
}
|
|
33573
33585
|
}
|
|
33574
33586
|
let licenseKey = options.licenseKey;
|
|
33575
33587
|
if (!licenseKey) {
|