@smartlyqofficial/cli 0.1.6 → 0.1.8
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 +12 -0
- package/dist/cli.js +14 -2
- package/dist/index.cjs +14 -2
- package/dist/index.js +14 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -399,6 +399,18 @@ Full request/response documentation lives at [docs.smartlyq.com](https://docs.sm
|
|
|
399
399
|
| `smartlyq social gmb-verification-options <account-id> [--data <json>]` | `POST /social/accounts/{account_id}/gmb/verifications/options` | Verification options |
|
|
400
400
|
| `smartlyq social reddit-subreddit-info <account-id> <subreddit>` | `GET /social/accounts/{account_id}/reddit/subreddits/{subreddit}` | Subreddit info + eligibility |
|
|
401
401
|
| `smartlyq social x-mentions <account-id> [--query <query>]` | `GET /social/accounts/{account_id}/x/mentions` | X mentions |
|
|
402
|
+
| `smartlyq social send-typing-indicator <conversation-id>` | `POST /social/conversations/{conversation_id}/typing` | Typing indicator |
|
|
403
|
+
| `smartlyq social comment-private-reply <comment-id> --data <json>` | `POST /social/comments/{comment_id}/private-reply` | Private reply (comment-to-DM) |
|
|
404
|
+
| `smartlyq social get-messenger-menu <account-id>` | `GET /social/accounts/{account_id}/messenger/menu` | Get Messenger menu |
|
|
405
|
+
| `smartlyq social set-messenger-menu <account-id> --data <json>` | `PUT /social/accounts/{account_id}/messenger/menu` | Set Messenger menu |
|
|
406
|
+
| `smartlyq social delete-messenger-menu <account-id>` | `DELETE /social/accounts/{account_id}/messenger/menu` | Delete Messenger menu |
|
|
407
|
+
| `smartlyq social get-ice-breakers <account-id>` | `GET /social/accounts/{account_id}/instagram/ice-breakers` | Get ice breakers |
|
|
408
|
+
| `smartlyq social set-ice-breakers <account-id> --data <json>` | `PUT /social/accounts/{account_id}/instagram/ice-breakers` | Set ice breakers |
|
|
409
|
+
| `smartlyq social delete-ice-breakers <account-id>` | `DELETE /social/accounts/{account_id}/instagram/ice-breakers` | Delete ice breakers |
|
|
410
|
+
| `smartlyq social facebook-page-insights <account-id> [--query <query>]` | `GET /social/accounts/{account_id}/facebook/page-insights` | Facebook page insights |
|
|
411
|
+
| `smartlyq social instagram-audience <account-id> [--query <query>]` | `GET /social/accounts/{account_id}/instagram/audience` | Instagram audience demographics |
|
|
412
|
+
| `smartlyq social connect-options <account-id>` | `GET /social/accounts/{account_id}/connect-options` | Connection target options |
|
|
413
|
+
| `smartlyq social connect-select <account-id> --data <json>` | `POST /social/accounts/{account_id}/connect-select` | Select connection target |
|
|
402
414
|
|
|
403
415
|
### URLs
|
|
404
416
|
|
package/dist/cli.js
CHANGED
|
@@ -213,6 +213,18 @@ var commands = [
|
|
|
213
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
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
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" },
|
|
216
|
+
{ "resourceKey": "social", "methodName": "sendTypingIndicator", "kebabMethod": "send-typing-indicator", "pathParams": ["conversationId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Typing indicator", "httpMethod": "POST", "path": "/social/conversations/{conversation_id}/typing" },
|
|
217
|
+
{ "resourceKey": "social", "methodName": "commentPrivateReply", "kebabMethod": "comment-private-reply", "pathParams": ["commentId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Private reply (comment-to-DM)", "httpMethod": "POST", "path": "/social/comments/{comment_id}/private-reply" },
|
|
218
|
+
{ "resourceKey": "social", "methodName": "getMessengerMenu", "kebabMethod": "get-messenger-menu", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get Messenger menu", "httpMethod": "GET", "path": "/social/accounts/{account_id}/messenger/menu" },
|
|
219
|
+
{ "resourceKey": "social", "methodName": "setMessengerMenu", "kebabMethod": "set-messenger-menu", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Set Messenger menu", "httpMethod": "PUT", "path": "/social/accounts/{account_id}/messenger/menu" },
|
|
220
|
+
{ "resourceKey": "social", "methodName": "deleteMessengerMenu", "kebabMethod": "delete-messenger-menu", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete Messenger menu", "httpMethod": "DELETE", "path": "/social/accounts/{account_id}/messenger/menu" },
|
|
221
|
+
{ "resourceKey": "social", "methodName": "getIceBreakers", "kebabMethod": "get-ice-breakers", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get ice breakers", "httpMethod": "GET", "path": "/social/accounts/{account_id}/instagram/ice-breakers" },
|
|
222
|
+
{ "resourceKey": "social", "methodName": "setIceBreakers", "kebabMethod": "set-ice-breakers", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Set ice breakers", "httpMethod": "PUT", "path": "/social/accounts/{account_id}/instagram/ice-breakers" },
|
|
223
|
+
{ "resourceKey": "social", "methodName": "deleteIceBreakers", "kebabMethod": "delete-ice-breakers", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete ice breakers", "httpMethod": "DELETE", "path": "/social/accounts/{account_id}/instagram/ice-breakers" },
|
|
224
|
+
{ "resourceKey": "social", "methodName": "facebookPageInsights", "kebabMethod": "facebook-page-insights", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "Facebook page insights", "httpMethod": "GET", "path": "/social/accounts/{account_id}/facebook/page-insights" },
|
|
225
|
+
{ "resourceKey": "social", "methodName": "instagramAudience", "kebabMethod": "instagram-audience", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "Instagram audience demographics", "httpMethod": "GET", "path": "/social/accounts/{account_id}/instagram/audience" },
|
|
226
|
+
{ "resourceKey": "social", "methodName": "connectOptions", "kebabMethod": "connect-options", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Connection target options", "httpMethod": "GET", "path": "/social/accounts/{account_id}/connect-options" },
|
|
227
|
+
{ "resourceKey": "social", "methodName": "connectSelect", "kebabMethod": "connect-select", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Select connection target", "httpMethod": "POST", "path": "/social/accounts/{account_id}/connect-select" },
|
|
216
228
|
{ "resourceKey": "urls", "methodName": "shorten", "kebabMethod": "shorten", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Shorten URL", "httpMethod": "POST", "path": "/urls/shorten" },
|
|
217
229
|
{ "resourceKey": "urls", "methodName": "list", "kebabMethod": "list", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "List short URLs", "httpMethod": "GET", "path": "/urls" },
|
|
218
230
|
{ "resourceKey": "urls", "methodName": "get", "kebabMethod": "get", "pathParams": ["urlId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get short URL", "httpMethod": "GET", "path": "/urls/{url_id}" },
|
|
@@ -411,7 +423,7 @@ function runLogout() {
|
|
|
411
423
|
// package.json
|
|
412
424
|
var package_default = {
|
|
413
425
|
name: "@smartlyqofficial/cli",
|
|
414
|
-
version: "0.1.
|
|
426
|
+
version: "0.1.8",
|
|
415
427
|
description: "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
|
|
416
428
|
keywords: [
|
|
417
429
|
"smartlyq",
|
|
@@ -461,7 +473,7 @@ var package_default = {
|
|
|
461
473
|
prepublishOnly: "npm run build"
|
|
462
474
|
},
|
|
463
475
|
dependencies: {
|
|
464
|
-
"@smartlyqofficial/node": "^0.1.
|
|
476
|
+
"@smartlyqofficial/node": "^0.1.10",
|
|
465
477
|
commander: "^12.1.0"
|
|
466
478
|
},
|
|
467
479
|
devDependencies: {
|
package/dist/index.cjs
CHANGED
|
@@ -263,6 +263,18 @@ var commands = [
|
|
|
263
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
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
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" },
|
|
266
|
+
{ "resourceKey": "social", "methodName": "sendTypingIndicator", "kebabMethod": "send-typing-indicator", "pathParams": ["conversationId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Typing indicator", "httpMethod": "POST", "path": "/social/conversations/{conversation_id}/typing" },
|
|
267
|
+
{ "resourceKey": "social", "methodName": "commentPrivateReply", "kebabMethod": "comment-private-reply", "pathParams": ["commentId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Private reply (comment-to-DM)", "httpMethod": "POST", "path": "/social/comments/{comment_id}/private-reply" },
|
|
268
|
+
{ "resourceKey": "social", "methodName": "getMessengerMenu", "kebabMethod": "get-messenger-menu", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get Messenger menu", "httpMethod": "GET", "path": "/social/accounts/{account_id}/messenger/menu" },
|
|
269
|
+
{ "resourceKey": "social", "methodName": "setMessengerMenu", "kebabMethod": "set-messenger-menu", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Set Messenger menu", "httpMethod": "PUT", "path": "/social/accounts/{account_id}/messenger/menu" },
|
|
270
|
+
{ "resourceKey": "social", "methodName": "deleteMessengerMenu", "kebabMethod": "delete-messenger-menu", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete Messenger menu", "httpMethod": "DELETE", "path": "/social/accounts/{account_id}/messenger/menu" },
|
|
271
|
+
{ "resourceKey": "social", "methodName": "getIceBreakers", "kebabMethod": "get-ice-breakers", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get ice breakers", "httpMethod": "GET", "path": "/social/accounts/{account_id}/instagram/ice-breakers" },
|
|
272
|
+
{ "resourceKey": "social", "methodName": "setIceBreakers", "kebabMethod": "set-ice-breakers", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Set ice breakers", "httpMethod": "PUT", "path": "/social/accounts/{account_id}/instagram/ice-breakers" },
|
|
273
|
+
{ "resourceKey": "social", "methodName": "deleteIceBreakers", "kebabMethod": "delete-ice-breakers", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete ice breakers", "httpMethod": "DELETE", "path": "/social/accounts/{account_id}/instagram/ice-breakers" },
|
|
274
|
+
{ "resourceKey": "social", "methodName": "facebookPageInsights", "kebabMethod": "facebook-page-insights", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "Facebook page insights", "httpMethod": "GET", "path": "/social/accounts/{account_id}/facebook/page-insights" },
|
|
275
|
+
{ "resourceKey": "social", "methodName": "instagramAudience", "kebabMethod": "instagram-audience", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "Instagram audience demographics", "httpMethod": "GET", "path": "/social/accounts/{account_id}/instagram/audience" },
|
|
276
|
+
{ "resourceKey": "social", "methodName": "connectOptions", "kebabMethod": "connect-options", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Connection target options", "httpMethod": "GET", "path": "/social/accounts/{account_id}/connect-options" },
|
|
277
|
+
{ "resourceKey": "social", "methodName": "connectSelect", "kebabMethod": "connect-select", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Select connection target", "httpMethod": "POST", "path": "/social/accounts/{account_id}/connect-select" },
|
|
266
278
|
{ "resourceKey": "urls", "methodName": "shorten", "kebabMethod": "shorten", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Shorten URL", "httpMethod": "POST", "path": "/urls/shorten" },
|
|
267
279
|
{ "resourceKey": "urls", "methodName": "list", "kebabMethod": "list", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "List short URLs", "httpMethod": "GET", "path": "/urls" },
|
|
268
280
|
{ "resourceKey": "urls", "methodName": "get", "kebabMethod": "get", "pathParams": ["urlId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get short URL", "httpMethod": "GET", "path": "/urls/{url_id}" },
|
|
@@ -461,7 +473,7 @@ function runLogout() {
|
|
|
461
473
|
// package.json
|
|
462
474
|
var package_default = {
|
|
463
475
|
name: "@smartlyqofficial/cli",
|
|
464
|
-
version: "0.1.
|
|
476
|
+
version: "0.1.8",
|
|
465
477
|
description: "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
|
|
466
478
|
keywords: [
|
|
467
479
|
"smartlyq",
|
|
@@ -511,7 +523,7 @@ var package_default = {
|
|
|
511
523
|
prepublishOnly: "npm run build"
|
|
512
524
|
},
|
|
513
525
|
dependencies: {
|
|
514
|
-
"@smartlyqofficial/node": "^0.1.
|
|
526
|
+
"@smartlyqofficial/node": "^0.1.10",
|
|
515
527
|
commander: "^12.1.0"
|
|
516
528
|
},
|
|
517
529
|
devDependencies: {
|
package/dist/index.js
CHANGED
|
@@ -211,6 +211,18 @@ var commands = [
|
|
|
211
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
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
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" },
|
|
214
|
+
{ "resourceKey": "social", "methodName": "sendTypingIndicator", "kebabMethod": "send-typing-indicator", "pathParams": ["conversationId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Typing indicator", "httpMethod": "POST", "path": "/social/conversations/{conversation_id}/typing" },
|
|
215
|
+
{ "resourceKey": "social", "methodName": "commentPrivateReply", "kebabMethod": "comment-private-reply", "pathParams": ["commentId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Private reply (comment-to-DM)", "httpMethod": "POST", "path": "/social/comments/{comment_id}/private-reply" },
|
|
216
|
+
{ "resourceKey": "social", "methodName": "getMessengerMenu", "kebabMethod": "get-messenger-menu", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get Messenger menu", "httpMethod": "GET", "path": "/social/accounts/{account_id}/messenger/menu" },
|
|
217
|
+
{ "resourceKey": "social", "methodName": "setMessengerMenu", "kebabMethod": "set-messenger-menu", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Set Messenger menu", "httpMethod": "PUT", "path": "/social/accounts/{account_id}/messenger/menu" },
|
|
218
|
+
{ "resourceKey": "social", "methodName": "deleteMessengerMenu", "kebabMethod": "delete-messenger-menu", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete Messenger menu", "httpMethod": "DELETE", "path": "/social/accounts/{account_id}/messenger/menu" },
|
|
219
|
+
{ "resourceKey": "social", "methodName": "getIceBreakers", "kebabMethod": "get-ice-breakers", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get ice breakers", "httpMethod": "GET", "path": "/social/accounts/{account_id}/instagram/ice-breakers" },
|
|
220
|
+
{ "resourceKey": "social", "methodName": "setIceBreakers", "kebabMethod": "set-ice-breakers", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Set ice breakers", "httpMethod": "PUT", "path": "/social/accounts/{account_id}/instagram/ice-breakers" },
|
|
221
|
+
{ "resourceKey": "social", "methodName": "deleteIceBreakers", "kebabMethod": "delete-ice-breakers", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Delete ice breakers", "httpMethod": "DELETE", "path": "/social/accounts/{account_id}/instagram/ice-breakers" },
|
|
222
|
+
{ "resourceKey": "social", "methodName": "facebookPageInsights", "kebabMethod": "facebook-page-insights", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "Facebook page insights", "httpMethod": "GET", "path": "/social/accounts/{account_id}/facebook/page-insights" },
|
|
223
|
+
{ "resourceKey": "social", "methodName": "instagramAudience", "kebabMethod": "instagram-audience", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "Instagram audience demographics", "httpMethod": "GET", "path": "/social/accounts/{account_id}/instagram/audience" },
|
|
224
|
+
{ "resourceKey": "social", "methodName": "connectOptions", "kebabMethod": "connect-options", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Connection target options", "httpMethod": "GET", "path": "/social/accounts/{account_id}/connect-options" },
|
|
225
|
+
{ "resourceKey": "social", "methodName": "connectSelect", "kebabMethod": "connect-select", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Select connection target", "httpMethod": "POST", "path": "/social/accounts/{account_id}/connect-select" },
|
|
214
226
|
{ "resourceKey": "urls", "methodName": "shorten", "kebabMethod": "shorten", "pathParams": [], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Shorten URL", "httpMethod": "POST", "path": "/urls/shorten" },
|
|
215
227
|
{ "resourceKey": "urls", "methodName": "list", "kebabMethod": "list", "pathParams": [], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "List short URLs", "httpMethod": "GET", "path": "/urls" },
|
|
216
228
|
{ "resourceKey": "urls", "methodName": "get", "kebabMethod": "get", "pathParams": ["urlId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get short URL", "httpMethod": "GET", "path": "/urls/{url_id}" },
|
|
@@ -409,7 +421,7 @@ function runLogout() {
|
|
|
409
421
|
// package.json
|
|
410
422
|
var package_default = {
|
|
411
423
|
name: "@smartlyqofficial/cli",
|
|
412
|
-
version: "0.1.
|
|
424
|
+
version: "0.1.8",
|
|
413
425
|
description: "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
|
|
414
426
|
keywords: [
|
|
415
427
|
"smartlyq",
|
|
@@ -459,7 +471,7 @@ var package_default = {
|
|
|
459
471
|
prepublishOnly: "npm run build"
|
|
460
472
|
},
|
|
461
473
|
dependencies: {
|
|
462
|
-
"@smartlyqofficial/node": "^0.1.
|
|
474
|
+
"@smartlyqofficial/node": "^0.1.10",
|
|
463
475
|
commander: "^12.1.0"
|
|
464
476
|
},
|
|
465
477
|
devDependencies: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smartlyqofficial/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
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.
|
|
53
|
+
"@smartlyqofficial/node": "^0.1.10",
|
|
54
54
|
"commander": "^12.1.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|