@pushwoosh/rpc-gateway-journey-data 0.27.76 → 0.27.77

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
@@ -829,6 +829,9 @@ export const data = {
829
829
  },
830
830
  "smartContent": {
831
831
  "type": "pushwoosh.cj.journey.PointStatSmartContent"
832
+ },
833
+ "issueWalletPass": {
834
+ "type": "pushwoosh.cj.journey.PointStatIssueWalletPass"
832
835
  }
833
836
  },
834
837
  "oneofs": {
@@ -851,7 +854,8 @@ export const data = {
851
854
  "sendTelegram",
852
855
  "audienceSync",
853
856
  "sendViber",
854
- "smartContent"
857
+ "smartContent",
858
+ "issueWalletPass"
855
859
  ]
856
860
  }
857
861
  }
@@ -1227,6 +1231,17 @@ export const data = {
1227
1231
  }
1228
1232
  }
1229
1233
  },
1234
+ "pushwoosh.cj.journey.PointStatIssueWalletPass": {
1235
+ "type": "I",
1236
+ "fields": {
1237
+ "issued": {
1238
+ "type": "number"
1239
+ },
1240
+ "skipped": {
1241
+ "type": "number"
1242
+ }
1243
+ }
1244
+ },
1230
1245
  "pushwoosh.cj.journey.PointStatMessageBus": {
1231
1246
  "type": "I",
1232
1247
  "fields": {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.27.76",
3
+ "version": "0.27.77",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -273,7 +273,11 @@ export type PointStat_pointStat_smartContent = {
273
273
  type: 'smartContent';
274
274
  data: PointStatSmartContent;
275
275
  };
276
- 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 | PointStat_pointStat_sendTelegram | PointStat_pointStat_audienceSync | PointStat_pointStat_sendViber | PointStat_pointStat_smartContent;
276
+ export type PointStat_pointStat_issueWalletPass = {
277
+ type: 'issueWalletPass';
278
+ data: PointStatIssueWalletPass;
279
+ };
280
+ 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 | PointStat_pointStat_sendTelegram | PointStat_pointStat_audienceSync | PointStat_pointStat_sendViber | PointStat_pointStat_smartContent | PointStat_pointStat_issueWalletPass;
277
281
  export type PointStat = {
278
282
  pointStat: PointStat_pointStat;
279
283
  };
@@ -403,6 +407,10 @@ export type PointStatAudienceSync = {
403
407
  synced: number;
404
408
  skipped: number;
405
409
  };
410
+ export type PointStatIssueWalletPass = {
411
+ issued: number;
412
+ skipped: number;
413
+ };
406
414
  export type PointStatMessageBus = {};
407
415
  export type PointStatGoalEvent = {};
408
416
  export type PointStatTerminator = {};