@smartlyqofficial/cli 0.1.5 → 0.1.6

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
@@ -179,7 +179,9 @@ Full request/response documentation lives at [docs.smartlyq.com](https://docs.sm
179
179
  | Command | Endpoint | Description |
180
180
  | --- | --- | --- |
181
181
  | `smartlyq crm delete-contact <id>` | `DELETE /contacts/{id}` | Delete contact |
182
+ | `smartlyq crm update-custom-field <id> --data <json>` | `PATCH /custom-fields/{id}` | Update custom field |
182
183
  | `smartlyq crm bulk-import-contacts --data <json>` | `POST /contacts/bulk` | Bulk import contacts |
184
+ | `smartlyq crm contact-channels <id>` | `GET /contacts/{id}/channels` | Contact channels |
183
185
 
184
186
  ### CRM Contacts
185
187
 
@@ -391,9 +393,12 @@ Full request/response documentation lives at [docs.smartlyq.com](https://docs.sm
391
393
  | `smartlyq social gmb-update-food-menus <account-id> --data <json>` | `PUT /social/accounts/{account_id}/gmb/food-menus` | Update food menus |
392
394
  | `smartlyq social gmb-place-actions <account-id>` | `GET /social/accounts/{account_id}/gmb/place-actions` | List place-action links |
393
395
  | `smartlyq social gmb-create-place-action <account-id> --data <json>` | `POST /social/accounts/{account_id}/gmb/place-actions` | Create place-action link |
396
+ | `smartlyq social gmb-update-place-action <account-id> --data <json>` | `PATCH /social/accounts/{account_id}/gmb/place-actions` | Update place-action link |
394
397
  | `smartlyq social gmb-delete-place-action <account-id> --data <json>` | `DELETE /social/accounts/{account_id}/gmb/place-actions` | Delete place-action link |
395
398
  | `smartlyq social gmb-verifications <account-id>` | `GET /social/accounts/{account_id}/gmb/verifications` | List verifications |
396
399
  | `smartlyq social gmb-verification-options <account-id> [--data <json>]` | `POST /social/accounts/{account_id}/gmb/verifications/options` | Verification options |
400
+ | `smartlyq social reddit-subreddit-info <account-id> <subreddit>` | `GET /social/accounts/{account_id}/reddit/subreddits/{subreddit}` | Subreddit info + eligibility |
401
+ | `smartlyq social x-mentions <account-id> [--query <query>]` | `GET /social/accounts/{account_id}/x/mentions` | X mentions |
397
402
 
398
403
  ### URLs
399
404
 
package/dist/cli.js CHANGED
@@ -58,7 +58,9 @@ var commands = [
58
58
  { "resourceKey": "content", "methodName": "rewrite", "kebabMethod": "rewrite", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Rewrite content", "httpMethod": "POST", "path": "/content/rewrite" },
59
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" },
60
60
  { "resourceKey": "crm", "methodName": "deleteContact", "kebabMethod": "delete-contact", "pathParams": ["id"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete contact", "httpMethod": "DELETE", "path": "/contacts/{id}" },
61
+ { "resourceKey": "crm", "methodName": "updateCustomField", "kebabMethod": "update-custom-field", "pathParams": ["id"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update custom field", "httpMethod": "PATCH", "path": "/custom-fields/{id}" },
61
62
  { "resourceKey": "crm", "methodName": "bulkImportContacts", "kebabMethod": "bulk-import-contacts", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Bulk import contacts", "httpMethod": "POST", "path": "/contacts/bulk" },
63
+ { "resourceKey": "crm", "methodName": "contactChannels", "kebabMethod": "contact-channels", "pathParams": ["id"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Contact channels", "httpMethod": "GET", "path": "/contacts/{id}/channels" },
62
64
  { "resourceKey": "contacts", "methodName": "list", "kebabMethod": "list", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "List contacts", "httpMethod": "GET", "path": "/contacts" },
63
65
  { "resourceKey": "contacts", "methodName": "create", "kebabMethod": "create", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Create or upsert a contact", "httpMethod": "POST", "path": "/contacts" },
64
66
  { "resourceKey": "contacts", "methodName": "get", "kebabMethod": "get", "pathParams": ["id"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get a contact", "httpMethod": "GET", "path": "/contacts/{id}" },
@@ -205,9 +207,12 @@ var commands = [
205
207
  { "resourceKey": "social", "methodName": "gmbUpdateFoodMenus", "kebabMethod": "gmb-update-food-menus", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update food menus", "httpMethod": "PUT", "path": "/social/accounts/{account_id}/gmb/food-menus" },
206
208
  { "resourceKey": "social", "methodName": "gmbPlaceActions", "kebabMethod": "gmb-place-actions", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "List place-action links", "httpMethod": "GET", "path": "/social/accounts/{account_id}/gmb/place-actions" },
207
209
  { "resourceKey": "social", "methodName": "gmbCreatePlaceAction", "kebabMethod": "gmb-create-place-action", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Create place-action link", "httpMethod": "POST", "path": "/social/accounts/{account_id}/gmb/place-actions" },
210
+ { "resourceKey": "social", "methodName": "gmbUpdatePlaceAction", "kebabMethod": "gmb-update-place-action", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update place-action link", "httpMethod": "PATCH", "path": "/social/accounts/{account_id}/gmb/place-actions" },
208
211
  { "resourceKey": "social", "methodName": "gmbDeletePlaceAction", "kebabMethod": "gmb-delete-place-action", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Delete place-action link", "httpMethod": "DELETE", "path": "/social/accounts/{account_id}/gmb/place-actions" },
209
212
  { "resourceKey": "social", "methodName": "gmbVerifications", "kebabMethod": "gmb-verifications", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "List verifications", "httpMethod": "GET", "path": "/social/accounts/{account_id}/gmb/verifications" },
210
213
  { "resourceKey": "social", "methodName": "gmbVerificationOptions", "kebabMethod": "gmb-verification-options", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": false, "hasQuery": false, "summary": "Verification options", "httpMethod": "POST", "path": "/social/accounts/{account_id}/gmb/verifications/options" },
214
+ { "resourceKey": "social", "methodName": "redditSubredditInfo", "kebabMethod": "reddit-subreddit-info", "pathParams": ["accountId", "subreddit"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Subreddit info + eligibility", "httpMethod": "GET", "path": "/social/accounts/{account_id}/reddit/subreddits/{subreddit}" },
215
+ { "resourceKey": "social", "methodName": "xMentions", "kebabMethod": "x-mentions", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "X mentions", "httpMethod": "GET", "path": "/social/accounts/{account_id}/x/mentions" },
211
216
  { "resourceKey": "urls", "methodName": "shorten", "kebabMethod": "shorten", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Shorten URL", "httpMethod": "POST", "path": "/urls/shorten" },
212
217
  { "resourceKey": "urls", "methodName": "list", "kebabMethod": "list", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "List short URLs", "httpMethod": "GET", "path": "/urls" },
213
218
  { "resourceKey": "urls", "methodName": "get", "kebabMethod": "get", "pathParams": ["urlId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get short URL", "httpMethod": "GET", "path": "/urls/{url_id}" },
@@ -406,7 +411,7 @@ function runLogout() {
406
411
  // package.json
407
412
  var package_default = {
408
413
  name: "@smartlyqofficial/cli",
409
- version: "0.1.5",
414
+ version: "0.1.6",
410
415
  description: "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
411
416
  keywords: [
412
417
  "smartlyq",
@@ -456,7 +461,7 @@ var package_default = {
456
461
  prepublishOnly: "npm run build"
457
462
  },
458
463
  dependencies: {
459
- "@smartlyqofficial/node": "^0.1.7",
464
+ "@smartlyqofficial/node": "^0.1.8",
460
465
  commander: "^12.1.0"
461
466
  },
462
467
  devDependencies: {
package/dist/index.cjs CHANGED
@@ -108,7 +108,9 @@ var commands = [
108
108
  { "resourceKey": "content", "methodName": "rewrite", "kebabMethod": "rewrite", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Rewrite content", "httpMethod": "POST", "path": "/content/rewrite" },
109
109
  { "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
110
  { "resourceKey": "crm", "methodName": "deleteContact", "kebabMethod": "delete-contact", "pathParams": ["id"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete contact", "httpMethod": "DELETE", "path": "/contacts/{id}" },
111
+ { "resourceKey": "crm", "methodName": "updateCustomField", "kebabMethod": "update-custom-field", "pathParams": ["id"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update custom field", "httpMethod": "PATCH", "path": "/custom-fields/{id}" },
111
112
  { "resourceKey": "crm", "methodName": "bulkImportContacts", "kebabMethod": "bulk-import-contacts", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Bulk import contacts", "httpMethod": "POST", "path": "/contacts/bulk" },
113
+ { "resourceKey": "crm", "methodName": "contactChannels", "kebabMethod": "contact-channels", "pathParams": ["id"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Contact channels", "httpMethod": "GET", "path": "/contacts/{id}/channels" },
112
114
  { "resourceKey": "contacts", "methodName": "list", "kebabMethod": "list", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "List contacts", "httpMethod": "GET", "path": "/contacts" },
113
115
  { "resourceKey": "contacts", "methodName": "create", "kebabMethod": "create", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Create or upsert a contact", "httpMethod": "POST", "path": "/contacts" },
114
116
  { "resourceKey": "contacts", "methodName": "get", "kebabMethod": "get", "pathParams": ["id"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get a contact", "httpMethod": "GET", "path": "/contacts/{id}" },
@@ -255,9 +257,12 @@ var commands = [
255
257
  { "resourceKey": "social", "methodName": "gmbUpdateFoodMenus", "kebabMethod": "gmb-update-food-menus", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update food menus", "httpMethod": "PUT", "path": "/social/accounts/{account_id}/gmb/food-menus" },
256
258
  { "resourceKey": "social", "methodName": "gmbPlaceActions", "kebabMethod": "gmb-place-actions", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "List place-action links", "httpMethod": "GET", "path": "/social/accounts/{account_id}/gmb/place-actions" },
257
259
  { "resourceKey": "social", "methodName": "gmbCreatePlaceAction", "kebabMethod": "gmb-create-place-action", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Create place-action link", "httpMethod": "POST", "path": "/social/accounts/{account_id}/gmb/place-actions" },
260
+ { "resourceKey": "social", "methodName": "gmbUpdatePlaceAction", "kebabMethod": "gmb-update-place-action", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update place-action link", "httpMethod": "PATCH", "path": "/social/accounts/{account_id}/gmb/place-actions" },
258
261
  { "resourceKey": "social", "methodName": "gmbDeletePlaceAction", "kebabMethod": "gmb-delete-place-action", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Delete place-action link", "httpMethod": "DELETE", "path": "/social/accounts/{account_id}/gmb/place-actions" },
259
262
  { "resourceKey": "social", "methodName": "gmbVerifications", "kebabMethod": "gmb-verifications", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "List verifications", "httpMethod": "GET", "path": "/social/accounts/{account_id}/gmb/verifications" },
260
263
  { "resourceKey": "social", "methodName": "gmbVerificationOptions", "kebabMethod": "gmb-verification-options", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": false, "hasQuery": false, "summary": "Verification options", "httpMethod": "POST", "path": "/social/accounts/{account_id}/gmb/verifications/options" },
264
+ { "resourceKey": "social", "methodName": "redditSubredditInfo", "kebabMethod": "reddit-subreddit-info", "pathParams": ["accountId", "subreddit"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Subreddit info + eligibility", "httpMethod": "GET", "path": "/social/accounts/{account_id}/reddit/subreddits/{subreddit}" },
265
+ { "resourceKey": "social", "methodName": "xMentions", "kebabMethod": "x-mentions", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "X mentions", "httpMethod": "GET", "path": "/social/accounts/{account_id}/x/mentions" },
261
266
  { "resourceKey": "urls", "methodName": "shorten", "kebabMethod": "shorten", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Shorten URL", "httpMethod": "POST", "path": "/urls/shorten" },
262
267
  { "resourceKey": "urls", "methodName": "list", "kebabMethod": "list", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "List short URLs", "httpMethod": "GET", "path": "/urls" },
263
268
  { "resourceKey": "urls", "methodName": "get", "kebabMethod": "get", "pathParams": ["urlId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get short URL", "httpMethod": "GET", "path": "/urls/{url_id}" },
@@ -456,7 +461,7 @@ function runLogout() {
456
461
  // package.json
457
462
  var package_default = {
458
463
  name: "@smartlyqofficial/cli",
459
- version: "0.1.5",
464
+ version: "0.1.6",
460
465
  description: "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
461
466
  keywords: [
462
467
  "smartlyq",
@@ -506,7 +511,7 @@ var package_default = {
506
511
  prepublishOnly: "npm run build"
507
512
  },
508
513
  dependencies: {
509
- "@smartlyqofficial/node": "^0.1.7",
514
+ "@smartlyqofficial/node": "^0.1.8",
510
515
  commander: "^12.1.0"
511
516
  },
512
517
  devDependencies: {
package/dist/index.js CHANGED
@@ -56,7 +56,9 @@ var commands = [
56
56
  { "resourceKey": "content", "methodName": "rewrite", "kebabMethod": "rewrite", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Rewrite content", "httpMethod": "POST", "path": "/content/rewrite" },
57
57
  { "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
58
  { "resourceKey": "crm", "methodName": "deleteContact", "kebabMethod": "delete-contact", "pathParams": ["id"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete contact", "httpMethod": "DELETE", "path": "/contacts/{id}" },
59
+ { "resourceKey": "crm", "methodName": "updateCustomField", "kebabMethod": "update-custom-field", "pathParams": ["id"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update custom field", "httpMethod": "PATCH", "path": "/custom-fields/{id}" },
59
60
  { "resourceKey": "crm", "methodName": "bulkImportContacts", "kebabMethod": "bulk-import-contacts", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Bulk import contacts", "httpMethod": "POST", "path": "/contacts/bulk" },
61
+ { "resourceKey": "crm", "methodName": "contactChannels", "kebabMethod": "contact-channels", "pathParams": ["id"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Contact channels", "httpMethod": "GET", "path": "/contacts/{id}/channels" },
60
62
  { "resourceKey": "contacts", "methodName": "list", "kebabMethod": "list", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "List contacts", "httpMethod": "GET", "path": "/contacts" },
61
63
  { "resourceKey": "contacts", "methodName": "create", "kebabMethod": "create", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Create or upsert a contact", "httpMethod": "POST", "path": "/contacts" },
62
64
  { "resourceKey": "contacts", "methodName": "get", "kebabMethod": "get", "pathParams": ["id"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get a contact", "httpMethod": "GET", "path": "/contacts/{id}" },
@@ -203,9 +205,12 @@ var commands = [
203
205
  { "resourceKey": "social", "methodName": "gmbUpdateFoodMenus", "kebabMethod": "gmb-update-food-menus", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update food menus", "httpMethod": "PUT", "path": "/social/accounts/{account_id}/gmb/food-menus" },
204
206
  { "resourceKey": "social", "methodName": "gmbPlaceActions", "kebabMethod": "gmb-place-actions", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "List place-action links", "httpMethod": "GET", "path": "/social/accounts/{account_id}/gmb/place-actions" },
205
207
  { "resourceKey": "social", "methodName": "gmbCreatePlaceAction", "kebabMethod": "gmb-create-place-action", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Create place-action link", "httpMethod": "POST", "path": "/social/accounts/{account_id}/gmb/place-actions" },
208
+ { "resourceKey": "social", "methodName": "gmbUpdatePlaceAction", "kebabMethod": "gmb-update-place-action", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update place-action link", "httpMethod": "PATCH", "path": "/social/accounts/{account_id}/gmb/place-actions" },
206
209
  { "resourceKey": "social", "methodName": "gmbDeletePlaceAction", "kebabMethod": "gmb-delete-place-action", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Delete place-action link", "httpMethod": "DELETE", "path": "/social/accounts/{account_id}/gmb/place-actions" },
207
210
  { "resourceKey": "social", "methodName": "gmbVerifications", "kebabMethod": "gmb-verifications", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "List verifications", "httpMethod": "GET", "path": "/social/accounts/{account_id}/gmb/verifications" },
208
211
  { "resourceKey": "social", "methodName": "gmbVerificationOptions", "kebabMethod": "gmb-verification-options", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": false, "hasQuery": false, "summary": "Verification options", "httpMethod": "POST", "path": "/social/accounts/{account_id}/gmb/verifications/options" },
212
+ { "resourceKey": "social", "methodName": "redditSubredditInfo", "kebabMethod": "reddit-subreddit-info", "pathParams": ["accountId", "subreddit"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Subreddit info + eligibility", "httpMethod": "GET", "path": "/social/accounts/{account_id}/reddit/subreddits/{subreddit}" },
213
+ { "resourceKey": "social", "methodName": "xMentions", "kebabMethod": "x-mentions", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "X mentions", "httpMethod": "GET", "path": "/social/accounts/{account_id}/x/mentions" },
209
214
  { "resourceKey": "urls", "methodName": "shorten", "kebabMethod": "shorten", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Shorten URL", "httpMethod": "POST", "path": "/urls/shorten" },
210
215
  { "resourceKey": "urls", "methodName": "list", "kebabMethod": "list", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "List short URLs", "httpMethod": "GET", "path": "/urls" },
211
216
  { "resourceKey": "urls", "methodName": "get", "kebabMethod": "get", "pathParams": ["urlId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get short URL", "httpMethod": "GET", "path": "/urls/{url_id}" },
@@ -404,7 +409,7 @@ function runLogout() {
404
409
  // package.json
405
410
  var package_default = {
406
411
  name: "@smartlyqofficial/cli",
407
- version: "0.1.5",
412
+ version: "0.1.6",
408
413
  description: "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
409
414
  keywords: [
410
415
  "smartlyq",
@@ -454,7 +459,7 @@ var package_default = {
454
459
  prepublishOnly: "npm run build"
455
460
  },
456
461
  dependencies: {
457
- "@smartlyqofficial/node": "^0.1.7",
462
+ "@smartlyqofficial/node": "^0.1.8",
458
463
  commander: "^12.1.0"
459
464
  },
460
465
  devDependencies: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartlyqofficial/cli",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
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.7",
53
+ "@smartlyqofficial/node": "^0.1.8",
54
54
  "commander": "^12.1.0"
55
55
  },
56
56
  "devDependencies": {