@a_team/prisma 3.20.1-macos-docker-linux → 3.20.2-linux
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/dist/client/edge.js +4 -4
- package/dist/client/index.d.ts +101 -5
- package/dist/client/index.js +6 -6
- package/dist/client/{libquery_engine-linux-arm64-openssl-3.0.x.so.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +2 -1
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -445,7 +445,7 @@ type WorkingHours {
|
|
|
445
445
|
daily LocalHourRange[]
|
|
446
446
|
utcStandardHours LocalHourRange[]
|
|
447
447
|
utcDaylightHours LocalHourRange[]
|
|
448
|
-
numberOfMinutesOverlap Int
|
|
448
|
+
numberOfMinutesOverlap Int?
|
|
449
449
|
}
|
|
450
450
|
|
|
451
451
|
type StructuredEnrichment {
|
|
@@ -1822,6 +1822,7 @@ model User {
|
|
|
1822
1822
|
proposalsAsTeamAdvisor Proposal[] @relation("teamAdvisor")
|
|
1823
1823
|
isUsingSharedCalendar Boolean @default(false)
|
|
1824
1824
|
timezone TimezoneObject?
|
|
1825
|
+
workingHours WorkingHours?
|
|
1825
1826
|
acceptTOS AcceptTOS?
|
|
1826
1827
|
acceptTOSHistory AcceptTOS[]
|
|
1827
1828
|
portfolio UserPortfolio?
|