@a_team/prisma 3.20.3-macos-docker-linux → 3.21.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-df04df23e177a05608bd74a93152d5b138de30b3905b6538610cf06459b875c0",
2
+ "name": "prisma-client-62529c4f9d64fda8d0b173a678fd95d6751870b2a82ab68a844dd0d1e9bee18b",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -733,6 +733,30 @@ type LinkedInRecommenderPosition {
733
733
  companyLogo String?
734
734
  }
735
735
 
736
+ model MapperIndustryTitleToTalentIndustry {
737
+ id String @id @default(auto()) @map("_id") @db.ObjectId
738
+ industryTitle String @unique
739
+ talentIndustryId String @db.ObjectId
740
+ createdAt DateTime @default(now()) @db.Date
741
+ updatedAt DateTime? @updatedAt @db.Date
742
+
743
+ talentIndustry TalentIndustry @relation(fields: [talentIndustryId], references: [id])
744
+
745
+ @@map("mapperIndustryTitleToTalentIndustries")
746
+ }
747
+
748
+ model MapperRoleTitleToRoleCategory {
749
+ id String @id @default(auto()) @map("_id") @db.ObjectId
750
+ roleTitle String @unique
751
+ roleCategoryId String @db.ObjectId
752
+ createdAt DateTime @default(now()) @db.Date
753
+ updatedAt DateTime? @updatedAt @db.Date
754
+
755
+ roleCategory RoleCategory @relation(fields: [roleCategoryId], references: [id])
756
+
757
+ @@map("mapperRoleTitleToRoleCategories")
758
+ }
759
+
736
760
  type MissionRoleAvailability {
737
761
  date DateTime? @db.Date
738
762
  scheduledEndDate DateTime? @db.Date
@@ -1427,12 +1451,13 @@ model RecordedCall {
1427
1451
  }
1428
1452
 
1429
1453
  model RoleCategory {
1430
- id String @id @default(auto()) @map("_id") @db.ObjectId
1454
+ id String @id @default(auto()) @map("_id") @db.ObjectId
1431
1455
  anchors String[]
1432
- title String @unique(map: "title_1")
1433
- deletedAt DateTime? @db.Date
1456
+ title String @unique(map: "title_1")
1457
+ deletedAt DateTime? @db.Date
1434
1458
  group String?
1435
1459
  talentCategoryIds String[]
1460
+ mappedRoleTitles MapperRoleTitleToRoleCategory[]
1436
1461
 
1437
1462
  @@map("roleCategories")
1438
1463
  }
@@ -1628,10 +1653,11 @@ model TalentCategory {
1628
1653
  }
1629
1654
 
1630
1655
  model TalentIndustry {
1631
- id String @id @default(auto()) @map("_id") @db.ObjectId
1632
- description String
1633
- name String
1634
- textId String @unique(map: "textId_1")
1656
+ id String @id @default(auto()) @map("_id") @db.ObjectId
1657
+ description String
1658
+ name String
1659
+ textId String @unique(map: "textId_1")
1660
+ MapperIndustryTitleToTalentIndustry MapperIndustryTitleToTalentIndustry[]
1635
1661
 
1636
1662
  @@map("talentIndustries")
1637
1663
  }
@@ -325,6 +325,22 @@ exports.Prisma.LinkedInRecommendationScalarFieldEnum = {
325
325
  relationship: 'relationship'
326
326
  };
327
327
 
328
+ exports.Prisma.MapperIndustryTitleToTalentIndustryScalarFieldEnum = {
329
+ id: 'id',
330
+ industryTitle: 'industryTitle',
331
+ talentIndustryId: 'talentIndustryId',
332
+ createdAt: 'createdAt',
333
+ updatedAt: 'updatedAt'
334
+ };
335
+
336
+ exports.Prisma.MapperRoleTitleToRoleCategoryScalarFieldEnum = {
337
+ id: 'id',
338
+ roleTitle: 'roleTitle',
339
+ roleCategoryId: 'roleCategoryId',
340
+ createdAt: 'createdAt',
341
+ updatedAt: 'updatedAt'
342
+ };
343
+
328
344
  exports.Prisma.MissionScalarFieldEnum = {
329
345
  mid: 'mid',
330
346
  accountId: 'accountId',
@@ -969,6 +985,8 @@ exports.Prisma.ModelName = {
969
985
  Experience: 'Experience',
970
986
  Invoice: 'Invoice',
971
987
  LinkedInRecommendation: 'LinkedInRecommendation',
988
+ MapperIndustryTitleToTalentIndustry: 'MapperIndustryTitleToTalentIndustry',
989
+ MapperRoleTitleToRoleCategory: 'MapperRoleTitleToRoleCategory',
972
990
  Mission: 'Mission',
973
991
  MissionApplication: 'MissionApplication',
974
992
  MissionPrefill: 'MissionPrefill',
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.20.3-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.21.0-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "prisma": {