@adaptware/eagles-db 0.1.54 → 0.1.55
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 +37 -4
- package/client/index-browser.js +34 -1
- package/client/index.d.ts +22397 -16937
- package/client/index.js +37 -4
- package/client/package.json +1 -1
- package/client/schema.prisma +75 -23
- package/client/wasm.js +34 -1
- package/package.json +1 -1
- package/prisma/schema/applications.prisma +1 -0
- package/prisma/schema/assessment.prisma +23 -22
- package/prisma/schema/assignment.prisma +42 -0
- package/prisma/schema/assignmentLibrary.prisma +1 -0
- package/prisma/schema/jobDescription.prisma +1 -0
- package/prisma/schema/ongoingEvaluation.prisma +2 -0
- package/prisma/schema/organisation.prisma +1 -0
- package/prisma/schema/user.prisma +2 -0
package/client/index-browser.js
CHANGED
|
@@ -209,7 +209,7 @@ exports.Prisma.ApprovalScalarFieldEnum = {
|
|
|
209
209
|
|
|
210
210
|
exports.Prisma.AssessmentScalarFieldEnum = {
|
|
211
211
|
id: 'id',
|
|
212
|
-
|
|
212
|
+
assessment_library_id: 'assessment_library_id',
|
|
213
213
|
candidate_id: 'candidate_id',
|
|
214
214
|
reviewer_id: 'reviewer_id',
|
|
215
215
|
score: 'score',
|
|
@@ -221,6 +221,7 @@ exports.Prisma.AssessmentScalarFieldEnum = {
|
|
|
221
221
|
created_by: 'created_by',
|
|
222
222
|
updated_by: 'updated_by',
|
|
223
223
|
is_active: 'is_active',
|
|
224
|
+
panelistId: 'panelistId',
|
|
224
225
|
userId: 'userId'
|
|
225
226
|
};
|
|
226
227
|
|
|
@@ -249,6 +250,30 @@ exports.Prisma.AssessmentQuestionScalarFieldEnum = {
|
|
|
249
250
|
updated_at: 'updated_at'
|
|
250
251
|
};
|
|
251
252
|
|
|
253
|
+
exports.Prisma.AssignmentScalarFieldEnum = {
|
|
254
|
+
id: 'id',
|
|
255
|
+
candidate_id: 'candidate_id',
|
|
256
|
+
assignment_library_id: 'assignment_library_id',
|
|
257
|
+
reviewer_id: 'reviewer_id',
|
|
258
|
+
application_id: 'application_id',
|
|
259
|
+
job_description_id: 'job_description_id',
|
|
260
|
+
organisation_id: 'organisation_id',
|
|
261
|
+
ongoing_evaluation_id: 'ongoing_evaluation_id',
|
|
262
|
+
score: 'score',
|
|
263
|
+
ai_result: 'ai_result',
|
|
264
|
+
ai_reasoning: 'ai_reasoning',
|
|
265
|
+
status: 'status',
|
|
266
|
+
cancel_reason: 'cancel_reason',
|
|
267
|
+
solution_url: 'solution_url',
|
|
268
|
+
scheduled_start_time: 'scheduled_start_time',
|
|
269
|
+
scheduled_end_time: 'scheduled_end_time',
|
|
270
|
+
created_at: 'created_at',
|
|
271
|
+
updated_at: 'updated_at',
|
|
272
|
+
created_by: 'created_by',
|
|
273
|
+
updated_by: 'updated_by',
|
|
274
|
+
is_active: 'is_active'
|
|
275
|
+
};
|
|
276
|
+
|
|
252
277
|
exports.Prisma.AssignmentLibraryScalarFieldEnum = {
|
|
253
278
|
id: 'id',
|
|
254
279
|
deadline: 'deadline',
|
|
@@ -518,6 +543,7 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
|
|
|
518
543
|
job_description_id: 'job_description_id',
|
|
519
544
|
evaluation_plan_id: 'evaluation_plan_id',
|
|
520
545
|
interview_id: 'interview_id',
|
|
546
|
+
assignment_id: 'assignment_id',
|
|
521
547
|
status: 'status',
|
|
522
548
|
state: 'state',
|
|
523
549
|
round_status: 'round_status',
|
|
@@ -791,6 +817,12 @@ exports.AssessmentCategory = exports.$Enums.AssessmentCategory = {
|
|
|
791
817
|
ASSIGNMENT: 'ASSIGNMENT'
|
|
792
818
|
};
|
|
793
819
|
|
|
820
|
+
exports.AssignmentStatus = exports.$Enums.AssignmentStatus = {
|
|
821
|
+
AVAILABLE: 'AVAILABLE',
|
|
822
|
+
SCHEDULED: 'SCHEDULED',
|
|
823
|
+
CANCELLED: 'CANCELLED'
|
|
824
|
+
};
|
|
825
|
+
|
|
794
826
|
exports.JobType = exports.$Enums.JobType = {
|
|
795
827
|
Full_time: 'Full_time',
|
|
796
828
|
Part_time: 'Part_time',
|
|
@@ -936,6 +968,7 @@ exports.Prisma.ModelName = {
|
|
|
936
968
|
Assessment: 'Assessment',
|
|
937
969
|
AssessmentLibrary: 'AssessmentLibrary',
|
|
938
970
|
AssessmentQuestion: 'AssessmentQuestion',
|
|
971
|
+
Assignment: 'Assignment',
|
|
939
972
|
AssignmentLibrary: 'AssignmentLibrary',
|
|
940
973
|
Budget: 'Budget',
|
|
941
974
|
Calendly: 'Calendly',
|