@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.
Files changed (2) hide show
  1. package/bin/saac_dns.js +6 -4
  2. 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} — confirmation required`);
123
+ tick(`Purchase initiated for ${domain} — awaiting human approval`);
124
124
  output(result, (r) => {
125
- console.log(`\n Confirmation email sent. Expires in ${Math.floor(r.expiresIn / 60)} min.`);
126
- console.log(` Token: ${r.token}`);
127
- console.log(` Run: saac_dns buy-confirm ${r.token}`);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startanaicompany/saac_dns",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "CLI tool for programmatic domain registration and DNS management — by Start An AI Company (SAAC)",
5
5
  "bin": {
6
6
  "saac_dns": "./bin/saac_dns.js"