@seatsio/seatsio-types 5.9.0 → 5.10.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 +6 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -292,7 +292,7 @@ export interface ChartRendererConfigOptions extends DeprecatedConfigProperties,
|
|
|
292
292
|
fitTo?: 'widthAndHeight' | 'width';
|
|
293
293
|
/**
|
|
294
294
|
* This setting should only be used for accounts created before May 15th 2019. See the {@link https://docs.seats.io/docs/renderer/config-unifiedobjectpropertiesincallbacks documentation} for more details.
|
|
295
|
-
* @
|
|
295
|
+
* @remarks For accounts created after May 15th 2019, this property is set to true by default. You cannot set it to false.
|
|
296
296
|
*/
|
|
297
297
|
unifiedObjectPropertiesInCallbacks?: boolean;
|
|
298
298
|
/**
|
|
@@ -325,6 +325,11 @@ export interface ChartRendererConfigOptions extends DeprecatedConfigProperties,
|
|
|
325
325
|
* For charts with sections, enabling this setting will hide sections where all bookable objects are set as not for sale. By extension, this will also hide entire floors if every object on it is set as not for sale. {@link https://docs.seats.io/docs/renderer/config-hidesectionsnotforsale/ See documentation}
|
|
326
326
|
*/
|
|
327
327
|
hideSectionsNotForSale?: boolean;
|
|
328
|
+
/**
|
|
329
|
+
* The ticket buyer ID.
|
|
330
|
+
* Must be a valid UUID if provided.
|
|
331
|
+
*/
|
|
332
|
+
ticketBuyerId?: string;
|
|
328
333
|
}
|
|
329
334
|
export type ExtractedEventManagerProps = Pick<ChartRendererConfigOptions, 'colors' | 'colorScheme' | 'extraConfig' | 'fitTo' | 'objectColor' | 'showFullScreenButton' | 'style' | 'stylePreset' | 'popoverInfo' | 'tooltipInfo' | 'themePreset' | 'themeColors'>;
|
|
330
335
|
export interface BaseEventManagerConfigOptions extends CommonConfigOptions, ExtractedEventManagerProps, EventManagerCallbacks {
|