@valentine-efagene/qshelter-common 2.0.8 → 2.0.9

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": "@valentine-efagene/qshelter-common",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "description": "Shared database schemas and utilities for QShelter services",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -27,7 +27,8 @@ model User {
27
27
  lastName String?
28
28
  isActive Boolean @default(true)
29
29
  isEmailVerified Boolean @default(false)
30
- googleId String? @unique
30
+ googleId String?
31
+ avatar String?
31
32
  tenantId String?
32
33
  tenant Tenant? @relation(fields: [tenantId], references: [id], onDelete: SetNull)
33
34
  // Support multiple roles via explicit join table `UserRole`