@pushwoosh/rpc-gateway-journey-data 0.26.325 → 0.26.326
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 +4 -2
- package/index.js +0 -1
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +3 -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",
|
|
@@ -799,7 +798,7 @@ export const data = {
|
|
|
799
798
|
"type": "number"
|
|
800
799
|
},
|
|
801
800
|
"avrCTR": {
|
|
802
|
-
"type": "
|
|
801
|
+
"type": "google.protobuf.DoubleValue"
|
|
803
802
|
}
|
|
804
803
|
}
|
|
805
804
|
},
|
|
@@ -4204,6 +4203,9 @@ export const data = {
|
|
|
4204
4203
|
},
|
|
4205
4204
|
"count": {
|
|
4206
4205
|
"type": "number"
|
|
4206
|
+
},
|
|
4207
|
+
"userDrop": {
|
|
4208
|
+
"type": "boolean"
|
|
4207
4209
|
}
|
|
4208
4210
|
}
|
|
4209
4211
|
},
|
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>;
|
|
@@ -269,7 +270,7 @@ export type JourneyStatsPayloadGet = {
|
|
|
269
270
|
export type JourneySummaryStats = {
|
|
270
271
|
in: number;
|
|
271
272
|
goals: number;
|
|
272
|
-
avrCTR:
|
|
273
|
+
avrCTR: google_protobuf_DoubleValue;
|
|
273
274
|
};
|
|
274
275
|
export type RenameRequest = {
|
|
275
276
|
uuid?: string;
|
|
@@ -1537,6 +1538,7 @@ export type GetJourneyDeliveryReportResponse_DeliveryError = {
|
|
|
1537
1538
|
name: string;
|
|
1538
1539
|
description: string;
|
|
1539
1540
|
count: number;
|
|
1541
|
+
userDrop: boolean;
|
|
1540
1542
|
};
|
|
1541
1543
|
export type GetJourneyDeliveryReportResponse = {
|
|
1542
1544
|
push: GetJourneyDeliveryReportResponse_DeliveryError[];
|
package/pushwoosh_cj_journey.js
CHANGED