@pushwoosh/rpc-gateway-journey-data 0.26.357 → 0.26.359

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 CHANGED
@@ -2404,6 +2404,63 @@ export const data = {
2404
2404
  },
2405
2405
  "default": {
2406
2406
  "type": "string"
2407
+ },
2408
+ "actions": {
2409
+ "type": "pushwoosh.cj.journey.Actions",
2410
+ "optional": true
2411
+ }
2412
+ },
2413
+ "oneofs": {}
2414
+ },
2415
+ "pushwoosh.cj.journey.Actions": {
2416
+ "type": "I",
2417
+ "fields": {
2418
+ "actions": {
2419
+ "type": "pushwoosh.cj.journey.ActionType",
2420
+ "array": true
2421
+ }
2422
+ }
2423
+ },
2424
+ "pushwoosh.cj.journey.ActionType": {
2425
+ "type": "I",
2426
+ "fields": {
2427
+ "type": {
2428
+ "type": "string"
2429
+ },
2430
+ "action": {
2431
+ "type": "pushwoosh.cj.journey.Action"
2432
+ }
2433
+ }
2434
+ },
2435
+ "pushwoosh.cj.journey.Action": {
2436
+ "type": "I",
2437
+ "fields": {
2438
+ "thumbnailProductRetailerId": {
2439
+ "type": "string"
2440
+ },
2441
+ "sections": {
2442
+ "type": "pushwoosh.cj.journey.Section",
2443
+ "array": true
2444
+ }
2445
+ }
2446
+ },
2447
+ "pushwoosh.cj.journey.Section": {
2448
+ "type": "I",
2449
+ "fields": {
2450
+ "title": {
2451
+ "type": "string"
2452
+ },
2453
+ "productItems": {
2454
+ "type": "pushwoosh.cj.journey.ProductListItem",
2455
+ "array": true
2456
+ }
2457
+ }
2458
+ },
2459
+ "pushwoosh.cj.journey.ProductListItem": {
2460
+ "type": "I",
2461
+ "fields": {
2462
+ "productRetailerId": {
2463
+ "type": "string"
2407
2464
  }
2408
2465
  }
2409
2466
  },
@@ -2915,9 +2972,6 @@ export const data = {
2915
2972
  },
2916
2973
  "multiEntry": {
2917
2974
  "type": "pushwoosh.cj.journey.MultiEntry"
2918
- },
2919
- "isTravelerPresenceExtendable": {
2920
- "type": "boolean"
2921
2975
  }
2922
2976
  }
2923
2977
  },
@@ -3197,9 +3251,6 @@ export const data = {
3197
3251
  },
3198
3252
  "exactWeekDaysTime": {
3199
3253
  "type": "pushwoosh.cj.journey.ExactWeekDaysTime"
3200
- },
3201
- "isTravelerPresenceExtendable": {
3202
- "type": "boolean"
3203
3254
  }
3204
3255
  },
3205
3256
  "oneofs": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.357",
3
+ "version": "0.26.359",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -889,6 +889,25 @@ export type WhatsAppPlaceholder = {
889
889
  type: string;
890
890
  value: string;
891
891
  default: string;
892
+ actions?: Actions;
893
+ };
894
+ export type Actions = {
895
+ actions: ActionType[];
896
+ };
897
+ export type ActionType = {
898
+ type: string;
899
+ action: Action;
900
+ };
901
+ export type Action = {
902
+ thumbnailProductRetailerId: string;
903
+ sections: Section[];
904
+ };
905
+ export type Section = {
906
+ title: string;
907
+ productItems: ProductListItem[];
908
+ };
909
+ export type ProductListItem = {
910
+ productRetailerId: string;
892
911
  };
893
912
  export type PointParamsSendWhatsApp = {
894
913
  presetCode: string;
@@ -1101,7 +1120,6 @@ export type PointParamsWaitEvent = {
1101
1120
  events: PointWaitEventInfo[];
1102
1121
  conditionsScript: string;
1103
1122
  multiEntry: MultiEntry;
1104
- isTravelerPresenceExtendable: boolean;
1105
1123
  };
1106
1124
  export type PointWaitEventInfo = {
1107
1125
  eventName: string;
@@ -1206,7 +1224,6 @@ export type PointParamsDelay_interval_exactWeekDaysTime = {
1206
1224
  };
1207
1225
  export type PointParamsDelay_interval = PointParamsDelay_interval_sec | PointParamsDelay_interval_exactTime | PointParamsDelay_interval_dynamicTime | PointParamsDelay_interval_exactDateTime | PointParamsDelay_interval_exactWeekDaysTime;
1208
1226
  export type PointParamsDelay = {
1209
- isTravelerPresenceExtendable: boolean;
1210
1227
  interval: PointParamsDelay_interval;
1211
1228
  };
1212
1229
  export type PointOutput = {