@a_team/prisma 3.9.5-win → 3.10.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 +60 -5
- package/dist/client/index-browser.js +56 -1
- package/dist/client/index.d.ts +10707 -4954
- package/dist/client/index.js +62 -7
- package/dist/client/{query_engine-windows.dll.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 +144 -39
- package/dist/client/wasm.js +56 -1
- package/package.json +2 -2
|
@@ -195,6 +195,16 @@ exports.Prisma.ExperienceScalarFieldEnum = {
|
|
|
195
195
|
skills: 'skills'
|
|
196
196
|
};
|
|
197
197
|
|
|
198
|
+
exports.Prisma.LinkedInRecommendationScalarFieldEnum = {
|
|
199
|
+
id: 'id',
|
|
200
|
+
userId: 'userId',
|
|
201
|
+
text: 'text',
|
|
202
|
+
createdAt: 'createdAt',
|
|
203
|
+
updatedAt: 'updatedAt',
|
|
204
|
+
deletedAt: 'deletedAt',
|
|
205
|
+
relationship: 'relationship'
|
|
206
|
+
};
|
|
207
|
+
|
|
198
208
|
exports.Prisma.MissionScalarFieldEnum = {
|
|
199
209
|
mid: 'mid',
|
|
200
210
|
accountId: 'accountId',
|
|
@@ -376,6 +386,26 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
376
386
|
websites: 'websites'
|
|
377
387
|
};
|
|
378
388
|
|
|
389
|
+
exports.Prisma.UserReviewScalarFieldEnum = {
|
|
390
|
+
id: 'id',
|
|
391
|
+
status: 'status',
|
|
392
|
+
starRating: 'starRating',
|
|
393
|
+
privateFeedback: 'privateFeedback',
|
|
394
|
+
publicFeedback: 'publicFeedback',
|
|
395
|
+
account: 'account',
|
|
396
|
+
fromUser: 'fromUser',
|
|
397
|
+
toUser: 'toUser',
|
|
398
|
+
mission: 'mission',
|
|
399
|
+
rid: 'rid',
|
|
400
|
+
createdAt: 'createdAt',
|
|
401
|
+
updatedAt: 'updatedAt',
|
|
402
|
+
canReviewUntil: 'canReviewUntil',
|
|
403
|
+
completedAt: 'completedAt',
|
|
404
|
+
deletedAt: 'deletedAt',
|
|
405
|
+
wouldRecommend: 'wouldRecommend',
|
|
406
|
+
endedRoleReasons: 'endedRoleReasons'
|
|
407
|
+
};
|
|
408
|
+
|
|
379
409
|
exports.Prisma.SortOrder = {
|
|
380
410
|
asc: 'asc',
|
|
381
411
|
desc: 'desc'
|
|
@@ -483,6 +513,29 @@ exports.InternalOnboardingStage = exports.$Enums.InternalOnboardingStage = {
|
|
|
483
513
|
ProfileCompleteWithPendingApplication: 'ProfileCompleteWithPendingApplication'
|
|
484
514
|
};
|
|
485
515
|
|
|
516
|
+
exports.UserReviewStatus = exports.$Enums.UserReviewStatus = {
|
|
517
|
+
pending: 'pending',
|
|
518
|
+
completed: 'completed'
|
|
519
|
+
};
|
|
520
|
+
|
|
521
|
+
exports.UserReviewRoleEndedReason = exports.$Enums.UserReviewRoleEndedReason = {
|
|
522
|
+
WorkCompleted: 'WorkCompleted',
|
|
523
|
+
RoleFit: 'RoleFit',
|
|
524
|
+
TeamFit: 'TeamFit',
|
|
525
|
+
Budget: 'Budget',
|
|
526
|
+
Expensive: 'Expensive',
|
|
527
|
+
Quality: 'Quality',
|
|
528
|
+
Communication: 'Communication',
|
|
529
|
+
Phase: 'Phase',
|
|
530
|
+
Talent: 'Talent',
|
|
531
|
+
Closing: 'Closing',
|
|
532
|
+
FullTime: 'FullTime',
|
|
533
|
+
OtherTalent: 'OtherTalent',
|
|
534
|
+
Freeze: 'Freeze',
|
|
535
|
+
Trial: 'Trial',
|
|
536
|
+
Builder: 'Builder'
|
|
537
|
+
};
|
|
538
|
+
|
|
486
539
|
exports.BillingPaymentDue = exports.$Enums.BillingPaymentDue = {
|
|
487
540
|
Net0: 'Net0',
|
|
488
541
|
Net15: 'Net15',
|
|
@@ -584,6 +637,7 @@ exports.Prisma.ModelName = {
|
|
|
584
637
|
Company: 'Company',
|
|
585
638
|
Contract: 'Contract',
|
|
586
639
|
Experience: 'Experience',
|
|
640
|
+
LinkedInRecommendation: 'LinkedInRecommendation',
|
|
587
641
|
Mission: 'Mission',
|
|
588
642
|
MissionApplication: 'MissionApplication',
|
|
589
643
|
MissionPrefill: 'MissionPrefill',
|
|
@@ -593,7 +647,8 @@ exports.Prisma.ModelName = {
|
|
|
593
647
|
Solution: 'Solution',
|
|
594
648
|
TalentCategory: 'TalentCategory',
|
|
595
649
|
TalentIndustry: 'TalentIndustry',
|
|
596
|
-
User: 'User'
|
|
650
|
+
User: 'User',
|
|
651
|
+
UserReview: 'UserReview'
|
|
597
652
|
};
|
|
598
653
|
|
|
599
654
|
/**
|