@seatsio/seatsio-types 6.11.0 → 6.12.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 +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1115,6 +1115,7 @@ export interface GeneralAdmissionArea extends AbstractBookableObject {
|
|
|
1115
1115
|
}
|
|
1116
1116
|
export type BookableObject = Seat | GeneralAdmissionArea | Booth | Table;
|
|
1117
1117
|
export type SelectableObject = BookableObject | InteractiveSection;
|
|
1118
|
+
export type ReportGroupedBy = 'zone';
|
|
1118
1119
|
export interface SeatingChart {
|
|
1119
1120
|
changeConfig: (config: ConfigChange) => Promise<void>;
|
|
1120
1121
|
clearSelection: () => Promise<void>;
|
|
@@ -1123,6 +1124,7 @@ export interface SeatingChart {
|
|
|
1123
1124
|
destroy: () => void;
|
|
1124
1125
|
findObject: (label: string) => Promise<SelectableObject>;
|
|
1125
1126
|
getReportBySelectability: () => Promise<Object>;
|
|
1127
|
+
getReportBySelectabilityGroupedBy: (groupBy: ReportGroupedBy) => Promise<Object>;
|
|
1126
1128
|
holdToken: string;
|
|
1127
1129
|
listCategories: () => Promise<Category[]>;
|
|
1128
1130
|
listZones: () => Promise<Zone[]>;
|