seatsio 81.20.0 → 81.21.0
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { IDs } from '../Common/IDs';
|
|
2
2
|
import { Labels } from '../Common/Labels';
|
|
3
3
|
import { Dict } from '../Dict';
|
|
4
|
+
import { Floor } from '../Common/Floor';
|
|
4
5
|
export type ChartObjectInfoJson = Dict<any>;
|
|
5
6
|
export declare class ChartObjectInfo {
|
|
6
7
|
bookAsAWhole?: boolean;
|
|
@@ -21,5 +22,6 @@ export declare class ChartObjectInfo {
|
|
|
21
22
|
isCompanionSeat?: boolean;
|
|
22
23
|
hasRestrictedView?: boolean;
|
|
23
24
|
zone?: string;
|
|
25
|
+
floor?: Floor;
|
|
24
26
|
constructor(json: ChartObjectInfoJson);
|
|
25
27
|
}
|
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.ChartObjectInfo = void 0;
|
|
4
4
|
var helperFunctions_1 = require("../utilities/helperFunctions");
|
|
5
5
|
var IDs_1 = require("../Common/IDs");
|
|
6
|
+
var Floor_1 = require("../Common/Floor");
|
|
6
7
|
var ChartObjectInfo = /** @class */ (function () {
|
|
7
8
|
function ChartObjectInfo(json) {
|
|
8
9
|
this.label = json.label;
|
|
@@ -23,6 +24,7 @@ var ChartObjectInfo = /** @class */ (function () {
|
|
|
23
24
|
this.isCompanionSeat = json.isCompanionSeat;
|
|
24
25
|
this.hasRestrictedView = json.hasRestrictedView;
|
|
25
26
|
this.zone = json.zone;
|
|
27
|
+
this.floor = json.floor ? new Floor_1.Floor(json.floor.name, json.floor.displayName) : undefined;
|
|
26
28
|
}
|
|
27
29
|
return ChartObjectInfo;
|
|
28
30
|
}());
|