@pushwoosh/rpc-gateway-journey-data 0.26.215 → 0.26.216

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
@@ -879,6 +879,19 @@ export const data = {
879
879
  }
880
880
  }
881
881
  },
882
+ "pushwoosh.cj.journey.JourneyChangelogRecords": {
883
+ "type": "I",
884
+ "fields": {
885
+ "changes": {
886
+ "type": "pushwoosh.cj.journey.Change",
887
+ "array": true
888
+ },
889
+ "goals": {
890
+ "type": "pushwoosh.cj.journey.PointsChangelog",
891
+ "mapKeyType": "string"
892
+ }
893
+ }
894
+ },
882
895
  "pushwoosh.cj.journey.ChangelogRecords": {
883
896
  "type": "I",
884
897
  "fields": {
@@ -907,7 +920,7 @@ export const data = {
907
920
  "type": "I",
908
921
  "fields": {
909
922
  "journey": {
910
- "type": "pushwoosh.cj.journey.ChangelogRecords"
923
+ "type": "pushwoosh.cj.journey.JourneyChangelogRecords"
911
924
  },
912
925
  "points": {
913
926
  "type": "pushwoosh.cj.journey.PointsChangelog",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/rpc-gateway-journey-data",
3
- "version": "0.26.215",
3
+ "version": "0.26.216",
4
4
  "description": "CJ api gateway HTTP API Types and Data",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -351,6 +351,10 @@ export type FloatArray = {
351
351
  export type StringMap = {
352
352
  values: Record<string, string>;
353
353
  };
354
+ export type JourneyChangelogRecords = {
355
+ changes: Change[];
356
+ goals: Record<string, PointsChangelog>;
357
+ };
354
358
  export type ChangelogRecords = {
355
359
  changes: Change[];
356
360
  };
@@ -360,7 +364,7 @@ export type PointChangelogRecords = {
360
364
  title: string;
361
365
  };
362
366
  export type Changelog = {
363
- journey: ChangelogRecords;
367
+ journey: JourneyChangelogRecords;
364
368
  points: Record<string, PointsChangelog>;
365
369
  comments: Record<string, CommentsChangelog>;
366
370
  };