@seatsio/seatsio-types 6.12.0 → 6.14.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 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -906,6 +906,8 @@ export type TicketType = {
|
|
|
906
906
|
label?: string;
|
|
907
907
|
description?: string;
|
|
908
908
|
primary?: boolean;
|
|
909
|
+
unavailable?: boolean;
|
|
910
|
+
unavailableReason?: 'unavailable' | 'soldOut' | (string & {});
|
|
909
911
|
};
|
|
910
912
|
export type PricingForCategory = (SimplePricing | MultiLevelPricing);
|
|
911
913
|
export type PricingForObjects = (SimplePricingForObjects | MultiLevelPricingForObjects);
|
|
@@ -1026,11 +1028,13 @@ export interface NonBookableTableSeat extends InteractiveObject {
|
|
|
1026
1028
|
type: 'row' | 'table';
|
|
1027
1029
|
};
|
|
1028
1030
|
}
|
|
1031
|
+
export type WheelchairSpaceType = 'WHEELCHAIR_ACCESSIBLE_SEAT' | 'WHEELCHAIR_SPACE';
|
|
1029
1032
|
export interface AbstractSelectableObject extends InteractiveObject {
|
|
1030
1033
|
readonly objectType: string;
|
|
1031
1034
|
readonly selected: boolean;
|
|
1032
1035
|
readonly selectedTicketType: string | undefined;
|
|
1033
1036
|
readonly accessible: boolean | undefined;
|
|
1037
|
+
readonly wheelchairSpaceType: WheelchairSpaceType | undefined;
|
|
1034
1038
|
readonly hearingImpaired: boolean | undefined;
|
|
1035
1039
|
readonly signLanguageInterpretation: boolean | undefined;
|
|
1036
1040
|
readonly cartServices: boolean | undefined;
|