@getlatedev/node 0.1.14 → 0.1.15

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
@@ -2754,7 +2754,16 @@ type GetPostError = ({
2754
2754
  } | unknown);
2755
2755
  type UpdatePostData = {
2756
2756
  body: {
2757
- [key: string]: unknown;
2757
+ content?: string;
2758
+ scheduledFor?: string;
2759
+ /**
2760
+ * Root-level TikTok settings applied to all TikTok platforms in the request.
2761
+ * This is a convenience shorthand. Settings here are merged into each TikTok
2762
+ * platform's platformSpecificData, with platform-specific settings taking precedence.
2763
+ *
2764
+ */
2765
+ tiktokSettings?: TikTokPlatformData;
2766
+ [key: string]: unknown | string | TikTokPlatformData;
2758
2767
  };
2759
2768
  path: {
2760
2769
  postId: string;
package/dist/index.d.ts CHANGED
@@ -2754,7 +2754,16 @@ type GetPostError = ({
2754
2754
  } | unknown);
2755
2755
  type UpdatePostData = {
2756
2756
  body: {
2757
- [key: string]: unknown;
2757
+ content?: string;
2758
+ scheduledFor?: string;
2759
+ /**
2760
+ * Root-level TikTok settings applied to all TikTok platforms in the request.
2761
+ * This is a convenience shorthand. Settings here are merged into each TikTok
2762
+ * platform's platformSpecificData, with platform-specific settings taking precedence.
2763
+ *
2764
+ */
2765
+ tiktokSettings?: TikTokPlatformData;
2766
+ [key: string]: unknown | string | TikTokPlatformData;
2758
2767
  };
2759
2768
  path: {
2760
2769
  postId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getlatedev/node",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "The official Node.js library for the Late API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -2557,7 +2557,16 @@ export type GetPostError = ({
2557
2557
 
2558
2558
  export type UpdatePostData = {
2559
2559
  body: {
2560
- [key: string]: unknown;
2560
+ content?: string;
2561
+ scheduledFor?: string;
2562
+ /**
2563
+ * Root-level TikTok settings applied to all TikTok platforms in the request.
2564
+ * This is a convenience shorthand. Settings here are merged into each TikTok
2565
+ * platform's platformSpecificData, with platform-specific settings taking precedence.
2566
+ *
2567
+ */
2568
+ tiktokSettings?: TikTokPlatformData;
2569
+ [key: string]: unknown | string | TikTokPlatformData;
2561
2570
  };
2562
2571
  path: {
2563
2572
  postId: string;