@adaptware/eagles-db 0.4.35 → 0.4.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 +10 -4
- package/client/index-browser.js +7 -1
- package/client/index.d.ts +828 -36
- package/client/index.js +10 -4
- package/client/package.json +1 -1
- package/client/schema.prisma +32 -22
- package/client/wasm.js +10 -4
- package/package.json +1 -1
- package/prisma/schema/document.prisma +2 -4
package/client/index-browser.js
CHANGED
|
@@ -262,6 +262,7 @@ exports.Prisma.ApplicationScalarFieldEnum = {
|
|
|
262
262
|
source_id: 'source_id',
|
|
263
263
|
round_no: 'round_no',
|
|
264
264
|
is_jaf_completed: 'is_jaf_completed',
|
|
265
|
+
proceed_to_next_round: 'proceed_to_next_round',
|
|
265
266
|
on_notice_period: 'on_notice_period',
|
|
266
267
|
expected_joining_date: 'expected_joining_date',
|
|
267
268
|
current_ctc: 'current_ctc',
|
|
@@ -714,6 +715,7 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
|
714
715
|
elimination_round: 'elimination_round',
|
|
715
716
|
evaluation_type: 'evaluation_type',
|
|
716
717
|
type_of_round: 'type_of_round',
|
|
718
|
+
round_purpose: 'round_purpose',
|
|
717
719
|
timeline: 'timeline',
|
|
718
720
|
order_no: 'order_no',
|
|
719
721
|
details: 'details',
|
|
@@ -1302,6 +1304,7 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
|
|
|
1302
1304
|
description: 'description',
|
|
1303
1305
|
order_no: 'order_no',
|
|
1304
1306
|
format: 'format',
|
|
1307
|
+
round_purpose: 'round_purpose',
|
|
1305
1308
|
topics: 'topics',
|
|
1306
1309
|
assignee: 'assignee',
|
|
1307
1310
|
elimination_round: 'elimination_round',
|
|
@@ -1538,6 +1541,8 @@ exports.Prisma.ResumeScalarFieldEnum = {
|
|
|
1538
1541
|
job_description_id: 'job_description_id',
|
|
1539
1542
|
uploaded_resume_path: 'uploaded_resume_path',
|
|
1540
1543
|
document_id: 'document_id',
|
|
1544
|
+
rendered_export_document_id: 'rendered_export_document_id',
|
|
1545
|
+
resume_template_id: 'resume_template_id',
|
|
1541
1546
|
file_hash: 'file_hash',
|
|
1542
1547
|
summary: 'summary',
|
|
1543
1548
|
created_at: 'created_at',
|
|
@@ -1953,7 +1958,8 @@ exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
|
|
|
1953
1958
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
1954
1959
|
SELECTED: 'SELECTED',
|
|
1955
1960
|
SHORTLISTED: 'SHORTLISTED',
|
|
1956
|
-
REJECTED: 'REJECTED'
|
|
1961
|
+
REJECTED: 'REJECTED',
|
|
1962
|
+
ON_HOLD: 'ON_HOLD'
|
|
1957
1963
|
};
|
|
1958
1964
|
|
|
1959
1965
|
exports.FitCheckStatus = exports.$Enums.FitCheckStatus = {
|