@startanaicompany/saac_dns 1.2.0 → 1.3.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.
- package/bin/saac_dns.js +6 -4
- package/package.json +1 -1
package/bin/saac_dns.js
CHANGED
|
@@ -120,11 +120,13 @@ program
|
|
|
120
120
|
autoRenew: opts.autoRenew !== false
|
|
121
121
|
});
|
|
122
122
|
if (result.status === 'pending_confirmation') {
|
|
123
|
-
tick(`Purchase initiated for ${domain} —
|
|
123
|
+
tick(`Purchase initiated for ${domain} — awaiting human approval`);
|
|
124
124
|
output(result, (r) => {
|
|
125
|
-
console.log(`\n
|
|
126
|
-
console.log(`
|
|
127
|
-
console.log(`
|
|
125
|
+
console.log(`\n A confirmation code has been sent to the account owner by email.`);
|
|
126
|
+
console.log(` The code was NOT included here — only the account owner can see it.`);
|
|
127
|
+
console.log(` Expires in ${Math.floor(r.expiresIn / 60)} min.`);
|
|
128
|
+
console.log(`\n Once the account owner provides the code, run:`);
|
|
129
|
+
console.log(` saac_dns buy-confirm <code>`);
|
|
128
130
|
});
|
|
129
131
|
} else {
|
|
130
132
|
tick(`Domain ${domain} registered successfully!`);
|
package/package.json
CHANGED