@seatsio/seatsio-types 6.6.0 → 6.8.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 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -505,7 +505,7 @@ export interface BaseChartDesignerConfigOptions {
505
505
  /**
506
506
  * Documentation: {@link https://docs.seats.io/docs/embedded-designer/configuration-language}
507
507
  */
508
- language?: 'de' | 'en' | 'es' | 'fr' | 'pt';
508
+ language?: 'de' | 'en' | 'es' | 'fr' | 'pt' | 'it';
509
509
  onChartCreated?: (chartKey: string) => void;
510
510
  onChartPublished?: (chartKey: string) => void;
511
511
  onChartUpdated?: (chartKey: string) => void;
@@ -999,6 +999,7 @@ export type PriceType = number | string;
999
999
  export interface InteractiveObject {
1000
1000
  readonly label: string;
1001
1001
  readonly labels: Labels;
1002
+ readonly floor?: string;
1002
1003
  }
1003
1004
  export interface NonBookableTable extends InteractiveObject {
1004
1005
  readonly seats: Seat[];
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.6.0",
4
+ "version": "6.8.0",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",