wedance-shared 1.0.66 → 1.0.67

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.
@@ -45,6 +45,10 @@ export type Ticket = {
45
45
  refundedAt?: string;
46
46
  createdAt: Timestamp;
47
47
  updatedAt: Timestamp;
48
+ couple?: {
49
+ isCoupleTicket: boolean;
50
+ partnerFullName?: string;
51
+ } | null;
48
52
  /**
49
53
  * @deprecated Replaced by originalOwnerId
50
54
  */
@@ -99,6 +103,10 @@ export type EventTicket = {
99
103
  status: EventTicketStatus;
100
104
  createdAt: string;
101
105
  updatedAt: string;
106
+ couple?: {
107
+ isCoupleTicket: boolean;
108
+ requirePartnerFullName: boolean;
109
+ } | null;
102
110
  /**
103
111
  * Promotional period for the ticket
104
112
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wedance-shared",
3
- "version": "1.0.66",
3
+ "version": "1.0.67",
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",