@pushwoosh/rpc-gateway-journey-data 0.27.83 → 0.27.84
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 +15 -0
- package/package.json +1 -1
- package/pushwoosh_cj_journey.d.ts +3 -0
package/data.js
CHANGED
|
@@ -1743,9 +1743,21 @@ export const data = {
|
|
|
1743
1743
|
"comments": {
|
|
1744
1744
|
"type": "pushwoosh.cj.journey.JourneyComment",
|
|
1745
1745
|
"array": true
|
|
1746
|
+
},
|
|
1747
|
+
"saveResult": {
|
|
1748
|
+
"type": "pushwoosh.cj.journey.SaveResult"
|
|
1746
1749
|
}
|
|
1747
1750
|
}
|
|
1748
1751
|
},
|
|
1752
|
+
"pushwoosh.cj.journey.SaveResult": {
|
|
1753
|
+
"type": "E",
|
|
1754
|
+
"values": [
|
|
1755
|
+
"SAVE_RESULT_UNSPECIFIED",
|
|
1756
|
+
"SAVE_RESULT_SAVED",
|
|
1757
|
+
"SAVE_RESULT_NOTHING_TO_SAVE",
|
|
1758
|
+
"SAVE_RESULT_REFUSED_SU"
|
|
1759
|
+
]
|
|
1760
|
+
},
|
|
1749
1761
|
"pushwoosh.cj.journey.GetJourneyByUUIDResponseWithErrors": {
|
|
1750
1762
|
"type": "I",
|
|
1751
1763
|
"fields": {
|
|
@@ -1850,6 +1862,9 @@ export const data = {
|
|
|
1850
1862
|
"comments": {
|
|
1851
1863
|
"type": "pushwoosh.cj.journey.JourneyComment",
|
|
1852
1864
|
"array": true
|
|
1865
|
+
},
|
|
1866
|
+
"saveResult": {
|
|
1867
|
+
"type": "pushwoosh.cj.journey.SaveResult"
|
|
1853
1868
|
}
|
|
1854
1869
|
}
|
|
1855
1870
|
},
|
package/package.json
CHANGED
|
@@ -612,7 +612,9 @@ export type GetJourneyByUUIDResponse = {
|
|
|
612
612
|
info: Info;
|
|
613
613
|
points: Point[];
|
|
614
614
|
comments: JourneyComment[];
|
|
615
|
+
saveResult: SaveResult;
|
|
615
616
|
};
|
|
617
|
+
export type SaveResult = 'SAVE_RESULT_UNSPECIFIED' | 'SAVE_RESULT_SAVED' | 'SAVE_RESULT_NOTHING_TO_SAVE' | 'SAVE_RESULT_REFUSED_SU';
|
|
616
618
|
export type GetJourneyByUUIDResponseWithErrors = {
|
|
617
619
|
response: GetJourneyByUUIDResponse;
|
|
618
620
|
validation: ValidateJourneyResponse;
|
|
@@ -646,6 +648,7 @@ export type UpdateJourneyResponse = {
|
|
|
646
648
|
info: Info;
|
|
647
649
|
points: Point[];
|
|
648
650
|
comments: JourneyComment[];
|
|
651
|
+
saveResult: SaveResult;
|
|
649
652
|
};
|
|
650
653
|
export type CreateJourneyResponse = {
|
|
651
654
|
info: Info;
|