@a_team/prisma 3.22.3-macos-docker-linux → 3.23.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 +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/{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 +25 -0
- package/dist/client/wasm.js +22 -0
- package/package.json +4 -2
|
@@ -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'
|