sm-types 1.11.16 → 1.11.18
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.
|
@@ -43,6 +43,7 @@ export interface IListFlightJourneyOptionsResDto {
|
|
|
43
43
|
journeys: EnrichedJourneyOptions[];
|
|
44
44
|
is_international: boolean;
|
|
45
45
|
supplier: string;
|
|
46
|
+
travel_token: string;
|
|
46
47
|
change_type: ChangeFlightType;
|
|
47
48
|
session_info: SessionInfo;
|
|
48
49
|
}
|
|
@@ -218,6 +219,8 @@ export type JourneySummary = {
|
|
|
218
219
|
new_journey?: FlightJourneyForSummary;
|
|
219
220
|
};
|
|
220
221
|
export interface IGetFlightChangeSummaryResDto {
|
|
222
|
+
travel_token: string;
|
|
223
|
+
billing_profile_token: string;
|
|
221
224
|
outbound: JourneySummary;
|
|
222
225
|
inbound?: JourneySummary;
|
|
223
226
|
automatic_recalculation: boolean;
|
|
@@ -181,6 +181,13 @@ export declare const APP_ERROR_CODES: {
|
|
|
181
181
|
'PT-BR': string;
|
|
182
182
|
};
|
|
183
183
|
};
|
|
184
|
+
INCOMPLETE_RESULT: {
|
|
185
|
+
usecase: string;
|
|
186
|
+
type: string;
|
|
187
|
+
messageLangMap: {
|
|
188
|
+
'PT-BR': string;
|
|
189
|
+
};
|
|
190
|
+
};
|
|
184
191
|
};
|
|
185
192
|
RECALCULATE_FLIGHT_CHANGES: {
|
|
186
193
|
USER_NOT_FOUND: {
|
|
@@ -23,4 +23,11 @@ exports.LIST_FLIGHT_JOURNEY_OPTIONS = {
|
|
|
23
23
|
'PT-BR': 'As informações dos passos anteriores não foram preenchidas ou salvas.',
|
|
24
24
|
},
|
|
25
25
|
},
|
|
26
|
+
INCOMPLETE_RESULT: {
|
|
27
|
+
usecase: 'LIST_FLIGHT_JOURNEY_OPTIONS',
|
|
28
|
+
type: 'INCOMPLETE_RESULT',
|
|
29
|
+
messageLangMap: {
|
|
30
|
+
'PT-BR': 'Não foi possível obter o resultado completo da busca. Por favor, tente realizar a busca novamente.',
|
|
31
|
+
},
|
|
32
|
+
},
|
|
26
33
|
};
|