@adaptware/eagles-db 0.1.40 → 0.1.42
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 +6 -26
- package/client/index-browser.js +0 -20
- package/client/index.d.ts +267 -3403
- package/client/index.js +8 -28
- package/client/{libquery_engine-darwin-arm64.dylib.node → libquery_engine-darwin.dylib.node} +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +30 -47
- package/client/wasm.js +0 -20
- package/package.json +1 -1
- package/prisma/schema/applications.prisma +1 -0
- package/prisma/schema/assessment.prisma +24 -24
- package/prisma/schema/assignment.prisma +43 -0
- package/prisma/schema/assignmentLibrary.prisma +1 -0
- package/prisma/schema/evaluationPlan.prisma +1 -0
- package/prisma/schema/jobDescription.prisma +1 -0
- package/prisma/schema/ongoingEvaluation.prisma +2 -0
- package/prisma/schema/organisation.prisma +1 -0
- package/prisma/schema/user.prisma +2 -0
- package/prisma/.DS_Store +0 -0
package/client/index-browser.js
CHANGED
|
@@ -163,18 +163,6 @@ exports.Prisma.ActionScalarFieldEnum = {
|
|
|
163
163
|
is_active: 'is_active'
|
|
164
164
|
};
|
|
165
165
|
|
|
166
|
-
exports.Prisma.ActivityLogScalarFieldEnum = {
|
|
167
|
-
id: 'id',
|
|
168
|
-
application_id: 'application_id',
|
|
169
|
-
actor_id: 'actor_id',
|
|
170
|
-
actor_type: 'actor_type',
|
|
171
|
-
message: 'message',
|
|
172
|
-
timestamp: 'timestamp',
|
|
173
|
-
metadata: 'metadata',
|
|
174
|
-
created_at: 'created_at',
|
|
175
|
-
is_active: 'is_active'
|
|
176
|
-
};
|
|
177
|
-
|
|
178
166
|
exports.Prisma.ApplicationScalarFieldEnum = {
|
|
179
167
|
id: 'id',
|
|
180
168
|
candidate_id: 'candidate_id',
|
|
@@ -376,7 +364,6 @@ exports.Prisma.FeedbackScalarFieldEnum = {
|
|
|
376
364
|
exports.Prisma.FitCheckScalarFieldEnum = {
|
|
377
365
|
id: 'id',
|
|
378
366
|
organisation_id: 'organisation_id',
|
|
379
|
-
candidate_id: 'candidate_id',
|
|
380
367
|
resume_id: 'resume_id',
|
|
381
368
|
job_description_id: 'job_description_id',
|
|
382
369
|
skills_match: 'skills_match',
|
|
@@ -816,12 +803,6 @@ exports.ActionStatus = exports.$Enums.ActionStatus = {
|
|
|
816
803
|
CANCELLED: 'CANCELLED'
|
|
817
804
|
};
|
|
818
805
|
|
|
819
|
-
exports.ActivityActorType = exports.$Enums.ActivityActorType = {
|
|
820
|
-
USER: 'USER',
|
|
821
|
-
AI: 'AI',
|
|
822
|
-
SYSTEM: 'SYSTEM'
|
|
823
|
-
};
|
|
824
|
-
|
|
825
806
|
exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
|
|
826
807
|
PENDING: 'PENDING',
|
|
827
808
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
@@ -1016,7 +997,6 @@ exports.Prisma.ModelName = {
|
|
|
1016
997
|
CandidateQuestionResponse: 'CandidateQuestionResponse',
|
|
1017
998
|
UserRole: 'UserRole',
|
|
1018
999
|
Action: 'Action',
|
|
1019
|
-
ActivityLog: 'ActivityLog',
|
|
1020
1000
|
Application: 'Application',
|
|
1021
1001
|
Approval: 'Approval',
|
|
1022
1002
|
Assessment: 'Assessment',
|