@pushwoosh/rpc-gateway-journey-data 0.26.405 → 0.26.407
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 +0 -1
- package/data.js +7 -2
- package/index.js +0 -1
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +4 -1
- package/pushwoosh_cj_journey.js +0 -1
- package/pushwoosh_cj_journey_category.js +0 -1
- package/pushwoosh_objects_filters_v1.js +0 -1
package/commonTypes.js
CHANGED
package/data.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
-
/* Autogenerated code */
|
|
3
2
|
export const data = {
|
|
4
3
|
"pushwoosh.cj.journey.Journey": {
|
|
5
4
|
"type": "S",
|
|
@@ -948,7 +947,7 @@ export const data = {
|
|
|
948
947
|
"type": "number"
|
|
949
948
|
},
|
|
950
949
|
"avrCTR": {
|
|
951
|
-
"type": "
|
|
950
|
+
"type": "google.protobuf.DoubleValue"
|
|
952
951
|
}
|
|
953
952
|
}
|
|
954
953
|
},
|
|
@@ -1986,6 +1985,9 @@ export const data = {
|
|
|
1986
1985
|
},
|
|
1987
1986
|
"lastEditedBy": {
|
|
1988
1987
|
"type": "pushwoosh.cj.journey.User"
|
|
1988
|
+
},
|
|
1989
|
+
"dynamicEntry": {
|
|
1990
|
+
"type": "boolean"
|
|
1989
1991
|
}
|
|
1990
1992
|
}
|
|
1991
1993
|
},
|
|
@@ -3608,6 +3610,9 @@ export const data = {
|
|
|
3608
3610
|
},
|
|
3609
3611
|
"startAt": {
|
|
3610
3612
|
"type": "Date"
|
|
3613
|
+
},
|
|
3614
|
+
"dynamicEntry": {
|
|
3615
|
+
"type": "boolean"
|
|
3611
3616
|
}
|
|
3612
3617
|
},
|
|
3613
3618
|
"oneofs": {}
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { DoubleValue as google_protobuf_DoubleValue } from './google_protobuf';
|
|
1
2
|
import { FilterExpression as pushwoosh_objects_filters_v1_FilterExpression } from './pushwoosh_objects_filters_v1';
|
|
2
3
|
export interface Journey {
|
|
3
4
|
GetJourneysList(request: GetJourneysListRequest): Promise<GetJourneysListResponse>;
|
|
@@ -313,7 +314,7 @@ export type JourneyStatsPayloadGet = {
|
|
|
313
314
|
export type JourneySummaryStats = {
|
|
314
315
|
in: number;
|
|
315
316
|
goals: number;
|
|
316
|
-
avrCTR:
|
|
317
|
+
avrCTR: google_protobuf_DoubleValue;
|
|
317
318
|
};
|
|
318
319
|
export type RenameRequest = {
|
|
319
320
|
uuid?: string;
|
|
@@ -705,6 +706,7 @@ export type Info = {
|
|
|
705
706
|
campaignType: CampaignType;
|
|
706
707
|
stopReason: string;
|
|
707
708
|
lastEditedBy: User;
|
|
709
|
+
dynamicEntry: boolean;
|
|
708
710
|
};
|
|
709
711
|
export type User = {
|
|
710
712
|
id: number;
|
|
@@ -1334,6 +1336,7 @@ export type PointParamsStartBySegment = {
|
|
|
1334
1336
|
filterTitle: string;
|
|
1335
1337
|
applicationTitle: string;
|
|
1336
1338
|
startAt: Date;
|
|
1339
|
+
dynamicEntry: boolean;
|
|
1337
1340
|
};
|
|
1338
1341
|
export type SegmentRepeat = {
|
|
1339
1342
|
enabled: boolean;
|
package/pushwoosh_cj_journey.js
CHANGED