@pushwoosh/rpc-gateway-journey-data 0.26.393 → 0.26.396

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
@@ -2417,6 +2417,9 @@ export const data = {
2417
2417
  },
2418
2418
  "sendRate": {
2419
2419
  "type": "pushwoosh.cj.journey.SendRate"
2420
+ },
2421
+ "messageType": {
2422
+ "type": "pushwoosh.cj.journey.MessageType"
2420
2423
  }
2421
2424
  },
2422
2425
  "oneofs": {}
@@ -2796,6 +2799,9 @@ export const data = {
2796
2799
  },
2797
2800
  "emailCategory": {
2798
2801
  "type": "string"
2802
+ },
2803
+ "messageType": {
2804
+ "type": "pushwoosh.cj.journey.MessageType"
2799
2805
  }
2800
2806
  },
2801
2807
  "oneofs": {}
@@ -2862,6 +2868,13 @@ export const data = {
2862
2868
  "SEND"
2863
2869
  ]
2864
2870
  },
2871
+ "pushwoosh.cj.journey.MessageType": {
2872
+ "type": "E",
2873
+ "values": [
2874
+ "Marketing",
2875
+ "Transactional"
2876
+ ]
2877
+ },
2865
2878
  "pushwoosh.cj.journey.IntTagValueList": {
2866
2879
  "type": "I",
2867
2880
  "fields": {
@@ -3254,6 +3267,9 @@ export const data = {
3254
3267
  },
3255
3268
  "capping": {
3256
3269
  "type": "pushwoosh.cj.journey.Capping"
3270
+ },
3271
+ "messageType": {
3272
+ "type": "pushwoosh.cj.journey.MessageType"
3257
3273
  }
3258
3274
  },
3259
3275
  "oneofs": {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.393",
3
+ "version": "0.26.396",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -893,6 +893,7 @@ export type PointParamsSendPush = {
893
893
  inboxOptions: InboxOptions;
894
894
  vouchersParams: VoucherParams;
895
895
  sendRate: SendRate;
896
+ messageType: MessageType;
896
897
  };
897
898
  export type PointParamsSendSms = {
898
899
  presetCode: string;
@@ -1015,6 +1016,7 @@ export type PointParamsSendEmail = {
1015
1016
  sendRate: SendRate;
1016
1017
  emailType: string;
1017
1018
  emailCategory: string;
1019
+ messageType: MessageType;
1018
1020
  };
1019
1021
  export type From = {
1020
1022
  name: string;
@@ -1035,6 +1037,7 @@ export type PointParamsSendData = {
1035
1037
  vouchersParams: VoucherParams;
1036
1038
  };
1037
1039
  export type UnsubscribedPolicy = 'UNKNOWN' | 'IGNORE' | 'SEND';
1040
+ export type MessageType = 'Marketing' | 'Transactional';
1038
1041
  export type IntTagValueList = {
1039
1042
  value: number[];
1040
1043
  };
@@ -1210,6 +1213,7 @@ export type PointParamsInapp = {
1210
1213
  campaignUid?: number;
1211
1214
  expireInDays: number;
1212
1215
  capping: Capping;
1216
+ messageType: MessageType;
1213
1217
  };
1214
1218
  export type Filter = 'CUSTOM' | 'EMAIL_EXISTS' | 'PUSH_TOKEN_EXISTS' | 'SMS_TOKEN_EXISTS' | 'WHATSAPP_TOKEN_EXISTS' | 'LINE_TOKEN_EXISTS';
1215
1219
  export type PointParamsFilter = {