@a_team/prisma 3.21.2-macos-docker-linux → 3.22.0-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 +15 -4
- package/dist/client/index-browser.js +11 -0
- package/dist/client/index.d.ts +2080 -1
- package/dist/client/index.js +17 -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 +62 -0
- package/dist/client/wasm.js +11 -0
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -1285,6 +1285,68 @@ type ClientRoleQuestion {
|
|
|
1285
1285
|
updatedAt DateTime? @db.Date
|
|
1286
1286
|
}
|
|
1287
1287
|
|
|
1288
|
+
type PdfConfig {
|
|
1289
|
+
Transcoder String
|
|
1290
|
+
Meta Json
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
type BuilderResumeExperience {
|
|
1294
|
+
positionName String
|
|
1295
|
+
location String?
|
|
1296
|
+
current Boolean?
|
|
1297
|
+
startedOn String?
|
|
1298
|
+
endedOn String?
|
|
1299
|
+
summary String?
|
|
1300
|
+
company ResumeCompany
|
|
1301
|
+
skills String[]
|
|
1302
|
+
industries String[]
|
|
1303
|
+
}
|
|
1304
|
+
|
|
1305
|
+
type ResumeCompany {
|
|
1306
|
+
name String
|
|
1307
|
+
url String?
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
type BuilderResumeSchool {
|
|
1311
|
+
faculty String?
|
|
1312
|
+
startedYear Int?
|
|
1313
|
+
endedYear Int?
|
|
1314
|
+
degree String?
|
|
1315
|
+
school School
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
type School {
|
|
1319
|
+
name String
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
type BuilderResume {
|
|
1323
|
+
fullName String
|
|
1324
|
+
location String?
|
|
1325
|
+
headline String?
|
|
1326
|
+
summary String?
|
|
1327
|
+
email String?
|
|
1328
|
+
website String?
|
|
1329
|
+
yearsOfExperience String?
|
|
1330
|
+
phoneNumber String?
|
|
1331
|
+
builderExperiences BuilderResumeExperience[]
|
|
1332
|
+
builderSchools BuilderResumeSchool[]
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
model ParsedResume {
|
|
1336
|
+
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
1337
|
+
url String
|
|
1338
|
+
rawText String
|
|
1339
|
+
config PdfConfig
|
|
1340
|
+
userId String @db.ObjectId
|
|
1341
|
+
structuredData BuilderResume?
|
|
1342
|
+
createdAt DateTime @default(now())
|
|
1343
|
+
updatedAt DateTime? @updatedAt
|
|
1344
|
+
deletedAt DateTime?
|
|
1345
|
+
|
|
1346
|
+
@@index([userId, createdAt(sort: Desc), url])
|
|
1347
|
+
@@map("parsedResumes")
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1288
1350
|
enum PaymentCycleStatus {
|
|
1289
1351
|
Open
|
|
1290
1352
|
Closed
|
package/dist/client/wasm.js
CHANGED
|
@@ -442,6 +442,16 @@ exports.Prisma.MissionSpecScalarFieldEnum = {
|
|
|
442
442
|
workingHoursNumberOfMinutesOverlap: 'workingHoursNumberOfMinutesOverlap'
|
|
443
443
|
};
|
|
444
444
|
|
|
445
|
+
exports.Prisma.ParsedResumeScalarFieldEnum = {
|
|
446
|
+
id: 'id',
|
|
447
|
+
url: 'url',
|
|
448
|
+
rawText: 'rawText',
|
|
449
|
+
userId: 'userId',
|
|
450
|
+
createdAt: 'createdAt',
|
|
451
|
+
updatedAt: 'updatedAt',
|
|
452
|
+
deletedAt: 'deletedAt'
|
|
453
|
+
};
|
|
454
|
+
|
|
445
455
|
exports.Prisma.PaymentCycleScalarFieldEnum = {
|
|
446
456
|
id: 'id',
|
|
447
457
|
mission: 'mission',
|
|
@@ -994,6 +1004,7 @@ exports.Prisma.ModelName = {
|
|
|
994
1004
|
MissionApplication: 'MissionApplication',
|
|
995
1005
|
MissionPrefill: 'MissionPrefill',
|
|
996
1006
|
MissionSpec: 'MissionSpec',
|
|
1007
|
+
ParsedResume: 'ParsedResume',
|
|
997
1008
|
PaymentCycle: 'PaymentCycle',
|
|
998
1009
|
Proposal: 'Proposal',
|
|
999
1010
|
RecordedCall: 'RecordedCall',
|