@adaptware/eagles-db 0.1.32 → 0.1.33
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 +23 -33
- package/client/index-browser.js +18 -28
- package/client/index.d.ts +747 -1915
- package/client/index.js +23 -33
- package/client/package.json +1 -1
- package/client/schema.prisma +34 -44
- package/client/wasm.js +18 -28
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/schema/fitCheck.prisma +9 -7
- package/prisma/schema/jobDescription.prisma +1 -0
- package/prisma/schema/promise.prisma +35 -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
|
-
order_no: 'order_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,9 +705,7 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
716
705
|
salary: 'salary',
|
|
717
706
|
work_experience: 'work_experience',
|
|
718
707
|
education: 'education',
|
|
719
|
-
skills: 'skills',
|
|
720
708
|
notice_period: 'notice_period',
|
|
721
|
-
preferred_work_mode: 'preferred_work_mode',
|
|
722
709
|
gender: 'gender',
|
|
723
710
|
ethnicity: 'ethnicity',
|
|
724
711
|
veteran_status: 'veteran_status',
|
|
@@ -840,7 +827,16 @@ exports.EvaluationRoundFormat = exports.$Enums.EvaluationRoundFormat = {
|
|
|
840
827
|
EXTERNAL_VIDEO_UNASSISTED: 'EXTERNAL_VIDEO_UNASSISTED'
|
|
841
828
|
};
|
|
842
829
|
|
|
830
|
+
exports.WeightageLevel = exports.$Enums.WeightageLevel = {
|
|
831
|
+
LOW: 'LOW',
|
|
832
|
+
MEDIUM: 'MEDIUM',
|
|
833
|
+
HIGH: 'HIGH'
|
|
834
|
+
};
|
|
835
|
+
|
|
843
836
|
exports.EvaluationType = exports.$Enums.EvaluationType = {
|
|
837
|
+
HUMAN_AI: 'HUMAN_AI',
|
|
838
|
+
AI: 'AI',
|
|
839
|
+
HUMAN: 'HUMAN',
|
|
844
840
|
TREADSPACE_AI_ASSISTED: 'TREADSPACE_AI_ASSISTED',
|
|
845
841
|
EXTERNAL_AI_ASSISTED: 'EXTERNAL_AI_ASSISTED',
|
|
846
842
|
NON_AI_ASSISTED: 'NON_AI_ASSISTED'
|
|
@@ -853,12 +849,6 @@ exports.RoundType = exports.$Enums.RoundType = {
|
|
|
853
849
|
SCREENING: 'SCREENING'
|
|
854
850
|
};
|
|
855
851
|
|
|
856
|
-
exports.EvaluationPlanType = exports.$Enums.EvaluationPlanType = {
|
|
857
|
-
CUSTOM: 'CUSTOM',
|
|
858
|
-
GENERIC: 'GENERIC',
|
|
859
|
-
DELETED: 'DELETED'
|
|
860
|
-
};
|
|
861
|
-
|
|
862
852
|
exports.InterviewFeedback = exports.$Enums.InterviewFeedback = {
|
|
863
853
|
STRONG_HIRE: 'STRONG_HIRE',
|
|
864
854
|
HIRE: 'HIRE',
|