sm-types 1.11.9 → 1.11.11

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.
@@ -17,7 +17,13 @@ export type JourneyRequestDto = {
17
17
  date: string;
18
18
  cabin_class: CabinClass;
19
19
  };
20
- export interface IListFlightJourneyOptionsReqDto {
20
+ export declare enum ChangeFlightType {
21
+ ONE_WAY = "ONE_WAY",
22
+ ROUND_TRIP = "ROUND_TRIP",
23
+ RETURN = "RETURN"
24
+ }
25
+ export interface ICreateFlightChangeSessionReqDto {
26
+ changeType: ChangeFlightType;
21
27
  journeys_to_change: JourneyRequestDto[];
22
28
  }
23
29
  export type selected_changes = {
@@ -1,4 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ChangeFlightType = void 0;
4
+ var ChangeFlightType;
5
+ (function (ChangeFlightType) {
6
+ ChangeFlightType["ONE_WAY"] = "ONE_WAY";
7
+ ChangeFlightType["ROUND_TRIP"] = "ROUND_TRIP";
8
+ ChangeFlightType["RETURN"] = "RETURN";
9
+ })(ChangeFlightType = exports.ChangeFlightType || (exports.ChangeFlightType = {}));
3
10
  ;
4
11
  ;
@@ -1,5 +1,6 @@
1
1
  import { CabinClass, Nullable } from "../../common";
2
2
  import { IJourneyIdentificator, IListOffersResDto, IPriceDetails, ISmWcfBound, ISmWcfFamilyOffer, ISmWcfOffer } from "../../sm-airlines";
3
+ import { ChangeFlightType } from "./requests";
3
4
  export type EnrichedGeneralData = IListOffersResDto['generalData'] & {
4
5
  searchResultCount: number;
5
6
  };
@@ -15,7 +16,7 @@ export type JourneyOption = {
15
16
  stopType: string;
16
17
  cabinClass: string;
17
18
  diffAirports: boolean;
18
- familyOffers?: ISmWcfFamilyOffer[];
19
+ familyOffers: ISmWcfFamilyOffer[];
19
20
  selectedItineraryId?: number;
20
21
  supplierSearchId?: string;
21
22
  };
@@ -37,6 +38,7 @@ export type EnrichedJourneyOptions = {
37
38
  export interface IListFlightJourneyOptionsResDto {
38
39
  journeys: EnrichedJourneyOptions[];
39
40
  supplier: string;
41
+ changeType: ChangeFlightType;
40
42
  session_info: {
41
43
  id: string;
42
44
  valid_until: Date;
@@ -69,7 +71,7 @@ export type FlightChangeInfoJson = {
69
71
  supplier: string;
70
72
  newJourneys: ISmWcfOffer[];
71
73
  searchInfo: {
72
- joureysToChange: {
74
+ journeysToChange: {
73
75
  date: string;
74
76
  origin: {
75
77
  name: string;
@@ -145,4 +147,10 @@ export interface IRequestFlightChangeResDto {
145
147
  created_at: Date;
146
148
  updated_at: Date;
147
149
  }
150
+ export interface ICreateFlightChangeSessionResDto {
151
+ session_info: {
152
+ id: string;
153
+ valid_until: Date;
154
+ };
155
+ }
148
156
  export {};
@@ -1,127 +1,143 @@
1
1
  export declare const APP_ERROR_CODES: {
2
- ORDER_TRAVEL: {
3
- INVALID_CARD: {
2
+ CREATE_FLIGHT_CHANGE_SESSION: {
3
+ USER_NOT_FOUND: {
4
4
  usecase: string;
5
5
  type: string;
6
6
  messageLangMap: {
7
- "PT-BR": string;
7
+ 'PT-BR': string;
8
8
  };
9
9
  };
10
- INVALID_PAYMENT_METHODS: {
10
+ CLIENT_NOT_FOUND: {
11
11
  usecase: string;
12
12
  type: string;
13
13
  messageLangMap: {
14
- "PT-BR": string;
14
+ 'PT-BR': string;
15
15
  };
16
16
  };
17
- INVALID_TRAVEL_ITINERARY: {
17
+ TRAVEL_NOT_FOUND: {
18
18
  usecase: string;
19
19
  type: string;
20
20
  messageLangMap: {
21
- "PT-BR": string;
21
+ 'PT-BR': string;
22
22
  };
23
23
  };
24
- NOT_CONFIGURED_SUPPLIERS: {
24
+ OFFER_NOT_FOUND: {
25
25
  usecase: string;
26
26
  type: string;
27
27
  messageLangMap: {
28
- "PT-BR": string;
28
+ 'PT-BR': string;
29
29
  };
30
30
  };
31
- PENDING_DOCUMENTS: {
31
+ USER_NOT_BELONG_TO_CLIENT: {
32
32
  usecase: string;
33
33
  type: string;
34
34
  messageLangMap: {
35
- "PT-BR": string;
35
+ 'PT-BR': string;
36
36
  };
37
37
  };
38
- PLANE_LIMIT_EXCEEDED: {
38
+ CABIN_CLASS_NOT_ALLOWED: {
39
39
  usecase: string;
40
40
  type: string;
41
41
  messageLangMap: {
42
- "PT-BR": string;
42
+ 'PT-BR': string;
43
43
  };
44
44
  };
45
- UNPROCESSABLE_OFFER: {
45
+ OFFER_IS_NOT_FLIGHT: {
46
46
  usecase: string;
47
47
  type: string;
48
48
  messageLangMap: {
49
- "PT-BR": string;
49
+ 'PT-BR': string;
50
50
  };
51
51
  };
52
- };
53
- LIST_FLIGHT_JOURNEY_OPTIONS: {
54
- USER_NOT_FOUND: {
52
+ SUPPLIER_NOT_INTEGRATED: {
55
53
  usecase: string;
56
54
  type: string;
57
55
  messageLangMap: {
58
56
  'PT-BR': string;
59
57
  };
60
58
  };
61
- CLIENT_NOT_FOUND: {
59
+ SUPPLIER_CONFIG_NOT_FOUND: {
62
60
  usecase: string;
63
61
  type: string;
64
62
  messageLangMap: {
65
63
  'PT-BR': string;
66
64
  };
67
65
  };
68
- TRAVEL_NOT_FOUND: {
66
+ EXIST_OPEN_REQUESTS: {
69
67
  usecase: string;
70
68
  type: string;
71
69
  messageLangMap: {
72
70
  'PT-BR': string;
73
71
  };
74
72
  };
75
- OFFER_NOT_FOUND: {
73
+ OFFER_IS_NOT_EMITTED: {
76
74
  usecase: string;
77
75
  type: string;
78
76
  messageLangMap: {
79
77
  'PT-BR': string;
80
78
  };
81
79
  };
82
- USER_NOT_BELONG_TO_CLIENT: {
80
+ };
81
+ ORDER_TRAVEL: {
82
+ INVALID_CARD: {
83
83
  usecase: string;
84
84
  type: string;
85
85
  messageLangMap: {
86
- 'PT-BR': string;
86
+ "PT-BR": string;
87
87
  };
88
88
  };
89
- CABIN_CLASS_NOT_ALLOWED: {
89
+ INVALID_PAYMENT_METHODS: {
90
90
  usecase: string;
91
91
  type: string;
92
92
  messageLangMap: {
93
- 'PT-BR': string;
93
+ "PT-BR": string;
94
94
  };
95
95
  };
96
- OFFER_IS_NOT_FLIGHT: {
96
+ INVALID_TRAVEL_ITINERARY: {
97
97
  usecase: string;
98
98
  type: string;
99
99
  messageLangMap: {
100
- 'PT-BR': string;
100
+ "PT-BR": string;
101
101
  };
102
102
  };
103
- SUPPLIER_NOT_INTEGRATED: {
103
+ NOT_CONFIGURED_SUPPLIERS: {
104
104
  usecase: string;
105
105
  type: string;
106
106
  messageLangMap: {
107
- 'PT-BR': string;
107
+ "PT-BR": string;
108
108
  };
109
109
  };
110
- SUPPLIER_CONFIG_NOT_FOUND: {
110
+ PENDING_DOCUMENTS: {
111
111
  usecase: string;
112
112
  type: string;
113
113
  messageLangMap: {
114
- 'PT-BR': string;
114
+ "PT-BR": string;
115
115
  };
116
116
  };
117
- EXIST_OPEN_REQUESTS: {
117
+ PLANE_LIMIT_EXCEEDED: {
118
+ usecase: string;
119
+ type: string;
120
+ messageLangMap: {
121
+ "PT-BR": string;
122
+ };
123
+ };
124
+ UNPROCESSABLE_OFFER: {
125
+ usecase: string;
126
+ type: string;
127
+ messageLangMap: {
128
+ "PT-BR": string;
129
+ };
130
+ };
131
+ };
132
+ LIST_FLIGHT_JOURNEY_OPTIONS: {
133
+ USER_NOT_FOUND: {
118
134
  usecase: string;
119
135
  type: string;
120
136
  messageLangMap: {
121
137
  'PT-BR': string;
122
138
  };
123
139
  };
124
- OFFER_IS_NOT_EMITTED: {
140
+ USER_NOT_BELONG_TO_SESSION: {
125
141
  usecase: string;
126
142
  type: string;
127
143
  messageLangMap: {
@@ -295,13 +311,6 @@ export declare const APP_ERROR_CODES: {
295
311
  'PT-BR': string;
296
312
  };
297
313
  };
298
- JOURNEY_ID_NOT_FOUND: {
299
- usecase: string;
300
- type: string;
301
- messageLangMap: {
302
- 'PT-BR': string;
303
- };
304
- };
305
314
  OFFER_IS_NOT_EMITTED: {
306
315
  usecase: string;
307
316
  type: string;
@@ -7,7 +7,9 @@ var recalculateFlightChanges_1 = require("./use-cases/flightChange/recalculateFl
7
7
  var requestFlightChanges_1 = require("./use-cases/flightChange/requestFlightChanges");
8
8
  var selectFlightChangeOptions_1 = require("./use-cases/flightChange/selectFlightChangeOptions");
9
9
  var documents_1 = require("./use-cases/documents");
10
+ var createFlightChangeSession_1 = require("./use-cases/flightChange/createFlightChangeSession");
10
11
  exports.APP_ERROR_CODES = {
12
+ CREATE_FLIGHT_CHANGE_SESSION: createFlightChangeSession_1.CREATE_FLIGHT_CHANGE_SESSION,
11
13
  ORDER_TRAVEL: orderTravel_1.ORDER_TRAVEL,
12
14
  LIST_FLIGHT_JOURNEY_OPTIONS: listFlightJourneyOptions_1.LIST_FLIGHT_JOURNEY_OPTIONS,
13
15
  RECALCULATE_FLIGHT_CHANGES: recalculateFlightChanges_1.RECALCULATE_FLIGHT_CHANGES,
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.DOCUMENTS = void 0;
4
4
  exports.DOCUMENTS = {
5
5
  INVALID_DOCUMENT_CREATION: {
6
- usecase: "DOCUMENT_CREATION",
7
- type: "INVALID_DOCUMENT",
6
+ usecase: "DOCUMENTS",
7
+ type: "INVALID_DOCUMENT_CREATION",
8
8
  messageLangMap: {
9
9
  "PT-BR": "Já existe um documento desse tipo cadastrado.",
10
10
  },
@@ -0,0 +1,79 @@
1
+ export declare const CREATE_FLIGHT_CHANGE_SESSION: {
2
+ USER_NOT_FOUND: {
3
+ usecase: string;
4
+ type: string;
5
+ messageLangMap: {
6
+ 'PT-BR': string;
7
+ };
8
+ };
9
+ CLIENT_NOT_FOUND: {
10
+ usecase: string;
11
+ type: string;
12
+ messageLangMap: {
13
+ 'PT-BR': string;
14
+ };
15
+ };
16
+ TRAVEL_NOT_FOUND: {
17
+ usecase: string;
18
+ type: string;
19
+ messageLangMap: {
20
+ 'PT-BR': string;
21
+ };
22
+ };
23
+ OFFER_NOT_FOUND: {
24
+ usecase: string;
25
+ type: string;
26
+ messageLangMap: {
27
+ 'PT-BR': string;
28
+ };
29
+ };
30
+ USER_NOT_BELONG_TO_CLIENT: {
31
+ usecase: string;
32
+ type: string;
33
+ messageLangMap: {
34
+ 'PT-BR': string;
35
+ };
36
+ };
37
+ CABIN_CLASS_NOT_ALLOWED: {
38
+ usecase: string;
39
+ type: string;
40
+ messageLangMap: {
41
+ 'PT-BR': string;
42
+ };
43
+ };
44
+ OFFER_IS_NOT_FLIGHT: {
45
+ usecase: string;
46
+ type: string;
47
+ messageLangMap: {
48
+ 'PT-BR': string;
49
+ };
50
+ };
51
+ SUPPLIER_NOT_INTEGRATED: {
52
+ usecase: string;
53
+ type: string;
54
+ messageLangMap: {
55
+ 'PT-BR': string;
56
+ };
57
+ };
58
+ SUPPLIER_CONFIG_NOT_FOUND: {
59
+ usecase: string;
60
+ type: string;
61
+ messageLangMap: {
62
+ 'PT-BR': string;
63
+ };
64
+ };
65
+ EXIST_OPEN_REQUESTS: {
66
+ usecase: string;
67
+ type: string;
68
+ messageLangMap: {
69
+ 'PT-BR': string;
70
+ };
71
+ };
72
+ OFFER_IS_NOT_EMITTED: {
73
+ usecase: string;
74
+ type: string;
75
+ messageLangMap: {
76
+ 'PT-BR': string;
77
+ };
78
+ };
79
+ };
@@ -0,0 +1,82 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CREATE_FLIGHT_CHANGE_SESSION = void 0;
4
+ exports.CREATE_FLIGHT_CHANGE_SESSION = {
5
+ USER_NOT_FOUND: {
6
+ usecase: 'CREATE_FLIGHT_CHANGE_SESSION',
7
+ type: 'USER_NOT_FOUND',
8
+ messageLangMap: {
9
+ 'PT-BR': 'Usuário não encontrado.',
10
+ },
11
+ },
12
+ CLIENT_NOT_FOUND: {
13
+ usecase: 'CREATE_FLIGHT_CHANGE_SESSION',
14
+ type: 'CLIENT_NOT_FOUND',
15
+ messageLangMap: {
16
+ 'PT-BR': 'Cliente não encontrado.',
17
+ },
18
+ },
19
+ TRAVEL_NOT_FOUND: {
20
+ usecase: 'CREATE_FLIGHT_CHANGE_SESSION',
21
+ type: 'TRAVEL_NOT_FOUND',
22
+ messageLangMap: {
23
+ 'PT-BR': 'Viagem não encontrado.',
24
+ },
25
+ },
26
+ OFFER_NOT_FOUND: {
27
+ usecase: 'CREATE_FLIGHT_CHANGE_SESSION',
28
+ type: 'OFFER_NOT_FOUND',
29
+ messageLangMap: {
30
+ 'PT-BR': 'A oferta original não encontrado.',
31
+ },
32
+ },
33
+ USER_NOT_BELONG_TO_CLIENT: {
34
+ usecase: 'CREATE_FLIGHT_CHANGE_SESSION',
35
+ type: 'USER_NOT_BELONG_TO_CLIENT',
36
+ messageLangMap: {
37
+ 'PT-BR': 'O usuário logado não pertence ao cliente da viagem.',
38
+ },
39
+ },
40
+ CABIN_CLASS_NOT_ALLOWED: {
41
+ usecase: 'CREATE_FLIGHT_CHANGE_SESSION',
42
+ type: 'CABIN_CLASS_NOT_ALLOWED',
43
+ messageLangMap: {
44
+ 'PT-BR': 'Opção de cabine não permitida.',
45
+ },
46
+ },
47
+ OFFER_IS_NOT_FLIGHT: {
48
+ usecase: 'CREATE_FLIGHT_CHANGE_SESSION',
49
+ type: 'OFFER_IS_NOT_FLIGHT',
50
+ messageLangMap: {
51
+ 'PT-BR': 'A oferta não é do tipo aéreo.',
52
+ },
53
+ },
54
+ SUPPLIER_NOT_INTEGRATED: {
55
+ usecase: 'CREATE_FLIGHT_CHANGE_SESSION',
56
+ type: 'SUPPLIER_NOT_INTEGRATED',
57
+ messageLangMap: {
58
+ 'PT-BR': 'O forncedor não integrado.',
59
+ },
60
+ },
61
+ SUPPLIER_CONFIG_NOT_FOUND: {
62
+ usecase: 'CREATE_FLIGHT_CHANGE_SESSION',
63
+ type: 'SUPPLIER_CONFIG_NOT_FOUND',
64
+ messageLangMap: {
65
+ 'PT-BR': 'Configuração do fornecedor não encontrada.',
66
+ },
67
+ },
68
+ EXIST_OPEN_REQUESTS: {
69
+ usecase: 'CREATE_FLIGHT_CHANGE_SESSION',
70
+ type: 'EXIST_OPEN_REQUESTS',
71
+ messageLangMap: {
72
+ 'PT-BR': 'Há uma solicitação pendente para esta oferta.',
73
+ },
74
+ },
75
+ OFFER_IS_NOT_EMITTED: {
76
+ usecase: 'CREATE_FLIGHT_CHANGE_SESSION',
77
+ type: 'OFFER_IS_NOT_EMITTED',
78
+ messageLangMap: {
79
+ 'PT-BR': 'Não é possível solicitar modificações em ofertas não emitidas.',
80
+ },
81
+ },
82
+ };
@@ -6,70 +6,7 @@ export declare const LIST_FLIGHT_JOURNEY_OPTIONS: {
6
6
  'PT-BR': string;
7
7
  };
8
8
  };
9
- CLIENT_NOT_FOUND: {
10
- usecase: string;
11
- type: string;
12
- messageLangMap: {
13
- 'PT-BR': string;
14
- };
15
- };
16
- TRAVEL_NOT_FOUND: {
17
- usecase: string;
18
- type: string;
19
- messageLangMap: {
20
- 'PT-BR': string;
21
- };
22
- };
23
- OFFER_NOT_FOUND: {
24
- usecase: string;
25
- type: string;
26
- messageLangMap: {
27
- 'PT-BR': string;
28
- };
29
- };
30
- USER_NOT_BELONG_TO_CLIENT: {
31
- usecase: string;
32
- type: string;
33
- messageLangMap: {
34
- 'PT-BR': string;
35
- };
36
- };
37
- CABIN_CLASS_NOT_ALLOWED: {
38
- usecase: string;
39
- type: string;
40
- messageLangMap: {
41
- 'PT-BR': string;
42
- };
43
- };
44
- OFFER_IS_NOT_FLIGHT: {
45
- usecase: string;
46
- type: string;
47
- messageLangMap: {
48
- 'PT-BR': string;
49
- };
50
- };
51
- SUPPLIER_NOT_INTEGRATED: {
52
- usecase: string;
53
- type: string;
54
- messageLangMap: {
55
- 'PT-BR': string;
56
- };
57
- };
58
- SUPPLIER_CONFIG_NOT_FOUND: {
59
- usecase: string;
60
- type: string;
61
- messageLangMap: {
62
- 'PT-BR': string;
63
- };
64
- };
65
- EXIST_OPEN_REQUESTS: {
66
- usecase: string;
67
- type: string;
68
- messageLangMap: {
69
- 'PT-BR': string;
70
- };
71
- };
72
- OFFER_IS_NOT_EMITTED: {
9
+ USER_NOT_BELONG_TO_SESSION: {
73
10
  usecase: string;
74
11
  type: string;
75
12
  messageLangMap: {
@@ -9,74 +9,11 @@ exports.LIST_FLIGHT_JOURNEY_OPTIONS = {
9
9
  'PT-BR': 'Usuário não encontrado.',
10
10
  },
11
11
  },
12
- CLIENT_NOT_FOUND: {
12
+ USER_NOT_BELONG_TO_SESSION: {
13
13
  usecase: 'LIST_FLIGHT_JOURNEY_OPTIONS',
14
- type: 'CLIENT_NOT_FOUND',
14
+ type: 'USER_NOT_BELONG_TO_SESSION',
15
15
  messageLangMap: {
16
- 'PT-BR': 'Cliente não encontrado.',
16
+ 'PT-BR': 'Não é possível trocar o usuário durante uma solicitação de alteração de voo.',
17
17
  },
18
- },
19
- TRAVEL_NOT_FOUND: {
20
- usecase: 'LIST_FLIGHT_JOURNEY_OPTIONS',
21
- type: 'TRAVEL_NOT_FOUND',
22
- messageLangMap: {
23
- 'PT-BR': 'Viagem não encontrado.',
24
- },
25
- },
26
- OFFER_NOT_FOUND: {
27
- usecase: 'LIST_FLIGHT_JOURNEY_OPTIONS',
28
- type: 'OFFER_NOT_FOUND',
29
- messageLangMap: {
30
- 'PT-BR': 'A oferta original não encontrado.',
31
- },
32
- },
33
- USER_NOT_BELONG_TO_CLIENT: {
34
- usecase: 'LIST_FLIGHT_JOURNEY_OPTIONS',
35
- type: 'USER_NOT_BELONG_TO_CLIENT',
36
- messageLangMap: {
37
- 'PT-BR': 'O usuário logado não pertence ao cliente da viagem.',
38
- },
39
- },
40
- CABIN_CLASS_NOT_ALLOWED: {
41
- usecase: 'LIST_FLIGHT_JOURNEY_OPTIONS',
42
- type: 'CABIN_CLASS_NOT_ALLOWED',
43
- messageLangMap: {
44
- 'PT-BR': 'Opção de cabine não permitida.',
45
- },
46
- },
47
- OFFER_IS_NOT_FLIGHT: {
48
- usecase: 'LIST_FLIGHT_JOURNEY_OPTIONS',
49
- type: 'OFFER_IS_NOT_FLIGHT',
50
- messageLangMap: {
51
- 'PT-BR': 'A oferta não é do tipo aéreo.',
52
- },
53
- },
54
- SUPPLIER_NOT_INTEGRATED: {
55
- usecase: 'LIST_FLIGHT_JOURNEY_OPTIONS',
56
- type: 'SUPPLIER_NOT_INTEGRATED',
57
- messageLangMap: {
58
- 'PT-BR': 'O forncedor não integrado.',
59
- },
60
- },
61
- SUPPLIER_CONFIG_NOT_FOUND: {
62
- usecase: 'LIST_FLIGHT_JOURNEY_OPTIONS',
63
- type: 'SUPPLIER_CONFIG_NOT_FOUND',
64
- messageLangMap: {
65
- 'PT-BR': 'Configuração do fornecedor não encontrada.',
66
- },
67
- },
68
- EXIST_OPEN_REQUESTS: {
69
- usecase: 'LIST_FLIGHT_JOURNEY_OPTIONS',
70
- type: 'EXIST_OPEN_REQUESTS',
71
- messageLangMap: {
72
- 'PT-BR': 'Há uma solicitação pendente para esta oferta.',
73
- },
74
- },
75
- OFFER_IS_NOT_EMITTED: {
76
- usecase: 'LIST_FLIGHT_JOURNEY_OPTIONS',
77
- type: 'OFFER_IS_NOT_EMITTED',
78
- messageLangMap: {
79
- 'PT-BR': 'Não é possível solicitar modificações em ofertas não emitidas.',
80
- },
81
- },
18
+ }
82
19
  };
@@ -27,13 +27,6 @@ export declare const SELECT_FLIGHT_CHANGE_OPTIONS: {
27
27
  'PT-BR': string;
28
28
  };
29
29
  };
30
- JOURNEY_ID_NOT_FOUND: {
31
- usecase: string;
32
- type: string;
33
- messageLangMap: {
34
- 'PT-BR': string;
35
- };
36
- };
37
30
  OFFER_IS_NOT_EMITTED: {
38
31
  usecase: string;
39
32
  type: string;
@@ -30,13 +30,6 @@ exports.SELECT_FLIGHT_CHANGE_OPTIONS = {
30
30
  'PT-BR': 'Sessão com dados incompletos.',
31
31
  },
32
32
  },
33
- JOURNEY_ID_NOT_FOUND: {
34
- usecase: 'SELECT_FLIGHT_CHANGE_OPTIONS',
35
- type: 'JOURNEY_ID_NOT_FOUND',
36
- messageLangMap: {
37
- 'PT-BR': 'Identificador da jornada não encontrado.',
38
- },
39
- },
40
33
  OFFER_IS_NOT_EMITTED: {
41
34
  usecase: 'SELECT_FLIGHT_CHANGE_OPTIONS',
42
35
  type: 'OFFER_IS_NOT_EMITTED',
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Smartrips",
4
4
  "license": "ISC",
5
5
  "keywords": [],
6
- "version": "1.11.9",
6
+ "version": "1.11.11",
7
7
  "description": "",
8
8
  "repository": {
9
9
  "type": "git",