@adaptware/eagles-db 0.1.48 → 0.1.49
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 +11 -188
- package/client/index-browser.js +4 -181
- package/client/index.d.ts +33952 -51713
- package/client/index.js +11 -188
- package/client/package.json +1 -1
- package/client/schema.prisma +71 -295
- package/client/wasm.js +4 -181
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/schema/assessment.prisma +0 -2
- package/prisma/schema/evaluationPlan.prisma +4 -7
- package/prisma/schema/feedback.prisma +9 -3
- package/prisma/schema/interview.prisma +37 -46
- package/prisma/schema/jobDescription.prisma +0 -1
- package/prisma/schema/organisation.prisma +2 -6
- package/prisma/schema/transcript.prisma +8 -9
- package/prisma/schema/user.prisma +0 -1
- package/prisma/schema/integration.prisma +0 -92
- package/prisma/schema/intermediateFeedback.prisma +0 -18
- package/prisma/schema/interviewLibrary.prisma +0 -31
- package/prisma/schema/overallFeedback.prisma +0 -34
- package/prisma/schema/panelist.prisma +0 -24
package/client/index-browser.js
CHANGED
|
@@ -221,7 +221,6 @@ exports.Prisma.AssessmentScalarFieldEnum = {
|
|
|
221
221
|
created_by: 'created_by',
|
|
222
222
|
updated_by: 'updated_by',
|
|
223
223
|
is_active: 'is_active',
|
|
224
|
-
panelistId: 'panelistId',
|
|
225
224
|
userId: 'userId'
|
|
226
225
|
};
|
|
227
226
|
|
|
@@ -363,6 +362,7 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
|
363
362
|
exports.Prisma.FeedbackScalarFieldEnum = {
|
|
364
363
|
id: 'id',
|
|
365
364
|
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,78 +420,16 @@ 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
|
-
|
|
481
423
|
exports.Prisma.InterviewScalarFieldEnum = {
|
|
482
424
|
id: 'id',
|
|
483
425
|
candidate_id: 'candidate_id',
|
|
484
426
|
interviewer_id: 'interviewer_id',
|
|
485
|
-
evaluation_plan_id: 'evaluation_plan_id',
|
|
486
427
|
application_id: 'application_id',
|
|
487
428
|
resume_id: 'resume_id',
|
|
488
429
|
job_description_id: 'job_description_id',
|
|
489
430
|
organisation_id: 'organisation_id',
|
|
490
431
|
room_name: 'room_name',
|
|
491
432
|
interview_summary: 'interview_summary',
|
|
492
|
-
ai_interview_feedback: 'ai_interview_feedback',
|
|
493
|
-
interview_feedback: 'interview_feedback',
|
|
494
|
-
interview_rating: 'interview_rating',
|
|
495
433
|
scheduled_start_time: 'scheduled_start_time',
|
|
496
434
|
scheduled_end_time: 'scheduled_end_time',
|
|
497
435
|
actual_start_time: 'actual_start_time',
|
|
@@ -506,22 +444,6 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
506
444
|
is_active: 'is_active'
|
|
507
445
|
};
|
|
508
446
|
|
|
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
|
-
|
|
525
447
|
exports.Prisma.InterviewNotesScalarFieldEnum = {
|
|
526
448
|
id: 'id',
|
|
527
449
|
interview_id: 'interview_id',
|
|
@@ -630,39 +552,6 @@ exports.Prisma.OrganisationScalarFieldEnum = {
|
|
|
630
552
|
logo: 'logo'
|
|
631
553
|
};
|
|
632
554
|
|
|
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
|
-
|
|
666
555
|
exports.Prisma.PermissionScalarFieldEnum = {
|
|
667
556
|
id: 'id',
|
|
668
557
|
permissions: 'permissions',
|
|
@@ -830,10 +719,6 @@ exports.Prisma.NullableJsonNullValueInput = {
|
|
|
830
719
|
JsonNull: Prisma.JsonNull
|
|
831
720
|
};
|
|
832
721
|
|
|
833
|
-
exports.Prisma.JsonNullValueInput = {
|
|
834
|
-
JsonNull: Prisma.JsonNull
|
|
835
|
-
};
|
|
836
|
-
|
|
837
722
|
exports.Prisma.QueryMode = {
|
|
838
723
|
default: 'default',
|
|
839
724
|
insensitive: 'insensitive'
|
|
@@ -946,40 +831,9 @@ exports.EvaluationPlanType = exports.$Enums.EvaluationPlanType = {
|
|
|
946
831
|
DELETED: 'DELETED'
|
|
947
832
|
};
|
|
948
833
|
|
|
949
|
-
exports.
|
|
950
|
-
|
|
951
|
-
|
|
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'
|
|
834
|
+
exports.FeedbackType = exports.$Enums.FeedbackType = {
|
|
835
|
+
SECTION: 'SECTION',
|
|
836
|
+
OVERALL: 'OVERALL'
|
|
983
837
|
};
|
|
984
838
|
|
|
985
839
|
exports.InterviewStatus = exports.$Enums.InterviewStatus = {
|
|
@@ -992,17 +846,6 @@ exports.InterviewStatus = exports.$Enums.InterviewStatus = {
|
|
|
992
846
|
EVALUATED: 'EVALUATED'
|
|
993
847
|
};
|
|
994
848
|
|
|
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
|
-
|
|
1006
849
|
exports.JobDescriptionStatus = exports.$Enums.JobDescriptionStatus = {
|
|
1007
850
|
CREATED: 'CREATED',
|
|
1008
851
|
DRAFT: 'DRAFT',
|
|
@@ -1046,19 +889,6 @@ exports.OrganisationSize = exports.$Enums.OrganisationSize = {
|
|
|
1046
889
|
FIVE_HUNDRED_PLUS: 'FIVE_HUNDRED_PLUS'
|
|
1047
890
|
};
|
|
1048
891
|
|
|
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
|
-
|
|
1062
892
|
exports.AsyncOperationStatus = exports.$Enums.AsyncOperationStatus = {
|
|
1063
893
|
PENDING: 'PENDING',
|
|
1064
894
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
@@ -1105,20 +935,13 @@ exports.Prisma.ModelName = {
|
|
|
1105
935
|
Feedback: 'Feedback',
|
|
1106
936
|
FitCheck: 'FitCheck',
|
|
1107
937
|
Google: 'Google',
|
|
1108
|
-
IntegrationCredential: 'IntegrationCredential',
|
|
1109
|
-
IntegrationJobSync: 'IntegrationJobSync',
|
|
1110
|
-
ZohoSyncMapping: 'ZohoSyncMapping',
|
|
1111
|
-
IntermediateFeedback: 'IntermediateFeedback',
|
|
1112
938
|
Interview: 'Interview',
|
|
1113
|
-
InterviewLibrary: 'InterviewLibrary',
|
|
1114
939
|
InterviewNotes: 'InterviewNotes',
|
|
1115
940
|
JobDescription: 'JobDescription',
|
|
1116
941
|
JobDescriptionData: 'JobDescriptionData',
|
|
1117
942
|
Message: 'Message',
|
|
1118
943
|
OngoingEvaluation: 'OngoingEvaluation',
|
|
1119
944
|
Organisation: 'Organisation',
|
|
1120
|
-
OverallFeedback: 'OverallFeedback',
|
|
1121
|
-
Panelist: 'Panelist',
|
|
1122
945
|
Permission: 'Permission',
|
|
1123
946
|
AsyncOperation: 'AsyncOperation',
|
|
1124
947
|
Question: 'Question',
|