@pushwoosh/rpc-gateway-journey-data 0.26.391 → 0.26.392
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 +8 -1
- package/index.js +1 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +3 -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
|
},
|
|
@@ -2790,6 +2791,12 @@ export const data = {
|
|
|
2790
2791
|
},
|
|
2791
2792
|
"sendRate": {
|
|
2792
2793
|
"type": "pushwoosh.cj.journey.SendRate"
|
|
2794
|
+
},
|
|
2795
|
+
"emailType": {
|
|
2796
|
+
"type": "string"
|
|
2797
|
+
},
|
|
2798
|
+
"emailCategory": {
|
|
2799
|
+
"type": "string"
|
|
2793
2800
|
}
|
|
2794
2801
|
},
|
|
2795
2802
|
"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>;
|
|
@@ -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;
|
|
@@ -1013,6 +1012,8 @@ export type PointParamsSendEmail = {
|
|
|
1013
1012
|
waitOptimalTime: boolean;
|
|
1014
1013
|
defaultOptimalTime: ExactTime;
|
|
1015
1014
|
sendRate: SendRate;
|
|
1015
|
+
emailType: string;
|
|
1016
|
+
emailCategory: string;
|
|
1016
1017
|
};
|
|
1017
1018
|
export type From = {
|
|
1018
1019
|
name: string;
|
package/pushwoosh_cj_journey.js
CHANGED