@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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -0
  2. 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[]>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@seatsio/seatsio-types",
3
3
  "description": "Type definitions for Seats.io",
4
- "version": "6.11.0",
4
+ "version": "6.12.0",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",