@bash-app/bash-common 6.9.0 → 6.11.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/extendedSchemas.ts +2 -1
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -164,6 +164,7 @@ model BashNotification {
|
|
|
164
164
|
bashEventId String?
|
|
165
165
|
bashEvent BashEvent? @relation(fields: [bashEventId], references: [id], onDelete: Cascade)
|
|
166
166
|
reminders Reminder[]
|
|
167
|
+
redirectUrl String?
|
|
167
168
|
|
|
168
169
|
@@unique([creatorId, email, bashEventId])
|
|
169
170
|
@@unique([creatorId, email, invitationId])
|
package/src/extendedSchemas.ts
CHANGED