@sendly/cli 3.29.0 → 3.32.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/README.md +10 -0
- package/dist/commands/countries.d.ts +21 -0
- package/dist/commands/countries.js +96 -0
- package/dist/commands/sms/upload-media.d.ts +22 -0
- package/dist/commands/sms/upload-media.js +82 -0
- package/dist/commands/templates/enhance.d.ts +25 -0
- package/dist/commands/templates/enhance.js +77 -0
- package/dist/commands/upgrade.d.ts +25 -0
- package/dist/commands/upgrade.js +67 -0
- package/dist/lib/auth.js +104 -1
- package/dist/lib/detect-install-path.d.ts +21 -0
- package/dist/lib/detect-install-path.js +38 -0
- package/oclif.manifest.json +543 -341
- package/package.json +29 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sendly/cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.32.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Sendly CLI - Send SMS from your terminal",
|
|
@@ -35,13 +35,39 @@
|
|
|
35
35
|
"command_not_found": "./dist/hooks/command-not-found"
|
|
36
36
|
},
|
|
37
37
|
"plugins": [
|
|
38
|
-
"@oclif/plugin-help"
|
|
38
|
+
"@oclif/plugin-help",
|
|
39
|
+
"@oclif/plugin-warn-if-update-available"
|
|
39
40
|
],
|
|
41
|
+
"warn-if-update-available": {
|
|
42
|
+
"timeoutInDays": 1,
|
|
43
|
+
"message": "<%= config.name %> is out of date: <%= chalk.yellow(config.version) %> → <%= chalk.green(latest) %>. Run `sendly upgrade` to update."
|
|
44
|
+
},
|
|
40
45
|
"topicSeparator": " ",
|
|
41
46
|
"topics": {
|
|
42
47
|
"sms": {
|
|
43
48
|
"description": "Send and manage SMS messages"
|
|
44
49
|
},
|
|
50
|
+
"contacts": {
|
|
51
|
+
"description": "Manage contacts, import CSVs, run carrier lookups, and mark invalid contacts valid"
|
|
52
|
+
},
|
|
53
|
+
"conversations": {
|
|
54
|
+
"description": "View and reply to inbound conversations, manage context, close/reopen"
|
|
55
|
+
},
|
|
56
|
+
"campaigns": {
|
|
57
|
+
"description": "Create, schedule, preview, and send bulk SMS campaigns"
|
|
58
|
+
},
|
|
59
|
+
"templates": {
|
|
60
|
+
"description": "Create and manage message templates; includes AI-powered enhancement"
|
|
61
|
+
},
|
|
62
|
+
"labels": {
|
|
63
|
+
"description": "Organize conversations and contacts with labels"
|
|
64
|
+
},
|
|
65
|
+
"drafts": {
|
|
66
|
+
"description": "Human-in-the-loop drafts — create, approve, or reject pending sends"
|
|
67
|
+
},
|
|
68
|
+
"verify": {
|
|
69
|
+
"description": "Send and validate OTP codes for verification flows"
|
|
70
|
+
},
|
|
45
71
|
"keys": {
|
|
46
72
|
"description": "Manage API keys"
|
|
47
73
|
},
|
|
@@ -89,6 +115,7 @@
|
|
|
89
115
|
"dependencies": {
|
|
90
116
|
"@oclif/core": "^3.27.0",
|
|
91
117
|
"@oclif/plugin-help": "^6.2.0",
|
|
118
|
+
"@oclif/plugin-warn-if-update-available": "^3.1.60",
|
|
92
119
|
"chalk": "^5.3.0",
|
|
93
120
|
"chrono-node": "^2.9.0",
|
|
94
121
|
"cli-table3": "^0.6.5",
|