@pushwoosh/rpc-v2-http-api-data 0.1.605 → 0.1.607

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 CHANGED
@@ -19184,7 +19184,8 @@ export const data = {
19184
19184
  "type": "string"
19185
19185
  },
19186
19186
  "params": {
19187
- "type": "string"
19187
+ "type": "string",
19188
+ "optional": true
19188
19189
  },
19189
19190
  "widgetParams": {
19190
19191
  "type": "pushwoosh.rpc_v2.statistics_dashboards_widgets.ChartParams"
@@ -19192,7 +19193,8 @@ export const data = {
19192
19193
  "indexNumber": {
19193
19194
  "type": "number"
19194
19195
  }
19195
- }
19196
+ },
19197
+ "oneofs": {}
19196
19198
  },
19197
19199
  "pushwoosh.rpc_v2.statistics_dashboards_widgets.LoadDashboardWidgetRequest": {
19198
19200
  "type": "I",
@@ -19218,7 +19220,8 @@ export const data = {
19218
19220
  "type": "string"
19219
19221
  },
19220
19222
  "params": {
19221
- "type": "string"
19223
+ "type": "string",
19224
+ "optional": true
19222
19225
  },
19223
19226
  "widgetParams": {
19224
19227
  "type": "pushwoosh.rpc_v2.statistics_dashboards_widgets.ChartParams"
@@ -19229,7 +19232,8 @@ export const data = {
19229
19232
  "indexNumber": {
19230
19233
  "type": "number"
19231
19234
  }
19232
- }
19235
+ },
19236
+ "oneofs": {}
19233
19237
  },
19234
19238
  "pushwoosh.rpc_v2.statistics_dashboards_widgets.CreateDashboardWidgetResponse": {
19235
19239
  "type": "I",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.605",
3
+ "version": "0.1.607",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -17,7 +17,7 @@ export type Widget = {
17
17
  updated: Date;
18
18
  type: WidgetType;
19
19
  size: string;
20
- params: string;
20
+ params?: string;
21
21
  widgetParams: ChartParams;
22
22
  indexNumber: number;
23
23
  };