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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wedance-shared",
3
- "version": "1.0.131",
3
+ "version": "1.0.132",
4
4
  "description": "This repository contains shared TypeScript types and interfaces used across multiple WeDance applications:",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",