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

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.
@@ -96,6 +96,11 @@ interface TicketDefinition {
96
96
  * **Note:** This field is only returned when `"EVENT_DETAILS"` is specified in `field` in the request.
97
97
  */
98
98
  eventDetails?: EventDetails;
99
+ /**
100
+ * Seating information including available seats and areas for this ticket definition. <br>
101
+ * **Note:** This field is only returned when `"SEATING_INFO"` is specified in `field` in the request and when the event has a seating plan.
102
+ */
103
+ seatingInfo?: SeatingInfo;
99
104
  }
100
105
  interface SalePeriod {
101
106
  /** Date and time the ticket sale starts. */
@@ -559,7 +564,7 @@ interface SeatingInfo {
559
564
  }
560
565
  interface AvailableSeat {
561
566
  /**
562
- * Seat ID in format: "{sectionId}-{elementId}-{seatNumber}".
567
+ * Seat ID in format: "{sectorId}-{rowId}-{seatNumber}".
563
568
  * @readonly
564
569
  * @minLength 5
565
570
  * @maxLength 11
@@ -580,16 +585,16 @@ interface AvailableSeat {
580
585
  */
581
586
  sectorLabel?: string | null;
582
587
  /**
583
- * Element label.
588
+ * Row label.
584
589
  * @readonly
585
590
  * @minLength 1
586
591
  * @maxLength 50
587
592
  */
588
- elementLabel?: string | null;
593
+ rowLabel?: string | null;
589
594
  }
590
595
  interface AvailableAreaInfo {
591
596
  /**
592
- * Area ID in format: "{sectionId}-{elementId}-A"
597
+ * Area ID in format: "{sectorId}-{rowId}-A"
593
598
  * @readonly
594
599
  * @minLength 5
595
600
  * @maxLength 11
@@ -615,12 +620,12 @@ interface AvailableAreaInfo {
615
620
  */
616
621
  sectorLabel?: string | null;
617
622
  /**
618
- * Element label.
623
+ * Row label.
619
624
  * @readonly
620
625
  * @minLength 1
621
626
  * @maxLength 50
622
627
  */
623
- elementLabel?: string | null;
628
+ rowLabel?: string | null;
624
629
  }
625
630
  interface InvalidateCache extends InvalidateCacheGetByOneOf {
626
631
  /**