@bash-app/bash-common 30.17.0 → 30.18.0
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/package.json +1 -1
- package/src/extendedSchemas.ts +12 -0
package/package.json
CHANGED
package/src/extendedSchemas.ts
CHANGED
|
@@ -137,6 +137,18 @@ export interface BashEventExt extends BashEvent {
|
|
|
137
137
|
// Do not include in fetch. Could be hundreds of these
|
|
138
138
|
invitations: Partial<InvitationExt>[];
|
|
139
139
|
coordinates?: Coordinates[];
|
|
140
|
+
venueServiceId?: string;
|
|
141
|
+
venueOwner?: {
|
|
142
|
+
id: string;
|
|
143
|
+
email: string;
|
|
144
|
+
givenName?: string;
|
|
145
|
+
familyName?: string;
|
|
146
|
+
};
|
|
147
|
+
sponsorships?: Array<{
|
|
148
|
+
sponsorId: string;
|
|
149
|
+
sponsorEmail: string;
|
|
150
|
+
name?: string;
|
|
151
|
+
}>;
|
|
140
152
|
}
|
|
141
153
|
|
|
142
154
|
export const TICKET_TIER_DATA_TO_INCLUDE = {
|