@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.
- package/dist/client/edge.js +22 -4
- package/dist/client/index-browser.js +18 -0
- package/dist/client/index.d.ts +3067 -133
- package/dist/client/index.js +24 -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 +33 -7
- package/dist/client/wasm.js +18 -0
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -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
|
|
1454
|
+
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
1431
1455
|
anchors String[]
|
|
1432
|
-
title String
|
|
1433
|
-
deletedAt DateTime?
|
|
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
|
|
1632
|
-
description
|
|
1633
|
-
name
|
|
1634
|
-
textId
|
|
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
|
}
|
package/dist/client/wasm.js
CHANGED
|
@@ -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',
|