@adaptware/eagles-db 0.1.46 → 0.1.48
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 +188 -12
- package/client/index-browser.js +181 -5
- package/client/index.d.ts +31059 -13866
- package/client/index.js +188 -12
- package/client/package.json +1 -1
- package/client/schema.prisma +293 -75
- package/client/wasm.js +181 -5
- package/package.json +1 -1
- package/prisma/schema/assessment.prisma +2 -0
- package/prisma/schema/evaluationPlan.prisma +3 -1
- package/prisma/schema/feedback.prisma +3 -9
- package/prisma/schema/integration.prisma +92 -0
- package/prisma/schema/intermediateFeedback.prisma +18 -0
- package/prisma/schema/interview.prisma +46 -37
- package/prisma/schema/interviewLibrary.prisma +31 -0
- package/prisma/schema/jobDescription.prisma +1 -0
- package/prisma/schema/organisation.prisma +6 -2
- package/prisma/schema/overallFeedback.prisma +34 -0
- package/prisma/schema/panelist.prisma +24 -0
- package/prisma/schema/transcript.prisma +9 -8
- package/prisma/schema/user.prisma +1 -0
- package/prisma/.DS_Store +0 -0
package/client/index-browser.js
CHANGED
|
@@ -221,6 +221,7 @@ exports.Prisma.AssessmentScalarFieldEnum = {
|
|
|
221
221
|
created_by: 'created_by',
|
|
222
222
|
updated_by: 'updated_by',
|
|
223
223
|
is_active: 'is_active',
|
|
224
|
+
panelistId: 'panelistId',
|
|
224
225
|
userId: 'userId'
|
|
225
226
|
};
|
|
226
227
|
|
|
@@ -362,7 +363,6 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
|
362
363
|
exports.Prisma.FeedbackScalarFieldEnum = {
|
|
363
364
|
id: 'id',
|
|
364
365
|
interview_id: 'interview_id',
|
|
365
|
-
feedback_type: 'feedback_type',
|
|
366
366
|
order_no: 'order_no',
|
|
367
367
|
ai_feedback: 'ai_feedback',
|
|
368
368
|
human_feedback: 'human_feedback',
|
|
@@ -420,17 +420,78 @@ exports.Prisma.GoogleScalarFieldEnum = {
|
|
|
420
420
|
is_active: 'is_active'
|
|
421
421
|
};
|
|
422
422
|
|
|
423
|
+
exports.Prisma.IntegrationCredentialScalarFieldEnum = {
|
|
424
|
+
id: 'id',
|
|
425
|
+
organisation_id: 'organisation_id',
|
|
426
|
+
provider: 'provider',
|
|
427
|
+
auth_type: 'auth_type',
|
|
428
|
+
access_token: 'access_token',
|
|
429
|
+
refresh_token: 'refresh_token',
|
|
430
|
+
token_expires_at: 'token_expires_at',
|
|
431
|
+
api_key: 'api_key',
|
|
432
|
+
api_secret: 'api_secret',
|
|
433
|
+
metadata: 'metadata',
|
|
434
|
+
is_active: 'is_active',
|
|
435
|
+
created_at: 'created_at',
|
|
436
|
+
updated_at: 'updated_at',
|
|
437
|
+
created_by: 'created_by',
|
|
438
|
+
updated_by: 'updated_by'
|
|
439
|
+
};
|
|
440
|
+
|
|
441
|
+
exports.Prisma.IntegrationJobSyncScalarFieldEnum = {
|
|
442
|
+
id: 'id',
|
|
443
|
+
job_description_id: 'job_description_id',
|
|
444
|
+
provider: 'provider',
|
|
445
|
+
external_id: 'external_id',
|
|
446
|
+
sync_enabled: 'sync_enabled',
|
|
447
|
+
last_synced_at: 'last_synced_at',
|
|
448
|
+
sync_direction: 'sync_direction',
|
|
449
|
+
metadata: 'metadata',
|
|
450
|
+
created_at: 'created_at',
|
|
451
|
+
updated_at: 'updated_at'
|
|
452
|
+
};
|
|
453
|
+
|
|
454
|
+
exports.Prisma.ZohoSyncMappingScalarFieldEnum = {
|
|
455
|
+
id: 'id',
|
|
456
|
+
organisation_id: 'organisation_id',
|
|
457
|
+
entity_type: 'entity_type',
|
|
458
|
+
treadspace_id: 'treadspace_id',
|
|
459
|
+
zoho_module: 'zoho_module',
|
|
460
|
+
zoho_record_id: 'zoho_record_id',
|
|
461
|
+
last_synced_at: 'last_synced_at',
|
|
462
|
+
sync_status: 'sync_status',
|
|
463
|
+
error_message: 'error_message',
|
|
464
|
+
created_at: 'created_at',
|
|
465
|
+
updated_at: 'updated_at'
|
|
466
|
+
};
|
|
467
|
+
|
|
468
|
+
exports.Prisma.IntermediateFeedbackScalarFieldEnum = {
|
|
469
|
+
id: 'id',
|
|
470
|
+
interview_id: 'interview_id',
|
|
471
|
+
overall_feedback_id: 'overall_feedback_id',
|
|
472
|
+
intermediate_feedback: 'intermediate_feedback',
|
|
473
|
+
order_no: 'order_no',
|
|
474
|
+
created_at: 'created_at',
|
|
475
|
+
updated_at: 'updated_at',
|
|
476
|
+
created_by: 'created_by',
|
|
477
|
+
updated_by: 'updated_by',
|
|
478
|
+
is_active: 'is_active'
|
|
479
|
+
};
|
|
480
|
+
|
|
423
481
|
exports.Prisma.InterviewScalarFieldEnum = {
|
|
424
482
|
id: 'id',
|
|
425
483
|
candidate_id: 'candidate_id',
|
|
426
484
|
interviewer_id: 'interviewer_id',
|
|
427
|
-
application_id: 'application_id',
|
|
428
485
|
evaluation_plan_id: 'evaluation_plan_id',
|
|
486
|
+
application_id: 'application_id',
|
|
429
487
|
resume_id: 'resume_id',
|
|
430
488
|
job_description_id: 'job_description_id',
|
|
431
489
|
organisation_id: 'organisation_id',
|
|
432
490
|
room_name: 'room_name',
|
|
433
491
|
interview_summary: 'interview_summary',
|
|
492
|
+
ai_interview_feedback: 'ai_interview_feedback',
|
|
493
|
+
interview_feedback: 'interview_feedback',
|
|
494
|
+
interview_rating: 'interview_rating',
|
|
434
495
|
scheduled_start_time: 'scheduled_start_time',
|
|
435
496
|
scheduled_end_time: 'scheduled_end_time',
|
|
436
497
|
actual_start_time: 'actual_start_time',
|
|
@@ -445,6 +506,22 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
445
506
|
is_active: 'is_active'
|
|
446
507
|
};
|
|
447
508
|
|
|
509
|
+
exports.Prisma.InterviewLibraryScalarFieldEnum = {
|
|
510
|
+
id: 'id',
|
|
511
|
+
title: 'title',
|
|
512
|
+
description: 'description',
|
|
513
|
+
organisation_id: 'organisation_id',
|
|
514
|
+
category: 'category',
|
|
515
|
+
evaluation_type: 'evaluation_type',
|
|
516
|
+
duration: 'duration',
|
|
517
|
+
passing_marks: 'passing_marks',
|
|
518
|
+
is_active: 'is_active',
|
|
519
|
+
created_by: 'created_by',
|
|
520
|
+
updated_by: 'updated_by',
|
|
521
|
+
created_at: 'created_at',
|
|
522
|
+
updated_at: 'updated_at'
|
|
523
|
+
};
|
|
524
|
+
|
|
448
525
|
exports.Prisma.InterviewNotesScalarFieldEnum = {
|
|
449
526
|
id: 'id',
|
|
450
527
|
interview_id: 'interview_id',
|
|
@@ -553,6 +630,39 @@ exports.Prisma.OrganisationScalarFieldEnum = {
|
|
|
553
630
|
logo: 'logo'
|
|
554
631
|
};
|
|
555
632
|
|
|
633
|
+
exports.Prisma.OverallFeedbackScalarFieldEnum = {
|
|
634
|
+
id: 'id',
|
|
635
|
+
interview_id: 'interview_id',
|
|
636
|
+
interviewer_id: 'interviewer_id',
|
|
637
|
+
feedback_type: 'feedback_type',
|
|
638
|
+
overall_score: 'overall_score',
|
|
639
|
+
overall_recommendation: 'overall_recommendation',
|
|
640
|
+
overall_feedback: 'overall_feedback',
|
|
641
|
+
created_at: 'created_at',
|
|
642
|
+
updated_at: 'updated_at',
|
|
643
|
+
created_by: 'created_by',
|
|
644
|
+
updated_by: 'updated_by',
|
|
645
|
+
is_active: 'is_active'
|
|
646
|
+
};
|
|
647
|
+
|
|
648
|
+
exports.Prisma.PanelistScalarFieldEnum = {
|
|
649
|
+
id: 'id',
|
|
650
|
+
name: 'name',
|
|
651
|
+
designation: 'designation',
|
|
652
|
+
experience: 'experience',
|
|
653
|
+
expertise: 'expertise',
|
|
654
|
+
suited_interview: 'suited_interview',
|
|
655
|
+
industry: 'industry',
|
|
656
|
+
special_areas: 'special_areas',
|
|
657
|
+
organisation_id: 'organisation_id',
|
|
658
|
+
user_id: 'user_id',
|
|
659
|
+
created_at: 'created_at',
|
|
660
|
+
updated_at: 'updated_at',
|
|
661
|
+
created_by: 'created_by',
|
|
662
|
+
updated_by: 'updated_by',
|
|
663
|
+
is_active: 'is_active'
|
|
664
|
+
};
|
|
665
|
+
|
|
556
666
|
exports.Prisma.PermissionScalarFieldEnum = {
|
|
557
667
|
id: 'id',
|
|
558
668
|
permissions: 'permissions',
|
|
@@ -720,6 +830,10 @@ exports.Prisma.NullableJsonNullValueInput = {
|
|
|
720
830
|
JsonNull: Prisma.JsonNull
|
|
721
831
|
};
|
|
722
832
|
|
|
833
|
+
exports.Prisma.JsonNullValueInput = {
|
|
834
|
+
JsonNull: Prisma.JsonNull
|
|
835
|
+
};
|
|
836
|
+
|
|
723
837
|
exports.Prisma.QueryMode = {
|
|
724
838
|
default: 'default',
|
|
725
839
|
insensitive: 'insensitive'
|
|
@@ -832,9 +946,40 @@ exports.EvaluationPlanType = exports.$Enums.EvaluationPlanType = {
|
|
|
832
946
|
DELETED: 'DELETED'
|
|
833
947
|
};
|
|
834
948
|
|
|
835
|
-
exports.
|
|
836
|
-
|
|
837
|
-
|
|
949
|
+
exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
|
|
950
|
+
NAUKRI: 'NAUKRI',
|
|
951
|
+
ZOHO_RECRUIT: 'ZOHO_RECRUIT'
|
|
952
|
+
};
|
|
953
|
+
|
|
954
|
+
exports.IntegrationAuthType = exports.$Enums.IntegrationAuthType = {
|
|
955
|
+
OAUTH2: 'OAUTH2',
|
|
956
|
+
API_KEY: 'API_KEY'
|
|
957
|
+
};
|
|
958
|
+
|
|
959
|
+
exports.SyncDirection = exports.$Enums.SyncDirection = {
|
|
960
|
+
PUSH: 'PUSH',
|
|
961
|
+
PULL: 'PULL',
|
|
962
|
+
BIDIRECTIONAL: 'BIDIRECTIONAL'
|
|
963
|
+
};
|
|
964
|
+
|
|
965
|
+
exports.SyncEntityType = exports.$Enums.SyncEntityType = {
|
|
966
|
+
CANDIDATE: 'CANDIDATE',
|
|
967
|
+
JOB_OPENING: 'JOB_OPENING',
|
|
968
|
+
INTERVIEW: 'INTERVIEW',
|
|
969
|
+
APPLICATION: 'APPLICATION'
|
|
970
|
+
};
|
|
971
|
+
|
|
972
|
+
exports.SyncStatus = exports.$Enums.SyncStatus = {
|
|
973
|
+
SYNCED: 'SYNCED',
|
|
974
|
+
PENDING: 'PENDING',
|
|
975
|
+
FAILED: 'FAILED'
|
|
976
|
+
};
|
|
977
|
+
|
|
978
|
+
exports.InterviewFeedback = exports.$Enums.InterviewFeedback = {
|
|
979
|
+
STRONG_HIRE: 'STRONG_HIRE',
|
|
980
|
+
HIRE: 'HIRE',
|
|
981
|
+
NO_HIRE: 'NO_HIRE',
|
|
982
|
+
STRONG_NO_HIRE: 'STRONG_NO_HIRE'
|
|
838
983
|
};
|
|
839
984
|
|
|
840
985
|
exports.InterviewStatus = exports.$Enums.InterviewStatus = {
|
|
@@ -847,6 +992,17 @@ exports.InterviewStatus = exports.$Enums.InterviewStatus = {
|
|
|
847
992
|
EVALUATED: 'EVALUATED'
|
|
848
993
|
};
|
|
849
994
|
|
|
995
|
+
exports.InterviewCategory = exports.$Enums.InterviewCategory = {
|
|
996
|
+
SCREENING: 'SCREENING',
|
|
997
|
+
TECHNICAL: 'TECHNICAL',
|
|
998
|
+
BEHAVIORAL: 'BEHAVIORAL',
|
|
999
|
+
CASE_STUDY: 'CASE_STUDY',
|
|
1000
|
+
MANAGERIAL: 'MANAGERIAL',
|
|
1001
|
+
CULTURAL_FIT: 'CULTURAL_FIT',
|
|
1002
|
+
FINAL_DISCUSSION: 'FINAL_DISCUSSION',
|
|
1003
|
+
GENERAL: 'GENERAL'
|
|
1004
|
+
};
|
|
1005
|
+
|
|
850
1006
|
exports.JobDescriptionStatus = exports.$Enums.JobDescriptionStatus = {
|
|
851
1007
|
CREATED: 'CREATED',
|
|
852
1008
|
DRAFT: 'DRAFT',
|
|
@@ -890,6 +1046,19 @@ exports.OrganisationSize = exports.$Enums.OrganisationSize = {
|
|
|
890
1046
|
FIVE_HUNDRED_PLUS: 'FIVE_HUNDRED_PLUS'
|
|
891
1047
|
};
|
|
892
1048
|
|
|
1049
|
+
exports.FeedbackType = exports.$Enums.FeedbackType = {
|
|
1050
|
+
HUMAN: 'HUMAN',
|
|
1051
|
+
AI: 'AI'
|
|
1052
|
+
};
|
|
1053
|
+
|
|
1054
|
+
exports.OverallRecommendation = exports.$Enums.OverallRecommendation = {
|
|
1055
|
+
StrongHire: 'StrongHire',
|
|
1056
|
+
Hire: 'Hire',
|
|
1057
|
+
LeaningHire: 'LeaningHire',
|
|
1058
|
+
NoHire: 'NoHire',
|
|
1059
|
+
StrongNoHire: 'StrongNoHire'
|
|
1060
|
+
};
|
|
1061
|
+
|
|
893
1062
|
exports.AsyncOperationStatus = exports.$Enums.AsyncOperationStatus = {
|
|
894
1063
|
PENDING: 'PENDING',
|
|
895
1064
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
@@ -936,13 +1105,20 @@ exports.Prisma.ModelName = {
|
|
|
936
1105
|
Feedback: 'Feedback',
|
|
937
1106
|
FitCheck: 'FitCheck',
|
|
938
1107
|
Google: 'Google',
|
|
1108
|
+
IntegrationCredential: 'IntegrationCredential',
|
|
1109
|
+
IntegrationJobSync: 'IntegrationJobSync',
|
|
1110
|
+
ZohoSyncMapping: 'ZohoSyncMapping',
|
|
1111
|
+
IntermediateFeedback: 'IntermediateFeedback',
|
|
939
1112
|
Interview: 'Interview',
|
|
1113
|
+
InterviewLibrary: 'InterviewLibrary',
|
|
940
1114
|
InterviewNotes: 'InterviewNotes',
|
|
941
1115
|
JobDescription: 'JobDescription',
|
|
942
1116
|
JobDescriptionData: 'JobDescriptionData',
|
|
943
1117
|
Message: 'Message',
|
|
944
1118
|
OngoingEvaluation: 'OngoingEvaluation',
|
|
945
1119
|
Organisation: 'Organisation',
|
|
1120
|
+
OverallFeedback: 'OverallFeedback',
|
|
1121
|
+
Panelist: 'Panelist',
|
|
946
1122
|
Permission: 'Permission',
|
|
947
1123
|
AsyncOperation: 'AsyncOperation',
|
|
948
1124
|
Question: 'Question',
|