@adaptware/eagles-db 0.4.44 → 0.4.46
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/client/edge.js +27 -3
- package/client/index-browser.js +24 -0
- package/client/index.d.ts +2412 -2
- package/client/index.js +27 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +46 -11
- package/client/wasm.js +27 -3
- package/package.json +1 -1
- package/prisma/schema/evaluationCriteria.prisma +33 -0
- package/prisma/schema/organisation.prisma +12 -11
package/client/index-browser.js
CHANGED
|
@@ -708,6 +708,23 @@ exports.Prisma.DocumentScalarFieldEnum = {
|
|
|
708
708
|
is_active: 'is_active'
|
|
709
709
|
};
|
|
710
710
|
|
|
711
|
+
exports.Prisma.EvaluationCriteriaScalarFieldEnum = {
|
|
712
|
+
id: 'id',
|
|
713
|
+
organisation_id: 'organisation_id',
|
|
714
|
+
scope: 'scope',
|
|
715
|
+
key: 'key',
|
|
716
|
+
criteria: 'criteria',
|
|
717
|
+
description: 'description',
|
|
718
|
+
weightage: 'weightage',
|
|
719
|
+
is_elimination: 'is_elimination',
|
|
720
|
+
metadata: 'metadata',
|
|
721
|
+
created_by: 'created_by',
|
|
722
|
+
updated_by: 'updated_by',
|
|
723
|
+
created_at: 'created_at',
|
|
724
|
+
updated_at: 'updated_at',
|
|
725
|
+
is_active: 'is_active'
|
|
726
|
+
};
|
|
727
|
+
|
|
711
728
|
exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
712
729
|
id: 'id',
|
|
713
730
|
job_description_id: 'job_description_id',
|
|
@@ -1405,6 +1422,7 @@ exports.Prisma.OrganisationScalarFieldEnum = {
|
|
|
1405
1422
|
address: 'address',
|
|
1406
1423
|
company_values: 'company_values',
|
|
1407
1424
|
allowed_email_domains: 'allowed_email_domains',
|
|
1425
|
+
send_email: 'send_email',
|
|
1408
1426
|
created_at: 'created_at',
|
|
1409
1427
|
updated_at: 'updated_at',
|
|
1410
1428
|
created_by: 'created_by',
|
|
@@ -2099,6 +2117,11 @@ exports.CommMessageStatus = exports.$Enums.CommMessageStatus = {
|
|
|
2099
2117
|
RECEIVED: 'RECEIVED'
|
|
2100
2118
|
};
|
|
2101
2119
|
|
|
2120
|
+
exports.CriteriaScope = exports.$Enums.CriteriaScope = {
|
|
2121
|
+
ORGANISATION: 'ORGANISATION',
|
|
2122
|
+
TREADSPACE: 'TREADSPACE'
|
|
2123
|
+
};
|
|
2124
|
+
|
|
2102
2125
|
exports.EvaluationPlanShareScope = exports.$Enums.EvaluationPlanShareScope = {
|
|
2103
2126
|
PRIVATE: 'PRIVATE',
|
|
2104
2127
|
CREATOR: 'CREATOR',
|
|
@@ -2298,6 +2321,7 @@ exports.Prisma.ModelName = {
|
|
|
2298
2321
|
CommunicationMessage: 'CommunicationMessage',
|
|
2299
2322
|
ContactUs: 'ContactUs',
|
|
2300
2323
|
Document: 'Document',
|
|
2324
|
+
EvaluationCriteria: 'EvaluationCriteria',
|
|
2301
2325
|
EvaluationPlan: 'EvaluationPlan',
|
|
2302
2326
|
Feedback: 'Feedback',
|
|
2303
2327
|
FitCheck: 'FitCheck',
|