@zernio/node 0.2.170 → 0.2.171

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
@@ -2804,6 +2804,14 @@ type PostAnalytics = {
2804
2804
  saves?: number;
2805
2805
  clicks?: number;
2806
2806
  views?: number;
2807
+ /**
2808
+ * Instagram Reels only: average watch time per play, in milliseconds. 0 for non-Reels media and other platforms.
2809
+ */
2810
+ igReelsAvgWatchTime?: number;
2811
+ /**
2812
+ * Instagram Reels only: total watch time including replays, in milliseconds. 0 for non-Reels media and other platforms.
2813
+ */
2814
+ igReelsVideoViewTotalTime?: number;
2807
2815
  engagementRate?: number;
2808
2816
  lastUpdated?: string;
2809
2817
  };
package/dist/index.d.ts CHANGED
@@ -2804,6 +2804,14 @@ type PostAnalytics = {
2804
2804
  saves?: number;
2805
2805
  clicks?: number;
2806
2806
  views?: number;
2807
+ /**
2808
+ * Instagram Reels only: average watch time per play, in milliseconds. 0 for non-Reels media and other platforms.
2809
+ */
2810
+ igReelsAvgWatchTime?: number;
2811
+ /**
2812
+ * Instagram Reels only: total watch time including replays, in milliseconds. 0 for non-Reels media and other platforms.
2813
+ */
2814
+ igReelsVideoViewTotalTime?: number;
2807
2815
  engagementRate?: number;
2808
2816
  lastUpdated?: string;
2809
2817
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zernio/node",
3
- "version": "0.2.170",
3
+ "version": "0.2.171",
4
4
  "description": "The official Node.js library for the Zernio API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -2236,6 +2236,14 @@ export type PostAnalytics = {
2236
2236
  saves?: number;
2237
2237
  clicks?: number;
2238
2238
  views?: number;
2239
+ /**
2240
+ * Instagram Reels only: average watch time per play, in milliseconds. 0 for non-Reels media and other platforms.
2241
+ */
2242
+ igReelsAvgWatchTime?: number;
2243
+ /**
2244
+ * Instagram Reels only: total watch time including replays, in milliseconds. 0 for non-Reels media and other platforms.
2245
+ */
2246
+ igReelsVideoViewTotalTime?: number;
2239
2247
  engagementRate?: number;
2240
2248
  lastUpdated?: string;
2241
2249
  };