@bash-app/bash-common 29.0.0 → 29.2.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.2.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",
@@ -575,19 +575,24 @@ model TargetAudience {
575
575
  }
576
576
 
577
577
  enum AgeRange {
578
- Eighteen_24
579
- TwentyFive_34
580
- ThirtyFive_49
581
- FiftyPlus
578
+ Sixteen_17
579
+ Eighteen_20
580
+ TwentyOne_25
581
+ TwentySix_34
582
+ ThirtyFive_49
583
+ Fifty_64
584
+ SixtyFive_69
585
+ SeventyPlus
582
586
  NoPreference
583
587
  }
584
588
 
585
589
  enum Occupation {
586
590
  Student
587
- Startups
591
+ Entrepreneurs
588
592
  SMBs
589
- Corporations
590
- Professional
593
+ MidSizedCorporations
594
+ LargeCorporations
595
+ Professionals
591
596
  AngelInvestors
592
597
  FamilyOffice
593
598
  Retired
@@ -596,8 +601,10 @@ enum Occupation {
596
601
 
597
602
  enum Education {
598
603
  HighSchool
604
+ SomeCollege
599
605
  InCollege
600
606
  Bachelors
607
+ GraduateStudent
601
608
  Masters
602
609
  Doctorate
603
610
  NoPreference
@@ -895,6 +902,7 @@ model Service {
895
902
  serviceName String?
896
903
 
897
904
  //this is not the business info but that which is associated with the service
905
+ place String?
898
906
  email String?
899
907
  street String?
900
908
  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 {