@bash-app/bash-common 29.0.0 → 29.1.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/prisma/schema.prisma +1 -0
- package/src/definitions.ts +4 -0
- package/src/extendedSchemas.ts +1 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
package/src/definitions.ts
CHANGED
|
@@ -101,6 +101,10 @@ export const VENUE_DATA_TO_INCLUDE = {
|
|
|
101
101
|
|
|
102
102
|
} satisfies Prisma.VenueInclude;
|
|
103
103
|
|
|
104
|
+
export const VENDOR_DATA_TO_INCLUDE = {
|
|
105
|
+
crowdSize: true,
|
|
106
|
+
} satisfies Prisma.VendorInclude;
|
|
107
|
+
|
|
104
108
|
export const VOLUNTEER_DATA_TO_INCLUDE = {
|
|
105
109
|
links: {
|
|
106
110
|
include: {
|
package/src/extendedSchemas.ts
CHANGED
|
@@ -202,7 +202,7 @@ export interface VendorExt extends Vendor {
|
|
|
202
202
|
|
|
203
203
|
export interface VenueExt extends Venue {
|
|
204
204
|
service: ServiceExt;
|
|
205
|
-
crowdSize?: AmountOfGuests;
|
|
205
|
+
// crowdSize?: AmountOfGuests;
|
|
206
206
|
}
|
|
207
207
|
|
|
208
208
|
export interface OrganizationExt extends Organization {
|