@pushwoosh/rpc-v2-http-api-data 0.1.626 → 0.1.627

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
@@ -19558,8 +19558,8 @@ export const data = {
19558
19558
  "pushwoosh.rpc_v2.statistics_dashboards_widgets.EventCalcType": {
19559
19559
  "type": "E",
19560
19560
  "values": [
19561
- "EventCalcTypeAll",
19562
- "EventCalcTypeUnique"
19561
+ "EVENT_CALC_TYPE_ALL",
19562
+ "EVENT_CALC_TYPE_UNIQUE"
19563
19563
  ]
19564
19564
  },
19565
19565
  "pushwoosh.rpc_v2.statistics_dashboards_widgets.Metric": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-v2-http-api-data",
3
- "version": "0.1.626",
3
+ "version": "0.1.627",
4
4
  "description": "RPC V2 HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -91,7 +91,7 @@ export type AttributeCondition = {
91
91
  operator: MathOperator;
92
92
  values: Value[];
93
93
  };
94
- export type EventCalcType = 'EventCalcTypeAll' | 'EventCalcTypeUnique';
94
+ export type EventCalcType = 'EVENT_CALC_TYPE_ALL' | 'EVENT_CALC_TYPE_UNIQUE';
95
95
  export type Metric = {
96
96
  id: number;
97
97
  eventName?: string;