wedance-shared 1.0.131 → 1.0.132
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 -0
- package/package.json +1 -1
package/dist/types/ticket.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ export type Ticket = {
|
|
|
43
43
|
*/
|
|
44
44
|
fullName?: string | null;
|
|
45
45
|
appliedCoupon?: {
|
|
46
|
+
id: string;
|
|
46
47
|
code: string;
|
|
47
48
|
discountAmount: number;
|
|
48
49
|
discountType: "fixed" | "percentage";
|
|
@@ -255,6 +256,9 @@ export type CheckoutSession = {
|
|
|
255
256
|
event_id: string;
|
|
256
257
|
event_ticket_id: string;
|
|
257
258
|
discount_code: string | null;
|
|
259
|
+
discount_code_id: string | null;
|
|
260
|
+
discount_amount: number | null;
|
|
261
|
+
discount_type: string | null;
|
|
258
262
|
partner_name: string | null;
|
|
259
263
|
test: boolean;
|
|
260
264
|
};
|
package/package.json
CHANGED