@pushwoosh/rpc-v2-http-api-data 0.1.459 → 0.1.460
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 +9 -0
- package/package.json +1 -1
- package/statistics_dashboards_widgets.d.ts +3 -0
package/data.js
CHANGED
|
@@ -17931,6 +17931,9 @@ export const data = {
|
|
|
17931
17931
|
"params": {
|
|
17932
17932
|
"type": "string"
|
|
17933
17933
|
},
|
|
17934
|
+
"widgetParams": {
|
|
17935
|
+
"type": "pushwoosh.rpc_v2.statistics_dashboards_widgets.ChartParams"
|
|
17936
|
+
},
|
|
17934
17937
|
"indexNumber": {
|
|
17935
17938
|
"type": "number"
|
|
17936
17939
|
}
|
|
@@ -17962,6 +17965,9 @@ export const data = {
|
|
|
17962
17965
|
"params": {
|
|
17963
17966
|
"type": "string"
|
|
17964
17967
|
},
|
|
17968
|
+
"widgetParams": {
|
|
17969
|
+
"type": "pushwoosh.rpc_v2.statistics_dashboards_widgets.ChartParams"
|
|
17970
|
+
},
|
|
17965
17971
|
"dashboard": {
|
|
17966
17972
|
"type": "string"
|
|
17967
17973
|
},
|
|
@@ -17999,6 +18005,9 @@ export const data = {
|
|
|
17999
18005
|
"params": {
|
|
18000
18006
|
"type": "string"
|
|
18001
18007
|
},
|
|
18008
|
+
"widgetParams": {
|
|
18009
|
+
"type": "pushwoosh.rpc_v2.statistics_dashboards_widgets.ChartParams"
|
|
18010
|
+
},
|
|
18002
18011
|
"indexNumber": {
|
|
18003
18012
|
"type": "number"
|
|
18004
18013
|
}
|
package/package.json
CHANGED
|
@@ -17,6 +17,7 @@ export type Widget = {
|
|
|
17
17
|
type: WidgetType;
|
|
18
18
|
size: string;
|
|
19
19
|
params: string;
|
|
20
|
+
widgetParams: ChartParams;
|
|
20
21
|
indexNumber: number;
|
|
21
22
|
};
|
|
22
23
|
export type LoadDashboardWidgetRequest = {
|
|
@@ -28,6 +29,7 @@ export type CreateDashboardWidgetRequest = {
|
|
|
28
29
|
type?: WidgetType;
|
|
29
30
|
size?: string;
|
|
30
31
|
params?: string;
|
|
32
|
+
widgetParams?: ChartParams;
|
|
31
33
|
dashboard?: string;
|
|
32
34
|
indexNumber?: number;
|
|
33
35
|
};
|
|
@@ -41,6 +43,7 @@ export type UpdateDashboardWidgetRequest = {
|
|
|
41
43
|
type?: WidgetType;
|
|
42
44
|
size?: string;
|
|
43
45
|
params?: string;
|
|
46
|
+
widgetParams?: ChartParams;
|
|
44
47
|
indexNumber?: number;
|
|
45
48
|
};
|
|
46
49
|
export type UpdateDashboardWidgetResponse = {};
|