@pushwoosh/rpc-v2-http-api-data 0.2.108 → 0.2.109
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/package.json +1 -1
- package/statistics_dashboards_widgets.d.ts +6 -0
package/data.js
CHANGED
|
@@ -25618,6 +25618,12 @@ export const data = {
|
|
|
25618
25618
|
},
|
|
25619
25619
|
"timezone": {
|
|
25620
25620
|
"type": "string"
|
|
25621
|
+
},
|
|
25622
|
+
"includeAllOneTime": {
|
|
25623
|
+
"type": "boolean"
|
|
25624
|
+
},
|
|
25625
|
+
"includeAllJourneys": {
|
|
25626
|
+
"type": "boolean"
|
|
25621
25627
|
}
|
|
25622
25628
|
}
|
|
25623
25629
|
},
|
package/package.json
CHANGED
|
@@ -382,6 +382,12 @@ export type ChartParams = {
|
|
|
382
382
|
* Used to correctly bucket data into time intervals.
|
|
383
383
|
*/
|
|
384
384
|
timezone: string;
|
|
385
|
+
/**
|
|
386
|
+
* Scope event metrics by message source: exactly one true narrows the chart to
|
|
387
|
+
* that source, both true or both false leave it unrestricted.
|
|
388
|
+
*/
|
|
389
|
+
includeAllOneTime: boolean;
|
|
390
|
+
includeAllJourneys: boolean;
|
|
385
391
|
};
|
|
386
392
|
export type GetLinearChartMetricsRequest = {
|
|
387
393
|
/**
|