@a_team/prisma 3.12.3-macos-docker-linux → 3.12.4-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 +6 -5
- package/dist/client/index-browser.js +2 -1
- package/dist/client/index.d.ts +104 -1
- package/dist/client/index.js +8 -7
- 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 +1 -0
- package/dist/client/wasm.js +2 -1
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -1424,6 +1424,7 @@ model User {
|
|
|
1424
1424
|
clientInterviews ClientInterview[] @relation("clientInterviews")
|
|
1425
1425
|
builderInterviews ClientInterview[] @relation("builderInterviews")
|
|
1426
1426
|
proposalsAsTeamAdvisor Proposal[] @relation("teamAdvisor")
|
|
1427
|
+
isUsingSharedCalendar Boolean @default(false)
|
|
1427
1428
|
|
|
1428
1429
|
@@map("users")
|
|
1429
1430
|
}
|
package/dist/client/wasm.js
CHANGED
|
@@ -465,7 +465,8 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
465
465
|
cvURL: 'cvURL',
|
|
466
466
|
onboardingStage: 'onboardingStage',
|
|
467
467
|
yearsExperience: 'yearsExperience',
|
|
468
|
-
websites: 'websites'
|
|
468
|
+
websites: 'websites',
|
|
469
|
+
isUsingSharedCalendar: 'isUsingSharedCalendar'
|
|
469
470
|
};
|
|
470
471
|
|
|
471
472
|
exports.Prisma.UserPreferenceScalarFieldEnum = {
|