@wix/auto_sdk_events_orders 1.0.28 → 1.0.30
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.js.map +1 -1
- package/build/cjs/index.typings.d.ts +11 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +6 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +11 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +6 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +11 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +6 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +11 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +6 -0
- package/package.json +2 -2
|
@@ -378,6 +378,12 @@ interface TicketDetails {
|
|
|
378
378
|
* @readonly
|
|
379
379
|
*/
|
|
380
380
|
seatLabel?: string | null;
|
|
381
|
+
/**
|
|
382
|
+
* Seating plan ID.
|
|
383
|
+
* @format GUID
|
|
384
|
+
* @readonly
|
|
385
|
+
*/
|
|
386
|
+
planId?: string | null;
|
|
381
387
|
/**
|
|
382
388
|
* Number of places in the spot.
|
|
383
389
|
*
|
|
@@ -648,6 +654,11 @@ interface GiftCardPaymentDetails {
|
|
|
648
654
|
* @maxLength 30
|
|
649
655
|
*/
|
|
650
656
|
obfuscatedCode?: string | null;
|
|
657
|
+
/**
|
|
658
|
+
* Gift card code.
|
|
659
|
+
* @maxLength 30
|
|
660
|
+
*/
|
|
661
|
+
code?: string | null;
|
|
651
662
|
}
|
|
652
663
|
interface BalanceSummary {
|
|
653
664
|
/** Amount left to pay. */
|