@a_team/prisma 3.12.2-win → 3.12.3-linux-debian

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-2e3bca6f792e57183ce4aa4e398bfe7f2a78fc2336ff0e5f319b8d8b096258a0",
2
+ "name": "prisma-client-d72d302f762238ce84eae77c1ec8c181f43aa8633603c25ef40f4bf39e086243",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -1368,55 +1368,62 @@ type PlatformExperience {
1368
1368
  billedMinutes Float
1369
1369
  }
1370
1370
 
1371
+ type UserExclusiveApplication {
1372
+ aid String @db.ObjectId
1373
+ updatedAt DateTime @db.Date
1374
+ }
1375
+
1371
1376
  model User {
1372
- id String @id @default(auto()) @map("_id") @db.ObjectId
1373
- firstName String?
1374
- lastName String?
1375
- username String? @unique(map: "username_1")
1376
- email String @unique(map: "email_1")
1377
- isAdmin Boolean @default(false)
1378
- createdMissionsModels Mission[] @relation("creator")
1379
- ownedMissionsModels Mission[] @relation("ownerModel")
1380
- type String
1381
- pictureURL String?
1382
- status UserStatus
1383
- createdAt DateTime @default(now()) @db.Date
1384
- titles String[]
1385
- scrubbed String?
1386
- tokenVersion Int
1387
- clientRegistration ClientRegistration?
1388
- authoredMissionSpecs MissionSpec[] @relation("author")
1389
- modifiedMissionSpecs MissionSpec[] @relation("lastModifier")
1390
- missionPrefills MissionPrefill[] @relation("user")
1391
- aboutMe String?
1392
- profileCompleteness ProfileCompletenessObject?
1393
- cvURL String?
1394
- linkedin LinkedInObject?
1395
- rateRange RateRange?
1396
- talentProfile TalentProfile?
1397
- onboardingStage InternalOnboardingStage?
1398
- missionPreferences MissionPreferences?
1399
- availability Availability?
1400
- missionApplication MissionApplication[]
1401
- github GitHubData?
1402
- dribbble DribbbleData?
1403
- yearsExperience Float?
1404
- websites String[]
1405
- location Location?
1377
+ id String @id @default(auto()) @map("_id") @db.ObjectId
1378
+ firstName String?
1379
+ lastName String?
1380
+ username String? @unique(map: "username_1")
1381
+ email String @unique(map: "email_1")
1382
+ isAdmin Boolean @default(false)
1383
+ createdMissionsModels Mission[] @relation("creator")
1384
+ ownedMissionsModels Mission[] @relation("ownerModel")
1385
+ type String
1386
+ pictureURL String?
1387
+ status UserStatus
1388
+ createdAt DateTime @default(now()) @db.Date
1389
+ titles String[]
1390
+ scrubbed String?
1391
+ tokenVersion Int
1392
+ clientRegistration ClientRegistration?
1393
+ authoredMissionSpecs MissionSpec[] @relation("author")
1394
+ modifiedMissionSpecs MissionSpec[] @relation("lastModifier")
1395
+ missionPrefills MissionPrefill[] @relation("user")
1396
+ aboutMe String?
1397
+ profileCompleteness ProfileCompletenessObject?
1398
+ cvURL String?
1399
+ linkedin LinkedInObject?
1400
+ rateRange RateRange?
1401
+ talentProfile TalentProfile?
1402
+ onboardingStage InternalOnboardingStage?
1403
+ missionPreferences MissionPreferences?
1404
+ availability Availability?
1405
+ missionApplication MissionApplication[]
1406
+ github GitHubData?
1407
+ dribbble DribbbleData?
1408
+ yearsExperience Float?
1409
+ websites String[]
1410
+ location Location?
1411
+ exclusiveApplication UserExclusiveApplication?
1412
+
1406
1413
  platformExperience PlatformExperience?
1407
- authoredProposals Proposal[] @relation("createdBy")
1408
- sharedProposals Proposal[] @relation("sharedBy")
1414
+ authoredProposals Proposal[] @relation("createdBy")
1415
+ sharedProposals Proposal[] @relation("sharedBy")
1409
1416
  linkedInRecommendations LinkedInRecommendation[]
1410
- givenReviews UserReview[] @relation("fromUser")
1411
- receivedReviews UserReview[] @relation("toUser")
1412
- calendar Calendar? @relation("calendarUser")
1413
- interviews CalendarEvent[] @relation("eventOwner")
1414
- calendarAvailability CalendarAvailability[] @relation("userCalendarAvailability")
1415
- preferences UserPreference? @relation("userPreferences")
1416
- rescheduledInterviews CalendarEvent[] @relation("reschedulingUser")
1417
- clientInterviews ClientInterview[] @relation("clientInterviews")
1418
- builderInterviews ClientInterview[] @relation("builderInterviews")
1419
- proposalsAsTeamAdvisor Proposal[] @relation("teamAdvisor")
1417
+ givenReviews UserReview[] @relation("fromUser")
1418
+ receivedReviews UserReview[] @relation("toUser")
1419
+ calendar Calendar? @relation("calendarUser")
1420
+ interviews CalendarEvent[] @relation("eventOwner")
1421
+ calendarAvailability CalendarAvailability[] @relation("userCalendarAvailability")
1422
+ preferences UserPreference? @relation("userPreferences")
1423
+ rescheduledInterviews CalendarEvent[] @relation("reschedulingUser")
1424
+ clientInterviews ClientInterview[] @relation("clientInterviews")
1425
+ builderInterviews ClientInterview[] @relation("builderInterviews")
1426
+ proposalsAsTeamAdvisor Proposal[] @relation("teamAdvisor")
1420
1427
 
1421
1428
  @@map("users")
1422
1429
  }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.12.2-win",
3
+ "version": "3.12.3-linux-debian",
4
4
  "os": [
5
- "win32"
5
+ "linux"
6
6
  ],
7
7
  "cpu": [],
8
8
  "keywords": [],