@a_team/prisma 3.12.8-macos-docker-linux → 3.12.9-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 +9 -4
- package/dist/client/index-browser.js +5 -0
- package/dist/client/index.d.ts +390 -0
- package/dist/client/index.js +11 -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 +14 -0
- package/dist/client/wasm.js +5 -0
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -1379,6 +1379,18 @@ type UserExclusiveApplication {
|
|
|
1379
1379
|
updatedAt DateTime @db.Date
|
|
1380
1380
|
}
|
|
1381
1381
|
|
|
1382
|
+
enum TOSVersion {
|
|
1383
|
+
v1
|
|
1384
|
+
v2
|
|
1385
|
+
}
|
|
1386
|
+
|
|
1387
|
+
type AcceptTOS {
|
|
1388
|
+
signedAt DateTime
|
|
1389
|
+
ip String?
|
|
1390
|
+
contractId String? @db.ObjectId
|
|
1391
|
+
version TOSVersion?
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1382
1394
|
model User {
|
|
1383
1395
|
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
1384
1396
|
firstName String?
|
|
@@ -1432,6 +1444,8 @@ model User {
|
|
|
1432
1444
|
proposalsAsTeamAdvisor Proposal[] @relation("teamAdvisor")
|
|
1433
1445
|
isUsingSharedCalendar Boolean @default(false)
|
|
1434
1446
|
timezone TimezoneObject?
|
|
1447
|
+
acceptTOS AcceptTOS?
|
|
1448
|
+
acceptTOSHistory AcceptTOS[]
|
|
1435
1449
|
|
|
1436
1450
|
@@map("users")
|
|
1437
1451
|
}
|
package/dist/client/wasm.js
CHANGED
|
@@ -769,6 +769,11 @@ exports.HiringTimeline = exports.$Enums.HiringTimeline = {
|
|
|
769
769
|
exploring: 'exploring'
|
|
770
770
|
};
|
|
771
771
|
|
|
772
|
+
exports.TOSVersion = exports.$Enums.TOSVersion = {
|
|
773
|
+
v1: 'v1',
|
|
774
|
+
v2: 'v2'
|
|
775
|
+
};
|
|
776
|
+
|
|
772
777
|
exports.MissionRoleVisibilityStatus = exports.$Enums.MissionRoleVisibilityStatus = {
|
|
773
778
|
OnlyAdmin: 'OnlyAdmin',
|
|
774
779
|
All: 'All'
|