@pushwoosh/rpc-gateway-journey-data 0.26.304 → 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 +12 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +4 -0
package/data.js
CHANGED
|
@@ -3061,6 +3061,12 @@ export const data = {
|
|
|
3061
3061
|
"applicationCode": {
|
|
3062
3062
|
"type": "string"
|
|
3063
3063
|
},
|
|
3064
|
+
"entryLimitsEnabled": {
|
|
3065
|
+
"type": "boolean"
|
|
3066
|
+
},
|
|
3067
|
+
"entryLimitsPerSecond": {
|
|
3068
|
+
"type": "number"
|
|
3069
|
+
},
|
|
3064
3070
|
"repeat": {
|
|
3065
3071
|
"type": "pushwoosh.cj.journey.SegmentRepeat"
|
|
3066
3072
|
},
|
|
@@ -3299,6 +3305,12 @@ export const data = {
|
|
|
3299
3305
|
"applicationCode": {
|
|
3300
3306
|
"type": "string"
|
|
3301
3307
|
},
|
|
3308
|
+
"entryLimitsEnabled": {
|
|
3309
|
+
"type": "boolean"
|
|
3310
|
+
},
|
|
3311
|
+
"entryLimitsPerSecond": {
|
|
3312
|
+
"type": "number"
|
|
3313
|
+
},
|
|
3302
3314
|
"isDeactivated": {
|
|
3303
3315
|
"type": "boolean"
|
|
3304
3316
|
},
|
package/package.json
CHANGED
|
@@ -1153,6 +1153,8 @@ export type PointParamsWebHook = {
|
|
|
1153
1153
|
export type PointParamsStartBySegment = {
|
|
1154
1154
|
filterCode: string;
|
|
1155
1155
|
applicationCode: string;
|
|
1156
|
+
entryLimitsEnabled: boolean;
|
|
1157
|
+
entryLimitsPerSecond: number;
|
|
1156
1158
|
repeat: SegmentRepeat;
|
|
1157
1159
|
isDeactivated: boolean;
|
|
1158
1160
|
filterTitle: string;
|
|
@@ -1247,6 +1249,8 @@ export type Position = {
|
|
|
1247
1249
|
};
|
|
1248
1250
|
export type PointParamsStartByAPI = {
|
|
1249
1251
|
applicationCode: string;
|
|
1252
|
+
entryLimitsEnabled: boolean;
|
|
1253
|
+
entryLimitsPerSecond: number;
|
|
1250
1254
|
isDeactivated: boolean;
|
|
1251
1255
|
attributes: string[];
|
|
1252
1256
|
};
|