@a_team/prisma 3.27.0-macos-docker-linux → 3.28.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 +41 -4
- package/dist/client/index-browser.js +37 -0
- package/dist/client/index.d.ts +19463 -15010
- package/dist/client/index.js +43 -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 +119 -62
- package/dist/client/wasm.js +37 -0
- package/package.json +4 -2
|
@@ -271,6 +271,17 @@ exports.Prisma.ContractScalarFieldEnum = {
|
|
|
271
271
|
builderId: 'builderId'
|
|
272
272
|
};
|
|
273
273
|
|
|
274
|
+
exports.Prisma.EvaluationProcessesScalarFieldEnum = {
|
|
275
|
+
id: 'id',
|
|
276
|
+
publicId: 'publicId',
|
|
277
|
+
status: 'status',
|
|
278
|
+
userId: 'userId',
|
|
279
|
+
evaluatorId: 'evaluatorId',
|
|
280
|
+
calendarEventId: 'calendarEventId',
|
|
281
|
+
createdAt: 'createdAt',
|
|
282
|
+
updatedAt: 'updatedAt'
|
|
283
|
+
};
|
|
284
|
+
|
|
274
285
|
exports.Prisma.EvaluationTranscriptAnalysisResultScalarFieldEnum = {
|
|
275
286
|
id: 'id',
|
|
276
287
|
created_at: 'created_at',
|
|
@@ -675,6 +686,18 @@ exports.Prisma.UserReviewScalarFieldEnum = {
|
|
|
675
686
|
endedRoleReasons: 'endedRoleReasons'
|
|
676
687
|
};
|
|
677
688
|
|
|
689
|
+
exports.Prisma.VetterScalarFieldEnum = {
|
|
690
|
+
id: 'id',
|
|
691
|
+
user: 'user',
|
|
692
|
+
isActive: 'isActive',
|
|
693
|
+
interviewCapacity: 'interviewCapacity',
|
|
694
|
+
type: 'type',
|
|
695
|
+
vettingSkills: 'vettingSkills',
|
|
696
|
+
vettingRoles: 'vettingRoles',
|
|
697
|
+
createdAt: 'createdAt',
|
|
698
|
+
updatedAt: 'updatedAt'
|
|
699
|
+
};
|
|
700
|
+
|
|
678
701
|
exports.Prisma.VettingProcessScalarFieldEnum = {
|
|
679
702
|
id: 'id',
|
|
680
703
|
userId: 'userId',
|
|
@@ -774,6 +797,12 @@ exports.ContractSource = exports.$Enums.ContractSource = {
|
|
|
774
797
|
ATeamGenerated: 'ATeamGenerated'
|
|
775
798
|
};
|
|
776
799
|
|
|
800
|
+
exports.EvaluationProcessStatus = exports.$Enums.EvaluationProcessStatus = {
|
|
801
|
+
Created: 'Created',
|
|
802
|
+
CallScheduled: 'CallScheduled',
|
|
803
|
+
Completed: 'Completed'
|
|
804
|
+
};
|
|
805
|
+
|
|
777
806
|
exports.ExperienceType = exports.$Enums.ExperienceType = {
|
|
778
807
|
job: 'job',
|
|
779
808
|
project: 'project',
|
|
@@ -931,6 +960,12 @@ exports.UserReviewRoleEndedReason = exports.$Enums.UserReviewRoleEndedReason = {
|
|
|
931
960
|
Builder: 'Builder'
|
|
932
961
|
};
|
|
933
962
|
|
|
963
|
+
exports.VetterType = exports.$Enums.VetterType = {
|
|
964
|
+
internalNonTechnical: 'internalNonTechnical',
|
|
965
|
+
selectionTeam: 'selectionTeam',
|
|
966
|
+
internalTechnical: 'internalTechnical'
|
|
967
|
+
};
|
|
968
|
+
|
|
934
969
|
exports.VettingProcessStatus = exports.$Enums.VettingProcessStatus = {
|
|
935
970
|
onHold: 'onHold',
|
|
936
971
|
pendingPreVettingForm: 'pendingPreVettingForm',
|
|
@@ -1105,6 +1140,7 @@ exports.Prisma.ModelName = {
|
|
|
1105
1140
|
ClientInterview: 'ClientInterview',
|
|
1106
1141
|
Company: 'Company',
|
|
1107
1142
|
Contract: 'Contract',
|
|
1143
|
+
EvaluationProcesses: 'EvaluationProcesses',
|
|
1108
1144
|
EvaluationTranscriptAnalysisResult: 'EvaluationTranscriptAnalysisResult',
|
|
1109
1145
|
Experience: 'Experience',
|
|
1110
1146
|
GptConfig: 'GptConfig',
|
|
@@ -1131,6 +1167,7 @@ exports.Prisma.ModelName = {
|
|
|
1131
1167
|
User: 'User',
|
|
1132
1168
|
UserPreference: 'UserPreference',
|
|
1133
1169
|
UserReview: 'UserReview',
|
|
1170
|
+
Vetter: 'Vetter',
|
|
1134
1171
|
VettingProcess: 'VettingProcess'
|
|
1135
1172
|
};
|
|
1136
1173
|
|