@adaptware/eagles-db 0.1.37 → 0.1.39
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 +8 -26
- package/client/index-browser.js +5 -15
- package/client/index.d.ts +918 -525
- package/client/index.js +8 -26
- package/client/package.json +1 -1
- package/client/schema.prisma +36 -67
- package/client/wasm.js +5 -15
- package/package.json +1 -1
- package/prisma/schema/activityLog.prisma +14 -36
- package/prisma/schema/applications.prisma +20 -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/prisma/schema/user.prisma +16 -16
package/client/index-browser.js
CHANGED
|
@@ -165,14 +165,15 @@ exports.Prisma.ActionScalarFieldEnum = {
|
|
|
165
165
|
|
|
166
166
|
exports.Prisma.ActivityLogScalarFieldEnum = {
|
|
167
167
|
id: 'id',
|
|
168
|
-
|
|
168
|
+
application_id: 'application_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
|
+
userId: 'userId'
|
|
176
177
|
};
|
|
177
178
|
|
|
178
179
|
exports.Prisma.ApplicationScalarFieldEnum = {
|
|
@@ -678,6 +679,7 @@ exports.Prisma.ResumeScalarFieldEnum = {
|
|
|
678
679
|
created_by: 'created_by',
|
|
679
680
|
updated_by: 'updated_by',
|
|
680
681
|
is_active: 'is_active',
|
|
682
|
+
name: 'name',
|
|
681
683
|
yearsOfExperience: 'yearsOfExperience'
|
|
682
684
|
};
|
|
683
685
|
|
|
@@ -821,18 +823,6 @@ exports.ActivityActorType = exports.$Enums.ActivityActorType = {
|
|
|
821
823
|
SYSTEM: 'SYSTEM'
|
|
822
824
|
};
|
|
823
825
|
|
|
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
826
|
exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
|
|
837
827
|
PENDING: 'PENDING',
|
|
838
828
|
IN_PROGRESS: 'IN_PROGRESS',
|