@bash-app/bash-common 30.71.0 → 30.72.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 +8 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -1446,6 +1446,14 @@ model UserPreferences {
|
|
|
1446
1446
|
communicationFrequency String @default("NORMAL") // LOW, NORMAL, HIGH
|
|
1447
1447
|
preferredContactMethod String @default("EMAIL") // EMAIL, PUSH, SMS
|
|
1448
1448
|
|
|
1449
|
+
// Calendar Integration (Google Calendar Sync)
|
|
1450
|
+
googleCalendarSyncEnabled Boolean @default(false) // Legacy - keeping for backward compatibility
|
|
1451
|
+
googleCalendarEventsSync Boolean @default(false) // Sync events user is attending
|
|
1452
|
+
googleCalendarServicesSync Boolean @default(false) // Sync services user is providing
|
|
1453
|
+
localEventsToCalendarSync Boolean @default(false) // Push local Bash events to Google Calendar
|
|
1454
|
+
localEventsCity String @default("") // City for local events sync
|
|
1455
|
+
localEventsState String @default("") // State for local events sync
|
|
1456
|
+
|
|
1449
1457
|
// Use PascalCase table name to match your database convention
|
|
1450
1458
|
}
|
|
1451
1459
|
|