@pushwoosh/rpc-gateway-journey-data 0.26.297 → 0.26.299
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/data.js +28 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +2 -0
package/data.js
CHANGED
|
@@ -1429,6 +1429,31 @@ export const data = {
|
|
|
1429
1429
|
}
|
|
1430
1430
|
}
|
|
1431
1431
|
},
|
|
1432
|
+
"pushwoosh.cj.journey.PointType": {
|
|
1433
|
+
"type": "E",
|
|
1434
|
+
"values": [
|
|
1435
|
+
"POINT_TYPE_UNKNOWN",
|
|
1436
|
+
"POINT_TYPE_WAIT",
|
|
1437
|
+
"POINT_TYPE_EVENT",
|
|
1438
|
+
"POINT_TYPE_EXIT",
|
|
1439
|
+
"POINT_TYPE_SEND_PUSH",
|
|
1440
|
+
"POINT_TYPE_GOAL_EVENT",
|
|
1441
|
+
"POINT_TYPE_SEND_EMAIL",
|
|
1442
|
+
"POINT_TYPE_SEND_SMS",
|
|
1443
|
+
"POINT_TYPE_SEND_WHATSAPP",
|
|
1444
|
+
"POINT_TYPE_SEND_LINE",
|
|
1445
|
+
"POINT_TYPE_SEND_DATA",
|
|
1446
|
+
"POINT_TYPE_BOOLEAN_SPLITTER",
|
|
1447
|
+
"POINT_TYPE_FILTER",
|
|
1448
|
+
"POINT_TYPE_WAIT_EVENT",
|
|
1449
|
+
"POINT_TYPE_INAPP",
|
|
1450
|
+
"POINT_TYPE_START_BY_SEGMENT",
|
|
1451
|
+
"POINT_TYPE_AB_SPLITTER",
|
|
1452
|
+
"POINT_TYPE_SET_TAGS",
|
|
1453
|
+
"POINT_TYPE_WEBHOOK",
|
|
1454
|
+
"POINT_TYPE_START_BY_API"
|
|
1455
|
+
]
|
|
1456
|
+
},
|
|
1432
1457
|
"pushwoosh.cj.journey.Point": {
|
|
1433
1458
|
"type": "I",
|
|
1434
1459
|
"fields": {
|
|
@@ -1450,6 +1475,9 @@ export const data = {
|
|
|
1450
1475
|
},
|
|
1451
1476
|
"pointData": {
|
|
1452
1477
|
"type": "pushwoosh.cj.journey.PointDataWrapper"
|
|
1478
|
+
},
|
|
1479
|
+
"pointType": {
|
|
1480
|
+
"type": "pushwoosh.cj.journey.PointType"
|
|
1453
1481
|
}
|
|
1454
1482
|
}
|
|
1455
1483
|
},
|
package/package.json
CHANGED
|
@@ -544,6 +544,7 @@ export type User = {
|
|
|
544
544
|
email: string;
|
|
545
545
|
username: string;
|
|
546
546
|
};
|
|
547
|
+
export type PointType = 'POINT_TYPE_UNKNOWN' | 'POINT_TYPE_WAIT' | 'POINT_TYPE_EVENT' | 'POINT_TYPE_EXIT' | 'POINT_TYPE_SEND_PUSH' | 'POINT_TYPE_GOAL_EVENT' | 'POINT_TYPE_SEND_EMAIL' | 'POINT_TYPE_SEND_SMS' | 'POINT_TYPE_SEND_WHATSAPP' | 'POINT_TYPE_SEND_LINE' | 'POINT_TYPE_SEND_DATA' | 'POINT_TYPE_BOOLEAN_SPLITTER' | 'POINT_TYPE_FILTER' | 'POINT_TYPE_WAIT_EVENT' | 'POINT_TYPE_INAPP' | 'POINT_TYPE_START_BY_SEGMENT' | 'POINT_TYPE_AB_SPLITTER' | 'POINT_TYPE_SET_TAGS' | 'POINT_TYPE_WEBHOOK' | 'POINT_TYPE_START_BY_API';
|
|
547
548
|
export type Point = {
|
|
548
549
|
uuid: string;
|
|
549
550
|
title: string;
|
|
@@ -551,6 +552,7 @@ export type Point = {
|
|
|
551
552
|
outputs: PointOutput[];
|
|
552
553
|
position: Position;
|
|
553
554
|
pointData: PointDataWrapper;
|
|
555
|
+
pointType: PointType;
|
|
554
556
|
};
|
|
555
557
|
export type PointDataWrapper_data_messageBus = {
|
|
556
558
|
type: 'messageBus';
|