@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.
- package/build/cjs/index.d.ts +3 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +19 -9
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +11 -6
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +19 -9
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +11 -6
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +3 -3
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +19 -9
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +11 -6
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +3 -3
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +19 -9
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +11 -6
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -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: "{
|
|
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
|
-
*
|
|
588
|
+
* Row label.
|
|
584
589
|
* @readonly
|
|
585
590
|
* @minLength 1
|
|
586
591
|
* @maxLength 50
|
|
587
592
|
*/
|
|
588
|
-
|
|
593
|
+
rowLabel?: string | null;
|
|
589
594
|
}
|
|
590
595
|
interface AvailableAreaInfo {
|
|
591
596
|
/**
|
|
592
|
-
* Area ID in format: "{
|
|
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
|
-
*
|
|
623
|
+
* Row label.
|
|
619
624
|
* @readonly
|
|
620
625
|
* @minLength 1
|
|
621
626
|
* @maxLength 50
|
|
622
627
|
*/
|
|
623
|
-
|
|
628
|
+
rowLabel?: string | null;
|
|
624
629
|
}
|
|
625
630
|
interface InvalidateCache extends InvalidateCacheGetByOneOf {
|
|
626
631
|
/**
|