@adaptware/eagles-db 0.1.36 → 0.1.38
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 +26 -6
- package/client/index-browser.js +20 -0
- package/client/index.d.ts +3733 -381
- package/client/index.js +28 -8
- package/client/{libquery_engine-darwin.dylib.node → libquery_engine-darwin-arm64.dylib.node} +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +47 -30
- package/client/wasm.js +20 -0
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/schema/activityLog.prisma +22 -0
- package/prisma/schema/applications.prisma +19 -22
- package/prisma/schema/assessmentLibrary.prisma +0 -1
- package/prisma/schema/assignmentLibrary.prisma +14 -15
- package/prisma/schema/fitCheck.prisma +2 -0
- package/prisma/schema/interview.prisma +0 -1
- package/prisma/schema/interviewLibrary.prisma +0 -2
- package/prisma/schema/jobDescriptionData.prisma +0 -1
- package/prisma/schema/overallFeedback.prisma +0 -1
- package/prisma/schema/suggestion.prisma +0 -1
- package/prisma/schema/user.prisma +3 -0
package/client/index-browser.js
CHANGED
|
@@ -163,6 +163,18 @@ exports.Prisma.ActionScalarFieldEnum = {
|
|
|
163
163
|
is_active: 'is_active'
|
|
164
164
|
};
|
|
165
165
|
|
|
166
|
+
exports.Prisma.ActivityLogScalarFieldEnum = {
|
|
167
|
+
id: 'id',
|
|
168
|
+
candidate_id: 'candidate_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
|
+
|
|
166
178
|
exports.Prisma.ApplicationScalarFieldEnum = {
|
|
167
179
|
id: 'id',
|
|
168
180
|
candidate_id: 'candidate_id',
|
|
@@ -364,6 +376,7 @@ exports.Prisma.FeedbackScalarFieldEnum = {
|
|
|
364
376
|
exports.Prisma.FitCheckScalarFieldEnum = {
|
|
365
377
|
id: 'id',
|
|
366
378
|
organisation_id: 'organisation_id',
|
|
379
|
+
candidate_id: 'candidate_id',
|
|
367
380
|
resume_id: 'resume_id',
|
|
368
381
|
job_description_id: 'job_description_id',
|
|
369
382
|
skills_match: 'skills_match',
|
|
@@ -803,6 +816,12 @@ exports.ActionStatus = exports.$Enums.ActionStatus = {
|
|
|
803
816
|
CANCELLED: 'CANCELLED'
|
|
804
817
|
};
|
|
805
818
|
|
|
819
|
+
exports.ActivityActorType = exports.$Enums.ActivityActorType = {
|
|
820
|
+
USER: 'USER',
|
|
821
|
+
AI: 'AI',
|
|
822
|
+
SYSTEM: 'SYSTEM'
|
|
823
|
+
};
|
|
824
|
+
|
|
806
825
|
exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
|
|
807
826
|
PENDING: 'PENDING',
|
|
808
827
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
@@ -997,6 +1016,7 @@ exports.Prisma.ModelName = {
|
|
|
997
1016
|
CandidateQuestionResponse: 'CandidateQuestionResponse',
|
|
998
1017
|
UserRole: 'UserRole',
|
|
999
1018
|
Action: 'Action',
|
|
1019
|
+
ActivityLog: 'ActivityLog',
|
|
1000
1020
|
Application: 'Application',
|
|
1001
1021
|
Approval: 'Approval',
|
|
1002
1022
|
Assessment: 'Assessment',
|