@getlatedev/node 0.1.41 → 0.1.43

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
@@ -208,7 +208,7 @@ try {
208
208
  | `analytics.getDailyMetrics()` | Get daily aggregated metrics |
209
209
  | `analytics.getLinkedInAggregateAnalytics()` | Get LinkedIn aggregate stats |
210
210
  | `analytics.getLinkedInPostAnalytics()` | Get LinkedIn post stats |
211
- | `analytics.getLinkedInPostReactions()` | Get LinkedIn post reactions (who reacted) |
211
+ | `analytics.getLinkedInPostReactions()` | Get LinkedIn post reactions |
212
212
  | `analytics.getPostingFrequency()` | Get posting frequency vs engagement |
213
213
  | `analytics.getPostTimeline()` | Get post analytics timeline |
214
214
  | `analytics.getYouTubeDailyViews()` | Get YouTube daily views |
package/dist/index.d.mts CHANGED
@@ -1650,9 +1650,13 @@ type TranscriptSegment = {
1650
1650
  };
1651
1651
  type TwitterPlatformData = {
1652
1652
  /**
1653
- * Controls who can reply to the tweet. "following" allows only people you follow, "mentionedUsers" allows only mentioned users, "subscribers" allows only subscribers. Omit for default (everyone can reply). For threads, applies to the first tweet only.
1653
+ * ID of an existing tweet to reply to. The published tweet will appear as a reply in that tweet's thread. For threads, only the first tweet replies to the target; subsequent tweets chain normally.
1654
1654
  */
1655
- replySettings?: 'following' | 'mentionedUsers' | 'subscribers';
1655
+ replyToTweetId?: string;
1656
+ /**
1657
+ * Controls who can reply to the tweet. "following" allows only people you follow, "mentionedUsers" allows only mentioned users, "subscribers" allows only subscribers, "verified" allows only verified users. Omit for default (everyone can reply). For threads, applies to the first tweet only. Cannot be combined with replyToTweetId.
1658
+ */
1659
+ replySettings?: 'following' | 'mentionedUsers' | 'subscribers' | 'verified';
1656
1660
  /**
1657
1661
  * Sequence of tweets in a thread. First item is the root tweet.
1658
1662
  */
@@ -1662,9 +1666,9 @@ type TwitterPlatformData = {
1662
1666
  }>;
1663
1667
  };
1664
1668
  /**
1665
- * Controls who can reply to the tweet. "following" allows only people you follow, "mentionedUsers" allows only mentioned users, "subscribers" allows only subscribers. Omit for default (everyone can reply). For threads, applies to the first tweet only.
1669
+ * Controls who can reply to the tweet. "following" allows only people you follow, "mentionedUsers" allows only mentioned users, "subscribers" allows only subscribers, "verified" allows only verified users. Omit for default (everyone can reply). For threads, applies to the first tweet only. Cannot be combined with replyToTweetId.
1666
1670
  */
1667
- type replySettings = 'following' | 'mentionedUsers' | 'subscribers';
1671
+ type replySettings = 'following' | 'mentionedUsers' | 'subscribers' | 'verified';
1668
1672
  type UploadedFile = {
1669
1673
  type?: 'image' | 'video' | 'document';
1670
1674
  url?: string;
package/dist/index.d.ts CHANGED
@@ -1650,9 +1650,13 @@ type TranscriptSegment = {
1650
1650
  };
1651
1651
  type TwitterPlatformData = {
1652
1652
  /**
1653
- * Controls who can reply to the tweet. "following" allows only people you follow, "mentionedUsers" allows only mentioned users, "subscribers" allows only subscribers. Omit for default (everyone can reply). For threads, applies to the first tweet only.
1653
+ * ID of an existing tweet to reply to. The published tweet will appear as a reply in that tweet's thread. For threads, only the first tweet replies to the target; subsequent tweets chain normally.
1654
1654
  */
1655
- replySettings?: 'following' | 'mentionedUsers' | 'subscribers';
1655
+ replyToTweetId?: string;
1656
+ /**
1657
+ * Controls who can reply to the tweet. "following" allows only people you follow, "mentionedUsers" allows only mentioned users, "subscribers" allows only subscribers, "verified" allows only verified users. Omit for default (everyone can reply). For threads, applies to the first tweet only. Cannot be combined with replyToTweetId.
1658
+ */
1659
+ replySettings?: 'following' | 'mentionedUsers' | 'subscribers' | 'verified';
1656
1660
  /**
1657
1661
  * Sequence of tweets in a thread. First item is the root tweet.
1658
1662
  */
@@ -1662,9 +1666,9 @@ type TwitterPlatformData = {
1662
1666
  }>;
1663
1667
  };
1664
1668
  /**
1665
- * Controls who can reply to the tweet. "following" allows only people you follow, "mentionedUsers" allows only mentioned users, "subscribers" allows only subscribers. Omit for default (everyone can reply). For threads, applies to the first tweet only.
1669
+ * Controls who can reply to the tweet. "following" allows only people you follow, "mentionedUsers" allows only mentioned users, "subscribers" allows only subscribers, "verified" allows only verified users. Omit for default (everyone can reply). For threads, applies to the first tweet only. Cannot be combined with replyToTweetId.
1666
1670
  */
1667
- type replySettings = 'following' | 'mentionedUsers' | 'subscribers';
1671
+ type replySettings = 'following' | 'mentionedUsers' | 'subscribers' | 'verified';
1668
1672
  type UploadedFile = {
1669
1673
  type?: 'image' | 'video' | 'document';
1670
1674
  url?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getlatedev/node",
3
- "version": "0.1.41",
3
+ "version": "0.1.43",
4
4
  "description": "The official Node.js library for the Late API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -1077,7 +1077,7 @@ export const getLinkedInPostAnalytics = <ThrowOnError extends boolean = false>(o
1077
1077
  };
1078
1078
 
1079
1079
  /**
1080
- * Get LinkedIn post reactions (who reacted)
1080
+ * Get LinkedIn post reactions
1081
1081
  * Returns individual reactions for a specific LinkedIn post, including reactor profiles
1082
1082
  * (name, headline/job title, profile picture, profile URL, reaction type).
1083
1083
  * Only works for **organization/company page** accounts. LinkedIn restricts reaction
@@ -1333,9 +1333,13 @@ export type TranscriptSegment = {
1333
1333
 
1334
1334
  export type TwitterPlatformData = {
1335
1335
  /**
1336
- * Controls who can reply to the tweet. "following" allows only people you follow, "mentionedUsers" allows only mentioned users, "subscribers" allows only subscribers. Omit for default (everyone can reply). For threads, applies to the first tweet only.
1336
+ * ID of an existing tweet to reply to. The published tweet will appear as a reply in that tweet's thread. For threads, only the first tweet replies to the target; subsequent tweets chain normally.
1337
1337
  */
1338
- replySettings?: 'following' | 'mentionedUsers' | 'subscribers';
1338
+ replyToTweetId?: string;
1339
+ /**
1340
+ * Controls who can reply to the tweet. "following" allows only people you follow, "mentionedUsers" allows only mentioned users, "subscribers" allows only subscribers, "verified" allows only verified users. Omit for default (everyone can reply). For threads, applies to the first tweet only. Cannot be combined with replyToTweetId.
1341
+ */
1342
+ replySettings?: 'following' | 'mentionedUsers' | 'subscribers' | 'verified';
1339
1343
  /**
1340
1344
  * Sequence of tweets in a thread. First item is the root tweet.
1341
1345
  */
@@ -1346,9 +1350,9 @@ export type TwitterPlatformData = {
1346
1350
  };
1347
1351
 
1348
1352
  /**
1349
- * Controls who can reply to the tweet. "following" allows only people you follow, "mentionedUsers" allows only mentioned users, "subscribers" allows only subscribers. Omit for default (everyone can reply). For threads, applies to the first tweet only.
1353
+ * Controls who can reply to the tweet. "following" allows only people you follow, "mentionedUsers" allows only mentioned users, "subscribers" allows only subscribers, "verified" allows only verified users. Omit for default (everyone can reply). For threads, applies to the first tweet only. Cannot be combined with replyToTweetId.
1350
1354
  */
1351
- export type replySettings = 'following' | 'mentionedUsers' | 'subscribers';
1355
+ export type replySettings = 'following' | 'mentionedUsers' | 'subscribers' | 'verified';
1352
1356
 
1353
1357
  export type UploadedFile = {
1354
1358
  type?: 'image' | 'video' | 'document';