sm-types 1.11.69 → 1.11.70
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 +1 -1
- package/sm-airlines/index.d.ts +8 -0
package/package.json
CHANGED
package/sm-airlines/index.d.ts
CHANGED
|
@@ -67,6 +67,11 @@ export interface ISmWcfFamilyOfferBound {
|
|
|
67
67
|
pieces: number;
|
|
68
68
|
weight: number;
|
|
69
69
|
};
|
|
70
|
+
carryOn?: {
|
|
71
|
+
available?: boolean;
|
|
72
|
+
pieces?: number;
|
|
73
|
+
weight?: number;
|
|
74
|
+
};
|
|
70
75
|
}
|
|
71
76
|
export interface ISmWcfFamilyOfferBoundFare {
|
|
72
77
|
base: string;
|
|
@@ -110,6 +115,9 @@ export interface ISmWcfBound {
|
|
|
110
115
|
baggage?: boolean;
|
|
111
116
|
baggagePieces?: number;
|
|
112
117
|
baggageWeight?: number;
|
|
118
|
+
carryOnLuggage?: boolean;
|
|
119
|
+
carryOnLuggagePieces?: number;
|
|
120
|
+
carryOnLuggageWeight?: number;
|
|
113
121
|
fareDetails?: IBoundFareDetails;
|
|
114
122
|
stops: any[];
|
|
115
123
|
durationHours: string;
|