@getlatedev/node 0.2.326 → 0.2.327
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 +14 -0
- package/dist/index.d.mts +501 -7
- package/dist/index.d.ts +501 -7
- package/dist/index.js +101 -3
- package/dist/index.mjs +101 -3
- package/package.json +1 -1
- package/src/client.ts +28 -0
- package/src/generated/sdk.gen.ts +279 -5
- package/src/generated/types.gen.ts +529 -6
package/README.md
CHANGED
|
@@ -214,6 +214,7 @@ try {
|
|
|
214
214
|
| `analytics.getContentDecay()` | Get content performance decay |
|
|
215
215
|
| `analytics.getDailyMetrics()` | Get daily aggregated metrics |
|
|
216
216
|
| `analytics.getFacebookPageInsights()` | Get Facebook Page insights |
|
|
217
|
+
| `analytics.getFacebookPostReactions()` | Get Facebook post reactions |
|
|
217
218
|
| `analytics.getGoogleBusinessPerformance()` | Get GBP performance metrics |
|
|
218
219
|
| `analytics.getGoogleBusinessSearchKeywords()` | Get GBP search keywords |
|
|
219
220
|
| `analytics.getInstagramAccountInsights()` | Get Instagram insights |
|
|
@@ -309,6 +310,7 @@ try {
|
|
|
309
310
|
| `connect.getPinterestBoards()` | List Pinterest boards |
|
|
310
311
|
| `connect.getRedditFlairs()` | List subreddit flairs |
|
|
311
312
|
| `connect.getRedditSubreddits()` | List Reddit subreddits |
|
|
313
|
+
| `connect.getSubredditRules()` | Get subreddit rules |
|
|
312
314
|
| `connect.getTelegramConnectStatus()` | Generate Telegram code |
|
|
313
315
|
| `connect.getYoutubePlaylists()` | List YouTube playlists |
|
|
314
316
|
| `connect.updateFacebookPage()` | Update Facebook page |
|
|
@@ -330,6 +332,8 @@ try {
|
|
|
330
332
|
| `connect.selectLinkedInOrganization()` | Select LinkedIn org |
|
|
331
333
|
| `connect.selectPinterestBoard()` | Select Pinterest board |
|
|
332
334
|
| `connect.selectSnapchatProfile()` | Select Snapchat profile |
|
|
335
|
+
| `connect.setRedditPostFlair()` | Set flair on a published Reddit post |
|
|
336
|
+
| `connect.voteRedditThing()` | Vote on a Reddit post or comment |
|
|
333
337
|
|
|
334
338
|
### Reddit
|
|
335
339
|
| Method | Description |
|
|
@@ -453,10 +457,12 @@ try {
|
|
|
453
457
|
| `comments.listInboxComments()` | List commented posts |
|
|
454
458
|
| `comments.getInboxPostComments()` | Get post comments |
|
|
455
459
|
| `comments.deleteInboxComment()` | Delete comment |
|
|
460
|
+
| `comments.editInboxComment()` | Edit comment |
|
|
456
461
|
| `comments.hideInboxComment()` | Hide comment |
|
|
457
462
|
| `comments.likeInboxComment()` | Like comment |
|
|
458
463
|
| `comments.replyToInboxPost()` | Reply to comment |
|
|
459
464
|
| `comments.sendPrivateReplyToComment()` | Send private reply |
|
|
465
|
+
| `comments.setCommentModeration()` | Set comment moderation status |
|
|
460
466
|
| `comments.unhideInboxComment()` | Unhide comment |
|
|
461
467
|
| `comments.unlikeInboxComment()` | Unlike comment |
|
|
462
468
|
|
|
@@ -488,14 +494,20 @@ try {
|
|
|
488
494
|
| `discord.listDiscordGuildRoles()` | List Discord guild roles |
|
|
489
495
|
| `discord.listDiscordPinnedMessages()` | List pinned messages |
|
|
490
496
|
| `discord.listDiscordScheduledEvents()` | List Discord scheduled events |
|
|
497
|
+
| `discord.createDiscordGuildRole()` | Create a Discord guild role |
|
|
491
498
|
| `discord.createDiscordScheduledEvent()` | Create a Discord scheduled event |
|
|
499
|
+
| `discord.createDiscordThread()` | Create a Discord public thread |
|
|
492
500
|
| `discord.getDiscordChannels()` | List Discord guild channels |
|
|
493
501
|
| `discord.getDiscordScheduledEvent()` | Get a Discord scheduled event |
|
|
494
502
|
| `discord.getDiscordSettings()` | Get Discord account settings |
|
|
495
503
|
| `discord.updateDiscordScheduledEvent()` | Update a Discord scheduled event |
|
|
496
504
|
| `discord.updateDiscordSettings()` | Update Discord settings |
|
|
505
|
+
| `discord.deleteDiscordGuildRole()` | Delete a Discord guild role |
|
|
506
|
+
| `discord.deleteDiscordMessage()` | Delete a Discord channel message |
|
|
497
507
|
| `discord.deleteDiscordScheduledEvent()` | Delete a Discord scheduled event |
|
|
498
508
|
| `discord.addDiscordMemberRole()` | Assign a role to a guild member |
|
|
509
|
+
| `discord.crosspostDiscordMessage()` | Crosspost a Discord announcement message |
|
|
510
|
+
| `discord.editDiscordGuildRole()` | Edit a Discord guild role |
|
|
499
511
|
| `discord.pinDiscordMessage()` | Pin a Discord message |
|
|
500
512
|
| `discord.removeDiscordMemberRole()` | Remove a role from a guild member |
|
|
501
513
|
| `discord.sendDiscordDirectMessage()` | Send a Discord Direct Message |
|
|
@@ -564,12 +576,14 @@ try {
|
|
|
564
576
|
| Method | Description |
|
|
565
577
|
|--------|-------------|
|
|
566
578
|
| `instagram.listInstagramStories()` | List active Instagram stories |
|
|
579
|
+
| `instagram.getInstagramPublishingLimit()` | Get Instagram publishing limit |
|
|
567
580
|
| `instagram.getInstagramStoryInsights()` | Get Instagram story insights |
|
|
568
581
|
|
|
569
582
|
### Mentions
|
|
570
583
|
| Method | Description |
|
|
571
584
|
|--------|-------------|
|
|
572
585
|
| `mentions.listInboxMentions()` | List mentions |
|
|
586
|
+
| `mentions.replyToMention()` | Reply to a mention |
|
|
573
587
|
|
|
574
588
|
### Messages (Inbox)
|
|
575
589
|
| Method | Description |
|