@pushwoosh/rpc-gateway-journey-data 0.27.39 → 0.27.41

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
@@ -3406,7 +3406,8 @@ export const data = {
3406
3406
  "DATE_FILTER_MODE_UNKNOWN",
3407
3407
  "DATE_FILTER_MODE_DAYS_AGO",
3408
3408
  "DATE_FILTER_MODE_HOURS_AGO",
3409
- "DATE_FILTER_MODE_MINUTES_AGO"
3409
+ "DATE_FILTER_MODE_MINUTES_AGO",
3410
+ "DATE_FILTER_MODE_DAYS_AHEAD"
3410
3411
  ]
3411
3412
  },
3412
3413
  "pushwoosh.cj.journey.EventConditionValueInt": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.27.39",
3
+ "version": "0.27.41",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -1251,7 +1251,7 @@ export type TagSplitterCondition = {
1251
1251
  operator: string;
1252
1252
  value: TagSplitterCondition_value;
1253
1253
  };
1254
- export type DateFilterMode = 'DATE_FILTER_MODE_UNKNOWN' | 'DATE_FILTER_MODE_DAYS_AGO' | 'DATE_FILTER_MODE_HOURS_AGO' | 'DATE_FILTER_MODE_MINUTES_AGO';
1254
+ export type DateFilterMode = 'DATE_FILTER_MODE_UNKNOWN' | 'DATE_FILTER_MODE_DAYS_AGO' | 'DATE_FILTER_MODE_HOURS_AGO' | 'DATE_FILTER_MODE_MINUTES_AGO' | 'DATE_FILTER_MODE_DAYS_AHEAD';
1255
1255
  export type EventConditionValueInt = {
1256
1256
  value: number;
1257
1257
  };