@pushwoosh/rpc-gateway-journey-data 0.26.243 → 0.26.245

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
@@ -1642,6 +1642,14 @@ export const data = {
1642
1642
  }
1643
1643
  }
1644
1644
  },
1645
+ "pushwoosh.cj.journey.UserIDTrackChangePolicy": {
1646
+ "type": "E",
1647
+ "values": [
1648
+ "DEFAULT",
1649
+ "TRACK",
1650
+ "DROP"
1651
+ ]
1652
+ },
1645
1653
  "pushwoosh.cj.journey.JourneyParams": {
1646
1654
  "type": "I",
1647
1655
  "fields": {
@@ -1656,6 +1664,9 @@ export const data = {
1656
1664
  },
1657
1665
  "conversionWindow": {
1658
1666
  "type": "pushwoosh.cj.journey.JourneyParamsConversionWindow"
1667
+ },
1668
+ "userIdTrackChangePolicy": {
1669
+ "type": "pushwoosh.cj.journey.UserIDTrackChangePolicy"
1659
1670
  }
1660
1671
  }
1661
1672
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.243",
3
+ "version": "0.26.245",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -662,11 +662,13 @@ export type JourneyParamsEntryCapping = {
662
662
  export type JourneyParamsConversionWindow = {
663
663
  seconds: number;
664
664
  };
665
+ export type UserIDTrackChangePolicy = 'DEFAULT' | 'TRACK' | 'DROP';
665
666
  export type JourneyParams = {
666
667
  silentHours: JourneyParamsSilentHours;
667
668
  capping: JourneyParamsEntryCapping;
668
669
  applicationCode: string;
669
670
  conversionWindow: JourneyParamsConversionWindow;
671
+ userIdTrackChangePolicy: UserIDTrackChangePolicy;
670
672
  };
671
673
  export type JourneyComment = {
672
674
  id: string;