@pushwoosh/rpc-gateway-journey-data 0.26.305 → 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 +12 -6
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +4 -4
package/data.js
CHANGED
|
@@ -3062,10 +3062,12 @@ export const data = {
|
|
|
3062
3062
|
"type": "string"
|
|
3063
3063
|
},
|
|
3064
3064
|
"entryLimitsEnabled": {
|
|
3065
|
-
"type": "boolean"
|
|
3065
|
+
"type": "boolean",
|
|
3066
|
+
"optional": true
|
|
3066
3067
|
},
|
|
3067
3068
|
"entryLimitsPerSecond": {
|
|
3068
|
-
"type": "number"
|
|
3069
|
+
"type": "number",
|
|
3070
|
+
"optional": true
|
|
3069
3071
|
},
|
|
3070
3072
|
"repeat": {
|
|
3071
3073
|
"type": "pushwoosh.cj.journey.SegmentRepeat"
|
|
@@ -3079,7 +3081,8 @@ export const data = {
|
|
|
3079
3081
|
"applicationTitle": {
|
|
3080
3082
|
"type": "string"
|
|
3081
3083
|
}
|
|
3082
|
-
}
|
|
3084
|
+
},
|
|
3085
|
+
"oneofs": {}
|
|
3083
3086
|
},
|
|
3084
3087
|
"pushwoosh.cj.journey.SegmentRepeat": {
|
|
3085
3088
|
"type": "I",
|
|
@@ -3306,10 +3309,12 @@ export const data = {
|
|
|
3306
3309
|
"type": "string"
|
|
3307
3310
|
},
|
|
3308
3311
|
"entryLimitsEnabled": {
|
|
3309
|
-
"type": "boolean"
|
|
3312
|
+
"type": "boolean",
|
|
3313
|
+
"optional": true
|
|
3310
3314
|
},
|
|
3311
3315
|
"entryLimitsPerSecond": {
|
|
3312
|
-
"type": "number"
|
|
3316
|
+
"type": "number",
|
|
3317
|
+
"optional": true
|
|
3313
3318
|
},
|
|
3314
3319
|
"isDeactivated": {
|
|
3315
3320
|
"type": "boolean"
|
|
@@ -3318,7 +3323,8 @@ export const data = {
|
|
|
3318
3323
|
"type": "string",
|
|
3319
3324
|
"array": true
|
|
3320
3325
|
}
|
|
3321
|
-
}
|
|
3326
|
+
},
|
|
3327
|
+
"oneofs": {}
|
|
3322
3328
|
},
|
|
3323
3329
|
"pushwoosh.cj.journey.PointParamsTerminator": {
|
|
3324
3330
|
"type": "I",
|
package/package.json
CHANGED
|
@@ -1153,8 +1153,8 @@ export type PointParamsWebHook = {
|
|
|
1153
1153
|
export type PointParamsStartBySegment = {
|
|
1154
1154
|
filterCode: string;
|
|
1155
1155
|
applicationCode: string;
|
|
1156
|
-
entryLimitsEnabled
|
|
1157
|
-
entryLimitsPerSecond
|
|
1156
|
+
entryLimitsEnabled?: boolean;
|
|
1157
|
+
entryLimitsPerSecond?: number;
|
|
1158
1158
|
repeat: SegmentRepeat;
|
|
1159
1159
|
isDeactivated: boolean;
|
|
1160
1160
|
filterTitle: string;
|
|
@@ -1249,8 +1249,8 @@ export type Position = {
|
|
|
1249
1249
|
};
|
|
1250
1250
|
export type PointParamsStartByAPI = {
|
|
1251
1251
|
applicationCode: string;
|
|
1252
|
-
entryLimitsEnabled
|
|
1253
|
-
entryLimitsPerSecond
|
|
1252
|
+
entryLimitsEnabled?: boolean;
|
|
1253
|
+
entryLimitsPerSecond?: number;
|
|
1254
1254
|
isDeactivated: boolean;
|
|
1255
1255
|
attributes: string[];
|
|
1256
1256
|
};
|