@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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-62529c4f9d64fda8d0b173a678fd95d6751870b2a82ab68a844dd0d1e9bee18b",
2
+ "name": "prisma-client-ab5d3eb50137b0085c3983c0cb6f99f8886d306a546d521e67a72a76d343e380",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -618,27 +618,32 @@ type ExperienceMember {
618
618
  }
619
619
 
620
620
  model Experience {
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
- members ExperienceMember[]
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 @id @default(auto()) @map("_id") @db.ObjectId
1459
+ id String @id @default(auto()) @map("_id") @db.ObjectId
1455
1460
  anchors String[]
1456
- title String @unique(map: "title_1")
1457
- deletedAt DateTime? @db.Date
1461
+ title String @unique(map: "title_1")
1462
+ deletedAt DateTime? @db.Date
1458
1463
  group String?
1459
1464
  talentCategoryIds String[]
1460
- mappedRoleTitles MapperRoleTitleToRoleCategory[]
1465
+
1466
+ mappedRoleTitles MapperRoleTitleToRoleCategory[]
1467
+ Experience Experience[]
1461
1468
 
1462
1469
  @@map("roleCategories")
1463
1470
  }
@@ -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 = {
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.21.0-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.21.1-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "prisma": {