@seatsio/seatsio-types 3.0.0 → 3.2.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 +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -384,7 +384,9 @@ export interface EventManagerStaticModeConfigOptions extends BaseEventManagerCon
|
|
|
384
384
|
}
|
|
385
385
|
export type EventManagerConfigOptions = EventManagerManageObjectStatusesModeConfigOptions | EventManagerManageChannelsModeConfigOptions | EventManagerManageCategoriesModeConfigOptions | EventManagerSelectModeConfigOptions | EventManagerFilterSectionsModeConfigOptions | EventManagerStaticModeConfigOptions | (BaseEventManagerConfigOptions & WithEvent);
|
|
386
386
|
export type ChartDesignerConfigOptions = ChartDesignerNormalModeConfigOptions | ChartDesignerReadOnlyModeConfigOptions | ChartDesignerSafeModeConfigOptions;
|
|
387
|
+
export type ChartDesignerMode = 'normal' | 'readOnly' | 'safe';
|
|
387
388
|
export interface BaseChartDesignerConfigOptions {
|
|
389
|
+
mode?: ChartDesignerMode;
|
|
388
390
|
canvasColorScheme?: 'auto' | 'light' | 'dark';
|
|
389
391
|
chartKey?: string;
|
|
390
392
|
container?: Element;
|
|
@@ -824,6 +826,7 @@ export interface AbstractBookableObject extends AbstractSelectableObject {
|
|
|
824
826
|
readonly extraData: {} | undefined;
|
|
825
827
|
readonly forSale: boolean;
|
|
826
828
|
readonly dataPerEvent: Dict<object>;
|
|
829
|
+
readonly seasonStatusOverriddenQuantity: number;
|
|
827
830
|
inSelectableChannel?: boolean;
|
|
828
831
|
hashedChannelKey?: string;
|
|
829
832
|
isInChannel?: (channelKey: string) => boolean;
|