wedance-shared 1.0.56 → 1.0.57
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/types/ticket.d.ts +4 -4
- package/package.json +1 -1
package/dist/types/ticket.d.ts
CHANGED
|
@@ -77,12 +77,12 @@ export type EventTicket = {
|
|
|
77
77
|
price_details: MonetaryAmount;
|
|
78
78
|
eventId: string;
|
|
79
79
|
quantity: number;
|
|
80
|
-
|
|
80
|
+
showQuantity: boolean;
|
|
81
81
|
/**
|
|
82
|
-
* If the available quantity is
|
|
83
|
-
* Only applies if
|
|
82
|
+
* If the available quantity is lower than this number, the quantity will be shown. (E.g 10)
|
|
83
|
+
* Only applies if showQuantity is true. Default is "quantity" it will always show the quantity.
|
|
84
84
|
*/
|
|
85
|
-
|
|
85
|
+
thresholdShowQuantity?: number | null;
|
|
86
86
|
amountSold: number;
|
|
87
87
|
coupons: CouponCode[] | null;
|
|
88
88
|
name: string;
|
package/package.json
CHANGED