@smartlyqofficial/cli 0.1.37 → 0.1.39

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
@@ -529,6 +529,11 @@ Full request/response documentation lives at [docs.smartlyq.com](https://docs.sm
529
529
  | `smartlyq social connect-select <account-id> --data <json>` | `POST /social/accounts/{account_id}/connect-select` | Select connection target |
530
530
  | `smartlyq social get-facebook-page <account-id>` | `GET /social/accounts/{account_id}/facebook/page` | Get Facebook page details |
531
531
  | `smartlyq social update-facebook-page <account-id> --data <json>` | `PATCH /social/accounts/{account_id}/facebook/page` | Update Facebook page details |
532
+ | `smartlyq social get-facebook-page-settings <account-id>` | `GET /social/accounts/{account_id}/facebook/page/settings` | Get Facebook page settings |
533
+ | `smartlyq social update-facebook-page-settings <account-id> --data <json>` | `PATCH /social/accounts/{account_id}/facebook/page/settings` | Update Facebook page settings |
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
+ | `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 |
532
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 |
533
538
  | `smartlyq social list-mentions <account-id> [--query <query>]` | `GET /social/accounts/{account_id}/mentions` | List mentions |
534
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
@@ -313,6 +313,11 @@ var commands = [
313
313
  { "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" },
314
314
  { "resourceKey": "social", "methodName": "getFacebookPage", "kebabMethod": "get-facebook-page", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get Facebook page details", "httpMethod": "GET", "path": "/social/accounts/{account_id}/facebook/page" },
315
315
  { "resourceKey": "social", "methodName": "updateFacebookPage", "kebabMethod": "update-facebook-page", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update Facebook page details", "httpMethod": "PATCH", "path": "/social/accounts/{account_id}/facebook/page" },
316
+ { "resourceKey": "social", "methodName": "getFacebookPageSettings", "kebabMethod": "get-facebook-page-settings", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get Facebook page settings", "httpMethod": "GET", "path": "/social/accounts/{account_id}/facebook/page/settings" },
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
+ { "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
+ { "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" },
316
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}" },
317
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" },
318
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" },
@@ -552,7 +557,7 @@ function runLogout() {
552
557
  // package.json
553
558
  var package_default = {
554
559
  name: "@smartlyqofficial/cli",
555
- version: "0.1.37",
560
+ version: "0.1.39",
556
561
  description: "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
557
562
  keywords: [
558
563
  "smartlyq",
@@ -602,7 +607,7 @@ var package_default = {
602
607
  prepublishOnly: "npm run build"
603
608
  },
604
609
  dependencies: {
605
- "@smartlyqofficial/node": "^0.1.32",
610
+ "@smartlyqofficial/node": "^0.1.34",
606
611
  commander: "^12.1.0"
607
612
  },
608
613
  devDependencies: {
package/dist/index.cjs CHANGED
@@ -363,6 +363,11 @@ var commands = [
363
363
  { "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" },
364
364
  { "resourceKey": "social", "methodName": "getFacebookPage", "kebabMethod": "get-facebook-page", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get Facebook page details", "httpMethod": "GET", "path": "/social/accounts/{account_id}/facebook/page" },
365
365
  { "resourceKey": "social", "methodName": "updateFacebookPage", "kebabMethod": "update-facebook-page", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update Facebook page details", "httpMethod": "PATCH", "path": "/social/accounts/{account_id}/facebook/page" },
366
+ { "resourceKey": "social", "methodName": "getFacebookPageSettings", "kebabMethod": "get-facebook-page-settings", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get Facebook page settings", "httpMethod": "GET", "path": "/social/accounts/{account_id}/facebook/page/settings" },
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
+ { "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
+ { "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" },
366
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}" },
367
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" },
368
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" },
@@ -602,7 +607,7 @@ function runLogout() {
602
607
  // package.json
603
608
  var package_default = {
604
609
  name: "@smartlyqofficial/cli",
605
- version: "0.1.37",
610
+ version: "0.1.39",
606
611
  description: "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
607
612
  keywords: [
608
613
  "smartlyq",
@@ -652,7 +657,7 @@ var package_default = {
652
657
  prepublishOnly: "npm run build"
653
658
  },
654
659
  dependencies: {
655
- "@smartlyqofficial/node": "^0.1.32",
660
+ "@smartlyqofficial/node": "^0.1.34",
656
661
  commander: "^12.1.0"
657
662
  },
658
663
  devDependencies: {
package/dist/index.js CHANGED
@@ -311,6 +311,11 @@ var commands = [
311
311
  { "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" },
312
312
  { "resourceKey": "social", "methodName": "getFacebookPage", "kebabMethod": "get-facebook-page", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get Facebook page details", "httpMethod": "GET", "path": "/social/accounts/{account_id}/facebook/page" },
313
313
  { "resourceKey": "social", "methodName": "updateFacebookPage", "kebabMethod": "update-facebook-page", "pathParams": ["accountId"], "hasBody": true, "bodyRequired": true, "hasQuery": false, "summary": "Update Facebook page details", "httpMethod": "PATCH", "path": "/social/accounts/{account_id}/facebook/page" },
314
+ { "resourceKey": "social", "methodName": "getFacebookPageSettings", "kebabMethod": "get-facebook-page-settings", "pathParams": ["accountId"], "hasBody": false, "bodyRequired": false, "hasQuery": false, "summary": "Get Facebook page settings", "httpMethod": "GET", "path": "/social/accounts/{account_id}/facebook/page/settings" },
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
+ { "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
+ { "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" },
314
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}" },
315
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" },
316
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" },
@@ -550,7 +555,7 @@ function runLogout() {
550
555
  // package.json
551
556
  var package_default = {
552
557
  name: "@smartlyqofficial/cli",
553
- version: "0.1.37",
558
+ version: "0.1.39",
554
559
  description: "Official command line for the SmartlyQ API - social posting, AI content generation, SEO, CRM, and more.",
555
560
  keywords: [
556
561
  "smartlyq",
@@ -600,7 +605,7 @@ var package_default = {
600
605
  prepublishOnly: "npm run build"
601
606
  },
602
607
  dependencies: {
603
- "@smartlyqofficial/node": "^0.1.32",
608
+ "@smartlyqofficial/node": "^0.1.34",
604
609
  commander: "^12.1.0"
605
610
  },
606
611
  devDependencies: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartlyqofficial/cli",
3
- "version": "0.1.37",
3
+ "version": "0.1.39",
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.32",
53
+ "@smartlyqofficial/node": "^0.1.34",
54
54
  "commander": "^12.1.0"
55
55
  },
56
56
  "devDependencies": {