@a_team/prisma 3.22.3-win → 3.23.0-linux-debian

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-fdec4a11caadc444ebd2bc07088f6be17317d8da973a91c3748c724d505d9c5b",
2
+ "name": "prisma-client-e62ffe35ec93c88e3f0bed48fbbbb0933a6c51c43697ba4321e7973248211cf6",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -1507,6 +1507,7 @@ type CallParticipant {
1507
1507
 
1508
1508
  model RecordedCall {
1509
1509
  id String @id @default(auto()) @map("_id") @db.ObjectId
1510
+ transcripts Transcript[] @relation("RecordedCallTranscripts")
1510
1511
  callMeetingTitle String
1511
1512
  callUrl String
1512
1513
  startTime DateTime @db.Date
@@ -1738,6 +1739,30 @@ model TalentIndustry {
1738
1739
  @@map("talentIndustries")
1739
1740
  }
1740
1741
 
1742
+ enum TranscriptCallType {
1743
+ evaluation
1744
+ missionSuccess
1745
+ clientInterview
1746
+ }
1747
+
1748
+ model Transcript {
1749
+ id String @id @default(auto()) @map("_id") @db.ObjectId
1750
+ recordedCallId String? @db.ObjectId
1751
+ recordedCall RecordedCall? @relation("RecordedCallTranscripts", fields: [recordedCallId], references: [id])
1752
+ inputBucket String?
1753
+ inputKey String?
1754
+ inputRegion String?
1755
+ inputUrl String?
1756
+ callbackUrl String?
1757
+ callbackRef String?
1758
+ jobStatus String
1759
+ transcriptCallType TranscriptCallType?
1760
+ createdAt DateTime @default(now()) @db.Date
1761
+ updatedAt DateTime @updatedAt @db.Date
1762
+
1763
+ @@map("transcripts")
1764
+ }
1765
+
1741
1766
  enum RegisterRequestType {
1742
1767
  SUPERCHARGE
1743
1768
  BUILD_PRODUCT
@@ -572,6 +572,21 @@ exports.Prisma.TalentIndustryScalarFieldEnum = {
572
572
  textId: 'textId'
573
573
  };
574
574
 
575
+ exports.Prisma.TranscriptScalarFieldEnum = {
576
+ id: 'id',
577
+ recordedCallId: 'recordedCallId',
578
+ inputBucket: 'inputBucket',
579
+ inputKey: 'inputKey',
580
+ inputRegion: 'inputRegion',
581
+ inputUrl: 'inputUrl',
582
+ callbackUrl: 'callbackUrl',
583
+ callbackRef: 'callbackRef',
584
+ jobStatus: 'jobStatus',
585
+ transcriptCallType: 'transcriptCallType',
586
+ createdAt: 'createdAt',
587
+ updatedAt: 'updatedAt'
588
+ };
589
+
575
590
  exports.Prisma.UserScalarFieldEnum = {
576
591
  id: 'id',
577
592
  firstName: 'firstName',
@@ -807,6 +822,12 @@ exports.PresetID = exports.$Enums.PresetID = {
807
822
  crypto: 'crypto'
808
823
  };
809
824
 
825
+ exports.TranscriptCallType = exports.$Enums.TranscriptCallType = {
826
+ evaluation: 'evaluation',
827
+ missionSuccess: 'missionSuccess',
828
+ clientInterview: 'clientInterview'
829
+ };
830
+
810
831
  exports.UserStatus = exports.$Enums.UserStatus = {
811
832
  Registered: 'Registered',
812
833
  Active: 'Active',
@@ -1015,6 +1036,7 @@ exports.Prisma.ModelName = {
1015
1036
  Solution: 'Solution',
1016
1037
  TalentCategory: 'TalentCategory',
1017
1038
  TalentIndustry: 'TalentIndustry',
1039
+ Transcript: 'Transcript',
1018
1040
  User: 'User',
1019
1041
  UserPreference: 'UserPreference',
1020
1042
  UserReview: 'UserReview'
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.22.3-win",
3
+ "version": "3.23.0-linux-debian",
4
4
  "os": [
5
- "win32"
5
+ "linux"
6
6
  ],
7
7
  "cpu": [],
8
8
  "keywords": [],