@adaptware/eagles-db 0.1.30 → 0.1.31
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 +25 -31
- package/client/index-browser.js +20 -26
- package/client/index.d.ts +1003 -1659
- package/client/index.js +25 -31
- package/client/package.json +1 -1
- package/client/schema.prisma +36 -42
- package/client/wasm.js +20 -26
- package/package.json +1 -1
- package/prisma/schema/user.prisma +2 -0
- package/dist/env.d.ts +0 -18
- package/dist/env.d.ts.map +0 -1
- package/dist/env.js +0 -30
- package/dist/env.js.map +0 -1
- package/dist/index.d.ts +0 -7
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -22
- package/dist/index.js.map +0 -1
- package/prisma/.DS_Store +0 -0
package/client/index-browser.js
CHANGED
|
@@ -332,6 +332,7 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
|
332
332
|
title: 'title',
|
|
333
333
|
description: 'description',
|
|
334
334
|
format: 'format',
|
|
335
|
+
weightage: 'weightage',
|
|
335
336
|
topics: 'topics',
|
|
336
337
|
assignee: 'assignee',
|
|
337
338
|
elimination_round: 'elimination_round',
|
|
@@ -340,7 +341,7 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
|
340
341
|
timeline: 'timeline',
|
|
341
342
|
order_no: 'order_no',
|
|
342
343
|
details: 'details',
|
|
343
|
-
|
|
344
|
+
lock_weight: 'lock_weight',
|
|
344
345
|
created_by: 'created_by',
|
|
345
346
|
updated_by: 'updated_by',
|
|
346
347
|
created_at: 'created_at',
|
|
@@ -477,22 +478,21 @@ exports.Prisma.InterviewNotesScalarFieldEnum = {
|
|
|
477
478
|
|
|
478
479
|
exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
479
480
|
id: 'id',
|
|
480
|
-
organisation_id: 'organisation_id',
|
|
481
481
|
hiring_manager_id: 'hiring_manager_id',
|
|
482
482
|
status: 'status',
|
|
483
|
+
organisation_id: 'organisation_id',
|
|
483
484
|
screeningQuestions: 'screeningQuestions',
|
|
484
485
|
recommendedQuestions: 'recommendedQuestions',
|
|
485
|
-
uploaded_job_description_path: 'uploaded_job_description_path',
|
|
486
|
-
is_plan_locked: 'is_plan_locked',
|
|
487
|
-
is_plan_published: 'is_plan_published',
|
|
488
|
-
is_posted: 'is_posted',
|
|
489
|
-
ai_insight: 'ai_insight',
|
|
490
486
|
created_at: 'created_at',
|
|
491
487
|
updated_at: 'updated_at',
|
|
492
488
|
created_by: 'created_by',
|
|
493
489
|
updated_by: 'updated_by',
|
|
490
|
+
uploaded_job_description_path: 'uploaded_job_description_path',
|
|
494
491
|
is_active: 'is_active',
|
|
495
|
-
|
|
492
|
+
is_plan_locked: 'is_plan_locked',
|
|
493
|
+
is_posted: 'is_posted',
|
|
494
|
+
openings: 'openings',
|
|
495
|
+
ai_insight: 'ai_insight'
|
|
496
496
|
};
|
|
497
497
|
|
|
498
498
|
exports.Prisma.JobDescriptionDataScalarFieldEnum = {
|
|
@@ -537,18 +537,7 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
|
|
|
537
537
|
created_by: 'created_by',
|
|
538
538
|
updated_by: 'updated_by',
|
|
539
539
|
is_active: 'is_active',
|
|
540
|
-
is_current: 'is_current'
|
|
541
|
-
title: 'title',
|
|
542
|
-
description: 'description',
|
|
543
|
-
round_no: 'round_no',
|
|
544
|
-
format: 'format',
|
|
545
|
-
topics: 'topics',
|
|
546
|
-
assignee: 'assignee',
|
|
547
|
-
elimination_round: 'elimination_round',
|
|
548
|
-
evaluation_type: 'evaluation_type',
|
|
549
|
-
type_of_round: 'type_of_round',
|
|
550
|
-
timeline: 'timeline',
|
|
551
|
-
details: 'details'
|
|
540
|
+
is_current: 'is_current'
|
|
552
541
|
};
|
|
553
542
|
|
|
554
543
|
exports.Prisma.OrganisationScalarFieldEnum = {
|
|
@@ -716,7 +705,9 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
716
705
|
salary: 'salary',
|
|
717
706
|
work_experience: 'work_experience',
|
|
718
707
|
education: 'education',
|
|
708
|
+
skills: 'skills',
|
|
719
709
|
notice_period: 'notice_period',
|
|
710
|
+
preferred_work_mode: 'preferred_work_mode',
|
|
720
711
|
gender: 'gender',
|
|
721
712
|
ethnicity: 'ethnicity',
|
|
722
713
|
veteran_status: 'veteran_status',
|
|
@@ -838,7 +829,16 @@ exports.EvaluationRoundFormat = exports.$Enums.EvaluationRoundFormat = {
|
|
|
838
829
|
EXTERNAL_VIDEO_UNASSISTED: 'EXTERNAL_VIDEO_UNASSISTED'
|
|
839
830
|
};
|
|
840
831
|
|
|
832
|
+
exports.WeightageLevel = exports.$Enums.WeightageLevel = {
|
|
833
|
+
LOW: 'LOW',
|
|
834
|
+
MEDIUM: 'MEDIUM',
|
|
835
|
+
HIGH: 'HIGH'
|
|
836
|
+
};
|
|
837
|
+
|
|
841
838
|
exports.EvaluationType = exports.$Enums.EvaluationType = {
|
|
839
|
+
HUMAN_AI: 'HUMAN_AI',
|
|
840
|
+
AI: 'AI',
|
|
841
|
+
HUMAN: 'HUMAN',
|
|
842
842
|
TREADSPACE_AI_ASSISTED: 'TREADSPACE_AI_ASSISTED',
|
|
843
843
|
EXTERNAL_AI_ASSISTED: 'EXTERNAL_AI_ASSISTED',
|
|
844
844
|
NON_AI_ASSISTED: 'NON_AI_ASSISTED'
|
|
@@ -851,12 +851,6 @@ exports.RoundType = exports.$Enums.RoundType = {
|
|
|
851
851
|
SCREENING: 'SCREENING'
|
|
852
852
|
};
|
|
853
853
|
|
|
854
|
-
exports.EvaluationPlanType = exports.$Enums.EvaluationPlanType = {
|
|
855
|
-
CUSTOM: 'CUSTOM',
|
|
856
|
-
GENERIC: 'GENERIC',
|
|
857
|
-
DELETED: 'DELETED'
|
|
858
|
-
};
|
|
859
|
-
|
|
860
854
|
exports.InterviewFeedback = exports.$Enums.InterviewFeedback = {
|
|
861
855
|
STRONG_HIRE: 'STRONG_HIRE',
|
|
862
856
|
HIRE: 'HIRE',
|