@sendly/cli 3.35.0 → 3.36.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 (32) hide show
  1. package/dist/commands/business-upgrade/cancel.d.ts +12 -0
  2. package/dist/commands/business-upgrade/cancel.js +47 -0
  3. package/dist/commands/business-upgrade/disposition.d.ts +13 -0
  4. package/dist/commands/business-upgrade/disposition.js +44 -0
  5. package/dist/commands/business-upgrade/preflight.d.ts +16 -0
  6. package/dist/commands/business-upgrade/preflight.js +82 -0
  7. package/dist/commands/business-upgrade/resubmit.d.ts +24 -0
  8. package/dist/commands/business-upgrade/resubmit.js +109 -0
  9. package/dist/commands/business-upgrade/start.d.ts +38 -0
  10. package/dist/commands/business-upgrade/start.js +142 -0
  11. package/dist/commands/business-upgrade/status.d.ts +11 -0
  12. package/dist/commands/business-upgrade/status.js +38 -0
  13. package/dist/commands/enterprise/verification/get.d.ts +13 -0
  14. package/dist/commands/enterprise/verification/get.js +78 -0
  15. package/dist/commands/enterprise/verification/resubmit.d.ts +41 -0
  16. package/dist/commands/enterprise/verification/resubmit.js +87 -0
  17. package/dist/commands/enterprise/verification/submit.d.ts +77 -0
  18. package/dist/commands/enterprise/verification/submit.js +212 -0
  19. package/dist/commands/numbers/buy.d.ts +31 -0
  20. package/dist/commands/numbers/buy.js +252 -0
  21. package/dist/commands/numbers/list.d.ts +10 -0
  22. package/dist/commands/numbers/list.js +53 -0
  23. package/dist/commands/numbers/search.d.ts +13 -0
  24. package/dist/commands/numbers/search.js +78 -0
  25. package/dist/lib/auth.js +2 -94
  26. package/dist/lib/config.js +31 -2
  27. package/dist/lib/detect-install-path.d.ts +11 -7
  28. package/dist/lib/detect-install-path.js +25 -9
  29. package/dist/lib/keypress.d.ts +26 -0
  30. package/dist/lib/keypress.js +103 -0
  31. package/oclif.manifest.json +1931 -622
  32. package/package.json +7 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sendly/cli",
3
- "version": "3.35.0",
3
+ "version": "3.36.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Sendly CLI - Send SMS from your terminal",
@@ -47,6 +47,9 @@
47
47
  "sms": {
48
48
  "description": "Send and manage SMS messages"
49
49
  },
50
+ "business-upgrade": {
51
+ "description": "Upgrade a workspace's business entity (e.g. sole-prop → LLC); reserves a new toll-free number under the new entity and submits to the carrier for review"
52
+ },
50
53
  "contacts": {
51
54
  "description": "Manage contacts, import CSVs, run carrier lookups, and mark invalid contacts valid"
52
55
  },
@@ -68,6 +71,9 @@
68
71
  "verify": {
69
72
  "description": "Send and validate OTP codes for verification flows"
70
73
  },
74
+ "numbers": {
75
+ "description": "Browse, search, and buy phone numbers across supported countries"
76
+ },
71
77
  "keys": {
72
78
  "description": "Manage API keys"
73
79
  },