@seatsio/seatsio-types 6.18.0 → 6.20.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.
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -508,7 +508,7 @@ export interface BaseChartDesignerConfigOptions {
|
|
|
508
508
|
features?: {
|
|
509
509
|
disabled?: (keyof ChartDesignerFeatures)[];
|
|
510
510
|
enabled?: (keyof ChartDesignerFeatures)[];
|
|
511
|
-
readOnly?: ('chartName' | 'categoryList')[];
|
|
511
|
+
readOnly?: ('chartName' | 'categoryList' | 'categoryKeys')[];
|
|
512
512
|
};
|
|
513
513
|
/**
|
|
514
514
|
* Documentation: {@link https://docs.seats.io/docs/embedded-designer/configuration-language}
|
|
@@ -1059,7 +1059,10 @@ export interface AbstractSelectableObject extends InteractiveObject {
|
|
|
1059
1059
|
readonly cartServices: boolean | undefined;
|
|
1060
1060
|
readonly plusSize: boolean | undefined;
|
|
1061
1061
|
readonly restrictedView: boolean | undefined;
|
|
1062
|
+
readonly vertigo: boolean | undefined;
|
|
1063
|
+
readonly limitedLegroom: boolean | undefined;
|
|
1062
1064
|
readonly companionSeat: boolean | undefined;
|
|
1065
|
+
readonly semiAmbulatorySeat: boolean | undefined;
|
|
1063
1066
|
readonly liftUpArmrests: boolean | undefined;
|
|
1064
1067
|
readonly displayObjectType: string | undefined;
|
|
1065
1068
|
readonly category?: CategoryToJSON;
|