@a_team/prisma 3.11.1-macos-docker-linux → 3.12.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 +61 -4
- package/dist/client/index-browser.js +57 -0
- package/dist/client/index.d.ts +5369 -390
- package/dist/client/index.js +63 -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 +147 -33
- package/dist/client/wasm.js +57 -0
- package/package.json +7 -2
|
@@ -199,6 +199,34 @@ exports.Prisma.ClientCompanyScalarFieldEnum = {
|
|
|
199
199
|
logo: 'logo'
|
|
200
200
|
};
|
|
201
201
|
|
|
202
|
+
exports.Prisma.ClientInterviewScalarFieldEnum = {
|
|
203
|
+
id: 'id',
|
|
204
|
+
createdAt: 'createdAt',
|
|
205
|
+
updatedAt: 'updatedAt',
|
|
206
|
+
accountId: 'accountId',
|
|
207
|
+
type: 'type',
|
|
208
|
+
clientId: 'clientId',
|
|
209
|
+
builderId: 'builderId',
|
|
210
|
+
interviewRoleDescription: 'interviewRoleDescription',
|
|
211
|
+
calComBookingId: 'calComBookingId',
|
|
212
|
+
calComBookingUid: 'calComBookingUid',
|
|
213
|
+
calComDailyMeetingId: 'calComDailyMeetingId',
|
|
214
|
+
startDate: 'startDate',
|
|
215
|
+
endDate: 'endDate',
|
|
216
|
+
builderTimezone: 'builderTimezone',
|
|
217
|
+
clientMinHourlyRate: 'clientMinHourlyRate',
|
|
218
|
+
clientMaxHourlyRate: 'clientMaxHourlyRate',
|
|
219
|
+
builderHourlyRate: 'builderHourlyRate',
|
|
220
|
+
status: 'status',
|
|
221
|
+
declineReason: 'declineReason',
|
|
222
|
+
declineOtherReasonDetails: 'declineOtherReasonDetails',
|
|
223
|
+
cancelReasonAfterAccepted: 'cancelReasonAfterAccepted',
|
|
224
|
+
canceledFromClientApp: 'canceledFromClientApp',
|
|
225
|
+
interviewRequestExpireAt: 'interviewRequestExpireAt',
|
|
226
|
+
slackThreadMessageId: 'slackThreadMessageId',
|
|
227
|
+
proposalId: 'proposalId'
|
|
228
|
+
};
|
|
229
|
+
|
|
202
230
|
exports.Prisma.CompanyScalarFieldEnum = {
|
|
203
231
|
id: 'id',
|
|
204
232
|
name: 'name',
|
|
@@ -496,6 +524,27 @@ exports.EventType = exports.$Enums.EventType = {
|
|
|
496
524
|
evaluation: 'evaluation'
|
|
497
525
|
};
|
|
498
526
|
|
|
527
|
+
exports.ClientInterviewType = exports.$Enums.ClientInterviewType = {
|
|
528
|
+
Discover: 'Discover',
|
|
529
|
+
Proposal: 'Proposal'
|
|
530
|
+
};
|
|
531
|
+
|
|
532
|
+
exports.ClientInterviewStatus = exports.$Enums.ClientInterviewStatus = {
|
|
533
|
+
InterviewRequested: 'InterviewRequested',
|
|
534
|
+
InterviewAccepted: 'InterviewAccepted',
|
|
535
|
+
InterviewRejected: 'InterviewRejected',
|
|
536
|
+
InterviewCancelled: 'InterviewCancelled',
|
|
537
|
+
InterviewExpired: 'InterviewExpired'
|
|
538
|
+
};
|
|
539
|
+
|
|
540
|
+
exports.ClientInterviewDeclineReason = exports.$Enums.ClientInterviewDeclineReason = {
|
|
541
|
+
NotEnoughAvailability: 'NotEnoughAvailability',
|
|
542
|
+
RoleNotRelevant: 'RoleNotRelevant',
|
|
543
|
+
NotInterested: 'NotInterested',
|
|
544
|
+
RateTooLow: 'RateTooLow',
|
|
545
|
+
Other: 'Other'
|
|
546
|
+
};
|
|
547
|
+
|
|
499
548
|
exports.ContractStatus = exports.$Enums.ContractStatus = {
|
|
500
549
|
Created: 'Created',
|
|
501
550
|
Completed: 'Completed'
|
|
@@ -627,6 +676,13 @@ exports.BillingPaymentDue = exports.$Enums.BillingPaymentDue = {
|
|
|
627
676
|
Net120: 'Net120'
|
|
628
677
|
};
|
|
629
678
|
|
|
679
|
+
exports.ClientInterviewFeedbackAction = exports.$Enums.ClientInterviewFeedbackAction = {
|
|
680
|
+
Hire: 'Hire',
|
|
681
|
+
BookFollowUpInterview: 'BookFollowUpInterview',
|
|
682
|
+
NeedMoreTime: 'NeedMoreTime',
|
|
683
|
+
NoHire: 'NoHire'
|
|
684
|
+
};
|
|
685
|
+
|
|
630
686
|
exports.ContractPartyType = exports.$Enums.ContractPartyType = {
|
|
631
687
|
BillingCustomer: 'BillingCustomer',
|
|
632
688
|
MissionRole: 'MissionRole',
|
|
@@ -719,6 +775,7 @@ exports.Prisma.ModelName = {
|
|
|
719
775
|
CalendarEvent: 'CalendarEvent',
|
|
720
776
|
CalendarEventType: 'CalendarEventType',
|
|
721
777
|
ClientCompany: 'ClientCompany',
|
|
778
|
+
ClientInterview: 'ClientInterview',
|
|
722
779
|
Company: 'Company',
|
|
723
780
|
Contract: 'Contract',
|
|
724
781
|
Experience: 'Experience',
|