@bash-app/bash-common 20.5.0 → 20.5.1
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 +19 -19
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -336,7 +336,7 @@ enum UserSubscriptionType {
|
|
|
336
336
|
VIP
|
|
337
337
|
}
|
|
338
338
|
|
|
339
|
-
model
|
|
339
|
+
model SubServiceSubscription {
|
|
340
340
|
id String @id @default(cuid())
|
|
341
341
|
ownerId String
|
|
342
342
|
owner User @relation(fields: [ownerId], references: [id], onDelete: Cascade)
|
|
@@ -793,11 +793,11 @@ enum SponsorType {
|
|
|
793
793
|
}
|
|
794
794
|
|
|
795
795
|
model User {
|
|
796
|
-
id String
|
|
797
|
-
email String
|
|
798
|
-
createdOn DateTime
|
|
799
|
-
stripeCustomerId String?
|
|
800
|
-
stripeAccountId String?
|
|
796
|
+
id String @id @default(cuid())
|
|
797
|
+
email String @unique
|
|
798
|
+
createdOn DateTime @default(now())
|
|
799
|
+
stripeCustomerId String? @unique
|
|
800
|
+
stripeAccountId String? @unique
|
|
801
801
|
googleCalendarAccess String?
|
|
802
802
|
givenName String?
|
|
803
803
|
familyName String?
|
|
@@ -808,11 +808,11 @@ model User {
|
|
|
808
808
|
dob DateTime?
|
|
809
809
|
gender Gender?
|
|
810
810
|
sex Sex?
|
|
811
|
-
roles UserRole[]
|
|
811
|
+
roles UserRole[] @default([User])
|
|
812
812
|
services Service[]
|
|
813
|
-
createdEvents BashEvent[]
|
|
814
|
-
ticketsISent Ticket[]
|
|
815
|
-
ticketsIOwn Ticket[]
|
|
813
|
+
createdEvents BashEvent[] @relation("CreatedEvent")
|
|
814
|
+
ticketsISent Ticket[] @relation("TicketsISent")
|
|
815
|
+
ticketsIOwn Ticket[] @relation("TicketsIOwn")
|
|
816
816
|
reviews Review[]
|
|
817
817
|
sponsorships SponsoredEvent[]
|
|
818
818
|
investments Investment[]
|
|
@@ -835,18 +835,18 @@ model User {
|
|
|
835
835
|
city String?
|
|
836
836
|
state String?
|
|
837
837
|
postalCode String?
|
|
838
|
-
country String?
|
|
838
|
+
country String? @default("US")
|
|
839
839
|
phone String?
|
|
840
|
-
documentIDId String?
|
|
840
|
+
documentIDId String? @unique
|
|
841
841
|
documentID DocumentID?
|
|
842
842
|
comment BashComment[]
|
|
843
843
|
associatedBashes AssociatedBash[]
|
|
844
|
-
invitationsCreatedByMe Invitation[]
|
|
845
|
-
invitationsSentToMe Invitation[]
|
|
846
|
-
notificationsCreatedByMe BashNotification[]
|
|
847
|
-
remindersCreatedByMe Reminder[]
|
|
848
|
-
remindersAssignedToMe Reminder[]
|
|
849
|
-
eventTasksAssignedToMe EventTask[]
|
|
844
|
+
invitationsCreatedByMe Invitation[] @relation("InvitationsCreatedByMe")
|
|
845
|
+
invitationsSentToMe Invitation[] @relation("InvitationsSentToMe")
|
|
846
|
+
notificationsCreatedByMe BashNotification[] @relation("NotificationsCreatedByMe")
|
|
847
|
+
remindersCreatedByMe Reminder[] @relation("RemindersCreatedByMe")
|
|
848
|
+
remindersAssignedToMe Reminder[] @relation("RemindersAssignedToMe")
|
|
849
|
+
eventTasksAssignedToMe EventTask[] @relation("TasksAssignedToMe")
|
|
850
850
|
checkouts Checkout[]
|
|
851
851
|
ticketTiersWaitListsIveJoined TicketTier[]
|
|
852
852
|
contacts Contact[]
|
|
@@ -854,7 +854,7 @@ model User {
|
|
|
854
854
|
ServiceCheckout ServiceCheckout[]
|
|
855
855
|
bookingForMe Booking[]
|
|
856
856
|
bashSubscription UserSubscription?
|
|
857
|
-
subServiceSubcriptions
|
|
857
|
+
subServiceSubcriptions SubServiceSubscription[]
|
|
858
858
|
}
|
|
859
859
|
|
|
860
860
|
model Contact {
|