@qite/tide-client 1.1.73 → 1.1.74
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/build/index.js +15 -0
- package/build/index.js.map +1 -1
- package/build/types/enums/index.d.ts +2 -0
- package/build/types/enums/meta-data-item-property-type.d.ts +6 -0
- package/build/types/enums/unit-of-measure.d.ts +5 -0
- package/build/types/hubs/search/flight-search-response.d.ts +2 -0
- package/build/types/offer/flight-data-segment-meta-data.d.ts +30 -0
- package/build/types/offer/index.d.ts +1 -0
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -45,6 +45,14 @@ var Gender = {
|
|
|
45
45
|
other: 2,
|
|
46
46
|
};
|
|
47
47
|
|
|
48
|
+
var MetaDataItemPropertyType;
|
|
49
|
+
(function (MetaDataItemPropertyType) {
|
|
50
|
+
MetaDataItemPropertyType[(MetaDataItemPropertyType["Height"] = 0)] = "Height";
|
|
51
|
+
MetaDataItemPropertyType[(MetaDataItemPropertyType["Length"] = 1)] = "Length";
|
|
52
|
+
MetaDataItemPropertyType[(MetaDataItemPropertyType["Width"] = 2)] = "Width";
|
|
53
|
+
MetaDataItemPropertyType[(MetaDataItemPropertyType["Weight"] = 3)] = "Weight";
|
|
54
|
+
})(MetaDataItemPropertyType || (MetaDataItemPropertyType = {}));
|
|
55
|
+
|
|
48
56
|
var MetaDataType = {
|
|
49
57
|
flight: 0,
|
|
50
58
|
publicTransport: 1,
|
|
@@ -109,6 +117,13 @@ var ServiceType = {
|
|
|
109
117
|
camp: 30,
|
|
110
118
|
};
|
|
111
119
|
|
|
120
|
+
var UnitOfMeasure;
|
|
121
|
+
(function (UnitOfMeasure) {
|
|
122
|
+
UnitOfMeasure[(UnitOfMeasure["cm"] = 0)] = "cm";
|
|
123
|
+
UnitOfMeasure[(UnitOfMeasure["kg"] = 1)] = "kg";
|
|
124
|
+
UnitOfMeasure[(UnitOfMeasure["lb"] = 2)] = "lb";
|
|
125
|
+
})(UnitOfMeasure || (UnitOfMeasure = {}));
|
|
126
|
+
|
|
112
127
|
/******************************************************************************
|
|
113
128
|
Copyright (c) Microsoft Corporation.
|
|
114
129
|
|