@adaptware/eagles-db 0.1.37 → 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 +6 -25
- package/client/index-browser.js +3 -14
- package/client/index.d.ts +126 -140
- package/client/index.js +6 -25
- package/client/package.json +1 -1
- package/client/schema.prisma +27 -61
- package/client/wasm.js +3 -14
- package/package.json +1 -1
- package/prisma/schema/activityLog.prisma +7 -31
- package/prisma/schema/applications.prisma +19 -22
- package/prisma/schema/assessmentLibrary.prisma +0 -1
- package/prisma/schema/assignmentLibrary.prisma +14 -15
- 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/client/index-browser.js
CHANGED
|
@@ -168,11 +168,11 @@ exports.Prisma.ActivityLogScalarFieldEnum = {
|
|
|
168
168
|
candidate_id: 'candidate_id',
|
|
169
169
|
actor_id: 'actor_id',
|
|
170
170
|
actor_type: 'actor_type',
|
|
171
|
-
action_type: 'action_type',
|
|
172
171
|
message: 'message',
|
|
173
172
|
timestamp: 'timestamp',
|
|
174
173
|
metadata: 'metadata',
|
|
175
|
-
created_at: 'created_at'
|
|
174
|
+
created_at: 'created_at',
|
|
175
|
+
is_active: 'is_active'
|
|
176
176
|
};
|
|
177
177
|
|
|
178
178
|
exports.Prisma.ApplicationScalarFieldEnum = {
|
|
@@ -678,6 +678,7 @@ exports.Prisma.ResumeScalarFieldEnum = {
|
|
|
678
678
|
created_by: 'created_by',
|
|
679
679
|
updated_by: 'updated_by',
|
|
680
680
|
is_active: 'is_active',
|
|
681
|
+
name: 'name',
|
|
681
682
|
yearsOfExperience: 'yearsOfExperience'
|
|
682
683
|
};
|
|
683
684
|
|
|
@@ -821,18 +822,6 @@ exports.ActivityActorType = exports.$Enums.ActivityActorType = {
|
|
|
821
822
|
SYSTEM: 'SYSTEM'
|
|
822
823
|
};
|
|
823
824
|
|
|
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
|
-
|
|
836
825
|
exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
|
|
837
826
|
PENDING: 'PENDING',
|
|
838
827
|
IN_PROGRESS: 'IN_PROGRESS',
|