@getlatedev/node 0.1.42 → 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/dist/index.d.mts +8 -4
- package/dist/index.d.ts +8 -4
- package/package.json +1 -1
- package/src/generated/types.gen.ts +8 -4
package/dist/index.d.mts
CHANGED
|
@@ -1650,9 +1650,13 @@ type TranscriptSegment = {
|
|
|
1650
1650
|
};
|
|
1651
1651
|
type TwitterPlatformData = {
|
|
1652
1652
|
/**
|
|
1653
|
-
*
|
|
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
|
-
|
|
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
|
-
*
|
|
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
|
-
|
|
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
|
@@ -1333,9 +1333,13 @@ export type TranscriptSegment = {
|
|
|
1333
1333
|
|
|
1334
1334
|
export type TwitterPlatformData = {
|
|
1335
1335
|
/**
|
|
1336
|
-
*
|
|
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
|
-
|
|
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';
|