sm-types 1.6.4 → 1.6.6

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Smartrips",
4
4
  "license": "ISC",
5
5
  "keywords": [],
6
- "version": "1.6.4",
6
+ "version": "1.6.6",
7
7
  "description": "",
8
8
  "repository": {
9
9
  "type": "git",
@@ -232,12 +232,26 @@ export interface ISmWcfBound {
232
232
  durationMinutes: number;
233
233
  cabinClass: string;
234
234
  family: string;
235
+ familyCode: string;
235
236
  baggage: boolean;
236
237
  baggagePieces: number;
237
238
  baggageWeight: number;
239
+ fareDetails?: IBoundFareDetails;
238
240
  stops: any[];
239
241
  durationHours: string;
240
242
  }
243
+ export interface IBoundFareDetails {
244
+ checkedBaggage: {
245
+ pieces: number;
246
+ weight?: number;
247
+ };
248
+ carryOnLuggage?: {
249
+ pieces: number;
250
+ weight?: number;
251
+ };
252
+ refundRule?: string;
253
+ reservedSeat?: boolean;
254
+ }
241
255
  export interface ISmWcfSegment {
242
256
  departureMoment: string;
243
257
  departure: string;