@pushwoosh/rpc-gateway-journey-data 0.27.81 → 0.27.83
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 +11 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +2 -0
package/data.js
CHANGED
|
@@ -1695,10 +1695,21 @@ export const data = {
|
|
|
1695
1695
|
"activatedAtTo": {
|
|
1696
1696
|
"type": "Date",
|
|
1697
1697
|
"optional": true
|
|
1698
|
+
},
|
|
1699
|
+
"view": {
|
|
1700
|
+
"type": "pushwoosh.cj.journey.JourneyListView"
|
|
1698
1701
|
}
|
|
1699
1702
|
},
|
|
1700
1703
|
"oneofs": {}
|
|
1701
1704
|
},
|
|
1705
|
+
"pushwoosh.cj.journey.JourneyListView": {
|
|
1706
|
+
"type": "E",
|
|
1707
|
+
"values": [
|
|
1708
|
+
"VIEW_UNSPECIFIED",
|
|
1709
|
+
"VIEW_COMPACT",
|
|
1710
|
+
"VIEW_FULL"
|
|
1711
|
+
]
|
|
1712
|
+
},
|
|
1702
1713
|
"pushwoosh.cj.journey.GetJourneysListResponse": {
|
|
1703
1714
|
"type": "I",
|
|
1704
1715
|
"fields": {
|
package/package.json
CHANGED
|
@@ -598,7 +598,9 @@ export type GetJourneysListRequest = {
|
|
|
598
598
|
sortOrder?: string;
|
|
599
599
|
activatedAtFrom?: Date;
|
|
600
600
|
activatedAtTo?: Date;
|
|
601
|
+
view?: JourneyListView;
|
|
601
602
|
};
|
|
603
|
+
export type JourneyListView = 'VIEW_UNSPECIFIED' | 'VIEW_COMPACT' | 'VIEW_FULL';
|
|
602
604
|
export type GetJourneysListResponse = {
|
|
603
605
|
journeys: Info[];
|
|
604
606
|
total: number;
|