wedance-shared 1.0.149 → 1.0.150

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.
@@ -139,6 +139,13 @@ export type EventTicket = {
139
139
  * @deprecated Replaced by price_details
140
140
  */
141
141
  price?: number;
142
+ productType: string;
143
+ credits: number | null;
144
+ validityDays: number | null;
145
+ validFrom: string | null;
146
+ validUntil: string | null;
147
+ organizerId: string | null;
148
+ seriesId: string | null;
142
149
  };
143
150
  export type EventTicketStatus = "published" | "draft" | "sold-out" | "unavailable";
144
151
  export type PromotionalPeriod = {
@@ -234,7 +241,8 @@ export type CheckoutSession = {
234
241
  application_fee_amount: number | null;
235
242
  transfer_data_destination: string | null;
236
243
  quantity: number;
237
- event_id: string;
244
+ event_id: string | null;
245
+ organizer_id: string;
238
246
  event_ticket_id: string;
239
247
  discount_code: string | null;
240
248
  discount_code_id: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wedance-shared",
3
- "version": "1.0.149",
3
+ "version": "1.0.150",
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",