@getlatedev/node 0.1.54 → 0.1.55

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
@@ -12,10 +12,10 @@
12
12
  </p>
13
13
 
14
14
  <p align="center">
15
- <strong>One API to post everywhere. 13 platforms, zero headaches.</strong>
15
+ <strong>One API to post everywhere. 14 platforms, zero headaches.</strong>
16
16
  </p>
17
17
 
18
- The official Node.js SDK for the [Late API](https://getlate.dev) — schedule and publish social media posts across Instagram, TikTok, YouTube, LinkedIn, X/Twitter, Facebook, Pinterest, Threads, Bluesky, Reddit, Snapchat, Telegram, and Google Business Profile with a single integration.
18
+ The official Node.js SDK for the [Late API](https://getlate.dev) — schedule and publish social media posts across Instagram, TikTok, YouTube, LinkedIn, X/Twitter, Facebook, Pinterest, Threads, Bluesky, Reddit, Snapchat, Telegram, WhatsApp, and Google Business Profile with a single integration.
19
19
 
20
20
  ## Installation
21
21
 
package/dist/index.d.mts CHANGED
@@ -3157,6 +3157,9 @@ type CreatePostData = {
3157
3157
  }>;
3158
3158
  scheduledFor?: string;
3159
3159
  publishNow?: boolean;
3160
+ /**
3161
+ * When true, saves the post as a draft. When none of scheduledFor, publishNow, or queuedFromProfile are provided, the post defaults to draft automatically.
3162
+ */
3160
3163
  isDraft?: boolean;
3161
3164
  timezone?: string;
3162
3165
  /**
package/dist/index.d.ts CHANGED
@@ -3157,6 +3157,9 @@ type CreatePostData = {
3157
3157
  }>;
3158
3158
  scheduledFor?: string;
3159
3159
  publishNow?: boolean;
3160
+ /**
3161
+ * When true, saves the post as a draft. When none of scheduledFor, publishNow, or queuedFromProfile are provided, the post defaults to draft automatically.
3162
+ */
3160
3163
  isDraft?: boolean;
3161
3164
  timezone?: string;
3162
3165
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getlatedev/node",
3
- "version": "0.1.54",
3
+ "version": "0.1.55",
4
4
  "description": "The official Node.js library for the Late API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -2902,6 +2902,9 @@ export type CreatePostData = {
2902
2902
  }>;
2903
2903
  scheduledFor?: string;
2904
2904
  publishNow?: boolean;
2905
+ /**
2906
+ * When true, saves the post as a draft. When none of scheduledFor, publishNow, or queuedFromProfile are provided, the post defaults to draft automatically.
2907
+ */
2905
2908
  isDraft?: boolean;
2906
2909
  timezone?: string;
2907
2910
  /**