@smartlyqofficial/cli 0.1.13 → 0.1.14

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 CHANGED
@@ -85,6 +85,7 @@ Full request/response documentation lives at [docs.smartlyq.com](https://docs.sm
85
85
  | `smartlyq account get-me` | `GET /me` | Get current user profile |
86
86
  | `smartlyq account get-me-usage [--query <query>]` | `GET /me/usage` | Get usage summary |
87
87
  | `smartlyq account get-me-balance` | `GET /me/balance` | Get wallet balance |
88
+ | `smartlyq account get-billing` | `GET /me/billing` | Billing overview |
88
89
 
89
90
  ### AI Captain
90
91
 
@@ -166,6 +167,7 @@ Full request/response documentation lives at [docs.smartlyq.com](https://docs.sm
166
167
  | `smartlyq comments reply-to <comment-id> --data <json>` | `POST /social/comments/{comment_id}/reply` | Reply to a comment |
167
168
  | `smartlyq comments hide <comment-id>` | `POST /social/comments/{comment_id}/hide` | Hide or unhide a comment |
168
169
  | `smartlyq comments delete <comment-id>` | `DELETE /social/comments/{comment_id}` | Delete a comment |
170
+ | `smartlyq comments get-post <post-id>` | `GET /social/comments/{post_id}` | Get one post's comments (threaded) |
169
171
 
170
172
  ### Content
171
173
 
@@ -197,6 +199,8 @@ Full request/response documentation lives at [docs.smartlyq.com](https://docs.sm
197
199
  | `smartlyq contacts add-note <id> --data <json>` | `POST /contacts/{id}/notes` | Add a note to a contact |
198
200
  | `smartlyq contacts enroll <id> --data <json>` | `POST /contacts/{id}/enroll` | Enroll a contact in an automation |
199
201
  | `smartlyq contacts add-message <id> --data <json>` | `POST /contacts/{id}/messages` | Log a message on a contact's timeline |
202
+ | `smartlyq contacts set-field <id> <slug> --data <json>` | `PUT /contacts/{id}/fields/{slug}` | Set one custom field |
203
+ | `smartlyq contacts clear-field <id> <slug>` | `DELETE /contacts/{id}/fields/{slug}` | Clear one custom field |
200
204
 
201
205
  ### CRM Custom Fields
202
206
 
package/dist/cli.js CHANGED
@@ -9,6 +9,7 @@ var commands = [
9
9
  { "resourceKey": "account", "methodName": "getMe", "kebabMethod": "get-me", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get current user profile", "httpMethod": "GET", "path": "/me" },
10
10
  { "resourceKey": "account", "methodName": "getMeUsage", "kebabMethod": "get-me-usage", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "Get usage summary", "httpMethod": "GET", "path": "/me/usage" },
11
11
  { "resourceKey": "account", "methodName": "getMeBalance", "kebabMethod": "get-me-balance", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get wallet balance", "httpMethod": "GET", "path": "/me/balance" },
12
+ { "resourceKey": "account", "methodName": "getBilling", "kebabMethod": "get-billing", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Billing overview", "httpMethod": "GET", "path": "/me/billing" },
12
13
  { "resourceKey": "captain", "methodName": "sendMessage", "kebabMethod": "send-message", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Send AI Captain message", "httpMethod": "POST", "path": "/captain/messages" },
13
14
  { "resourceKey": "captain", "methodName": "listConversations", "kebabMethod": "list-conversations", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "List AI Captain conversations", "httpMethod": "GET", "path": "/captain/conversations" },
14
15
  { "resourceKey": "captain", "methodName": "getConversation", "kebabMethod": "get-conversation", "pathParams": ["conversationId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get AI Captain conversation", "httpMethod": "GET", "path": "/captain/conversations/{conversation_id}" },
@@ -55,6 +56,7 @@ var commands = [
55
56
  { "resourceKey": "comments", "methodName": "replyTo", "kebabMethod": "reply-to", "pathParams": ["commentId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Reply to a comment", "httpMethod": "POST", "path": "/social/comments/{comment_id}/reply" },
56
57
  { "resourceKey": "comments", "methodName": "hide", "kebabMethod": "hide", "pathParams": ["commentId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Hide or unhide a comment", "httpMethod": "POST", "path": "/social/comments/{comment_id}/hide" },
57
58
  { "resourceKey": "comments", "methodName": "delete", "kebabMethod": "delete", "pathParams": ["commentId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete a comment", "httpMethod": "DELETE", "path": "/social/comments/{comment_id}" },
59
+ { "resourceKey": "comments", "methodName": "getPost", "kebabMethod": "get-post", "pathParams": ["postId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get one post's comments (threaded)", "httpMethod": "GET", "path": "/social/comments/{post_id}" },
58
60
  { "resourceKey": "content", "methodName": "rewrite", "kebabMethod": "rewrite", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Rewrite content", "httpMethod": "POST", "path": "/content/rewrite" },
59
61
  { "resourceKey": "content", "methodName": "generateCaption", "kebabMethod": "generate-caption", "pathParams": [], "hasBody": true, "bodyRequired": false, "hasQuery": false, "summary": "Generate a social caption", "httpMethod": "POST", "path": "/content/caption" },
60
62
  { "resourceKey": "crm", "methodName": "deleteContact", "kebabMethod": "delete-contact", "pathParams": ["id"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete contact", "httpMethod": "DELETE", "path": "/contacts/{id}" },
@@ -71,6 +73,8 @@ var commands = [
71
73
  { "resourceKey": "contacts", "methodName": "addNote", "kebabMethod": "add-note", "pathParams": ["id"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Add a note to a contact", "httpMethod": "POST", "path": "/contacts/{id}/notes" },
72
74
  { "resourceKey": "contacts", "methodName": "enroll", "kebabMethod": "enroll", "pathParams": ["id"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Enroll a contact in an automation", "httpMethod": "POST", "path": "/contacts/{id}/enroll" },
73
75
  { "resourceKey": "contacts", "methodName": "addMessage", "kebabMethod": "add-message", "pathParams": ["id"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Log a message on a contact's timeline", "httpMethod": "POST", "path": "/contacts/{id}/messages" },
76
+ { "resourceKey": "contacts", "methodName": "setField", "kebabMethod": "set-field", "pathParams": ["id", "slug"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Set one custom field", "httpMethod": "PUT", "path": "/contacts/{id}/fields/{slug}" },
77
+ { "resourceKey": "contacts", "methodName": "clearField", "kebabMethod": "clear-field", "pathParams": ["id", "slug"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Clear one custom field", "httpMethod": "DELETE", "path": "/contacts/{id}/fields/{slug}" },
74
78
  { "resourceKey": "customFields", "methodName": "list", "kebabMethod": "list", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "List custom fields", "httpMethod": "GET", "path": "/custom-fields" },
75
79
  { "resourceKey": "customFields", "methodName": "create", "kebabMethod": "create", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Create a custom field", "httpMethod": "POST", "path": "/custom-fields" },
76
80
  { "resourceKey": "customFields", "methodName": "delete", "kebabMethod": "delete", "pathParams": ["id"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete a custom field", "httpMethod": "DELETE", "path": "/custom-fields/{id}" },
@@ -425,7 +429,7 @@ function runLogout() {
425
429
  // package.json
426
430
  var package_default = {
427
431
  name: "@smartlyqofficial/cli",
428
- version: "0.1.13",
432
+ version: "0.1.14",
429
433
  description: "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
430
434
  keywords: [
431
435
  "smartlyq",
@@ -475,7 +479,7 @@ var package_default = {
475
479
  prepublishOnly: "npm run build"
476
480
  },
477
481
  dependencies: {
478
- "@smartlyqofficial/node": "^0.1.13",
482
+ "@smartlyqofficial/node": "^0.1.14",
479
483
  commander: "^12.1.0"
480
484
  },
481
485
  devDependencies: {
package/dist/index.cjs CHANGED
@@ -59,6 +59,7 @@ var commands = [
59
59
  { "resourceKey": "account", "methodName": "getMe", "kebabMethod": "get-me", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get current user profile", "httpMethod": "GET", "path": "/me" },
60
60
  { "resourceKey": "account", "methodName": "getMeUsage", "kebabMethod": "get-me-usage", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "Get usage summary", "httpMethod": "GET", "path": "/me/usage" },
61
61
  { "resourceKey": "account", "methodName": "getMeBalance", "kebabMethod": "get-me-balance", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get wallet balance", "httpMethod": "GET", "path": "/me/balance" },
62
+ { "resourceKey": "account", "methodName": "getBilling", "kebabMethod": "get-billing", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Billing overview", "httpMethod": "GET", "path": "/me/billing" },
62
63
  { "resourceKey": "captain", "methodName": "sendMessage", "kebabMethod": "send-message", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Send AI Captain message", "httpMethod": "POST", "path": "/captain/messages" },
63
64
  { "resourceKey": "captain", "methodName": "listConversations", "kebabMethod": "list-conversations", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "List AI Captain conversations", "httpMethod": "GET", "path": "/captain/conversations" },
64
65
  { "resourceKey": "captain", "methodName": "getConversation", "kebabMethod": "get-conversation", "pathParams": ["conversationId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get AI Captain conversation", "httpMethod": "GET", "path": "/captain/conversations/{conversation_id}" },
@@ -105,6 +106,7 @@ var commands = [
105
106
  { "resourceKey": "comments", "methodName": "replyTo", "kebabMethod": "reply-to", "pathParams": ["commentId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Reply to a comment", "httpMethod": "POST", "path": "/social/comments/{comment_id}/reply" },
106
107
  { "resourceKey": "comments", "methodName": "hide", "kebabMethod": "hide", "pathParams": ["commentId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Hide or unhide a comment", "httpMethod": "POST", "path": "/social/comments/{comment_id}/hide" },
107
108
  { "resourceKey": "comments", "methodName": "delete", "kebabMethod": "delete", "pathParams": ["commentId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete a comment", "httpMethod": "DELETE", "path": "/social/comments/{comment_id}" },
109
+ { "resourceKey": "comments", "methodName": "getPost", "kebabMethod": "get-post", "pathParams": ["postId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get one post's comments (threaded)", "httpMethod": "GET", "path": "/social/comments/{post_id}" },
108
110
  { "resourceKey": "content", "methodName": "rewrite", "kebabMethod": "rewrite", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Rewrite content", "httpMethod": "POST", "path": "/content/rewrite" },
109
111
  { "resourceKey": "content", "methodName": "generateCaption", "kebabMethod": "generate-caption", "pathParams": [], "hasBody": true, "bodyRequired": false, "hasQuery": false, "summary": "Generate a social caption", "httpMethod": "POST", "path": "/content/caption" },
110
112
  { "resourceKey": "crm", "methodName": "deleteContact", "kebabMethod": "delete-contact", "pathParams": ["id"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete contact", "httpMethod": "DELETE", "path": "/contacts/{id}" },
@@ -121,6 +123,8 @@ var commands = [
121
123
  { "resourceKey": "contacts", "methodName": "addNote", "kebabMethod": "add-note", "pathParams": ["id"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Add a note to a contact", "httpMethod": "POST", "path": "/contacts/{id}/notes" },
122
124
  { "resourceKey": "contacts", "methodName": "enroll", "kebabMethod": "enroll", "pathParams": ["id"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Enroll a contact in an automation", "httpMethod": "POST", "path": "/contacts/{id}/enroll" },
123
125
  { "resourceKey": "contacts", "methodName": "addMessage", "kebabMethod": "add-message", "pathParams": ["id"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Log a message on a contact's timeline", "httpMethod": "POST", "path": "/contacts/{id}/messages" },
126
+ { "resourceKey": "contacts", "methodName": "setField", "kebabMethod": "set-field", "pathParams": ["id", "slug"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Set one custom field", "httpMethod": "PUT", "path": "/contacts/{id}/fields/{slug}" },
127
+ { "resourceKey": "contacts", "methodName": "clearField", "kebabMethod": "clear-field", "pathParams": ["id", "slug"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Clear one custom field", "httpMethod": "DELETE", "path": "/contacts/{id}/fields/{slug}" },
124
128
  { "resourceKey": "customFields", "methodName": "list", "kebabMethod": "list", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "List custom fields", "httpMethod": "GET", "path": "/custom-fields" },
125
129
  { "resourceKey": "customFields", "methodName": "create", "kebabMethod": "create", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Create a custom field", "httpMethod": "POST", "path": "/custom-fields" },
126
130
  { "resourceKey": "customFields", "methodName": "delete", "kebabMethod": "delete", "pathParams": ["id"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete a custom field", "httpMethod": "DELETE", "path": "/custom-fields/{id}" },
@@ -475,7 +479,7 @@ function runLogout() {
475
479
  // package.json
476
480
  var package_default = {
477
481
  name: "@smartlyqofficial/cli",
478
- version: "0.1.13",
482
+ version: "0.1.14",
479
483
  description: "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
480
484
  keywords: [
481
485
  "smartlyq",
@@ -525,7 +529,7 @@ var package_default = {
525
529
  prepublishOnly: "npm run build"
526
530
  },
527
531
  dependencies: {
528
- "@smartlyqofficial/node": "^0.1.13",
532
+ "@smartlyqofficial/node": "^0.1.14",
529
533
  commander: "^12.1.0"
530
534
  },
531
535
  devDependencies: {
package/dist/index.js CHANGED
@@ -7,6 +7,7 @@ var commands = [
7
7
  { "resourceKey": "account", "methodName": "getMe", "kebabMethod": "get-me", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get current user profile", "httpMethod": "GET", "path": "/me" },
8
8
  { "resourceKey": "account", "methodName": "getMeUsage", "kebabMethod": "get-me-usage", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "Get usage summary", "httpMethod": "GET", "path": "/me/usage" },
9
9
  { "resourceKey": "account", "methodName": "getMeBalance", "kebabMethod": "get-me-balance", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get wallet balance", "httpMethod": "GET", "path": "/me/balance" },
10
+ { "resourceKey": "account", "methodName": "getBilling", "kebabMethod": "get-billing", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Billing overview", "httpMethod": "GET", "path": "/me/billing" },
10
11
  { "resourceKey": "captain", "methodName": "sendMessage", "kebabMethod": "send-message", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Send AI Captain message", "httpMethod": "POST", "path": "/captain/messages" },
11
12
  { "resourceKey": "captain", "methodName": "listConversations", "kebabMethod": "list-conversations", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "List AI Captain conversations", "httpMethod": "GET", "path": "/captain/conversations" },
12
13
  { "resourceKey": "captain", "methodName": "getConversation", "kebabMethod": "get-conversation", "pathParams": ["conversationId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get AI Captain conversation", "httpMethod": "GET", "path": "/captain/conversations/{conversation_id}" },
@@ -53,6 +54,7 @@ var commands = [
53
54
  { "resourceKey": "comments", "methodName": "replyTo", "kebabMethod": "reply-to", "pathParams": ["commentId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Reply to a comment", "httpMethod": "POST", "path": "/social/comments/{comment_id}/reply" },
54
55
  { "resourceKey": "comments", "methodName": "hide", "kebabMethod": "hide", "pathParams": ["commentId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Hide or unhide a comment", "httpMethod": "POST", "path": "/social/comments/{comment_id}/hide" },
55
56
  { "resourceKey": "comments", "methodName": "delete", "kebabMethod": "delete", "pathParams": ["commentId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete a comment", "httpMethod": "DELETE", "path": "/social/comments/{comment_id}" },
57
+ { "resourceKey": "comments", "methodName": "getPost", "kebabMethod": "get-post", "pathParams": ["postId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get one post's comments (threaded)", "httpMethod": "GET", "path": "/social/comments/{post_id}" },
56
58
  { "resourceKey": "content", "methodName": "rewrite", "kebabMethod": "rewrite", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Rewrite content", "httpMethod": "POST", "path": "/content/rewrite" },
57
59
  { "resourceKey": "content", "methodName": "generateCaption", "kebabMethod": "generate-caption", "pathParams": [], "hasBody": true, "bodyRequired": false, "hasQuery": false, "summary": "Generate a social caption", "httpMethod": "POST", "path": "/content/caption" },
58
60
  { "resourceKey": "crm", "methodName": "deleteContact", "kebabMethod": "delete-contact", "pathParams": ["id"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete contact", "httpMethod": "DELETE", "path": "/contacts/{id}" },
@@ -69,6 +71,8 @@ var commands = [
69
71
  { "resourceKey": "contacts", "methodName": "addNote", "kebabMethod": "add-note", "pathParams": ["id"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Add a note to a contact", "httpMethod": "POST", "path": "/contacts/{id}/notes" },
70
72
  { "resourceKey": "contacts", "methodName": "enroll", "kebabMethod": "enroll", "pathParams": ["id"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Enroll a contact in an automation", "httpMethod": "POST", "path": "/contacts/{id}/enroll" },
71
73
  { "resourceKey": "contacts", "methodName": "addMessage", "kebabMethod": "add-message", "pathParams": ["id"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Log a message on a contact's timeline", "httpMethod": "POST", "path": "/contacts/{id}/messages" },
74
+ { "resourceKey": "contacts", "methodName": "setField", "kebabMethod": "set-field", "pathParams": ["id", "slug"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Set one custom field", "httpMethod": "PUT", "path": "/contacts/{id}/fields/{slug}" },
75
+ { "resourceKey": "contacts", "methodName": "clearField", "kebabMethod": "clear-field", "pathParams": ["id", "slug"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Clear one custom field", "httpMethod": "DELETE", "path": "/contacts/{id}/fields/{slug}" },
72
76
  { "resourceKey": "customFields", "methodName": "list", "kebabMethod": "list", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "List custom fields", "httpMethod": "GET", "path": "/custom-fields" },
73
77
  { "resourceKey": "customFields", "methodName": "create", "kebabMethod": "create", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Create a custom field", "httpMethod": "POST", "path": "/custom-fields" },
74
78
  { "resourceKey": "customFields", "methodName": "delete", "kebabMethod": "delete", "pathParams": ["id"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete a custom field", "httpMethod": "DELETE", "path": "/custom-fields/{id}" },
@@ -423,7 +427,7 @@ function runLogout() {
423
427
  // package.json
424
428
  var package_default = {
425
429
  name: "@smartlyqofficial/cli",
426
- version: "0.1.13",
430
+ version: "0.1.14",
427
431
  description: "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
428
432
  keywords: [
429
433
  "smartlyq",
@@ -473,7 +477,7 @@ var package_default = {
473
477
  prepublishOnly: "npm run build"
474
478
  },
475
479
  dependencies: {
476
- "@smartlyqofficial/node": "^0.1.13",
480
+ "@smartlyqofficial/node": "^0.1.14",
477
481
  commander: "^12.1.0"
478
482
  },
479
483
  devDependencies: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartlyqofficial/cli",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
5
5
  "keywords": [
6
6
  "smartlyq",
@@ -50,7 +50,7 @@
50
50
  "prepublishOnly": "npm run build"
51
51
  },
52
52
  "dependencies": {
53
- "@smartlyqofficial/node": "^0.1.13",
53
+ "@smartlyqofficial/node": "^0.1.14",
54
54
  "commander": "^12.1.0"
55
55
  },
56
56
  "devDependencies": {