wedance-shared 1.0.40 → 1.0.41

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.
@@ -13,4 +13,5 @@ export type OrganizerData = {
13
13
  lastUpdated: string;
14
14
  createdAt: string;
15
15
  isFlagged: boolean;
16
+ stripeAccountId?: string | null;
16
17
  };
@@ -1,5 +1,5 @@
1
1
  import { Timestamp } from "firebase/firestore";
2
- export type TicketStatus = "Confirmed" | "Cancelled" | "Refunded" | "Expired" | "Used" | "Transferred";
2
+ export type TicketStatus = "Confirmed" | "Void" | "Refunded" | "Expired" | "Used";
3
3
  export type Ticket = {
4
4
  /**
5
5
  * ID of the ticket
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wedance-shared",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
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",
@@ -68,4 +68,7 @@ export type OrganizerData = {
68
68
  lastUpdated: string;
69
69
  createdAt: string;
70
70
  isFlagged: boolean;
71
+
72
+ // Stripe for connected accounts
73
+ stripeAccountId?: string | null;
71
74
  };
@@ -2,11 +2,10 @@ import { Timestamp } from "firebase/firestore";
2
2
 
3
3
  export type TicketStatus =
4
4
  | "Confirmed"
5
- | "Cancelled"
5
+ | "Void"
6
6
  | "Refunded"
7
7
  | "Expired"
8
- | "Used"
9
- | "Transferred";
8
+ | "Used";
10
9
 
11
10
  export type Ticket = {
12
11
  /**