@pushwoosh/rpc-gateway-journey-data 0.26.250 → 0.26.251

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
@@ -2893,10 +2893,12 @@ export const data = {
2893
2893
  "type": "boolean"
2894
2894
  },
2895
2895
  "expireAtDate": {
2896
- "type": "Date"
2896
+ "type": "Date",
2897
+ "optional": true
2897
2898
  },
2898
2899
  "expireInDays": {
2899
- "type": "number"
2900
+ "type": "number",
2901
+ "optional": true
2900
2902
  },
2901
2903
  "imgUrl": {
2902
2904
  "type": "string"
@@ -2904,7 +2906,8 @@ export const data = {
2904
2906
  "richMediaCode": {
2905
2907
  "type": "string"
2906
2908
  }
2907
- }
2909
+ },
2910
+ "oneofs": {}
2908
2911
  },
2909
2912
  "pushwoosh.cj.journey.GetJourneyStatsByPointsExternalRequest": {
2910
2913
  "type": "I",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.250",
3
+ "version": "0.26.251",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -1132,8 +1132,8 @@ export type Capping = {
1132
1132
  };
1133
1133
  export type InboxOptions = {
1134
1134
  enabled: boolean;
1135
- expireAtDate: Date;
1136
- expireInDays: number;
1135
+ expireAtDate?: Date;
1136
+ expireInDays?: number;
1137
1137
  imgUrl: string;
1138
1138
  richMediaCode: string;
1139
1139
  };