@a_team/prisma 3.15.3-macos-docker-linux → 3.16.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 +38 -4
- package/dist/client/index-browser.js +34 -0
- package/dist/client/index.d.ts +2620 -119
- package/dist/client/index.js +40 -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 +65 -0
- package/dist/client/wasm.js +34 -0
- package/package.json +4 -2
|
@@ -473,6 +473,26 @@ exports.Prisma.RoleCategoryScalarFieldEnum = {
|
|
|
473
473
|
talentCategoryIds: 'talentCategoryIds'
|
|
474
474
|
};
|
|
475
475
|
|
|
476
|
+
exports.Prisma.RoleHiringCriteriaScalarFieldEnum = {
|
|
477
|
+
id: 'id',
|
|
478
|
+
roleId: 'roleId',
|
|
479
|
+
missionId: 'missionId',
|
|
480
|
+
requiredSpecializations: 'requiredSpecializations',
|
|
481
|
+
suggestedSpecializations: 'suggestedSpecializations',
|
|
482
|
+
requiredSkills: 'requiredSkills',
|
|
483
|
+
preferredSkills: 'preferredSkills',
|
|
484
|
+
requiredCountries: 'requiredCountries',
|
|
485
|
+
preferredCountries: 'preferredCountries',
|
|
486
|
+
requiredStartDate: 'requiredStartDate',
|
|
487
|
+
requiredWeeklyHours: 'requiredWeeklyHours',
|
|
488
|
+
maxHourlyRate: 'maxHourlyRate',
|
|
489
|
+
maxMonthlyRate: 'maxMonthlyRate',
|
|
490
|
+
requiredIndustries: 'requiredIndustries',
|
|
491
|
+
preferredIndustries: 'preferredIndustries',
|
|
492
|
+
createdAt: 'createdAt',
|
|
493
|
+
updatedAt: 'updatedAt'
|
|
494
|
+
};
|
|
495
|
+
|
|
476
496
|
exports.Prisma.SolutionScalarFieldEnum = {
|
|
477
497
|
id: 'id',
|
|
478
498
|
preset: 'preset',
|
|
@@ -839,6 +859,19 @@ exports.ProposalCandidateRecommendation = exports.$Enums.ProposalCandidateRecomm
|
|
|
839
859
|
Alternative: 'Alternative'
|
|
840
860
|
};
|
|
841
861
|
|
|
862
|
+
exports.HiringCriteriaCategory = exports.$Enums.HiringCriteriaCategory = {
|
|
863
|
+
skills: 'skills',
|
|
864
|
+
communication: 'communication',
|
|
865
|
+
culture: 'culture',
|
|
866
|
+
experience: 'experience',
|
|
867
|
+
other: 'other'
|
|
868
|
+
};
|
|
869
|
+
|
|
870
|
+
exports.CriteriaItemType = exports.$Enums.CriteriaItemType = {
|
|
871
|
+
generated: 'generated',
|
|
872
|
+
manual: 'manual'
|
|
873
|
+
};
|
|
874
|
+
|
|
842
875
|
exports.RegisterRequestType = exports.$Enums.RegisterRequestType = {
|
|
843
876
|
SUPERCHARGE: 'SUPERCHARGE',
|
|
844
877
|
BUILD_PRODUCT: 'BUILD_PRODUCT'
|
|
@@ -883,6 +916,7 @@ exports.Prisma.ModelName = {
|
|
|
883
916
|
Proposal: 'Proposal',
|
|
884
917
|
RecordedCall: 'RecordedCall',
|
|
885
918
|
RoleCategory: 'RoleCategory',
|
|
919
|
+
RoleHiringCriteria: 'RoleHiringCriteria',
|
|
886
920
|
Solution: 'Solution',
|
|
887
921
|
TalentCategory: 'TalentCategory',
|
|
888
922
|
TalentIndustry: 'TalentIndustry',
|