@bash-app/bash-common 29.6.0 → 29.7.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 +2 -0
package/package.json
CHANGED
package/src/extendedSchemas.ts
CHANGED
|
@@ -24,6 +24,7 @@ import {
|
|
|
24
24
|
StripeAccount,
|
|
25
25
|
VisibilityPreference,
|
|
26
26
|
BashEventType,
|
|
27
|
+
Coordinates,
|
|
27
28
|
} from "@prisma/client";
|
|
28
29
|
import { UnionFromArray } from "./definitions";
|
|
29
30
|
|
|
@@ -57,6 +58,7 @@ export interface BashEventExt extends BashEvent {
|
|
|
57
58
|
tickets?: Ticket[]; // Only include tickets that the user has purchased and not all tickets (could be thousands + privacy)
|
|
58
59
|
// Do not include in fetch. Could be hundreds of these
|
|
59
60
|
invitations: InvitationExt[];
|
|
61
|
+
coordinates?: Coordinates[];
|
|
60
62
|
}
|
|
61
63
|
|
|
62
64
|
export const TICKET_TIER_DATA_TO_INCLUDE = {
|