@sendly/cli 3.24.0 → 3.27.1

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 (39) hide show
  1. package/dist/commands/campaigns/schedule.js +20 -10
  2. package/dist/commands/conversations/context.d.ts +15 -0
  3. package/dist/commands/conversations/context.js +55 -0
  4. package/dist/commands/conversations/suggest-replies.d.ts +13 -0
  5. package/dist/commands/conversations/suggest-replies.js +50 -0
  6. package/dist/commands/conversations/update.d.ts +15 -0
  7. package/dist/commands/conversations/update.js +56 -0
  8. package/dist/commands/doctor.d.ts +1 -0
  9. package/dist/commands/doctor.js +45 -1
  10. package/dist/commands/drafts/list.js +2 -2
  11. package/dist/commands/enterprise/generate-business-page.d.ts +16 -0
  12. package/dist/commands/enterprise/generate-business-page.js +62 -0
  13. package/dist/commands/enterprise/upload-verification-document.d.ts +13 -0
  14. package/dist/commands/enterprise/upload-verification-document.js +109 -0
  15. package/dist/commands/events/listen.d.ts +11 -0
  16. package/dist/commands/events/listen.js +82 -0
  17. package/dist/commands/labels/add.d.ts +14 -0
  18. package/dist/commands/labels/add.js +46 -0
  19. package/dist/commands/labels/remove.d.ts +14 -0
  20. package/dist/commands/labels/remove.js +46 -0
  21. package/dist/commands/rules/create.d.ts +16 -0
  22. package/dist/commands/rules/create.js +70 -0
  23. package/dist/commands/rules/delete.d.ts +13 -0
  24. package/dist/commands/rules/delete.js +29 -0
  25. package/dist/commands/rules/index.d.ts +10 -0
  26. package/dist/commands/rules/index.js +56 -0
  27. package/dist/commands/sms/batch.js +1 -1
  28. package/dist/commands/sms/schedule.d.ts +3 -3
  29. package/dist/commands/sms/schedule.js +117 -27
  30. package/dist/commands/sms/search.d.ts +16 -0
  31. package/dist/commands/sms/search.js +105 -0
  32. package/dist/commands/sms/send.d.ts +1 -1
  33. package/dist/commands/sms/send.js +55 -10
  34. package/dist/commands/templates/update.d.ts +15 -0
  35. package/dist/commands/templates/update.js +70 -0
  36. package/dist/commands/webhooks/listen.js +5 -1
  37. package/dist/lib/base-command.js +2 -2
  38. package/oclif.manifest.json +1388 -644
  39. package/package.json +17 -2
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@sendly/cli",
3
- "version": "3.24.0",
3
+ "version": "3.27.1",
4
+ "private": false,
4
5
  "type": "module",
5
6
  "description": "Sendly CLI - Send SMS from your terminal",
6
7
  "author": "Sendly <support@sendly.live>",
@@ -76,6 +77,12 @@
76
77
  },
77
78
  "enterprise quota": {
78
79
  "description": "Manage workspace message quotas"
80
+ },
81
+ "rules": {
82
+ "description": "Manage auto-labeling rules for AI classification"
83
+ },
84
+ "events": {
85
+ "description": "Listen to real-time events"
79
86
  }
80
87
  }
81
88
  },
@@ -83,6 +90,7 @@
83
90
  "@oclif/core": "^3.27.0",
84
91
  "@oclif/plugin-help": "^6.2.0",
85
92
  "chalk": "^5.3.0",
93
+ "chrono-node": "^2.9.0",
86
94
  "cli-table3": "^0.6.5",
87
95
  "conf": "^12.0.0",
88
96
  "inquirer": "^9.2.23",
@@ -106,9 +114,16 @@
106
114
  "keywords": [
107
115
  "sendly",
108
116
  "sms",
117
+ "sms-api",
109
118
  "cli",
110
119
  "messaging",
111
- "api"
120
+ "text-message",
121
+ "otp",
122
+ "phone-verification",
123
+ "bulk-sms",
124
+ "twilio-alternative",
125
+ "developer-tools",
126
+ "webhooks"
112
127
  ],
113
128
  "repository": {
114
129
  "type": "git",