@getlatedev/node 0.1.9 → 0.1.10
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 +29 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -314,6 +314,35 @@ try {
|
|
|
314
314
|
| `reddit.getRedditFeed()` | Fetch subreddit feed via a connected account |
|
|
315
315
|
| `reddit.searchReddit()` | Search Reddit posts via a connected account |
|
|
316
316
|
|
|
317
|
+
### Comments (Inbox)
|
|
318
|
+
| Method | Description |
|
|
319
|
+
|--------|-------------|
|
|
320
|
+
| `comments.listInboxComments()` | List posts with comments across all accounts |
|
|
321
|
+
| `comments.getInboxPostComments()` | Get comments for a post |
|
|
322
|
+
| `comments.deleteInboxComment()` | Delete a comment |
|
|
323
|
+
| `comments.hideInboxComment()` | Hide a comment |
|
|
324
|
+
| `comments.likeInboxComment()` | Like a comment |
|
|
325
|
+
| `comments.replyToInboxPost()` | Reply to a post or comment |
|
|
326
|
+
| `comments.sendPrivateReplyToComment()` | Send private reply to comment author |
|
|
327
|
+
| `comments.unhideInboxComment()` | Unhide a comment |
|
|
328
|
+
| `comments.unlikeInboxComment()` | Unlike a comment |
|
|
329
|
+
|
|
330
|
+
### Messages (Inbox)
|
|
331
|
+
| Method | Description |
|
|
332
|
+
|--------|-------------|
|
|
333
|
+
| `messages.listInboxConversations()` | List conversations across all accounts |
|
|
334
|
+
| `messages.getInboxConversation()` | Get conversation details |
|
|
335
|
+
| `messages.getInboxConversationMessages()` | Get messages in a conversation |
|
|
336
|
+
| `messages.updateInboxConversation()` | Update conversation status |
|
|
337
|
+
| `messages.sendInboxMessage()` | Send a message |
|
|
338
|
+
|
|
339
|
+
### Reviews (Inbox)
|
|
340
|
+
| Method | Description |
|
|
341
|
+
|--------|-------------|
|
|
342
|
+
| `reviews.listInboxReviews()` | List reviews across all accounts |
|
|
343
|
+
| `reviews.deleteInboxReviewReply()` | Delete a review reply |
|
|
344
|
+
| `reviews.replyToInboxReview()` | Reply to a review |
|
|
345
|
+
|
|
317
346
|
### Invites
|
|
318
347
|
| Method | Description |
|
|
319
348
|
|--------|-------------|
|