@a_team/prisma 3.21.0-macos-docker-linux → 3.21.1-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 +8 -5
- package/dist/client/index-browser.js +4 -1
- package/dist/client/index.d.ts +485 -3
- package/dist/client/index.js +10 -7
- 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 +32 -25
- package/dist/client/wasm.js +4 -1
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -618,27 +618,32 @@ type ExperienceMember {
|
|
|
618
618
|
}
|
|
619
619
|
|
|
620
620
|
model Experience {
|
|
621
|
-
id
|
|
622
|
-
kind
|
|
623
|
-
title
|
|
624
|
-
name
|
|
625
|
-
summary
|
|
626
|
-
imageURL
|
|
627
|
-
imagesUrls
|
|
628
|
-
logoURL
|
|
629
|
-
websiteURL
|
|
630
|
-
jobRole
|
|
631
|
-
jobRoleId
|
|
632
|
-
projectUrl
|
|
633
|
-
industry
|
|
634
|
-
industries
|
|
635
|
-
companyV2Id
|
|
636
|
-
companyName
|
|
637
|
-
startDate
|
|
638
|
-
endDate
|
|
639
|
-
description
|
|
640
|
-
skills
|
|
641
|
-
|
|
621
|
+
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
622
|
+
kind ExperienceType
|
|
623
|
+
title String?
|
|
624
|
+
name String?
|
|
625
|
+
summary String?
|
|
626
|
+
imageURL String?
|
|
627
|
+
imagesUrls String[]
|
|
628
|
+
logoURL String?
|
|
629
|
+
websiteURL String?
|
|
630
|
+
jobRole String?
|
|
631
|
+
jobRoleId String? @db.ObjectId
|
|
632
|
+
projectUrl String?
|
|
633
|
+
industry String? @db.ObjectId
|
|
634
|
+
industries String[] @db.ObjectId
|
|
635
|
+
companyV2Id String? @db.ObjectId
|
|
636
|
+
companyName String?
|
|
637
|
+
startDate DateTime? @db.Date
|
|
638
|
+
endDate DateTime? @db.Date
|
|
639
|
+
description String?
|
|
640
|
+
skills String[] @db.ObjectId
|
|
641
|
+
talentSpecializationId String? @db.ObjectId
|
|
642
|
+
createdAt DateTime? @default(now()) @db.Date
|
|
643
|
+
updatedAt DateTime? @updatedAt @db.Date
|
|
644
|
+
|
|
645
|
+
talentSpecialization RoleCategory? @relation(fields: [talentSpecializationId], references: [id])
|
|
646
|
+
members ExperienceMember[]
|
|
642
647
|
|
|
643
648
|
@@index([members.user], map: "members.user_1_key_1")
|
|
644
649
|
@@map("experiences")
|
|
@@ -1451,13 +1456,15 @@ model RecordedCall {
|
|
|
1451
1456
|
}
|
|
1452
1457
|
|
|
1453
1458
|
model RoleCategory {
|
|
1454
|
-
id String
|
|
1459
|
+
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
1455
1460
|
anchors String[]
|
|
1456
|
-
title String
|
|
1457
|
-
deletedAt DateTime?
|
|
1461
|
+
title String @unique(map: "title_1")
|
|
1462
|
+
deletedAt DateTime? @db.Date
|
|
1458
1463
|
group String?
|
|
1459
1464
|
talentCategoryIds String[]
|
|
1460
|
-
|
|
1465
|
+
|
|
1466
|
+
mappedRoleTitles MapperRoleTitleToRoleCategory[]
|
|
1467
|
+
Experience Experience[]
|
|
1461
1468
|
|
|
1462
1469
|
@@map("roleCategories")
|
|
1463
1470
|
}
|
package/dist/client/wasm.js
CHANGED
|
@@ -291,7 +291,10 @@ exports.Prisma.ExperienceScalarFieldEnum = {
|
|
|
291
291
|
startDate: 'startDate',
|
|
292
292
|
endDate: 'endDate',
|
|
293
293
|
description: 'description',
|
|
294
|
-
skills: 'skills'
|
|
294
|
+
skills: 'skills',
|
|
295
|
+
talentSpecializationId: 'talentSpecializationId',
|
|
296
|
+
createdAt: 'createdAt',
|
|
297
|
+
updatedAt: 'updatedAt'
|
|
295
298
|
};
|
|
296
299
|
|
|
297
300
|
exports.Prisma.InvoiceScalarFieldEnum = {
|