@pushwoosh/rpc-gateway-journey-data 0.26.376 → 0.26.378
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",
|
|
@@ -810,7 +811,7 @@ export const data = {
|
|
|
810
811
|
"type": "number"
|
|
811
812
|
},
|
|
812
813
|
"avrCTR": {
|
|
813
|
-
"type": "
|
|
814
|
+
"type": "number"
|
|
814
815
|
}
|
|
815
816
|
}
|
|
816
817
|
},
|
|
@@ -3361,6 +3362,9 @@ export const data = {
|
|
|
3361
3362
|
},
|
|
3362
3363
|
"applicationTitle": {
|
|
3363
3364
|
"type": "string"
|
|
3365
|
+
},
|
|
3366
|
+
"startAt": {
|
|
3367
|
+
"type": "Date"
|
|
3364
3368
|
}
|
|
3365
3369
|
},
|
|
3366
3370
|
"oneofs": {}
|
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>;
|
|
@@ -272,7 +271,7 @@ export type JourneyStatsPayloadGet = {
|
|
|
272
271
|
export type JourneySummaryStats = {
|
|
273
272
|
in: number;
|
|
274
273
|
goals: number;
|
|
275
|
-
avrCTR:
|
|
274
|
+
avrCTR: number;
|
|
276
275
|
};
|
|
277
276
|
export type RenameRequest = {
|
|
278
277
|
uuid?: string;
|
|
@@ -1255,6 +1254,7 @@ export type PointParamsStartBySegment = {
|
|
|
1255
1254
|
isDeactivated: boolean;
|
|
1256
1255
|
filterTitle: string;
|
|
1257
1256
|
applicationTitle: string;
|
|
1257
|
+
startAt: Date;
|
|
1258
1258
|
};
|
|
1259
1259
|
export type SegmentRepeat = {
|
|
1260
1260
|
enabled: boolean;
|
package/pushwoosh_cj_journey.js
CHANGED