@getlatedev/node 0.2.250 → 0.2.251
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 +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/generated/types.gen.ts +7 -0
package/dist/index.d.mts
CHANGED
|
@@ -6663,6 +6663,13 @@ type GetDailyMetricsData = {
|
|
|
6663
6663
|
* Filter by social account ID
|
|
6664
6664
|
*/
|
|
6665
6665
|
accountId?: string;
|
|
6666
|
+
/**
|
|
6667
|
+
* How each post's engagement is attributed to a day.
|
|
6668
|
+
* "publish" (default) sums each post's lifetime total on its publish date.
|
|
6669
|
+
* "received" buckets the per-day increase in engagement by the day it actually arrived (engagement-over-time), so engagement on older posts appears on the day it was gained rather than the post's publish date.
|
|
6670
|
+
*
|
|
6671
|
+
*/
|
|
6672
|
+
attribution?: 'publish' | 'received';
|
|
6666
6673
|
/**
|
|
6667
6674
|
* Inclusive start date (ISO 8601). Defaults to 180 days ago.
|
|
6668
6675
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -6663,6 +6663,13 @@ type GetDailyMetricsData = {
|
|
|
6663
6663
|
* Filter by social account ID
|
|
6664
6664
|
*/
|
|
6665
6665
|
accountId?: string;
|
|
6666
|
+
/**
|
|
6667
|
+
* How each post's engagement is attributed to a day.
|
|
6668
|
+
* "publish" (default) sums each post's lifetime total on its publish date.
|
|
6669
|
+
* "received" buckets the per-day increase in engagement by the day it actually arrived (engagement-over-time), so engagement on older posts appears on the day it was gained rather than the post's publish date.
|
|
6670
|
+
*
|
|
6671
|
+
*/
|
|
6672
|
+
attribution?: 'publish' | 'received';
|
|
6666
6673
|
/**
|
|
6667
6674
|
* Inclusive start date (ISO 8601). Defaults to 180 days ago.
|
|
6668
6675
|
*/
|
package/dist/index.js
CHANGED
|
@@ -36,7 +36,7 @@ module.exports = __toCommonJS(index_exports);
|
|
|
36
36
|
// package.json
|
|
37
37
|
var package_default = {
|
|
38
38
|
name: "@getlatedev/node",
|
|
39
|
-
version: "0.2.
|
|
39
|
+
version: "0.2.251",
|
|
40
40
|
description: "The official Node.js library for the Zernio API",
|
|
41
41
|
main: "dist/index.js",
|
|
42
42
|
module: "dist/index.mjs",
|
package/dist/index.mjs
CHANGED
|
@@ -5,7 +5,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5
5
|
// package.json
|
|
6
6
|
var package_default = {
|
|
7
7
|
name: "@getlatedev/node",
|
|
8
|
-
version: "0.2.
|
|
8
|
+
version: "0.2.251",
|
|
9
9
|
description: "The official Node.js library for the Zernio API",
|
|
10
10
|
main: "dist/index.js",
|
|
11
11
|
module: "dist/index.mjs",
|
package/package.json
CHANGED
|
@@ -6190,6 +6190,13 @@ export type GetDailyMetricsData = {
|
|
|
6190
6190
|
* Filter by social account ID
|
|
6191
6191
|
*/
|
|
6192
6192
|
accountId?: string;
|
|
6193
|
+
/**
|
|
6194
|
+
* How each post's engagement is attributed to a day.
|
|
6195
|
+
* "publish" (default) sums each post's lifetime total on its publish date.
|
|
6196
|
+
* "received" buckets the per-day increase in engagement by the day it actually arrived (engagement-over-time), so engagement on older posts appears on the day it was gained rather than the post's publish date.
|
|
6197
|
+
*
|
|
6198
|
+
*/
|
|
6199
|
+
attribution?: 'publish' | 'received';
|
|
6193
6200
|
/**
|
|
6194
6201
|
* Inclusive start date (ISO 8601). Defaults to 180 days ago.
|
|
6195
6202
|
*/
|