@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.
- package/dist/client/edge.js +26 -4
- package/dist/client/index-browser.js +22 -0
- package/dist/client/index.d.ts +1790 -3
- package/dist/client/index.js +28 -6
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-debian-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +25 -0
- package/dist/client/wasm.js +22 -0
- package/package.json +2 -2
package/dist/client/{query_engine-windows.dll.node → libquery_engine-debian-openssl-3.0.x.so.node}
RENAMED
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -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
|
package/dist/client/wasm.js
CHANGED
|
@@ -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'
|