@adaptware/eagles-db 0.1.31 → 0.1.32
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 +29 -21
- package/client/index-browser.js +26 -18
- package/client/index.d.ts +1658 -746
- package/client/index.js +29 -21
- package/client/package.json +1 -1
- package/client/schema.prisma +28 -20
- package/client/wasm.js +26 -18
- package/dist/env.d.ts +18 -0
- package/dist/env.d.ts.map +1 -0
- package/dist/env.js +30 -0
- package/dist/env.js.map +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +22 -0
- package/dist/index.js.map +1 -0
- package/package.json +1 -1
package/client/index-browser.js
CHANGED
|
@@ -332,7 +332,6 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
|
332
332
|
title: 'title',
|
|
333
333
|
description: 'description',
|
|
334
334
|
format: 'format',
|
|
335
|
-
weightage: 'weightage',
|
|
336
335
|
topics: 'topics',
|
|
337
336
|
assignee: 'assignee',
|
|
338
337
|
elimination_round: 'elimination_round',
|
|
@@ -341,7 +340,7 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
|
341
340
|
timeline: 'timeline',
|
|
342
341
|
order_no: 'order_no',
|
|
343
342
|
details: 'details',
|
|
344
|
-
|
|
343
|
+
plan_type: 'plan_type',
|
|
345
344
|
created_by: 'created_by',
|
|
346
345
|
updated_by: 'updated_by',
|
|
347
346
|
created_at: 'created_at',
|
|
@@ -478,21 +477,22 @@ exports.Prisma.InterviewNotesScalarFieldEnum = {
|
|
|
478
477
|
|
|
479
478
|
exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
480
479
|
id: 'id',
|
|
480
|
+
organisation_id: 'organisation_id',
|
|
481
481
|
hiring_manager_id: 'hiring_manager_id',
|
|
482
482
|
status: 'status',
|
|
483
|
-
organisation_id: 'organisation_id',
|
|
484
483
|
screeningQuestions: 'screeningQuestions',
|
|
485
484
|
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',
|
|
486
490
|
created_at: 'created_at',
|
|
487
491
|
updated_at: 'updated_at',
|
|
488
492
|
created_by: 'created_by',
|
|
489
493
|
updated_by: 'updated_by',
|
|
490
|
-
uploaded_job_description_path: 'uploaded_job_description_path',
|
|
491
494
|
is_active: 'is_active',
|
|
492
|
-
|
|
493
|
-
is_posted: 'is_posted',
|
|
494
|
-
openings: 'openings',
|
|
495
|
-
ai_insight: 'ai_insight'
|
|
495
|
+
openings: 'openings'
|
|
496
496
|
};
|
|
497
497
|
|
|
498
498
|
exports.Prisma.JobDescriptionDataScalarFieldEnum = {
|
|
@@ -537,7 +537,18 @@ 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'
|
|
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'
|
|
541
552
|
};
|
|
542
553
|
|
|
543
554
|
exports.Prisma.OrganisationScalarFieldEnum = {
|
|
@@ -829,16 +840,7 @@ exports.EvaluationRoundFormat = exports.$Enums.EvaluationRoundFormat = {
|
|
|
829
840
|
EXTERNAL_VIDEO_UNASSISTED: 'EXTERNAL_VIDEO_UNASSISTED'
|
|
830
841
|
};
|
|
831
842
|
|
|
832
|
-
exports.WeightageLevel = exports.$Enums.WeightageLevel = {
|
|
833
|
-
LOW: 'LOW',
|
|
834
|
-
MEDIUM: 'MEDIUM',
|
|
835
|
-
HIGH: 'HIGH'
|
|
836
|
-
};
|
|
837
|
-
|
|
838
843
|
exports.EvaluationType = exports.$Enums.EvaluationType = {
|
|
839
|
-
HUMAN_AI: 'HUMAN_AI',
|
|
840
|
-
AI: 'AI',
|
|
841
|
-
HUMAN: 'HUMAN',
|
|
842
844
|
TREADSPACE_AI_ASSISTED: 'TREADSPACE_AI_ASSISTED',
|
|
843
845
|
EXTERNAL_AI_ASSISTED: 'EXTERNAL_AI_ASSISTED',
|
|
844
846
|
NON_AI_ASSISTED: 'NON_AI_ASSISTED'
|
|
@@ -851,6 +853,12 @@ exports.RoundType = exports.$Enums.RoundType = {
|
|
|
851
853
|
SCREENING: 'SCREENING'
|
|
852
854
|
};
|
|
853
855
|
|
|
856
|
+
exports.EvaluationPlanType = exports.$Enums.EvaluationPlanType = {
|
|
857
|
+
CUSTOM: 'CUSTOM',
|
|
858
|
+
GENERIC: 'GENERIC',
|
|
859
|
+
DELETED: 'DELETED'
|
|
860
|
+
};
|
|
861
|
+
|
|
854
862
|
exports.InterviewFeedback = exports.$Enums.InterviewFeedback = {
|
|
855
863
|
STRONG_HIRE: 'STRONG_HIRE',
|
|
856
864
|
HIRE: 'HIRE',
|