@pushwoosh/rpc-gateway-journey-data 0.26.382 → 0.26.383
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 +23 -3
- package/index.js +0 -1
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +13 -2
- 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",
|
|
@@ -562,6 +561,9 @@ export const data = {
|
|
|
562
561
|
},
|
|
563
562
|
"sendLine": {
|
|
564
563
|
"type": "pushwoosh.cj.journey.PointStatSendLine"
|
|
564
|
+
},
|
|
565
|
+
"sendKakao": {
|
|
566
|
+
"type": "pushwoosh.cj.journey.PointStatSendKakao"
|
|
565
567
|
}
|
|
566
568
|
},
|
|
567
569
|
"oneofs": {
|
|
@@ -579,7 +581,8 @@ export const data = {
|
|
|
579
581
|
"delay",
|
|
580
582
|
"booleanSplitter",
|
|
581
583
|
"waitEvent",
|
|
582
|
-
"sendLine"
|
|
584
|
+
"sendLine",
|
|
585
|
+
"sendKakao"
|
|
583
586
|
]
|
|
584
587
|
}
|
|
585
588
|
}
|
|
@@ -670,6 +673,23 @@ export const data = {
|
|
|
670
673
|
}
|
|
671
674
|
}
|
|
672
675
|
},
|
|
676
|
+
"pushwoosh.cj.journey.PointStatSendKakao": {
|
|
677
|
+
"type": "I",
|
|
678
|
+
"fields": {
|
|
679
|
+
"sent": {
|
|
680
|
+
"type": "number"
|
|
681
|
+
},
|
|
682
|
+
"delivered": {
|
|
683
|
+
"type": "number"
|
|
684
|
+
},
|
|
685
|
+
"errors": {
|
|
686
|
+
"type": "number"
|
|
687
|
+
},
|
|
688
|
+
"recipients": {
|
|
689
|
+
"type": "number"
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
},
|
|
673
693
|
"pushwoosh.cj.journey.PointStatSendWhatsApp": {
|
|
674
694
|
"type": "I",
|
|
675
695
|
"fields": {
|
|
@@ -811,7 +831,7 @@ export const data = {
|
|
|
811
831
|
"type": "number"
|
|
812
832
|
},
|
|
813
833
|
"avrCTR": {
|
|
814
|
-
"type": "
|
|
834
|
+
"type": "google.protobuf.DoubleValue"
|
|
815
835
|
}
|
|
816
836
|
}
|
|
817
837
|
},
|
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>;
|
|
@@ -191,7 +192,11 @@ export type PointStat_pointStat_sendLine = {
|
|
|
191
192
|
type: 'sendLine';
|
|
192
193
|
data: PointStatSendLine;
|
|
193
194
|
};
|
|
194
|
-
export type
|
|
195
|
+
export type PointStat_pointStat_sendKakao = {
|
|
196
|
+
type: 'sendKakao';
|
|
197
|
+
data: PointStatSendKakao;
|
|
198
|
+
};
|
|
199
|
+
export type PointStat_pointStat = PointStat_pointStat_sendPush | PointStat_pointStat_inApp | PointStat_pointStat_sendSms | PointStat_pointStat_sendWhatsapp | PointStat_pointStat_sendData | PointStat_pointStat_sendEmail | PointStat_pointStat_messageBus | PointStat_pointStat_goalEvent | PointStat_pointStat_terminator | PointStat_pointStat_delay | PointStat_pointStat_booleanSplitter | PointStat_pointStat_waitEvent | PointStat_pointStat_sendLine | PointStat_pointStat_sendKakao;
|
|
195
200
|
export type PointStat = {
|
|
196
201
|
pointStat: PointStat_pointStat;
|
|
197
202
|
};
|
|
@@ -225,6 +230,12 @@ export type PointStatSendLine = {
|
|
|
225
230
|
errors: number;
|
|
226
231
|
recipients: number;
|
|
227
232
|
};
|
|
233
|
+
export type PointStatSendKakao = {
|
|
234
|
+
sent: number;
|
|
235
|
+
delivered: number;
|
|
236
|
+
errors: number;
|
|
237
|
+
recipients: number;
|
|
238
|
+
};
|
|
228
239
|
export type PointStatSendWhatsApp = {
|
|
229
240
|
sent: number;
|
|
230
241
|
totalOpened: number;
|
|
@@ -271,7 +282,7 @@ export type JourneyStatsPayloadGet = {
|
|
|
271
282
|
export type JourneySummaryStats = {
|
|
272
283
|
in: number;
|
|
273
284
|
goals: number;
|
|
274
|
-
avrCTR:
|
|
285
|
+
avrCTR: google_protobuf_DoubleValue;
|
|
275
286
|
};
|
|
276
287
|
export type RenameRequest = {
|
|
277
288
|
uuid?: string;
|
package/pushwoosh_cj_journey.js
CHANGED