@a_team/prisma 3.17.6-macos-docker-linux → 3.18.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 +42 -4
- package/dist/client/index-browser.js +38 -0
- package/dist/client/index.d.ts +2336 -1
- package/dist/client/index.js +44 -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 +86 -0
- package/dist/client/wasm.js +38 -0
- package/package.json +4 -2
|
@@ -500,6 +500,22 @@ exports.Prisma.RoleHiringCriteriaScalarFieldEnum = {
|
|
|
500
500
|
updatedAt: 'updatedAt'
|
|
501
501
|
};
|
|
502
502
|
|
|
503
|
+
exports.Prisma.RoleRevisionScalarFieldEnum = {
|
|
504
|
+
id: 'id',
|
|
505
|
+
missionId: 'missionId',
|
|
506
|
+
createdAt: 'createdAt',
|
|
507
|
+
updatedAt: 'updatedAt',
|
|
508
|
+
deletedAt: 'deletedAt',
|
|
509
|
+
syncedAt: 'syncedAt',
|
|
510
|
+
requestor: 'requestor',
|
|
511
|
+
approver: 'approver',
|
|
512
|
+
approvalStatus: 'approvalStatus',
|
|
513
|
+
rejectionCategory: 'rejectionCategory',
|
|
514
|
+
rejectionDetails: 'rejectionDetails',
|
|
515
|
+
dealId: 'dealId',
|
|
516
|
+
transcriptId: 'transcriptId'
|
|
517
|
+
};
|
|
518
|
+
|
|
503
519
|
exports.Prisma.SolutionScalarFieldEnum = {
|
|
504
520
|
id: 'id',
|
|
505
521
|
preset: 'preset',
|
|
@@ -726,6 +742,22 @@ exports.PlatformRecordedOn = exports.$Enums.PlatformRecordedOn = {
|
|
|
726
742
|
Gong: 'Gong'
|
|
727
743
|
};
|
|
728
744
|
|
|
745
|
+
exports.ApprovalStatus = exports.$Enums.ApprovalStatus = {
|
|
746
|
+
Requested: 'Requested',
|
|
747
|
+
Reviewing: 'Reviewing',
|
|
748
|
+
Approved: 'Approved',
|
|
749
|
+
Denied: 'Denied',
|
|
750
|
+
Merged: 'Merged'
|
|
751
|
+
};
|
|
752
|
+
|
|
753
|
+
exports.RoleRevisionRejectionCategory = exports.$Enums.RoleRevisionRejectionCategory = {
|
|
754
|
+
DoesNotBelong: 'DoesNotBelong',
|
|
755
|
+
Mistake: 'Mistake',
|
|
756
|
+
Outdated: 'Outdated',
|
|
757
|
+
NoBudget: 'NoBudget',
|
|
758
|
+
Other: 'Other'
|
|
759
|
+
};
|
|
760
|
+
|
|
729
761
|
exports.PresetID = exports.$Enums.PresetID = {
|
|
730
762
|
custom_team: 'custom_team',
|
|
731
763
|
web_platform: 'web_platform',
|
|
@@ -889,6 +921,11 @@ exports.Priority = exports.$Enums.Priority = {
|
|
|
889
921
|
low: 'low'
|
|
890
922
|
};
|
|
891
923
|
|
|
924
|
+
exports.RateInterval = exports.$Enums.RateInterval = {
|
|
925
|
+
hourly: 'hourly',
|
|
926
|
+
monthly: 'monthly'
|
|
927
|
+
};
|
|
928
|
+
|
|
892
929
|
exports.RegisterRequestType = exports.$Enums.RegisterRequestType = {
|
|
893
930
|
SUPERCHARGE: 'SUPERCHARGE',
|
|
894
931
|
BUILD_PRODUCT: 'BUILD_PRODUCT'
|
|
@@ -935,6 +972,7 @@ exports.Prisma.ModelName = {
|
|
|
935
972
|
RecordedCall: 'RecordedCall',
|
|
936
973
|
RoleCategory: 'RoleCategory',
|
|
937
974
|
RoleHiringCriteria: 'RoleHiringCriteria',
|
|
975
|
+
RoleRevision: 'RoleRevision',
|
|
938
976
|
Solution: 'Solution',
|
|
939
977
|
TalentCategory: 'TalentCategory',
|
|
940
978
|
TalentIndustry: 'TalentIndustry',
|