@a_team/prisma 3.30.2-win → 3.31.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 +37 -5
- package/dist/client/index-browser.js +33 -1
- package/dist/client/index.d.ts +3235 -301
- package/dist/client/index.js +39 -7
- 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 +153 -87
- package/dist/client/wasm.js +33 -1
- package/package.json +2 -2
|
@@ -656,6 +656,7 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
656
656
|
onboardingStage: 'onboardingStage',
|
|
657
657
|
yearsExperience: 'yearsExperience',
|
|
658
658
|
websites: 'websites',
|
|
659
|
+
lastScheduledVettingInterviewDate: 'lastScheduledVettingInterviewDate',
|
|
659
660
|
isUsingSharedCalendar: 'isUsingSharedCalendar'
|
|
660
661
|
};
|
|
661
662
|
|
|
@@ -706,6 +707,7 @@ exports.Prisma.VettingProcessScalarFieldEnum = {
|
|
|
706
707
|
vettingType: 'vettingType',
|
|
707
708
|
preVettingFormNonce: 'preVettingFormNonce',
|
|
708
709
|
automationReason: 'automationReason',
|
|
710
|
+
markedAsStaleAt: 'markedAsStaleAt',
|
|
709
711
|
categoryId: 'categoryId',
|
|
710
712
|
primaryRoleCategoryId: 'primaryRoleCategoryId',
|
|
711
713
|
contactOwnerId: 'contactOwnerId',
|
|
@@ -722,6 +724,17 @@ exports.Prisma.VettingProcessScalarFieldEnum = {
|
|
|
722
724
|
updatedAt: 'updatedAt'
|
|
723
725
|
};
|
|
724
726
|
|
|
727
|
+
exports.Prisma.VettingProcessAuditScalarFieldEnum = {
|
|
728
|
+
id: 'id',
|
|
729
|
+
date: 'date',
|
|
730
|
+
auditType: 'auditType',
|
|
731
|
+
payload: 'payload',
|
|
732
|
+
vettingProcessId: 'vettingProcessId',
|
|
733
|
+
userId: 'userId',
|
|
734
|
+
createdAt: 'createdAt',
|
|
735
|
+
updatedAt: 'updatedAt'
|
|
736
|
+
};
|
|
737
|
+
|
|
725
738
|
exports.Prisma.SortOrder = {
|
|
726
739
|
asc: 'asc',
|
|
727
740
|
desc: 'desc'
|
|
@@ -999,6 +1012,24 @@ exports.VettingProcessAutomationReason = exports.$Enums.VettingProcessAutomation
|
|
|
999
1012
|
Exceptional: 'Exceptional'
|
|
1000
1013
|
};
|
|
1001
1014
|
|
|
1015
|
+
exports.VettingProcessAuditType = exports.$Enums.VettingProcessAuditType = {
|
|
1016
|
+
ProcessStarted: 'ProcessStarted',
|
|
1017
|
+
PreVettingFormSubmission: 'PreVettingFormSubmission',
|
|
1018
|
+
NotifyInterviewerOnProcess: 'NotifyInterviewerOnProcess',
|
|
1019
|
+
ProcessAcceptedByInterviewer: 'ProcessAcceptedByInterviewer',
|
|
1020
|
+
ProcessDeclinedByInterviewer: 'ProcessDeclinedByInterviewer',
|
|
1021
|
+
InterviewDateSet: 'InterviewDateSet',
|
|
1022
|
+
FeedbackFormSubmission: 'FeedbackFormSubmission',
|
|
1023
|
+
FeedbackFormEdited: 'FeedbackFormEdited',
|
|
1024
|
+
BuilderOptedOutOfVetting: 'BuilderOptedOutOfVetting',
|
|
1025
|
+
ProcessRemoved: 'ProcessRemoved',
|
|
1026
|
+
EvaluationInviteEmail: 'EvaluationInviteEmail',
|
|
1027
|
+
BuilderNoShow: 'BuilderNoShow',
|
|
1028
|
+
VetterNoShow: 'VetterNoShow',
|
|
1029
|
+
BuilderCanceled: 'BuilderCanceled',
|
|
1030
|
+
VetterCanceled: 'VetterCanceled'
|
|
1031
|
+
};
|
|
1032
|
+
|
|
1002
1033
|
exports.BillingPaymentDue = exports.$Enums.BillingPaymentDue = {
|
|
1003
1034
|
Net0: 'Net0',
|
|
1004
1035
|
Net15: 'Net15',
|
|
@@ -1188,7 +1219,8 @@ exports.Prisma.ModelName = {
|
|
|
1188
1219
|
UserPreference: 'UserPreference',
|
|
1189
1220
|
UserReview: 'UserReview',
|
|
1190
1221
|
Vetter: 'Vetter',
|
|
1191
|
-
VettingProcess: 'VettingProcess'
|
|
1222
|
+
VettingProcess: 'VettingProcess',
|
|
1223
|
+
VettingProcessAudit: 'VettingProcessAudit'
|
|
1192
1224
|
};
|
|
1193
1225
|
|
|
1194
1226
|
/**
|