@wix/auto_sdk_events_ticket-definitions-v-2 1.0.64 → 1.0.66

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 (37) hide show
  1. package/build/cjs/index.d.ts +4 -4
  2. package/build/cjs/index.js +1 -1
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +40 -27
  5. package/build/cjs/index.typings.js +1 -1
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +32 -24
  8. package/build/cjs/meta.js +1 -1
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +4 -4
  11. package/build/es/index.mjs +1 -1
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +40 -27
  14. package/build/es/index.typings.mjs +1 -1
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +32 -24
  17. package/build/es/meta.mjs +1 -1
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +4 -4
  20. package/build/internal/cjs/index.js +1 -1
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +40 -27
  23. package/build/internal/cjs/index.typings.js +1 -1
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +32 -24
  26. package/build/internal/cjs/meta.js +1 -1
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +4 -4
  29. package/build/internal/es/index.mjs +1 -1
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +40 -27
  32. package/build/internal/es/index.typings.mjs +1 -1
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +32 -24
  35. package/build/internal/es/meta.mjs +1 -1
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -95,6 +95,11 @@ interface TicketDefinition {
95
95
  * **Note:** This field is only returned when `"EVENT_DETAILS"` is specified in `field` in the request.
96
96
  */
97
97
  eventDetails?: EventDetails;
98
+ /**
99
+ * Seating information including available seats and areas for this ticket definition. <br>
100
+ * **Note:** This field is only returned when `"SEATING_DETAILS"` is specified in `field` in the request and when the event has a seating plan.
101
+ */
102
+ seatingDetails?: SeatingDetails;
98
103
  }
