@zernio/node 0.2.32 → 0.2.33

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
@@ -3824,6 +3824,18 @@ type UpdatePostMetadataData = {
3824
3824
  * Public URL of a custom thumbnail image (JPEG, PNG, or GIF, max 2 MB, recommended 1280x720). Works on any video you own, including existing videos not published through Zernio. The channel must be verified (phone verification) to set custom thumbnails.
3825
3825
  */
3826
3826
  thumbnailUrl?: string;
3827
+ /**
3828
+ * COPPA compliance flag. Set true for child-directed content (restricts comments, notifications, ad targeting).
3829
+ */
3830
+ madeForKids?: boolean;
3831
+ /**
3832
+ * AI-generated content disclosure. Set true if the video contains synthetic content that could be mistaken for real. YouTube may add a label.
3833
+ */
3834
+ containsSyntheticMedia?: boolean;
3835
+ /**
3836
+ * YouTube playlist ID to add the video to (e.g. 'PLxxxxxxxxxxxxx'). Use GET /v1/accounts/{id}/youtube-playlists to list available playlists. Only playlists owned by the channel are supported.
3837
+ */
3838
+ playlistId?: string;
3827
3839
  };
3828
3840
  path: {
3829
3841
  /**
package/dist/index.d.ts CHANGED
@@ -3824,6 +3824,18 @@ type UpdatePostMetadataData = {
3824
3824
  * Public URL of a custom thumbnail image (JPEG, PNG, or GIF, max 2 MB, recommended 1280x720). Works on any video you own, including existing videos not published through Zernio. The channel must be verified (phone verification) to set custom thumbnails.
3825
3825
  */
3826
3826
  thumbnailUrl?: string;
3827
+ /**
3828
+ * COPPA compliance flag. Set true for child-directed content (restricts comments, notifications, ad targeting).
3829
+ */
3830
+ madeForKids?: boolean;
3831
+ /**
3832
+ * AI-generated content disclosure. Set true if the video contains synthetic content that could be mistaken for real. YouTube may add a label.
3833
+ */
3834
+ containsSyntheticMedia?: boolean;
3835
+ /**
3836
+ * YouTube playlist ID to add the video to (e.g. 'PLxxxxxxxxxxxxx'). Use GET /v1/accounts/{id}/youtube-playlists to list available playlists. Only playlists owned by the channel are supported.
3837
+ */
3838
+ playlistId?: string;
3827
3839
  };
3828
3840
  path: {
3829
3841
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zernio/node",
3
- "version": "0.2.32",
3
+ "version": "0.2.33",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -3526,6 +3526,18 @@ export type UpdatePostMetadataData = {
3526
3526
  * Public URL of a custom thumbnail image (JPEG, PNG, or GIF, max 2 MB, recommended 1280x720). Works on any video you own, including existing videos not published through Zernio. The channel must be verified (phone verification) to set custom thumbnails.
3527
3527
  */
3528
3528
  thumbnailUrl?: string;
3529
+ /**
3530
+ * COPPA compliance flag. Set true for child-directed content (restricts comments, notifications, ad targeting).
3531
+ */
3532
+ madeForKids?: boolean;
3533
+ /**
3534
+ * AI-generated content disclosure. Set true if the video contains synthetic content that could be mistaken for real. YouTube may add a label.
3535
+ */
3536
+ containsSyntheticMedia?: boolean;
3537
+ /**
3538
+ * YouTube playlist ID to add the video to (e.g. 'PLxxxxxxxxxxxxx'). Use GET /v1/accounts/{id}/youtube-playlists to list available playlists. Only playlists owned by the channel are supported.
3539
+ */
3540
+ playlistId?: string;
3529
3541
  };
3530
3542
  path: {
3531
3543
  /**