@pushwoosh/rpc-gateway-journey-data 0.26.396 → 0.26.398
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 +2 -4
- package/index.js +1 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +1 -3
- 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
|
},
|
|
@@ -2799,9 +2800,6 @@ export const data = {
|
|
|
2799
2800
|
},
|
|
2800
2801
|
"emailCategory": {
|
|
2801
2802
|
"type": "string"
|
|
2802
|
-
},
|
|
2803
|
-
"messageType": {
|
|
2804
|
-
"type": "pushwoosh.cj.journey.MessageType"
|
|
2805
2803
|
}
|
|
2806
2804
|
},
|
|
2807
2805
|
"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;
|
|
@@ -1016,7 +1015,6 @@ export type PointParamsSendEmail = {
|
|
|
1016
1015
|
sendRate: SendRate;
|
|
1017
1016
|
emailType: string;
|
|
1018
1017
|
emailCategory: string;
|
|
1019
|
-
messageType: MessageType;
|
|
1020
1018
|
};
|
|
1021
1019
|
export type From = {
|
|
1022
1020
|
name: string;
|
package/pushwoosh_cj_journey.js
CHANGED