ugcinc 4.16.0 → 4.16.1
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/stats.d.ts +3 -0
- package/dist/stats.js +3 -0
- package/package.json +1 -1
package/dist/stats.d.ts
CHANGED
|
@@ -277,6 +277,9 @@ export declare class StatsClient extends BaseClient {
|
|
|
277
277
|
* Returns per-video daily stats with both cumulative values and daily changes.
|
|
278
278
|
* Perfect for showing per-video performance in chart tooltips.
|
|
279
279
|
*
|
|
280
|
+
* Each `*_change` is measured against the post's previous stats row, which may be
|
|
281
|
+
* earlier than `startDate`, so a one-day range returns that day's real changes.
|
|
282
|
+
*
|
|
280
283
|
* @param params - Date range and filter parameters (startDate and endDate required)
|
|
281
284
|
* @returns Array of daily post statistics with changes
|
|
282
285
|
*
|
package/dist/stats.js
CHANGED
|
@@ -100,6 +100,9 @@ class StatsClient extends base_1.BaseClient {
|
|
|
100
100
|
* Returns per-video daily stats with both cumulative values and daily changes.
|
|
101
101
|
* Perfect for showing per-video performance in chart tooltips.
|
|
102
102
|
*
|
|
103
|
+
* Each `*_change` is measured against the post's previous stats row, which may be
|
|
104
|
+
* earlier than `startDate`, so a one-day range returns that day's real changes.
|
|
105
|
+
*
|
|
103
106
|
* @param params - Date range and filter parameters (startDate and endDate required)
|
|
104
107
|
* @returns Array of daily post statistics with changes
|
|
105
108
|
*
|