@a_team/prisma 3.23.7-win → 3.24.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 +49 -5
- package/dist/client/index-browser.js +45 -1
- package/dist/client/index.d.ts +10876 -6438
- package/dist/client/index.js +51 -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 +91 -0
- package/dist/client/wasm.js +45 -1
- package/package.json +5 -3
|
@@ -444,6 +444,14 @@ exports.Prisma.MissionSpecScalarFieldEnum = {
|
|
|
444
444
|
workingHoursNumberOfMinutesOverlap: 'workingHoursNumberOfMinutesOverlap'
|
|
445
445
|
};
|
|
446
446
|
|
|
447
|
+
exports.Prisma.MissionSuccessCallScalarFieldEnum = {
|
|
448
|
+
id: 'id',
|
|
449
|
+
type: 'type',
|
|
450
|
+
calComDailyMeetingId: 'calComDailyMeetingId',
|
|
451
|
+
transcriptJobIds: 'transcriptJobIds',
|
|
452
|
+
createdAt: 'createdAt'
|
|
453
|
+
};
|
|
454
|
+
|
|
447
455
|
exports.Prisma.ParsedResumeScalarFieldEnum = {
|
|
448
456
|
id: 'id',
|
|
449
457
|
url: 'url',
|
|
@@ -593,6 +601,7 @@ exports.Prisma.TranscriptScalarFieldEnum = {
|
|
|
593
601
|
shortDuration: 'shortDuration',
|
|
594
602
|
mtgSessionId: 'mtgSessionId',
|
|
595
603
|
error: 'error',
|
|
604
|
+
migrations: 'migrations',
|
|
596
605
|
createdAt: 'createdAt',
|
|
597
606
|
updatedAt: 'updatedAt'
|
|
598
607
|
};
|
|
@@ -646,6 +655,23 @@ exports.Prisma.UserReviewScalarFieldEnum = {
|
|
|
646
655
|
endedRoleReasons: 'endedRoleReasons'
|
|
647
656
|
};
|
|
648
657
|
|
|
658
|
+
exports.Prisma.VettingProcessScalarFieldEnum = {
|
|
659
|
+
id: 'id',
|
|
660
|
+
userId: 'userId',
|
|
661
|
+
vetterId: 'vetterId',
|
|
662
|
+
status: 'status',
|
|
663
|
+
vettingType: 'vettingType',
|
|
664
|
+
calComDailyMeetingId: 'calComDailyMeetingId',
|
|
665
|
+
transcriptJobIds: 'transcriptJobIds',
|
|
666
|
+
interviewDate: 'interviewDate',
|
|
667
|
+
calComBookingUid: 'calComBookingUid',
|
|
668
|
+
calComBookingId: 'calComBookingId',
|
|
669
|
+
calendarEventId: 'calendarEventId',
|
|
670
|
+
migrations: 'migrations',
|
|
671
|
+
createdAt: 'createdAt',
|
|
672
|
+
updatedAt: 'updatedAt'
|
|
673
|
+
};
|
|
674
|
+
|
|
649
675
|
exports.Prisma.SortOrder = {
|
|
650
676
|
asc: 'asc',
|
|
651
677
|
desc: 'desc'
|
|
@@ -885,6 +911,22 @@ exports.UserReviewRoleEndedReason = exports.$Enums.UserReviewRoleEndedReason = {
|
|
|
885
911
|
Builder: 'Builder'
|
|
886
912
|
};
|
|
887
913
|
|
|
914
|
+
exports.VettingProcessStatus = exports.$Enums.VettingProcessStatus = {
|
|
915
|
+
onHold: 'onHold',
|
|
916
|
+
pendingPreVettingForm: 'pendingPreVettingForm',
|
|
917
|
+
pendingVetterAssignment: 'pendingVetterAssignment',
|
|
918
|
+
pendingVetterApproval: 'pendingVetterApproval',
|
|
919
|
+
pendingBuilderInterviewSchedule: 'pendingBuilderInterviewSchedule',
|
|
920
|
+
pendingFeedback: 'pendingFeedback',
|
|
921
|
+
completed: 'completed'
|
|
922
|
+
};
|
|
923
|
+
|
|
924
|
+
exports.VettingType = exports.$Enums.VettingType = {
|
|
925
|
+
selectionTeam: 'selectionTeam',
|
|
926
|
+
internalNonTechnical: 'internalNonTechnical',
|
|
927
|
+
internalTechnical: 'internalTechnical'
|
|
928
|
+
};
|
|
929
|
+
|
|
888
930
|
exports.BillingPaymentDue = exports.$Enums.BillingPaymentDue = {
|
|
889
931
|
Net0: 'Net0',
|
|
890
932
|
Net15: 'Net15',
|
|
@@ -1041,6 +1083,7 @@ exports.Prisma.ModelName = {
|
|
|
1041
1083
|
MissionApplication: 'MissionApplication',
|
|
1042
1084
|
MissionPrefill: 'MissionPrefill',
|
|
1043
1085
|
MissionSpec: 'MissionSpec',
|
|
1086
|
+
MissionSuccessCall: 'MissionSuccessCall',
|
|
1044
1087
|
ParsedResume: 'ParsedResume',
|
|
1045
1088
|
PaymentCycle: 'PaymentCycle',
|
|
1046
1089
|
Proposal: 'Proposal',
|
|
@@ -1054,7 +1097,8 @@ exports.Prisma.ModelName = {
|
|
|
1054
1097
|
Transcript: 'Transcript',
|
|
1055
1098
|
User: 'User',
|
|
1056
1099
|
UserPreference: 'UserPreference',
|
|
1057
|
-
UserReview: 'UserReview'
|
|
1100
|
+
UserReview: 'UserReview',
|
|
1101
|
+
VettingProcess: 'VettingProcess'
|
|
1058
1102
|
};
|
|
1059
1103
|
|
|
1060
1104
|
/**
|