@pushwoosh/rpc-v2-http-api-data 0.1.758 → 0.1.760
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 +2 -0
package/data.js
CHANGED
|
@@ -22369,6 +22369,9 @@ export const data = {
|
|
|
22369
22369
|
"values": {
|
|
22370
22370
|
"type": "number",
|
|
22371
22371
|
"array": true
|
|
22372
|
+
},
|
|
22373
|
+
"total": {
|
|
22374
|
+
"type": "number"
|
|
22372
22375
|
}
|
|
22373
22376
|
}
|
|
22374
22377
|
},
|
|
@@ -22413,6 +22416,9 @@ export const data = {
|
|
|
22413
22416
|
},
|
|
22414
22417
|
"value": {
|
|
22415
22418
|
"type": "number"
|
|
22419
|
+
},
|
|
22420
|
+
"total": {
|
|
22421
|
+
"type": "number"
|
|
22416
22422
|
}
|
|
22417
22423
|
}
|
|
22418
22424
|
},
|
package/package.json
CHANGED
|
@@ -144,6 +144,7 @@ export type GetLinearChartMetricsRequest = {
|
|
|
144
144
|
export type GetLinearChartMetricsResponse_Breakdown = {
|
|
145
145
|
breakdown: string;
|
|
146
146
|
values: number[];
|
|
147
|
+
total: number;
|
|
147
148
|
};
|
|
148
149
|
export type GetLinearChartMetricsResponse_Metric = {
|
|
149
150
|
metric: string;
|
|
@@ -159,6 +160,7 @@ export type GetTotalsChartMetricsRequest = {
|
|
|
159
160
|
export type GetTotalsChartMetricsResponse_Breakdown = {
|
|
160
161
|
breakdown: string;
|
|
161
162
|
value: number;
|
|
163
|
+
total: number;
|
|
162
164
|
};
|
|
163
165
|
export type GetTotalsChartMetricsResponse_Metric = {
|
|
164
166
|
metric: string;
|