@getlatedev/node 0.2.5 → 0.2.7
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 +59 -0
- package/dist/index.d.mts +642 -1
- package/dist/index.d.ts +642 -1
- package/dist/index.js +298 -0
- package/dist/index.mjs +298 -0
- package/package.json +1 -1
- package/src/client.ts +108 -0
- package/src/generated/sdk.gen.ts +455 -1
- package/src/generated/types.gen.ts +694 -0
package/README.md
CHANGED
|
@@ -339,6 +339,30 @@ try {
|
|
|
339
339
|
| `accountSettings.setMessengerMenu()` | Set FB persistent menu |
|
|
340
340
|
| `accountSettings.setTelegramCommands()` | Set TG bot commands |
|
|
341
341
|
|
|
342
|
+
### Broadcasts
|
|
343
|
+
| Method | Description |
|
|
344
|
+
|--------|-------------|
|
|
345
|
+
| `broadcasts.listBroadcastRecipients()` | List broadcast recipients |
|
|
346
|
+
| `broadcasts.listBroadcasts()` | List broadcasts |
|
|
347
|
+
| `broadcasts.createBroadcast()` | Create a broadcast draft |
|
|
348
|
+
| `broadcasts.getBroadcast()` | Get broadcast details |
|
|
349
|
+
| `broadcasts.updateBroadcast()` | Update a broadcast |
|
|
350
|
+
| `broadcasts.deleteBroadcast()` | Delete a broadcast (draft only) |
|
|
351
|
+
| `broadcasts.addBroadcastRecipients()` | Add recipients to a broadcast |
|
|
352
|
+
| `broadcasts.cancelBroadcast()` | Cancel a broadcast |
|
|
353
|
+
| `broadcasts.scheduleBroadcast()` | Schedule broadcast for later |
|
|
354
|
+
| `broadcasts.sendBroadcast()` | Trigger immediate send |
|
|
355
|
+
|
|
356
|
+
### Comment Automations
|
|
357
|
+
| Method | Description |
|
|
358
|
+
|--------|-------------|
|
|
359
|
+
| `commentAutomations.listCommentAutomationLogs()` | List trigger logs for an automation |
|
|
360
|
+
| `commentAutomations.listCommentAutomations()` | List comment-to-DM automations |
|
|
361
|
+
| `commentAutomations.createCommentAutomation()` | Create a comment-to-DM automation |
|
|
362
|
+
| `commentAutomations.getCommentAutomation()` | Get automation details with recent logs |
|
|
363
|
+
| `commentAutomations.updateCommentAutomation()` | Update automation settings |
|
|
364
|
+
| `commentAutomations.deleteCommentAutomation()` | Delete automation and all logs |
|
|
365
|
+
|
|
342
366
|
### Comments (Inbox)
|
|
343
367
|
| Method | Description |
|
|
344
368
|
|--------|-------------|
|
|
@@ -352,6 +376,27 @@ try {
|
|
|
352
376
|
| `comments.unhideInboxComment()` | Unhide comment |
|
|
353
377
|
| `comments.unlikeInboxComment()` | Unlike comment |
|
|
354
378
|
|
|
379
|
+
### Contacts
|
|
380
|
+
| Method | Description |
|
|
381
|
+
|--------|-------------|
|
|
382
|
+
| `contacts.listContacts()` | List contacts |
|
|
383
|
+
| `contacts.bulkCreateContacts()` | Bulk create contacts |
|
|
384
|
+
| `contacts.createContact()` | Create a contact |
|
|
385
|
+
| `contacts.getContact()` | Get contact with channels |
|
|
386
|
+
| `contacts.getContactChannels()` | List channels for a contact |
|
|
387
|
+
| `contacts.updateContact()` | Update a contact |
|
|
388
|
+
| `contacts.deleteContact()` | Delete a contact |
|
|
389
|
+
|
|
390
|
+
### Custom Fields
|
|
391
|
+
| Method | Description |
|
|
392
|
+
|--------|-------------|
|
|
393
|
+
| `customFields.listCustomFields()` | List custom field definitions |
|
|
394
|
+
| `customFields.createCustomField()` | Create a custom field definition |
|
|
395
|
+
| `customFields.updateCustomField()` | Update a custom field definition |
|
|
396
|
+
| `customFields.deleteCustomField()` | Delete a custom field definition |
|
|
397
|
+
| `customFields.clearContactFieldValue()` | Clear a custom field value |
|
|
398
|
+
| `customFields.setContactFieldValue()` | Set a custom field value |
|
|
399
|
+
|
|
355
400
|
### GMB Attributes
|
|
356
401
|
| Method | Description |
|
|
357
402
|
|--------|-------------|
|
|
@@ -401,6 +446,20 @@ try {
|
|
|
401
446
|
| `reviews.deleteInboxReviewReply()` | Delete review reply |
|
|
402
447
|
| `reviews.replyToInboxReview()` | Reply to review |
|
|
403
448
|
|
|
449
|
+
### Sequences
|
|
450
|
+
| Method | Description |
|
|
451
|
+
|--------|-------------|
|
|
452
|
+
| `sequences.listSequenceEnrollments()` | List enrollments for a sequence |
|
|
453
|
+
| `sequences.listSequences()` | List sequences |
|
|
454
|
+
| `sequences.createSequence()` | Create a sequence |
|
|
455
|
+
| `sequences.getSequence()` | Get sequence with steps |
|
|
456
|
+
| `sequences.updateSequence()` | Update a sequence |
|
|
457
|
+
| `sequences.deleteSequence()` | Delete a sequence |
|
|
458
|
+
| `sequences.activateSequence()` | Activate a sequence |
|
|
459
|
+
| `sequences.enrollContacts()` | Enroll contacts in a sequence |
|
|
460
|
+
| `sequences.pauseSequence()` | Pause a sequence |
|
|
461
|
+
| `sequences.unenrollContact()` | Unenroll a contact from a sequence |
|
|
462
|
+
|
|
404
463
|
### Twitter Engagement
|
|
405
464
|
| Method | Description |
|
|
406
465
|
|--------|-------------|
|