@pushwoosh/rpc-v2-http-api-data 0.2.111 → 0.2.113
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/data.js +6 -0
- package/frequency_capping.d.ts +4 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -11845,6 +11845,12 @@ export const data = {
|
|
|
11845
11845
|
},
|
|
11846
11846
|
"days": {
|
|
11847
11847
|
"type": "number"
|
|
11848
|
+
},
|
|
11849
|
+
"mode": {
|
|
11850
|
+
"type": "string"
|
|
11851
|
+
},
|
|
11852
|
+
"timezone": {
|
|
11853
|
+
"type": "string"
|
|
11848
11854
|
}
|
|
11849
11855
|
}
|
|
11850
11856
|
},
|
package/frequency_capping.d.ts
CHANGED
|
@@ -15,6 +15,10 @@ export type Capping = {
|
|
|
15
15
|
count: number;
|
|
16
16
|
/** Length of the rolling window in days (1-30). */
|
|
17
17
|
days: number;
|
|
18
|
+
/** How the counting window is anchored: "" (rolling window, default) or "calendar_day". */
|
|
19
|
+
mode: string;
|
|
20
|
+
/** IANA timezone name midnight is calculated in for calendar_day mode; empty means UTC. */
|
|
21
|
+
timezone: string;
|
|
18
22
|
};
|
|
19
23
|
export type FrequencyCapping = {
|
|
20
24
|
push: Capping;
|