99
104
  interface SalePeriod {
100
105
  /** Date and time the ticket sale starts. */
@@ -529,7 +534,7 @@ declare enum Status {
529
534
  }
530
535
  /** @enumType */
531
536
  type StatusWithLiterals = Status | 'UNKNOWN_EVENT_STATUS' | 'UPCOMING' | 'STARTED' | 'ENDED' | 'CANCELED' | 'DRAFT';
532
- interface SeatingInfo {
537
+ interface SeatingDetails {
533
538
  /**
534
539
  * Seating plan ID.
535
540
  * @format GUID
@@ -537,16 +542,19 @@ interface SeatingInfo {
537
542
  */
538
543
  seatingPlanId?: string | null;
539
544
  /**
540
- * List of available assigned seats.
545
+ * List of available seats.
541
546
  * @maxSize 1000
542
547
  */
543
548
  seats?: AvailableSeat[];
544
- /** Available general admission area information if applicable. */
545
- areaInfo?: AvailableAreaInfo;
549
+ /**
550
+ * List of available seated areas.
551
+ * @maxSize 1000
552
+ */
553
+ areas?: AvailableArea[];
546
554
  }
547
555
  interface AvailableSeat {
548
556
  /**
549
- * Seat ID in format: "{sectionId}-{elementId}-{seatNumber}".
557
+ * Seat ID.
550
558
  * @readonly
551
559
  * @minLength 5
552
560
  * @maxLength 11
@@ -560,23 +568,23 @@ interface AvailableSeat {
560
568
  */
561
569
  label?: string | null;
562
570
  /**
563
- * Sector label.
571
+ * Row label.
564
572
  * @readonly
565
573
  * @minLength 1
566
- * @maxLength 20
574
+ * @maxLength 50
567
575
  */
568
- sectorLabel?: string | null;
576
+ rowLabel?: string | null;
569
577
  /**
570
- * Element label.
578
+ * Section label.
571
579
  * @readonly
572
580
  * @minLength 1
573
- * @maxLength 50
581
+ * @maxLength 20
574
582
  */
575
- elementLabel?: string | null;
583
+ sectionLabel?: string | null;
576
584
  }
577
- interface AvailableAreaInfo {
585
+ interface AvailableArea {
578
586
  /**
579
- * Area ID in format: "{sectionId}-{elementId}-A"
587
+ * Area Seat ID.
580
588
  * @readonly
581
589
  * @minLength 5
582
590
  * @maxLength 11
@@ -588,26 +596,26 @@ interface AvailableAreaInfo {
588
596
  */
589
597
  availableCapacity?: number | null;
590
598
  /**
591
- * Area display label.
599
+ * Row label.
592
600
  * @readonly
593
601
  * @minLength 1
594
- * @maxLength 4
602
+ * @maxLength 50
595
603
  */
596
- areaLabel?: string | null;
604
+ rowLabel?: string | null;
597
605
  /**
598
606
  * Section label.
599
607
  * @readonly
600
608
  * @minLength 1
601
609
  * @maxLength 20
602
610
  */
603
- sectorLabel?: string | null;
611
+ sectionLabel?: string | null;
604
612
  /**
605
- * Element label.
613
+ * Area display label.
606
614
  * @readonly
607
615
  * @minLength 1
608
- * @maxLength 50
616
+ * @maxLength 4
609
617
  */
610
- elementLabel?: string | null;
618
+ label?: string | null;
611
619
  }
612
620
  interface InvalidateCache extends InvalidateCacheGetByOneOf {
613
621
  /**
@@ -752,11 +760,11 @@ declare enum Field {
752
760
  SALES_DETAILS = "SALES_DETAILS",
753
761
  /** Returns `eventDetails` in the response. */
754
762
  EVENT_DETAILS = "EVENT_DETAILS",
755
- /** Returns `seatingInfo` with available seats in the response. */
756
- SEATING_INFO = "SEATING_INFO"
763
+ /** Returns `seatingDetails` with available seats in the response. */
764
+ SEATING_DETAILS = "SEATING_DETAILS"
757
765
  }
758
766
  /** @enumType */
759
- type FieldWithLiterals = Field | 'UNKNOWN_REQUESTED_FIELD' | 'SALES_DETAILS' | 'EVENT_DETAILS' | 'SEATING_INFO';
767
+ type FieldWithLiterals = Field | 'UNKNOWN_REQUESTED_FIELD' | 'SALES_DETAILS' | 'EVENT_DETAILS' | 'SEATING_DETAILS';
760
768
  interface CreateTicketDefinitionResponse {
761
769
  /** Created ticket definition. */
762
770
  ticketDefinition?: TicketDefinition;
@@ -5155,7 +5163,7 @@ declare function onTicketDefinitionUpdated(handler: (event: TicketDefinitionUpda
5155
5163
  * @returns Created ticket definition.
5156
5164
  * @fqn wix.events.ticketdef.v3.TicketDefinitionManagement.CreateTicketDefinition
5157
5165
  */
5158
- declare function createTicketDefinition(ticketDefinition: NonNullablePaths<TicketDefinition, `eventId` | `feeType` | `name` | `pricingMethod`, 2>, options?: CreateTicketDefinitionOptions): Promise<NonNullablePaths<TicketDefinition, `hidden` | `limited` | `pricingMethod.fixedPrice.value` | `pricingMethod.fixedPrice.currency` | `pricingMethod.pricingOptions.optionDetails` | `pricingMethod.pricingType` | `pricingMethod.free` | `feeType` | `salePeriod.displayNotOnSale` | `saleStatus` | `eventDetails.location.type` | `eventDetails.location.address.streetAddress.number` | `eventDetails.location.address.streetAddress.name` | `eventDetails.dateAndTimeSettings.recurrenceStatus` | `eventDetails.dateAndTimeSettings.recurringEvents.individualEventDates` | `eventDetails.dateAndTimeSettings.recurringEvents.individualEventDates.${number}.showTimeZone` | `eventDetails.status`, 7> & {
5166
+ declare function createTicketDefinition(ticketDefinition: NonNullablePaths<TicketDefinition, `eventId` | `feeType` | `name` | `pricingMethod`, 2>, options?: CreateTicketDefinitionOptions): Promise<NonNullablePaths<TicketDefinition, `hidden` | `limited` | `pricingMethod.fixedPrice.value` | `pricingMethod.fixedPrice.currency` | `pricingMethod.pricingOptions.optionDetails` | `pricingMethod.pricingType` | `pricingMethod.free` | `feeType` | `salePeriod.displayNotOnSale` | `saleStatus` | `eventDetails.location.type` | `eventDetails.location.address.streetAddress.number` | `eventDetails.location.address.streetAddress.name` | `eventDetails.dateAndTimeSettings.recurrenceStatus` | `eventDetails.dateAndTimeSettings.recurringEvents.individualEventDates` | `eventDetails.dateAndTimeSettings.recurringEvents.individualEventDates.${number}.showTimeZone` | `eventDetails.status` | `seatingDetails.seats` | `seatingDetails.areas`, 7> & {
5159
5167
  __applicationErrorsType?: CreateTicketDefinitionApplicationErrors;
5160
5168
  }>;
5161
5169
  interface CreateTicketDefinitionOptions {
@@ -5181,7 +5189,7 @@ interface CreateTicketDefinitionOptions {
5181
5189
  * @returns The updated ticket definition.
5182
5190
  * @fqn wix.events.ticketdef.v3.TicketDefinitionManagement.UpdateTicketDefinition
5183
5191
  */
5184
- declare function updateTicketDefinition(_id: string, ticketDefinition: NonNullablePaths<UpdateTicketDefinition, `revision`, 2>, options?: UpdateTicketDefinitionOptions): Promise<NonNullablePaths<TicketDefinition, `hidden` | `limited` | `pricingMethod.fixedPrice.value` | `pricingMethod.fixedPrice.currency` | `pricingMethod.pricingOptions.optionDetails` | `pricingMethod.pricingType` | `pricingMethod.free` | `feeType` | `salePeriod.displayNotOnSale` | `saleStatus` | `eventDetails.location.type` | `eventDetails.location.address.streetAddress.number` | `eventDetails.location.address.streetAddress.name` | `eventDetails.dateAndTimeSettings.recurrenceStatus` | `eventDetails.dateAndTimeSettings.recurringEvents.individualEventDates` | `eventDetails.dateAndTimeSettings.recurringEvents.individualEventDates.${number}.showTimeZone` | `eventDetails.status`, 7> & {
5192
+ declare function updateTicketDefinition(_id: string, ticketDefinition: NonNullablePaths<UpdateTicketDefinition, `revision`, 2>, options?: UpdateTicketDefinitionOptions): Promise<NonNullablePaths<TicketDefinition, `hidden` | `limited` | `pricingMethod.fixedPrice.value` | `pricingMethod.fixedPrice.currency` | `pricingMethod.pricingOptions.optionDetails` | `pricingMethod.pricingType` | `pricingMethod.free` | `feeType` | `salePeriod.displayNotOnSale` | `saleStatus` | `eventDetails.location.type` | `eventDetails.location.address.streetAddress.number` | `eventDetails.location.address.streetAddress.name` | `eventDetails.dateAndTimeSettings.recurrenceStatus` | `eventDetails.dateAndTimeSettings.recurringEvents.individualEventDates` | `eventDetails.dateAndTimeSettings.recurringEvents.individualEventDates.${number}.showTimeZone` | `eventDetails.status` | `seatingDetails.seats` | `seatingDetails.areas`, 7> & {
5185
5193
  __applicationErrorsType?: UpdateTicketDefinitionApplicationErrors;
5186
5194
  }>;
5187
5195
  interface UpdateTicketDefinition {
@@ -5272,6 +5280,11 @@ interface UpdateTicketDefinition {
5272
5280
  * **Note:** This field is only returned when `"EVENT_DETAILS"` is specified in `field` in the request.
5273
5281
  */
5274
5282
  eventDetails?: EventDetails;
5283
+ /**
5284
+ * Seating information including available seats and areas for this ticket definition. <br>
5285
+ * **Note:** This field is only returned when `"SEATING_DETAILS"` is specified in `field` in the request and when the event has a seating plan.
5286
+ */
5287
+ seatingDetails?: SeatingDetails;
5275
5288
  }
5276
5289
  interface UpdateTicketDefinitionOptions {
5277
5290
  /**
@@ -5291,7 +5304,7 @@ interface UpdateTicketDefinitionOptions {
5291
5304
  * @returns The requested ticket definition.
5292
5305
  * @fqn wix.events.ticketdef.v3.TicketDefinitionManagement.GetTicketDefinition
5293
5306
  */
5294
- declare function getTicketDefinition(ticketDefinitionId: string, options?: GetTicketDefinitionOptions): Promise<NonNullablePaths<TicketDefinition, `hidden` | `limited` | `pricingMethod.fixedPrice.value` | `pricingMethod.fixedPrice.currency` | `pricingMethod.pricingOptions.optionDetails` | `pricingMethod.pricingType` | `pricingMethod.free` | `feeType` | `salePeriod.displayNotOnSale` | `saleStatus` | `eventDetails.location.type` | `eventDetails.location.address.streetAddress.number` | `eventDetails.location.address.streetAddress.name` | `eventDetails.dateAndTimeSettings.recurrenceStatus` | `eventDetails.dateAndTimeSettings.recurringEvents.individualEventDates` | `eventDetails.dateAndTimeSettings.recurringEvents.individualEventDates.${number}.showTimeZone` | `eventDetails.status`, 7>>;
5307
+ declare function getTicketDefinition(ticketDefinitionId: string, options?: GetTicketDefinitionOptions): Promise<NonNullablePaths<TicketDefinition, `hidden` | `limited` | `pricingMethod.fixedPrice.value` | `pricingMethod.fixedPrice.currency` | `pricingMethod.pricingOptions.optionDetails` | `pricingMethod.pricingType` | `pricingMethod.free` | `feeType` | `salePeriod.displayNotOnSale` | `saleStatus` | `eventDetails.location.type` | `eventDetails.location.address.streetAddress.number` | `eventDetails.location.address.streetAddress.name` | `eventDetails.dateAndTimeSettings.recurrenceStatus` | `eventDetails.dateAndTimeSettings.recurringEvents.individualEventDates` | `eventDetails.dateAndTimeSettings.recurringEvents.individualEventDates.${number}.showTimeZone` | `eventDetails.status` | `seatingDetails.seats` | `seatingDetails.areas`, 7>>;
5295
5308
  interface GetTicketDefinitionOptions {
5296
5309
  /**
5297
5310
  * Predefined sets of fields to return.
@@ -5528,4 +5541,4 @@ interface ChangeCurrencyOptions {
5528
5541
  currency: string;
5529
5542
  }
5530
5543
 
5531
- export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type App, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type Asset, type AudioData, type AvailableAreaInfo, type AvailableSeat, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkCopyTicketDefinitionsByEventIdRequest, type BulkCopyTicketDefinitionsByEventIdResponse, type BulkDeleteTicketDefinitionsByFilterRequest, type BulkDeleteTicketDefinitionsByFilterResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CategoryDetails, CategoryStateState, type CategoryStateStateWithLiterals, type CellStyle, type ChangeCurrencyApplicationErrors, type ChangeCurrencyOptions, type ChangeCurrencyRequest, type ChangeCurrencyResponse, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonMoney, type CommonStreetAddress, type CommonSubdivision, ConferenceType, type ConferenceTypeWithLiterals, type CopiedTicketDefinition, type CountAvailableTicketDefinitionsApplicationErrors, type CountAvailableTicketDefinitionsOptions, type CountAvailableTicketDefinitionsRequest, type CountAvailableTicketDefinitionsResponse, type CountTicketDefinitionsApplicationErrors, type CountTicketDefinitionsOptions, type CountTicketDefinitionsRequest, type CountTicketDefinitionsResponse, type CreateTicketDefinitionApplicationErrors, type CreateTicketDefinitionOptions, type CreateTicketDefinitionRequest, type CreateTicketDefinitionResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type CustomTag, type Dashboard, type DateAndTimeSettings, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteContext, DeleteStatus, type DeleteStatusWithLiterals, type DeleteTicketDefinitionRequest, type DeleteTicketDefinitionResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCreated, type EventData, type EventDeleted, type EventDetails, type EventDisplaySettings, type EventEnded, type EventMetadata, EventStatus, type EventStatusWithLiterals, type EventTicketingSummary, EventType, type EventTypeWithLiterals, type EventUpdated, type EventsLocation, type EventsOccurrence, EventsRecurrenceStatusStatus, type EventsRecurrenceStatusStatusWithLiterals, type EventsRecurrences, type ExtendedFields, type ExternalEvent, type FacetCounts, FeeTypeEnumType, type FeeTypeEnumTypeWithLiterals, type Feed, Field, type FieldWithLiterals, type File, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type Formatted, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetTicketDefinitionFromTrashBinRequest, type GetTicketDefinitionFromTrashBinResponse, type GetTicketDefinitionOptions, type GetTicketDefinitionRequest, type GetTicketDefinitionResponse, type GetTicketDefinitionSummaryRequest, type GetTicketDefinitionSummaryResponse, type Gradient, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type InvalidateCache, type InvalidateCacheGetByOneOf, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, Layout, type LayoutCellData, type LayoutData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListEventTicketingSummaryRequest, type ListEventTicketingSummaryResponse, type ListValue, type Location, LocationLocationType, type LocationLocationTypeWithLiterals, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, type Metadata, type Money, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type OdeditorAssigned, type OdeditorUnassigned, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionDetails, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type Page, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, type PicassoAssigned, type PicassoUnassigned, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PricingData, type PricingMethod, type PricingMethodPriceOneOf, type PricingOptions, PricingTypeEnumType, type PricingTypeEnumTypeWithLiterals, type QueryAvailableTicketDefinitionsOptions, type QueryAvailableTicketDefinitionsRequest, type QueryAvailableTicketDefinitionsResponse, type QueryTicketDefinitionsOptions, type QueryTicketDefinitionsRequest, type QueryTicketDefinitionsResponse, type QueryV2, type QueryV2PagingMethodOneOf, RecurrenceStatusStatus, type RecurrenceStatusStatusWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, type ReorderTicketDefinitionsApplicationErrors, type ReorderTicketDefinitionsOptions, type ReorderTicketDefinitionsOptionsReferenceDefinitionOneOf, type ReorderTicketDefinitionsRequest, type ReorderTicketDefinitionsRequestReferenceDefinitionOneOf, type ReorderTicketDefinitionsResponse, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type SalePeriod, type SalePeriodUpdated, SaleStatusEnumStatus, type SaleStatusEnumStatusWithLiterals, type SalesDetails, Scaling, type ScalingWithLiterals, type ScheduleConfig, type ScheduleLegacyTimeCapsuleTaskRequest, type Scheduling, type SeatingInfo, type SeatingPlanCategoriesSummaryUpdated, type SeoSchema, type SeoSettings, type ServiceProvisioned, type ServiceRemoved, type Settings, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrl, type SiteUrlChanged, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type StudioAssigned, type StudioTwoAssigned, type StudioTwoUnassigned, type StudioUnassigned, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionSubdivisionType, type SubdivisionSubdivisionTypeWithLiterals, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TicketDefinition, type TicketDefinitionCreatedEnvelope, type TicketDefinitionDeletedEnvelope, type TicketDefinitionSaleEnded, type TicketDefinitionSaleEndedEnvelope, type TicketDefinitionSalePeriodUpdatedEnvelope, type TicketDefinitionSaleStarted, type TicketDefinitionSaleStartedEnvelope, type TicketDefinitionSummary, type TicketDefinitionUpdatedEnvelope, type TicketDefinitionsQueryBuilder, type TicketDefinitionsQueryResult, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, Type, type TypeWithLiterals, type URI, type UpdateEventTicketingSummaryRequest, type UpdateEventTicketingSummaryResponse, type UpdateFeeTypesBasedOnSettingsRequest, type UpdateFeeTypesBasedOnSettingsResponse, type UpdateTicketDefinition, type UpdateTicketDefinitionApplicationErrors, type UpdateTicketDefinitionOptions, type UpdateTicketDefinitionRequest, type UpdateTicketDefinitionResponse, type UpdateTicketDefinitionSortIndexRequest, type UpdateTicketDefinitionSortIndexResponse, ValueType, type ValueTypeWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixelAssigned, type WixelUnassigned, bulkDeleteTicketDefinitionsByFilter, changeCurrency, countAvailableTicketDefinitions, countTicketDefinitions, createTicketDefinition, deleteTicketDefinition, getTicketDefinition, onTicketDefinitionCreated, onTicketDefinitionDeleted, onTicketDefinitionSaleEnded, onTicketDefinitionSalePeriodUpdated, onTicketDefinitionSaleStarted, onTicketDefinitionUpdated, queryAvailableTicketDefinitions, queryTicketDefinitions, reorderTicketDefinitions, updateTicketDefinition };
5544
+ export { type ActionEvent, type Address, type AddressLocation, type AddressStreetOneOf, type Agenda, Alignment, type AlignmentWithLiterals, type AnchorData, type App, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type Asset, type AudioData, type AvailableArea, type AvailableSeat, type Background, type BackgroundBackgroundOneOf, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Badge, type BaseEventMetadata, type BlockquoteData, type BookingData, type Border, type BorderColors, type BulkCopyTicketDefinitionsByEventIdRequest, type BulkCopyTicketDefinitionsByEventIdResponse, type BulkDeleteTicketDefinitionsByFilterRequest, type BulkDeleteTicketDefinitionsByFilterResponse, type BulletedListData, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, type ButtonStyles, type CalendarLinks, type CaptionData, type CardStyles, CardStylesType, type CardStylesTypeWithLiterals, type Category, type CategoryCounts, type CategoryDetails, CategoryStateState, type CategoryStateStateWithLiterals, type CellStyle, type ChangeCurrencyApplicationErrors, type ChangeCurrencyOptions, type ChangeCurrencyRequest, type ChangeCurrencyResponse, type CheckoutFormMessages, CheckoutType, type CheckoutTypeWithLiterals, type CodeBlockData, type CollapsibleListData, type ColorData, type Colors, type CommonAddress, type CommonAddressLocation, type CommonAddressStreetOneOf, type CommonMoney, type CommonStreetAddress, type CommonSubdivision, ConferenceType, type ConferenceTypeWithLiterals, type CopiedTicketDefinition, type CountAvailableTicketDefinitionsApplicationErrors, type CountAvailableTicketDefinitionsOptions, type CountAvailableTicketDefinitionsRequest, type CountAvailableTicketDefinitionsResponse, type CountTicketDefinitionsApplicationErrors, type CountTicketDefinitionsOptions, type CountTicketDefinitionsRequest, type CountTicketDefinitionsResponse, type CreateTicketDefinitionApplicationErrors, type CreateTicketDefinitionOptions, type CreateTicketDefinitionRequest, type CreateTicketDefinitionResponse, Crop, type CropWithLiterals, type CursorPaging, type Cursors, type CustomTag, type Dashboard, type DateAndTimeSettings, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type DeleteContext, DeleteStatus, type DeleteStatusWithLiterals, type DeleteTicketDefinitionRequest, type DeleteTicketDefinitionResponse, type Design, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type Event, type EventCanceled, type EventCreated, type EventData, type EventDeleted, type EventDetails, type EventDisplaySettings, type EventEnded, type EventMetadata, EventStatus, type EventStatusWithLiterals, type EventTicketingSummary, EventType, type EventTypeWithLiterals, type EventUpdated, type EventsLocation, type EventsOccurrence, EventsRecurrenceStatusStatus, type EventsRecurrenceStatusStatusWithLiterals, type EventsRecurrences, type ExtendedFields, type ExternalEvent, type FacetCounts, FeeTypeEnumType, type FeeTypeEnumTypeWithLiterals, type Feed, Field, type FieldWithLiterals, type File, type FileData, type FileSource, type FileSourceDataOneOf, type FontSizeData, FontType, type FontTypeWithLiterals, type Form, type FormMessages, type Formatted, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetTicketDefinitionFromTrashBinRequest, type GetTicketDefinitionFromTrashBinResponse, type GetTicketDefinitionOptions, type GetTicketDefinitionRequest, type GetTicketDefinitionResponse, type GetTicketDefinitionSummaryRequest, type GetTicketDefinitionSummaryResponse, type Gradient, type GuestListConfig, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageData, type ImageDataStyles, ImagePosition, type ImagePositionWithLiterals, type ImageStyles, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Input, type InputControl, InputControlType, type InputControlTypeWithLiterals, type InvalidateCache, type InvalidateCacheGetByOneOf, type Item, type ItemDataOneOf, type ItemStyle, type Keyword, type Label, type LabellingSettings, Layout, type LayoutCellData, type LayoutData, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, type ListEventTicketingSummaryRequest, type ListEventTicketingSummaryResponse, type ListValue, type Location, LocationLocationType, type LocationLocationTypeWithLiterals, LocationType, type LocationTypeWithLiterals, type MapCoordinates, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type MetaSiteSpecialEvent, type MetaSiteSpecialEventPayloadOneOf, type Metadata, type Money, Namespace, type NamespaceChanged, type NamespaceWithLiterals, type Negative, type NegativeResponseConfirmation, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Occurrence, type OdeditorAssigned, type OdeditorUnassigned, type Oembed, type OnlineConferencing, type OnlineConferencingConfig, type OnlineConferencingSession, type Option, type OptionDesign, type OptionDetails, type OptionLayout, type OptionSelection, type OptionSelectionSelectedOptionOneOf, type OrderedListData, Orientation, type OrientationWithLiterals, type PDFSettings, type Page, type Paging, type PagingMetadataV2, type ParagraphData, type Permissions, type PicassoAssigned, type PicassoUnassigned, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataLayout, type PollDesign, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, type PollSettings, Position, type PositionWithLiterals, type Positive, type PositiveResponseConfirmation, type PricingData, type PricingMethod, type PricingMethodPriceOneOf, type PricingOptions, PricingTypeEnumType, type PricingTypeEnumTypeWithLiterals, type QueryAvailableTicketDefinitionsOptions, type QueryAvailableTicketDefinitionsRequest, type QueryAvailableTicketDefinitionsResponse, type QueryTicketDefinitionsOptions, type QueryTicketDefinitionsRequest, type QueryTicketDefinitionsResponse, type QueryV2, type QueryV2PagingMethodOneOf, RecurrenceStatusStatus, type RecurrenceStatusStatusWithLiterals, type Recurrences, type Registration, type RegistrationClosedMessages, RegistrationStatus, type RegistrationStatusWithLiterals, type Rel, type ReorderTicketDefinitionsApplicationErrors, type ReorderTicketDefinitionsOptions, type ReorderTicketDefinitionsOptionsReferenceDefinitionOneOf, type ReorderTicketDefinitionsRequest, type ReorderTicketDefinitionsRequestReferenceDefinitionOneOf, type ReorderTicketDefinitionsResponse, Resizing, type ResizingWithLiterals, type ResponseConfirmation, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, type RsvpCollection, type RsvpCollectionConfig, type RsvpConfirmationMessages, type RsvpConfirmationMessagesNegativeResponseConfirmation, type RsvpConfirmationMessagesPositiveResponseConfirmation, type RsvpFormMessages, RsvpStatusOptions, type RsvpStatusOptionsWithLiterals, type RsvpSummary, type SalePeriod, type SalePeriodUpdated, SaleStatusEnumStatus, type SaleStatusEnumStatusWithLiterals, type SalesDetails, Scaling, type ScalingWithLiterals, type ScheduleConfig, type ScheduleLegacyTimeCapsuleTaskRequest, type Scheduling, type SeatingDetails, type SeatingPlanCategoriesSummaryUpdated, type SeoSchema, type SeoSettings, type ServiceProvisioned, type ServiceRemoved, type Settings, type SiteCreated, SiteCreatedContext, type SiteCreatedContextWithLiterals, type SiteDeleted, type SiteHardDeleted, type SiteMarkedAsTemplate, type SiteMarkedAsWixSite, type SitePublished, type SitePurgedExternally, type SiteRenamed, type SiteTransferred, type SiteUndeleted, type SiteUnpublished, type SiteUrl, type SiteUrlChanged, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, State, type StateWithLiterals, Status, type StatusWithLiterals, type StreetAddress, type StudioAssigned, type StudioTwoAssigned, type StudioTwoUnassigned, type StudioUnassigned, type Styles, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type Subdivision, SubdivisionSubdivisionType, type SubdivisionSubdivisionTypeWithLiterals, SubdivisionType, type SubdivisionTypeWithLiterals, type TableCellData, type TableData, type Tag, Target, type TargetWithLiterals, type TaxConfig, TaxType, type TaxTypeWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TicketDefinition, type TicketDefinitionCreatedEnvelope, type TicketDefinitionDeletedEnvelope, type TicketDefinitionSaleEnded, type TicketDefinitionSaleEndedEnvelope, type TicketDefinitionSalePeriodUpdatedEnvelope, type TicketDefinitionSaleStarted, type TicketDefinitionSaleStartedEnvelope, type TicketDefinitionSummary, type TicketDefinitionUpdatedEnvelope, type TicketDefinitionsQueryBuilder, type TicketDefinitionsQueryResult, type Ticketing, type TicketingConfig, type TicketingSummary, type TicketsConfirmationMessages, type TicketsUnavailableMessages, Type, type TypeWithLiterals, type URI, type UpdateEventTicketingSummaryRequest, type UpdateEventTicketingSummaryResponse, type UpdateFeeTypesBasedOnSettingsRequest, type UpdateFeeTypesBasedOnSettingsResponse, type UpdateTicketDefinition, type UpdateTicketDefinitionApplicationErrors, type UpdateTicketDefinitionOptions, type UpdateTicketDefinitionRequest, type UpdateTicketDefinitionResponse, type UpdateTicketDefinitionSortIndexRequest, type UpdateTicketDefinitionSortIndexResponse, ValueType, type ValueTypeWithLiterals, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VisitorType, type VisitorTypeWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, type WixelAssigned, type WixelUnassigned, bulkDeleteTicketDefinitionsByFilter, changeCurrency, countAvailableTicketDefinitions, countTicketDefinitions, createTicketDefinition, deleteTicketDefinition, getTicketDefinition, onTicketDefinitionCreated, onTicketDefinitionDeleted, onTicketDefinitionSaleEnded, onTicketDefinitionSalePeriodUpdated, onTicketDefinitionSaleStarted, onTicketDefinitionUpdated, queryAvailableTicketDefinitions, queryTicketDefinitions, reorderTicketDefinitions, updateTicketDefinition };
@@ -721,7 +721,7 @@ var Field = /* @__PURE__ */ ((Field2) => {
721
721
  Field2["UNKNOWN_REQUESTED_FIELD"] = "UNKNOWN_REQUESTED_FIELD";
722
722
  Field2["SALES_DETAILS"] = "SALES_DETAILS";
723
723
  Field2["EVENT_DETAILS"] = "EVENT_DETAILS";
724
- Field2["SEATING_INFO"] = "SEATING_INFO";
724
+ Field2["SEATING_DETAILS"] = "SEATING_DETAILS";
725
725
  return Field2;
726
726
  })(Field || {});
727
727
  var SortOrder = /* @__PURE__ */ ((SortOrder2) => {