@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash-app/bash-common",
3
- "version": "6.9.0",
3
+ "version": "6.11.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",
@@ -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])
@@ -166,7 +166,8 @@ export interface ReviewExt extends Review {
166
166
  }
167
167
 
168
168
  export interface UserExtraData extends User {
169
- password: string;
169
+ password?: string;
170
+ otp?: string;
170
171
  }
171
172
 
172
173
  export interface UserExt extends User {