@adaptware/eagles-db 0.4.43 → 0.4.44
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 +9 -3
- package/client/index-browser.js +6 -0
- package/client/index.d.ts +547 -5
- package/client/index.js +9 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +7 -0
- package/client/wasm.js +9 -3
- package/package.json +1 -1
- package/prisma/schema/assessment.prisma +1 -0
- package/prisma/schema/assignment.prisma +1 -0
- package/prisma/schema/interview.prisma +2 -0
- package/prisma/schema/jobDescription.prisma +1 -0
- package/prisma/schema/ongoingEvaluation.prisma +2 -0
package/client/index-browser.js
CHANGED
|
@@ -308,6 +308,7 @@ exports.Prisma.AssessmentScalarFieldEnum = {
|
|
|
308
308
|
actual_start_time: 'actual_start_time',
|
|
309
309
|
actual_end_time: 'actual_end_time',
|
|
310
310
|
attempt_expires_at: 'attempt_expires_at',
|
|
311
|
+
evaluated_at: 'evaluated_at',
|
|
311
312
|
created_at: 'created_at',
|
|
312
313
|
updated_at: 'updated_at',
|
|
313
314
|
created_by: 'created_by',
|
|
@@ -434,6 +435,7 @@ exports.Prisma.AssignmentScalarFieldEnum = {
|
|
|
434
435
|
zip_document_id: 'zip_document_id',
|
|
435
436
|
scheduled_start_time: 'scheduled_start_time',
|
|
436
437
|
scheduled_end_time: 'scheduled_end_time',
|
|
438
|
+
evaluated_at: 'evaluated_at',
|
|
437
439
|
created_at: 'created_at',
|
|
438
440
|
updated_at: 'updated_at',
|
|
439
441
|
created_by: 'created_by',
|
|
@@ -879,6 +881,7 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
879
881
|
interview_flow_summary: 'interview_flow_summary',
|
|
880
882
|
ai_feedback_generated_at: 'ai_feedback_generated_at',
|
|
881
883
|
human_feedback_updated_at: 'human_feedback_updated_at',
|
|
884
|
+
evaluated_at: 'evaluated_at',
|
|
882
885
|
reschedule_count: 'reschedule_count',
|
|
883
886
|
last_rescheduled_at: 'last_rescheduled_at',
|
|
884
887
|
first_assigned_at: 'first_assigned_at',
|
|
@@ -1155,6 +1158,7 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
|
1155
1158
|
job_fit_comparison: 'job_fit_comparison',
|
|
1156
1159
|
target_closing_date: 'target_closing_date',
|
|
1157
1160
|
closing_date: 'closing_date',
|
|
1161
|
+
opened_at: 'opened_at',
|
|
1158
1162
|
job_number: 'job_number',
|
|
1159
1163
|
job_code: 'job_code',
|
|
1160
1164
|
created_at: 'created_at',
|
|
@@ -1305,6 +1309,8 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
|
|
|
1305
1309
|
round_status: 'round_status',
|
|
1306
1310
|
comments: 'comments',
|
|
1307
1311
|
completed_at: 'completed_at',
|
|
1312
|
+
assigned_at: 'assigned_at',
|
|
1313
|
+
result_at: 'result_at',
|
|
1308
1314
|
is_committed: 'is_committed',
|
|
1309
1315
|
title: 'title',
|
|
1310
1316
|
description: 'description',
|