@pushwoosh/rpc-gateway-journey-data 0.26.304 → 0.26.306
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 +20 -2
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +4 -0
package/data.js
CHANGED
|
@@ -3061,6 +3061,14 @@ export const data = {
|
|
|
3061
3061
|
"applicationCode": {
|
|
3062
3062
|
"type": "string"
|
|
3063
3063
|
},
|
|
3064
|
+
"entryLimitsEnabled": {
|
|
3065
|
+
"type": "boolean",
|
|
3066
|
+
"optional": true
|
|
3067
|
+
},
|
|
3068
|
+
"entryLimitsPerSecond": {
|
|
3069
|
+
"type": "number",
|
|
3070
|
+
"optional": true
|
|
3071
|
+
},
|
|
3064
3072
|
"repeat": {
|
|
3065
3073
|
"type": "pushwoosh.cj.journey.SegmentRepeat"
|
|
3066
3074
|
},
|
|
@@ -3073,7 +3081,8 @@ export const data = {
|
|
|
3073
3081
|
"applicationTitle": {
|
|
3074
3082
|
"type": "string"
|
|
3075
3083
|
}
|
|
3076
|
-
}
|
|
3084
|
+
},
|
|
3085
|
+
"oneofs": {}
|
|
3077
3086
|
},
|
|
3078
3087
|
"pushwoosh.cj.journey.SegmentRepeat": {
|
|
3079
3088
|
"type": "I",
|
|
@@ -3299,6 +3308,14 @@ export const data = {
|
|
|
3299
3308
|
"applicationCode": {
|
|
3300
3309
|
"type": "string"
|
|
3301
3310
|
},
|
|
3311
|
+
"entryLimitsEnabled": {
|
|
3312
|
+
"type": "boolean",
|
|
3313
|
+
"optional": true
|
|
3314
|
+
},
|
|
3315
|
+
"entryLimitsPerSecond": {
|
|
3316
|
+
"type": "number",
|
|
3317
|
+
"optional": true
|
|
3318
|
+
},
|
|
3302
3319
|
"isDeactivated": {
|
|
3303
3320
|
"type": "boolean"
|
|
3304
3321
|
},
|
|
@@ -3306,7 +3323,8 @@ export const data = {
|
|
|
3306
3323
|
"type": "string",
|
|
3307
3324
|
"array": true
|
|
3308
3325
|
}
|
|
3309
|
-
}
|
|
3326
|
+
},
|
|
3327
|
+
"oneofs": {}
|
|
3310
3328
|
},
|
|
3311
3329
|
"pushwoosh.cj.journey.PointParamsTerminator": {
|
|
3312
3330
|
"type": "I",
|
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
|
};
|