@adaptware/eagles-db 0.1.32 → 0.1.34
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 +38 -5
- package/client/index-browser.js +33 -0
- package/client/index.d.ts +2092 -232
- package/client/index.js +38 -5
- package/client/package.json +1 -1
- package/client/schema.prisma +50 -7
- package/client/wasm.js +33 -0
- 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 +39 -0
package/client/index-browser.js
CHANGED
|
@@ -379,6 +379,8 @@ exports.Prisma.FitCheckScalarFieldEnum = {
|
|
|
379
379
|
overall_analysis: 'overall_analysis',
|
|
380
380
|
fit: 'fit',
|
|
381
381
|
fit_check_status: 'fit_check_status',
|
|
382
|
+
skills_analysis: 'skills_analysis',
|
|
383
|
+
experience_analysis: 'experience_analysis',
|
|
382
384
|
overall_score: 'overall_score',
|
|
383
385
|
short_match_analysis: 'short_match_analysis',
|
|
384
386
|
candidate_analysis: 'candidate_analysis',
|
|
@@ -487,6 +489,7 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
|
487
489
|
is_plan_published: 'is_plan_published',
|
|
488
490
|
is_posted: 'is_posted',
|
|
489
491
|
ai_insight: 'ai_insight',
|
|
492
|
+
fit_comparison: 'fit_comparison',
|
|
490
493
|
created_at: 'created_at',
|
|
491
494
|
updated_at: 'updated_at',
|
|
492
495
|
created_by: 'created_by',
|
|
@@ -613,6 +616,26 @@ exports.Prisma.PermissionScalarFieldEnum = {
|
|
|
613
616
|
is_active: 'is_active'
|
|
614
617
|
};
|
|
615
618
|
|
|
619
|
+
exports.Prisma.AsyncOperationScalarFieldEnum = {
|
|
620
|
+
id: 'id',
|
|
621
|
+
operation_name: 'operation_name',
|
|
622
|
+
status: 'status',
|
|
623
|
+
started_at: 'started_at',
|
|
624
|
+
completed_at: 'completed_at',
|
|
625
|
+
payload: 'payload',
|
|
626
|
+
metadata: 'metadata',
|
|
627
|
+
correlationId: 'correlationId',
|
|
628
|
+
sourceService: 'sourceService',
|
|
629
|
+
retry_count: 'retry_count',
|
|
630
|
+
max_retries: 'max_retries',
|
|
631
|
+
next_retry_at: 'next_retry_at',
|
|
632
|
+
error_message: 'error_message',
|
|
633
|
+
error_details: 'error_details',
|
|
634
|
+
created_at: 'created_at',
|
|
635
|
+
updated_at: 'updated_at',
|
|
636
|
+
is_active: 'is_active'
|
|
637
|
+
};
|
|
638
|
+
|
|
616
639
|
exports.Prisma.QuestionScalarFieldEnum = {
|
|
617
640
|
id: 'id',
|
|
618
641
|
assessment_library_id: 'assessment_library_id',
|
|
@@ -943,6 +966,15 @@ exports.OverallRecommendation = exports.$Enums.OverallRecommendation = {
|
|
|
943
966
|
StrongNoHire: 'StrongNoHire'
|
|
944
967
|
};
|
|
945
968
|
|
|
969
|
+
exports.AsyncOperationStatus = exports.$Enums.AsyncOperationStatus = {
|
|
970
|
+
PENDING: 'PENDING',
|
|
971
|
+
IN_PROGRESS: 'IN_PROGRESS',
|
|
972
|
+
SUCCESS: 'SUCCESS',
|
|
973
|
+
FAILED: 'FAILED',
|
|
974
|
+
RETRYING: 'RETRYING',
|
|
975
|
+
CANCELLED: 'CANCELLED'
|
|
976
|
+
};
|
|
977
|
+
|
|
946
978
|
exports.QuestionType = exports.$Enums.QuestionType = {
|
|
947
979
|
MCQ: 'MCQ',
|
|
948
980
|
TRUE_FALSE: 'TRUE_FALSE',
|
|
@@ -991,6 +1023,7 @@ exports.Prisma.ModelName = {
|
|
|
991
1023
|
OverallFeedback: 'OverallFeedback',
|
|
992
1024
|
Panelist: 'Panelist',
|
|
993
1025
|
Permission: 'Permission',
|
|
1026
|
+
AsyncOperation: 'AsyncOperation',
|
|
994
1027
|
Question: 'Question',
|
|
995
1028
|
Resume: 'Resume',
|
|
996
1029
|
ResumeData: 'ResumeData',
|