@zernio/node 0.2.30 → 0.2.31

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
@@ -3806,6 +3806,10 @@ type UpdatePostMetadataData = {
3806
3806
  * Video privacy setting
3807
3807
  */
3808
3808
  privacyStatus?: 'public' | 'private' | 'unlisted';
3809
+ /**
3810
+ * 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.
3811
+ */
3812
+ thumbnailUrl?: string;
3809
3813
  };
3810
3814
  path: {
3811
3815
  /**
package/dist/index.d.ts CHANGED
@@ -3806,6 +3806,10 @@ type UpdatePostMetadataData = {
3806
3806
  * Video privacy setting
3807
3807
  */
3808
3808
  privacyStatus?: 'public' | 'private' | 'unlisted';
3809
+ /**
3810
+ * 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.
3811
+ */
3812
+ thumbnailUrl?: string;
3809
3813
  };
3810
3814
  path: {
3811
3815
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zernio/node",
3
- "version": "0.2.30",
3
+ "version": "0.2.31",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -3508,6 +3508,10 @@ export type UpdatePostMetadataData = {
3508
3508
  * Video privacy setting
3509
3509
  */
3510
3510
  privacyStatus?: 'public' | 'private' | 'unlisted';
3511
+ /**
3512
+ * 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.
3513
+ */
3514
+ thumbnailUrl?: string;
3511
3515
  };
3512
3516
  path: {
3513
3517
  /**