@smartlyqofficial/cli 0.1.38 → 0.1.40
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 +1 -0
- package/dist/cli.js +3 -2
- package/dist/index.cjs +3 -2
- package/dist/index.js +3 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -533,6 +533,7 @@ Full request/response documentation lives at [docs.smartlyq.com](https://docs.sm
|
|
|
533
533
|
| `smartlyq social update-facebook-page-settings <account-id> --data <json>` | `PATCH /social/accounts/{account_id}/facebook/page/settings` | Update Facebook page settings |
|
|
534
534
|
| `smartlyq social set-facebook-page-picture <account-id> --data <json>` | `POST /social/accounts/{account_id}/facebook/page/picture` | Set Facebook page profile picture |
|
|
535
535
|
| `smartlyq social set-facebook-page-cover <account-id> --data <json>` | `POST /social/accounts/{account_id}/facebook/page/cover` | Set Facebook page cover photo |
|
|
536
|
+
| `smartlyq social get-facebook-reel-limit <account-id>` | `GET /social/accounts/{account_id}/facebook/reel-limit` | Get Facebook Reel limit |
|
|
536
537
|
| `smartlyq social update-youtube-playlist <account-id> <playlist-id> --data <json>` | `PATCH /social/accounts/{account_id}/youtube/playlists/{playlist_id}` | Update a YouTube playlist |
|
|
537
538
|
| `smartlyq social list-mentions <account-id> [--query <query>]` | `GET /social/accounts/{account_id}/mentions` | List mentions |
|
|
538
539
|
| `smartlyq social reply-to-mention <account-id> <mention-id> --data <json>` | `POST /social/accounts/{account_id}/mentions/{mention_id}/reply` | Reply to a mention |
|
package/dist/cli.js
CHANGED
|
@@ -317,6 +317,7 @@ var commands = [
|
|
|
317
317
|
{ "resourceKey": "social", "methodName": "updateFacebookPageSettings", "kebabMethod": "update-facebook-page-settings", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update Facebook page settings", "httpMethod": "PATCH", "path": "/social/accounts/{account_id}/facebook/page/settings" },
|
|
318
318
|
{ "resourceKey": "social", "methodName": "setFacebookPagePicture", "kebabMethod": "set-facebook-page-picture", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Set Facebook page profile picture", "httpMethod": "POST", "path": "/social/accounts/{account_id}/facebook/page/picture" },
|
|
319
319
|
{ "resourceKey": "social", "methodName": "setFacebookPageCover", "kebabMethod": "set-facebook-page-cover", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Set Facebook page cover photo", "httpMethod": "POST", "path": "/social/accounts/{account_id}/facebook/page/cover" },
|
|
320
|
+
{ "resourceKey": "social", "methodName": "getFacebookReelLimit", "kebabMethod": "get-facebook-reel-limit", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get Facebook Reel limit", "httpMethod": "GET", "path": "/social/accounts/{account_id}/facebook/reel-limit" },
|
|
320
321
|
{ "resourceKey": "social", "methodName": "updateYoutubePlaylist", "kebabMethod": "update-youtube-playlist", "pathParams": ["accountId", "playlistId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update a YouTube playlist", "httpMethod": "PATCH", "path": "/social/accounts/{account_id}/youtube/playlists/{playlist_id}" },
|
|
321
322
|
{ "resourceKey": "social", "methodName": "listMentions", "kebabMethod": "list-mentions", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "List mentions", "httpMethod": "GET", "path": "/social/accounts/{account_id}/mentions" },
|
|
322
323
|
{ "resourceKey": "social", "methodName": "replyToMention", "kebabMethod": "reply-to-mention", "pathParams": ["accountId", "mentionId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Reply to a mention", "httpMethod": "POST", "path": "/social/accounts/{account_id}/mentions/{mention_id}/reply" },
|
|
@@ -556,7 +557,7 @@ function runLogout() {
|
|
|
556
557
|
// package.json
|
|
557
558
|
var package_default = {
|
|
558
559
|
name: "@smartlyqofficial/cli",
|
|
559
|
-
version: "0.1.
|
|
560
|
+
version: "0.1.40",
|
|
560
561
|
description: "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
|
|
561
562
|
keywords: [
|
|
562
563
|
"smartlyq",
|
|
@@ -606,7 +607,7 @@ var package_default = {
|
|
|
606
607
|
prepublishOnly: "npm run build"
|
|
607
608
|
},
|
|
608
609
|
dependencies: {
|
|
609
|
-
"@smartlyqofficial/node": "^0.1.
|
|
610
|
+
"@smartlyqofficial/node": "^0.1.35",
|
|
610
611
|
commander: "^12.1.0"
|
|
611
612
|
},
|
|
612
613
|
devDependencies: {
|
package/dist/index.cjs
CHANGED
|
@@ -367,6 +367,7 @@ var commands = [
|
|
|
367
367
|
{ "resourceKey": "social", "methodName": "updateFacebookPageSettings", "kebabMethod": "update-facebook-page-settings", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update Facebook page settings", "httpMethod": "PATCH", "path": "/social/accounts/{account_id}/facebook/page/settings" },
|
|
368
368
|
{ "resourceKey": "social", "methodName": "setFacebookPagePicture", "kebabMethod": "set-facebook-page-picture", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Set Facebook page profile picture", "httpMethod": "POST", "path": "/social/accounts/{account_id}/facebook/page/picture" },
|
|
369
369
|
{ "resourceKey": "social", "methodName": "setFacebookPageCover", "kebabMethod": "set-facebook-page-cover", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Set Facebook page cover photo", "httpMethod": "POST", "path": "/social/accounts/{account_id}/facebook/page/cover" },
|
|
370
|
+
{ "resourceKey": "social", "methodName": "getFacebookReelLimit", "kebabMethod": "get-facebook-reel-limit", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get Facebook Reel limit", "httpMethod": "GET", "path": "/social/accounts/{account_id}/facebook/reel-limit" },
|
|
370
371
|
{ "resourceKey": "social", "methodName": "updateYoutubePlaylist", "kebabMethod": "update-youtube-playlist", "pathParams": ["accountId", "playlistId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update a YouTube playlist", "httpMethod": "PATCH", "path": "/social/accounts/{account_id}/youtube/playlists/{playlist_id}" },
|
|
371
372
|
{ "resourceKey": "social", "methodName": "listMentions", "kebabMethod": "list-mentions", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "List mentions", "httpMethod": "GET", "path": "/social/accounts/{account_id}/mentions" },
|
|
372
373
|
{ "resourceKey": "social", "methodName": "replyToMention", "kebabMethod": "reply-to-mention", "pathParams": ["accountId", "mentionId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Reply to a mention", "httpMethod": "POST", "path": "/social/accounts/{account_id}/mentions/{mention_id}/reply" },
|
|
@@ -606,7 +607,7 @@ function runLogout() {
|
|
|
606
607
|
// package.json
|
|
607
608
|
var package_default = {
|
|
608
609
|
name: "@smartlyqofficial/cli",
|
|
609
|
-
version: "0.1.
|
|
610
|
+
version: "0.1.40",
|
|
610
611
|
description: "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
|
|
611
612
|
keywords: [
|
|
612
613
|
"smartlyq",
|
|
@@ -656,7 +657,7 @@ var package_default = {
|
|
|
656
657
|
prepublishOnly: "npm run build"
|
|
657
658
|
},
|
|
658
659
|
dependencies: {
|
|
659
|
-
"@smartlyqofficial/node": "^0.1.
|
|
660
|
+
"@smartlyqofficial/node": "^0.1.35",
|
|
660
661
|
commander: "^12.1.0"
|
|
661
662
|
},
|
|
662
663
|
devDependencies: {
|
package/dist/index.js
CHANGED
|
@@ -315,6 +315,7 @@ var commands = [
|
|
|
315
315
|
{ "resourceKey": "social", "methodName": "updateFacebookPageSettings", "kebabMethod": "update-facebook-page-settings", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update Facebook page settings", "httpMethod": "PATCH", "path": "/social/accounts/{account_id}/facebook/page/settings" },
|
|
316
316
|
{ "resourceKey": "social", "methodName": "setFacebookPagePicture", "kebabMethod": "set-facebook-page-picture", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Set Facebook page profile picture", "httpMethod": "POST", "path": "/social/accounts/{account_id}/facebook/page/picture" },
|
|
317
317
|
{ "resourceKey": "social", "methodName": "setFacebookPageCover", "kebabMethod": "set-facebook-page-cover", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Set Facebook page cover photo", "httpMethod": "POST", "path": "/social/accounts/{account_id}/facebook/page/cover" },
|
|
318
|
+
{ "resourceKey": "social", "methodName": "getFacebookReelLimit", "kebabMethod": "get-facebook-reel-limit", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get Facebook Reel limit", "httpMethod": "GET", "path": "/social/accounts/{account_id}/facebook/reel-limit" },
|
|
318
319
|
{ "resourceKey": "social", "methodName": "updateYoutubePlaylist", "kebabMethod": "update-youtube-playlist", "pathParams": ["accountId", "playlistId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update a YouTube playlist", "httpMethod": "PATCH", "path": "/social/accounts/{account_id}/youtube/playlists/{playlist_id}" },
|
|
319
320
|
{ "resourceKey": "social", "methodName": "listMentions", "kebabMethod": "list-mentions", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": true, "summary": "List mentions", "httpMethod": "GET", "path": "/social/accounts/{account_id}/mentions" },
|
|
320
321
|
{ "resourceKey": "social", "methodName": "replyToMention", "kebabMethod": "reply-to-mention", "pathParams": ["accountId", "mentionId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Reply to a mention", "httpMethod": "POST", "path": "/social/accounts/{account_id}/mentions/{mention_id}/reply" },
|
|
@@ -554,7 +555,7 @@ function runLogout() {
|
|
|
554
555
|
// package.json
|
|
555
556
|
var package_default = {
|
|
556
557
|
name: "@smartlyqofficial/cli",
|
|
557
|
-
version: "0.1.
|
|
558
|
+
version: "0.1.40",
|
|
558
559
|
description: "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
|
|
559
560
|
keywords: [
|
|
560
561
|
"smartlyq",
|
|
@@ -604,7 +605,7 @@ var package_default = {
|
|
|
604
605
|
prepublishOnly: "npm run build"
|
|
605
606
|
},
|
|
606
607
|
dependencies: {
|
|
607
|
-
"@smartlyqofficial/node": "^0.1.
|
|
608
|
+
"@smartlyqofficial/node": "^0.1.35",
|
|
608
609
|
commander: "^12.1.0"
|
|
609
610
|
},
|
|
610
611
|
devDependencies: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smartlyqofficial/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.40",
|
|
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.35",
|
|
54
54
|
"commander": "^12.1.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|