@adaptware/eagles-db 0.1.35 → 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 +43 -3
- package/client/index-browser.js +32 -0
- package/client/index.d.ts +3819 -381
- package/client/index.js +43 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +52 -0
- package/client/wasm.js +32 -0
- package/package.json +1 -1
- package/prisma/schema/activityLog.prisma +46 -0
- package/prisma/schema/fitCheck.prisma +2 -0
- package/prisma/schema/resume.prisma +8 -7
- 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',
|
|
@@ -802,6 +815,24 @@ exports.ActionStatus = exports.$Enums.ActionStatus = {
|
|
|
802
815
|
CANCELLED: 'CANCELLED'
|
|
803
816
|
};
|
|
804
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
|
+
|
|
805
836
|
exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
|
|
806
837
|
PENDING: 'PENDING',
|
|
807
838
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
@@ -996,6 +1027,7 @@ exports.Prisma.ModelName = {
|
|
|
996
1027
|
CandidateQuestionResponse: 'CandidateQuestionResponse',
|
|
997
1028
|
UserRole: 'UserRole',
|
|
998
1029
|
Action: 'Action',
|
|
1030
|
+
ActivityLog: 'ActivityLog',
|
|
999
1031
|
Application: 'Application',
|
|
1000
1032
|
Approval: 'Approval',
|
|
1001
1033
|
Assessment: 'Assessment',
|