@getlatedev/node 0.2.16 → 0.2.17
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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/generated/types.gen.ts +4 -0
package/dist/index.d.mts
CHANGED
|
@@ -1884,6 +1884,10 @@ type parseMode = 'HTML' | 'Markdown' | 'MarkdownV2';
|
|
|
1884
1884
|
* Up to 10 images per carousel (no videos). Videos must be H.264/AAC MP4, max 5 min. Images JPEG/PNG, max 8 MB. Use threadItems for reply chains.
|
|
1885
1885
|
*/
|
|
1886
1886
|
type ThreadsPlatformData = {
|
|
1887
|
+
/**
|
|
1888
|
+
* Topic tag for post categorization and discoverability on Threads. Must be 1-50 characters, cannot contain periods (.) or ampersands (&). Overrides auto-extraction from content hashtags when provided.
|
|
1889
|
+
*/
|
|
1890
|
+
topic_tag?: string;
|
|
1887
1891
|
/**
|
|
1888
1892
|
* Sequence of posts in a Threads thread (root then replies in order).
|
|
1889
1893
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1884,6 +1884,10 @@ type parseMode = 'HTML' | 'Markdown' | 'MarkdownV2';
|
|
|
1884
1884
|
* Up to 10 images per carousel (no videos). Videos must be H.264/AAC MP4, max 5 min. Images JPEG/PNG, max 8 MB. Use threadItems for reply chains.
|
|
1885
1885
|
*/
|
|
1886
1886
|
type ThreadsPlatformData = {
|
|
1887
|
+
/**
|
|
1888
|
+
* Topic tag for post categorization and discoverability on Threads. Must be 1-50 characters, cannot contain periods (.) or ampersands (&). Overrides auto-extraction from content hashtags when provided.
|
|
1889
|
+
*/
|
|
1890
|
+
topic_tag?: string;
|
|
1887
1891
|
/**
|
|
1888
1892
|
* Sequence of posts in a Threads thread (root then replies in order).
|
|
1889
1893
|
*/
|
package/package.json
CHANGED
|
@@ -1442,6 +1442,10 @@ export type parseMode = 'HTML' | 'Markdown' | 'MarkdownV2';
|
|
|
1442
1442
|
* Up to 10 images per carousel (no videos). Videos must be H.264/AAC MP4, max 5 min. Images JPEG/PNG, max 8 MB. Use threadItems for reply chains.
|
|
1443
1443
|
*/
|
|
1444
1444
|
export type ThreadsPlatformData = {
|
|
1445
|
+
/**
|
|
1446
|
+
* Topic tag for post categorization and discoverability on Threads. Must be 1-50 characters, cannot contain periods (.) or ampersands (&). Overrides auto-extraction from content hashtags when provided.
|
|
1447
|
+
*/
|
|
1448
|
+
topic_tag?: string;
|
|
1445
1449
|
/**
|
|
1446
1450
|
* Sequence of posts in a Threads thread (root then replies in order).
|
|
1447
1451
|
*/
|