@sendly/cli 3.36.0 → 3.37.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.
- package/README.md +204 -1
- package/dist/commands/10dlc/assignments/list.d.ts +10 -0
- package/dist/commands/10dlc/assignments/list.js +67 -0
- package/dist/commands/10dlc/brands/create.d.ts +25 -0
- package/dist/commands/10dlc/brands/create.js +89 -0
- package/dist/commands/10dlc/brands/get.d.ts +13 -0
- package/dist/commands/10dlc/brands/get.js +63 -0
- package/dist/commands/10dlc/brands/list.d.ts +10 -0
- package/dist/commands/10dlc/brands/list.js +63 -0
- package/dist/commands/10dlc/campaigns/assign.d.ts +14 -0
- package/dist/commands/10dlc/campaigns/assign.js +64 -0
- package/dist/commands/10dlc/campaigns/create.d.ts +24 -0
- package/dist/commands/10dlc/campaigns/create.js +118 -0
- package/dist/commands/10dlc/campaigns/get.d.ts +13 -0
- package/dist/commands/10dlc/campaigns/get.js +84 -0
- package/dist/commands/10dlc/campaigns/list.d.ts +10 -0
- package/dist/commands/10dlc/campaigns/list.js +70 -0
- package/dist/commands/10dlc/qualify.d.ts +14 -0
- package/dist/commands/10dlc/qualify.js +56 -0
- package/dist/commands/keys/rotate.js +7 -12
- package/dist/commands/links/create.d.ts +24 -0
- package/dist/commands/links/create.js +71 -0
- package/dist/commands/links/disable.d.ts +21 -0
- package/dist/commands/links/disable.js +55 -0
- package/dist/commands/links/list.d.ts +19 -0
- package/dist/commands/links/list.js +85 -0
- package/dist/commands/numbers/buy.js +15 -1
- package/dist/commands/numbers/get.d.ts +20 -0
- package/dist/commands/numbers/get.js +52 -0
- package/dist/commands/numbers/list.js +18 -1
- package/dist/commands/numbers/release.d.ts +23 -0
- package/dist/commands/numbers/release.js +67 -0
- package/dist/commands/numbers/update.d.ts +25 -0
- package/dist/commands/numbers/update.js +70 -0
- package/dist/commands/sms/group.d.ts +25 -0
- package/dist/commands/sms/group.js +164 -0
- package/dist/commands/sms/upload-media.d.ts +1 -1
- package/dist/commands/sms/upload-media.js +4 -4
- package/dist/commands/templates/enhance.js +3 -3
- package/dist/commands/upgrade.d.ts +1 -16
- package/dist/commands/upgrade.js +131 -38
- package/dist/commands/webhooks/listen.js +2 -2
- package/oclif.manifest.json +3862 -2864
- package/package.json +16 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sendly/cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.37.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Sendly CLI - Send SMS from your terminal",
|
|
@@ -65,6 +65,9 @@
|
|
|
65
65
|
"labels": {
|
|
66
66
|
"description": "Organize conversations and contacts with labels"
|
|
67
67
|
},
|
|
68
|
+
"links": {
|
|
69
|
+
"description": "Create, list, and disable branded short links (URL shortening)"
|
|
70
|
+
},
|
|
68
71
|
"drafts": {
|
|
69
72
|
"description": "Human-in-the-loop drafts — create, approve, or reject pending sends"
|
|
70
73
|
},
|
|
@@ -74,6 +77,18 @@
|
|
|
74
77
|
"numbers": {
|
|
75
78
|
"description": "Browse, search, and buy phone numbers across supported countries"
|
|
76
79
|
},
|
|
80
|
+
"10dlc": {
|
|
81
|
+
"description": "10DLC A2P messaging registration — brands, campaigns, number assignment"
|
|
82
|
+
},
|
|
83
|
+
"10dlc brands": {
|
|
84
|
+
"description": "Register brands and track their carrier-review status"
|
|
85
|
+
},
|
|
86
|
+
"10dlc campaigns": {
|
|
87
|
+
"description": "Create messaging campaigns and track their carrier-review status"
|
|
88
|
+
},
|
|
89
|
+
"10dlc assignments": {
|
|
90
|
+
"description": "View number-to-campaign assignments"
|
|
91
|
+
},
|
|
77
92
|
"keys": {
|
|
78
93
|
"description": "Manage API keys"
|
|
79
94
|
},
|