@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.
- package/dist/client/edge.js +4 -4
- package/dist/client/index.d.ts +204 -0
- package/dist/client/index.js +6 -6
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-debian-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +53 -46
- package/package.json +2 -2
package/dist/client/{query_engine-windows.dll.node → libquery_engine-debian-openssl-3.0.x.so.node}
RENAMED
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -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
|
|
1373
|
-
firstName
|
|
1374
|
-
lastName
|
|
1375
|
-
username
|
|
1376
|
-
email
|
|
1377
|
-
isAdmin
|
|
1378
|
-
createdMissionsModels
|
|
1379
|
-
ownedMissionsModels
|
|
1380
|
-
type
|
|
1381
|
-
pictureURL
|
|
1382
|
-
status
|
|
1383
|
-
createdAt
|
|
1384
|
-
titles
|
|
1385
|
-
scrubbed
|
|
1386
|
-
tokenVersion
|
|
1387
|
-
clientRegistration
|
|
1388
|
-
authoredMissionSpecs
|
|
1389
|
-
modifiedMissionSpecs
|
|
1390
|
-
missionPrefills
|
|
1391
|
-
aboutMe
|
|
1392
|
-
profileCompleteness
|
|
1393
|
-
cvURL
|
|
1394
|
-
linkedin
|
|
1395
|
-
rateRange
|
|
1396
|
-
talentProfile
|
|
1397
|
-
onboardingStage
|
|
1398
|
-
missionPreferences
|
|
1399
|
-
availability
|
|
1400
|
-
missionApplication
|
|
1401
|
-
github
|
|
1402
|
-
dribbble
|
|
1403
|
-
yearsExperience
|
|
1404
|
-
websites
|
|
1405
|
-
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[]
|
|
1408
|
-
sharedProposals Proposal[]
|
|
1414
|
+
authoredProposals Proposal[] @relation("createdBy")
|
|
1415
|
+
sharedProposals Proposal[] @relation("sharedBy")
|
|
1409
1416
|
linkedInRecommendations LinkedInRecommendation[]
|
|
1410
|
-
givenReviews UserReview[]
|
|
1411
|
-
receivedReviews UserReview[]
|
|
1412
|
-
calendar Calendar?
|
|
1413
|
-
interviews CalendarEvent[]
|
|
1414
|
-
calendarAvailability CalendarAvailability[]
|
|
1415
|
-
preferences UserPreference?
|
|
1416
|
-
rescheduledInterviews CalendarEvent[]
|
|
1417
|
-
clientInterviews ClientInterview[]
|
|
1418
|
-
builderInterviews ClientInterview[]
|
|
1419
|
-
proposalsAsTeamAdvisor Proposal[]
|
|
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
|
}
|