@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "29.0.0",
3
+ "version": "29.1.0",
4
4
  "description": "Common data and scripts to use on the frontend and backend",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -895,6 +895,7 @@ model Service {
895
895
  serviceName String?
896
896
 
897
897
  //this is not the business info but that which is associated with the service
898
+ place String?
898
899
  email String?
899
900
  street String?
900
901
  city String?
@@ -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: {
@@ -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 {