@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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-b5114f5226e35b66632a46cd80fc36cba751f0fb9ff4a896f411493c53c48acf",
2
+ "name": "prisma-client-717937946930a34f598be78ab6a8cec9f7ae7492d4eefb8f047aa1c7105fb641",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -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
  }
@@ -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'
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.12.8-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.12.9-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "prisma": {