@zernio/node 0.2.44 → 0.2.45

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 CHANGED
@@ -996,7 +996,8 @@ type permission = 'read-write' | 'read';
996
996
  */
997
997
  type BlueskyPlatformData = {
998
998
  /**
999
- * Sequence of posts in a Bluesky thread (root then replies in order).
999
+ * Complete sequence of posts in a Bluesky thread. The first item becomes the root post, subsequent items are chained as replies. When threadItems is provided, the top-level content field is used only for display and search purposes, it is NOT published. You must include your first post as threadItems[0].
1000
+ *
1000
1001
  */
1001
1002
  threadItems?: Array<{
1002
1003
  content?: string;
@@ -2165,7 +2166,8 @@ type ThreadsPlatformData = {
2165
2166
  */
2166
2167
  topic_tag?: string;
2167
2168
  /**
2168
- * Sequence of posts in a Threads thread (root then replies in order).
2169
+ * Complete sequence of posts in a Threads thread. The first item becomes the root post, subsequent items are chained as replies. When threadItems is provided, the top-level content field is used only for display and search purposes, it is NOT published. You must include your first post as threadItems[0].
2170
+ *
2169
2171
  */
2170
2172
  threadItems?: Array<{
2171
2173
  content?: string;
@@ -2263,7 +2265,8 @@ type TwitterPlatformData = {
2263
2265
  */
2264
2266
  replySettings?: 'following' | 'mentionedUsers' | 'subscribers' | 'verified';
2265
2267
  /**
2266
- * Sequence of tweets in a thread. First item is the root tweet.
2268
+ * Complete sequence of tweets in a thread. The first item becomes the root tweet, subsequent items are chained as replies. When threadItems is provided, the top-level content field is used only for display and search purposes, it is NOT published. You must include your first tweet as threadItems[0].
2269
+ *
2267
2270
  */
2268
2271
  threadItems?: Array<{
2269
2272
  content?: string;
package/dist/index.d.ts CHANGED
@@ -996,7 +996,8 @@ type permission = 'read-write' | 'read';
996
996
  */
997
997
  type BlueskyPlatformData = {
998
998
  /**
999
- * Sequence of posts in a Bluesky thread (root then replies in order).
999
+ * Complete sequence of posts in a Bluesky thread. The first item becomes the root post, subsequent items are chained as replies. When threadItems is provided, the top-level content field is used only for display and search purposes, it is NOT published. You must include your first post as threadItems[0].
1000
+ *
1000
1001
  */
1001
1002
  threadItems?: Array<{
1002
1003
  content?: string;
@@ -2165,7 +2166,8 @@ type ThreadsPlatformData = {
2165
2166
  */
2166
2167
  topic_tag?: string;
2167
2168
  /**
2168
- * Sequence of posts in a Threads thread (root then replies in order).
2169
+ * Complete sequence of posts in a Threads thread. The first item becomes the root post, subsequent items are chained as replies. When threadItems is provided, the top-level content field is used only for display and search purposes, it is NOT published. You must include your first post as threadItems[0].
2170
+ *
2169
2171
  */
2170
2172
  threadItems?: Array<{
2171
2173
  content?: string;
@@ -2263,7 +2265,8 @@ type TwitterPlatformData = {
2263
2265
  */
2264
2266
  replySettings?: 'following' | 'mentionedUsers' | 'subscribers' | 'verified';
2265
2267
  /**
2266
- * Sequence of tweets in a thread. First item is the root tweet.
2268
+ * Complete sequence of tweets in a thread. The first item becomes the root tweet, subsequent items are chained as replies. When threadItems is provided, the top-level content field is used only for display and search purposes, it is NOT published. You must include your first tweet as threadItems[0].
2269
+ *
2267
2270
  */
2268
2271
  threadItems?: Array<{
2269
2272
  content?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zernio/node",
3
- "version": "0.2.44",
3
+ "version": "0.2.45",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -421,7 +421,8 @@ export type permission = 'read-write' | 'read';
421
421
  */
422
422
  export type BlueskyPlatformData = {
423
423
  /**
424
- * Sequence of posts in a Bluesky thread (root then replies in order).
424
+ * Complete sequence of posts in a Bluesky thread. The first item becomes the root post, subsequent items are chained as replies. When threadItems is provided, the top-level content field is used only for display and search purposes, it is NOT published. You must include your first post as threadItems[0].
425
+ *
425
426
  */
426
427
  threadItems?: Array<{
427
428
  content?: string;
@@ -1670,7 +1671,8 @@ export type ThreadsPlatformData = {
1670
1671
  */
1671
1672
  topic_tag?: string;
1672
1673
  /**
1673
- * Sequence of posts in a Threads thread (root then replies in order).
1674
+ * Complete sequence of posts in a Threads thread. The first item becomes the root post, subsequent items are chained as replies. When threadItems is provided, the top-level content field is used only for display and search purposes, it is NOT published. You must include your first post as threadItems[0].
1675
+ *
1674
1676
  */
1675
1677
  threadItems?: Array<{
1676
1678
  content?: string;
@@ -1772,7 +1774,8 @@ export type TwitterPlatformData = {
1772
1774
  */
1773
1775
  replySettings?: 'following' | 'mentionedUsers' | 'subscribers' | 'verified';
1774
1776
  /**
1775
- * Sequence of tweets in a thread. First item is the root tweet.
1777
+ * Complete sequence of tweets in a thread. The first item becomes the root tweet, subsequent items are chained as replies. When threadItems is provided, the top-level content field is used only for display and search purposes, it is NOT published. You must include your first tweet as threadItems[0].
1778
+ *
1776
1779
  */
1777
1780
  threadItems?: Array<{
1778
1781
  content?: string;