@sendly/cli 3.18.0 → 3.18.3

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 (53) hide show
  1. package/dist/commands/credits/balance.js +2 -2
  2. package/dist/commands/enterprise/analytics/credits.d.ts +11 -0
  3. package/dist/commands/enterprise/analytics/credits.js +59 -0
  4. package/dist/commands/enterprise/analytics/delivery.d.ts +10 -0
  5. package/dist/commands/enterprise/analytics/delivery.js +60 -0
  6. package/dist/commands/enterprise/analytics/messages.d.ts +11 -0
  7. package/dist/commands/enterprise/analytics/messages.js +59 -0
  8. package/dist/commands/enterprise/analytics/overview.d.ts +10 -0
  9. package/dist/commands/enterprise/analytics/overview.js +42 -0
  10. package/dist/commands/enterprise/billing.d.ts +12 -0
  11. package/dist/commands/enterprise/billing.js +70 -0
  12. package/dist/commands/enterprise/credits.d.ts +13 -0
  13. package/dist/commands/enterprise/credits.js +37 -0
  14. package/dist/commands/enterprise/keys/create.d.ts +15 -0
  15. package/dist/commands/enterprise/keys/create.js +53 -0
  16. package/dist/commands/enterprise/keys/list.d.ts +13 -0
  17. package/dist/commands/enterprise/keys/list.js +69 -0
  18. package/dist/commands/enterprise/keys/revoke.d.ts +15 -0
  19. package/dist/commands/enterprise/keys/revoke.js +57 -0
  20. package/dist/commands/enterprise/provision.d.ts +17 -0
  21. package/dist/commands/enterprise/provision.js +143 -0
  22. package/dist/commands/enterprise/quota/get.d.ts +13 -0
  23. package/dist/commands/enterprise/quota/get.js +40 -0
  24. package/dist/commands/enterprise/quota/set.d.ts +15 -0
  25. package/dist/commands/enterprise/quota/set.js +69 -0
  26. package/dist/commands/enterprise/status.d.ts +10 -0
  27. package/dist/commands/enterprise/status.js +45 -0
  28. package/dist/commands/enterprise/transfer-credits.d.ts +14 -0
  29. package/dist/commands/enterprise/transfer-credits.js +76 -0
  30. package/dist/commands/enterprise/webhooks/delete.d.ts +11 -0
  31. package/dist/commands/enterprise/webhooks/delete.js +44 -0
  32. package/dist/commands/enterprise/webhooks/get.d.ts +10 -0
  33. package/dist/commands/enterprise/webhooks/get.js +38 -0
  34. package/dist/commands/enterprise/webhooks/set.d.ts +12 -0
  35. package/dist/commands/enterprise/webhooks/set.js +48 -0
  36. package/dist/commands/enterprise/webhooks/test.d.ts +10 -0
  37. package/dist/commands/enterprise/webhooks/test.js +42 -0
  38. package/dist/commands/enterprise/workspaces/create.d.ts +11 -0
  39. package/dist/commands/enterprise/workspaces/create.js +37 -0
  40. package/dist/commands/enterprise/workspaces/delete.d.ts +14 -0
  41. package/dist/commands/enterprise/workspaces/delete.js +58 -0
  42. package/dist/commands/enterprise/workspaces/get.d.ts +13 -0
  43. package/dist/commands/enterprise/workspaces/get.js +51 -0
  44. package/dist/commands/enterprise/workspaces/list.d.ts +10 -0
  45. package/dist/commands/enterprise/workspaces/list.js +75 -0
  46. package/dist/commands/enterprise/workspaces/resume.d.ts +13 -0
  47. package/dist/commands/enterprise/workspaces/resume.js +35 -0
  48. package/dist/commands/enterprise/workspaces/suspend.d.ts +15 -0
  49. package/dist/commands/enterprise/workspaces/suspend.js +60 -0
  50. package/dist/lib/api-client.d.ts +1 -0
  51. package/dist/lib/api-client.js +6 -3
  52. package/oclif.manifest.json +1293 -76
  53. package/package.json +19 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sendly/cli",
3
- "version": "3.18.0",
3
+ "version": "3.18.3",
4
4
  "type": "module",
5
5
  "description": "Sendly CLI - Send SMS from your terminal",
6
6
  "author": "Sendly <support@sendly.live>",
@@ -58,6 +58,24 @@
58
58
  },
59
59
  "credits": {
60
60
  "description": "Manage credits and transfers"
61
+ },
62
+ "enterprise": {
63
+ "description": "Manage enterprise workspaces, billing, and analytics"
64
+ },
65
+ "enterprise workspaces": {
66
+ "description": "Create, list, and manage enterprise workspaces"
67
+ },
68
+ "enterprise keys": {
69
+ "description": "Manage API keys for enterprise workspaces"
70
+ },
71
+ "enterprise webhooks": {
72
+ "description": "Manage enterprise-level webhooks"
73
+ },
74
+ "enterprise analytics": {
75
+ "description": "View enterprise analytics and reports"
76
+ },
77
+ "enterprise quota": {
78
+ "description": "Manage workspace message quotas"
61
79
  }
62
80
  }
63
81
  },