@adaptware/eagles-db 0.1.36 → 0.1.37
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 +46 -7
- package/client/index-browser.js +32 -1
- package/client/index.d.ts +3820 -454
- package/client/index.js +48 -9
- 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 +52 -1
- package/client/wasm.js +32 -1
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/schema/activityLog.prisma +46 -0
- package/prisma/schema/fitCheck.prisma +2 -0
- 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
|
+
action_type: 'action_type',
|
|
172
|
+
message: 'message',
|
|
173
|
+
timestamp: 'timestamp',
|
|
174
|
+
metadata: 'metadata',
|
|
175
|
+
created_at: 'created_at'
|
|
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',
|
|
@@ -665,7 +678,6 @@ exports.Prisma.ResumeScalarFieldEnum = {
|
|
|
665
678
|
created_by: 'created_by',
|
|
666
679
|
updated_by: 'updated_by',
|
|
667
680
|
is_active: 'is_active',
|
|
668
|
-
name: 'name',
|
|
669
681
|
yearsOfExperience: 'yearsOfExperience'
|
|
670
682
|
};
|
|
671
683
|
|
|
@@ -803,6 +815,24 @@ exports.ActionStatus = exports.$Enums.ActionStatus = {
|
|
|
803
815
|
CANCELLED: 'CANCELLED'
|
|
804
816
|
};
|
|
805
817
|
|
|
818
|
+
exports.ActivityActorType = exports.$Enums.ActivityActorType = {
|
|
819
|
+
USER: 'USER',
|
|
820
|
+
AI: 'AI',
|
|
821
|
+
SYSTEM: 'SYSTEM'
|
|
822
|
+
};
|
|
823
|
+
|
|
824
|
+
exports.ActivityActionType = exports.$Enums.ActivityActionType = {
|
|
825
|
+
ROUND_COMPLETED: 'ROUND_COMPLETED',
|
|
826
|
+
STAGE_CHANGED: 'STAGE_CHANGED',
|
|
827
|
+
AI_ANALYSIS_REFRESHED: 'AI_ANALYSIS_REFRESHED',
|
|
828
|
+
FEEDBACK_ADDED: 'FEEDBACK_ADDED',
|
|
829
|
+
NOTE_ADDED: 'NOTE_ADDED',
|
|
830
|
+
INTERVIEW_SCHEDULED: 'INTERVIEW_SCHEDULED',
|
|
831
|
+
INTERVIEW_COMPLETED: 'INTERVIEW_COMPLETED',
|
|
832
|
+
STATUS_UPDATED: 'STATUS_UPDATED',
|
|
833
|
+
OTHER: 'OTHER'
|
|
834
|
+
};
|
|
835
|
+
|
|
806
836
|
exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
|
|
807
837
|
PENDING: 'PENDING',
|
|
808
838
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
@@ -997,6 +1027,7 @@ exports.Prisma.ModelName = {
|
|
|
997
1027
|
CandidateQuestionResponse: 'CandidateQuestionResponse',
|
|
998
1028
|
UserRole: 'UserRole',
|
|
999
1029
|
Action: 'Action',
|
|
1030
|
+
ActivityLog: 'ActivityLog',
|
|
1000
1031
|
Application: 'Application',
|
|
1001
1032
|
Approval: 'Approval',
|
|
1002
1033
|
Assessment: 'Assessment',
|