@pushwoosh/rpc-gateway-journey-data 0.26.409 → 0.26.411
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/commonTypes.js +1 -0
- package/data.js +5 -1
- package/index.js +1 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +2 -2
- package/pushwoosh_cj_journey.js +1 -0
- package/pushwoosh_cj_journey_category.js +1 -0
- package/pushwoosh_objects_filters_v1.js +1 -0
package/commonTypes.js
CHANGED
package/data.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
+
/* Autogenerated code */
|
|
2
3
|
export const data = {
|
|
3
4
|
"pushwoosh.cj.journey.Journey": {
|
|
4
5
|
"type": "S",
|
|
@@ -947,7 +948,7 @@ export const data = {
|
|
|
947
948
|
"type": "number"
|
|
948
949
|
},
|
|
949
950
|
"avrCTR": {
|
|
950
|
-
"type": "
|
|
951
|
+
"type": "number"
|
|
951
952
|
}
|
|
952
953
|
}
|
|
953
954
|
},
|
|
@@ -2328,6 +2329,9 @@ export const data = {
|
|
|
2328
2329
|
},
|
|
2329
2330
|
"attributeEntry": {
|
|
2330
2331
|
"type": "pushwoosh.cj.journey.AttributeEntry"
|
|
2332
|
+
},
|
|
2333
|
+
"allowReenter": {
|
|
2334
|
+
"type": "boolean"
|
|
2331
2335
|
}
|
|
2332
2336
|
}
|
|
2333
2337
|
},
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { DoubleValue as google_protobuf_DoubleValue } from './google_protobuf';
|
|
2
1
|
import { FilterExpression as pushwoosh_objects_filters_v1_FilterExpression } from './pushwoosh_objects_filters_v1';
|
|
3
2
|
export interface Journey {
|
|
4
3
|
GetJourneysList(request: GetJourneysListRequest): Promise<GetJourneysListResponse>;
|
|
@@ -314,7 +313,7 @@ export type JourneyStatsPayloadGet = {
|
|
|
314
313
|
export type JourneySummaryStats = {
|
|
315
314
|
in: number;
|
|
316
315
|
goals: number;
|
|
317
|
-
avrCTR:
|
|
316
|
+
avrCTR: number;
|
|
318
317
|
};
|
|
319
318
|
export type RenameRequest = {
|
|
320
319
|
uuid?: string;
|
|
@@ -865,6 +864,7 @@ export type PointParamsMessageBus = {
|
|
|
865
864
|
activePeriod: Period;
|
|
866
865
|
multiEntry: MultiEntry;
|
|
867
866
|
attributeEntry: AttributeEntry;
|
|
867
|
+
allowReenter: boolean;
|
|
868
868
|
};
|
|
869
869
|
export type Period = {
|
|
870
870
|
enabled: boolean;
|
package/pushwoosh_cj_journey.js
CHANGED