@pushwoosh/rpc-gateway-journey-data 0.26.303 → 0.26.305

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,6 +3061,12 @@ export const data = {
3058
3061
  "applicationCode": {
3059
3062
  "type": "string"
3060
3063
  },
3064
+ "entryLimitsEnabled": {
3065
+ "type": "boolean"
3066
+ },
3067
+ "entryLimitsPerSecond": {
3068
+ "type": "number"
3069
+ },
3061
3070
  "repeat": {
3062
3071
  "type": "pushwoosh.cj.journey.SegmentRepeat"
3063
3072
  },
@@ -3296,6 +3305,12 @@ export const data = {
3296
3305
  "applicationCode": {
3297
3306
  "type": "string"
3298
3307
  },
3308
+ "entryLimitsEnabled": {
3309
+ "type": "boolean"
3310
+ },
3311
+ "entryLimitsPerSecond": {
3312
+ "type": "number"
3313
+ },
3299
3314
  "isDeactivated": {
3300
3315
  "type": "boolean"
3301
3316
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.303",
3
+ "version": "0.26.305",
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,6 +1153,8 @@ export type PointParamsWebHook = {
1152
1153
  export type PointParamsStartBySegment = {
1153
1154
  filterCode: string;
1154
1155
  applicationCode: string;
1156
+ entryLimitsEnabled: boolean;
1157
+ entryLimitsPerSecond: number;
1155
1158
  repeat: SegmentRepeat;
1156
1159
  isDeactivated: boolean;
1157
1160
  filterTitle: string;
@@ -1246,6 +1249,8 @@ export type Position = {
1246
1249
  };
1247
1250
  export type PointParamsStartByAPI = {
1248
1251
  applicationCode: string;
1252
+ entryLimitsEnabled: boolean;
1253
+ entryLimitsPerSecond: number;
1249
1254
  isDeactivated: boolean;
1250
1255
  attributes: string[];
1251
1256
  };