@pushwoosh/rpc-gateway-journey-data 0.26.370 → 0.26.371

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
@@ -1165,6 +1165,14 @@ export const data = {
1165
1165
  "sortOrder": {
1166
1166
  "type": "string",
1167
1167
  "optional": true
1168
+ },
1169
+ "activatedAtFrom": {
1170
+ "type": "Date",
1171
+ "optional": true
1172
+ },
1173
+ "activatedAtTo": {
1174
+ "type": "Date",
1175
+ "optional": true
1168
1176
  }
1169
1177
  },
1170
1178
  "oneofs": {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.370",
3
+ "version": "0.26.371",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -428,6 +428,8 @@ export type GetJourneysListRequest = {
428
428
  campaignTypes?: CampaignType[];
429
429
  uuidList?: string[];
430
430
  sortOrder?: string;
431
+ activatedAtFrom?: Date;
432
+ activatedAtTo?: Date;
431
433
  };
432
434
  export type GetJourneysListResponse = {
433
435
  journeys: Info[];