@pushwoosh/rpc-gateway-journey-data 0.26.302 → 0.26.304

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
@@ -2964,6 +2964,9 @@ export const data = {
2964
2964
  },
2965
2965
  "multiEntry": {
2966
2966
  "type": "pushwoosh.cj.journey.MultiEntry"
2967
+ },
2968
+ "isCancelEvent": {
2969
+ "type": "boolean"
2967
2970
  }
2968
2971
  }
2969
2972
  },
@@ -3058,12 +3061,6 @@ export const data = {
3058
3061
  "applicationCode": {
3059
3062
  "type": "string"
3060
3063
  },
3061
- "entryLimitsEnabled": {
3062
- "type": "boolean"
3063
- },
3064
- "entryLimitsPerSecond": {
3065
- "type": "number"
3066
- },
3067
3064
  "repeat": {
3068
3065
  "type": "pushwoosh.cj.journey.SegmentRepeat"
3069
3066
  },
@@ -3302,12 +3299,6 @@ export const data = {
3302
3299
  "applicationCode": {
3303
3300
  "type": "string"
3304
3301
  },
3305
- "entryLimitsEnabled": {
3306
- "type": "boolean"
3307
- },
3308
- "entryLimitsPerSecond": {
3309
- "type": "number"
3310
- },
3311
3302
  "isDeactivated": {
3312
3303
  "type": "boolean"
3313
3304
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.302",
3
+ "version": "0.26.304",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -1106,6 +1106,7 @@ export type PointParamsGoalEvent = {
1106
1106
  eventConditions: PointEventCondition[];
1107
1107
  isThrowOut: boolean;
1108
1108
  multiEntry: MultiEntry;
1109
+ isCancelEvent: boolean;
1109
1110
  };
1110
1111
  export type PointParamsDelay_interval_sec = {
1111
1112
  type: 'sec';
@@ -1152,8 +1153,6 @@ export type PointParamsWebHook = {
1152
1153
  export type PointParamsStartBySegment = {
1153
1154
  filterCode: string;
1154
1155
  applicationCode: string;
1155
- entryLimitsEnabled: boolean;
1156
- entryLimitsPerSecond: number;
1157
1156
  repeat: SegmentRepeat;
1158
1157
  isDeactivated: boolean;
1159
1158
  filterTitle: string;
@@ -1248,8 +1247,6 @@ export type Position = {
1248
1247
  };
1249
1248
  export type PointParamsStartByAPI = {
1250
1249
  applicationCode: string;
1251
- entryLimitsEnabled: boolean;
1252
- entryLimitsPerSecond: number;
1253
1250
  isDeactivated: boolean;
1254
1251
  attributes: string[];
1255
1252
  };