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