@a_team/prisma 3.14.2-macos-docker-linux → 3.14.3-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 +20 -12
- 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 +3 -2
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -692,6 +692,7 @@ enum MissionRoleVisibilityStatus {
|
|
|
692
692
|
|
|
693
693
|
type MissionRoleVisibility {
|
|
694
694
|
visibilityStatus MissionRoleVisibilityStatus
|
|
695
|
+
allVisibleAt DateTime? @db.Date
|
|
695
696
|
}
|
|
696
697
|
|
|
697
698
|
type MissionRoleWorkingHours {
|
|
@@ -1584,8 +1585,8 @@ type UserEventType {
|
|
|
1584
1585
|
type Preferences {
|
|
1585
1586
|
disableSuggestionsTimeLimit Boolean?
|
|
1586
1587
|
hasAcceptedYouAreIn Boolean?
|
|
1587
|
-
dismissedLinkedinBannerAt
|
|
1588
|
-
lastLinkedInRecommendationsFetch
|
|
1588
|
+
dismissedLinkedinBannerAt DateTime? @db.Date
|
|
1589
|
+
lastLinkedInRecommendationsFetch DateTime? @db.Date
|
|
1589
1590
|
shouldAutoRecord Boolean @default(true)
|
|
1590
1591
|
bookingFrequency BookingFrequency?
|
|
1591
1592
|
}
|