@seatsio/seatsio-types 6.21.0 → 6.23.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 +9 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1064,6 +1064,7 @@ export interface AbstractSelectableObject extends InteractiveObject {
1064
1064
  readonly companionSeat: boolean | undefined;
1065
1065
  readonly semiAmbulatorySeat: boolean | undefined;
1066
1066
  readonly liftUpArmrests: boolean | undefined;
1067
+ readonly aisleSeat: boolean | undefined;
1067
1068
  readonly displayObjectType: string | undefined;
1068
1069
  readonly category?: CategoryToJSON;
1069
1070
  readonly pricing: PricingJson;
@@ -1222,6 +1223,14 @@ export interface ConfigListing {
1222
1223
  export interface ListingType {
1223
1224
  icon?: string;
1224
1225
  label?: string;
1226
+ /**
1227
+ * The background color of the listing marker, as a CSS hex color (e.g. `#FFD700`).
1228
+ */
1229
+ backgroundColor?: string;
1230
+ /**
1231
+ * The color of the listing icon, as a CSS hex color (e.g. `#000000`).
1232
+ */
1233
+ iconColor?: string;
1225
1234
  }
1226
1235
  export type ListingTypes = Dict<ListingType>;
1227
1236
  export declare function isBooth(object: SelectableObject): object is Booth;
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.21.0",
4
+ "version": "6.23.0",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",