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.
- package/dist/types/ticket.d.ts +8 -0
- package/package.json +1 -1
package/dist/types/ticket.d.ts
CHANGED
|
@@ -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