@adaptware/eagles-db 0.4.17 → 0.4.19
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/README.md +9 -104
- package/client/edge.js +103 -5
- package/client/index-browser.js +98 -0
- package/client/index.d.ts +19360 -5843
- package/client/index.js +103 -5
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +240 -75
- package/client/wasm.js +98 -0
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/schema/.DS_Store +0 -0
- package/prisma/schema/applications.prisma +39 -36
- package/prisma/schema/assignment.prisma +6 -0
- package/prisma/schema/document.prisma +37 -0
- package/prisma/schema/interview.prisma +3 -0
- package/prisma/schema/jobApplicationFields.prisma +37 -0
- package/prisma/schema/jobApplicationResponse.prisma +33 -0
- package/prisma/schema/jobApplicationTemplate.prisma +30 -0
- package/prisma/schema/jobDescription.prisma +15 -11
- package/prisma/schema/migrations/20260519120000_add_analytics_schema/migration.sql +84 -0
- package/prisma/schema/organisation.prisma +30 -27
- package/prisma/schema/resume.prisma +5 -1
- package/prisma/schema/user.prisma +1 -0
- package/prisma/schema/migrations/20260610100000_add_communication/migration.sql +0 -131
- package/prisma/schema/migrations/20260610170000_add_communication_application_scope/migration.sql +0 -45
package/client/index-browser.js
CHANGED
|
@@ -186,6 +186,7 @@ exports.Prisma.ApplicationScalarFieldEnum = {
|
|
|
186
186
|
evaluation_plan_id: 'evaluation_plan_id',
|
|
187
187
|
fit_check_id: 'fit_check_id',
|
|
188
188
|
round_no: 'round_no',
|
|
189
|
+
is_jaf_completed: 'is_jaf_completed',
|
|
189
190
|
on_notice_period: 'on_notice_period',
|
|
190
191
|
expected_joining_date: 'expected_joining_date',
|
|
191
192
|
current_ctc: 'current_ctc',
|
|
@@ -270,6 +271,8 @@ exports.Prisma.AssignmentScalarFieldEnum = {
|
|
|
270
271
|
cancel_reason: 'cancel_reason',
|
|
271
272
|
solution_url: 'solution_url',
|
|
272
273
|
zip_url: 'zip_url',
|
|
274
|
+
solution_document_id: 'solution_document_id',
|
|
275
|
+
zip_document_id: 'zip_document_id',
|
|
273
276
|
scheduled_start_time: 'scheduled_start_time',
|
|
274
277
|
scheduled_end_time: 'scheduled_end_time',
|
|
275
278
|
created_at: 'created_at',
|
|
@@ -446,6 +449,26 @@ exports.Prisma.ContactUsScalarFieldEnum = {
|
|
|
446
449
|
is_active: 'is_active'
|
|
447
450
|
};
|
|
448
451
|
|
|
452
|
+
exports.Prisma.DocumentScalarFieldEnum = {
|
|
453
|
+
id: 'id',
|
|
454
|
+
organisation_id: 'organisation_id',
|
|
455
|
+
candidate_id: 'candidate_id',
|
|
456
|
+
original_file_name: 'original_file_name',
|
|
457
|
+
stored_file_name: 'stored_file_name',
|
|
458
|
+
file_extension: 'file_extension',
|
|
459
|
+
s3_bucket: 's3_bucket',
|
|
460
|
+
s3_key: 's3_key',
|
|
461
|
+
mime_type: 'mime_type',
|
|
462
|
+
file_size: 'file_size',
|
|
463
|
+
file_hash: 'file_hash',
|
|
464
|
+
metadata: 'metadata',
|
|
465
|
+
created_at: 'created_at',
|
|
466
|
+
updated_at: 'updated_at',
|
|
467
|
+
created_by: 'created_by',
|
|
468
|
+
updated_by: 'updated_by',
|
|
469
|
+
is_active: 'is_active'
|
|
470
|
+
};
|
|
471
|
+
|
|
449
472
|
exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
450
473
|
id: 'id',
|
|
451
474
|
job_description_id: 'job_description_id',
|
|
@@ -596,6 +619,7 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
596
619
|
actual_end_time: 'actual_end_time',
|
|
597
620
|
duration: 'duration',
|
|
598
621
|
recording_url: 'recording_url',
|
|
622
|
+
recording_document_id: 'recording_document_id',
|
|
599
623
|
evaluation_type: 'evaluation_type',
|
|
600
624
|
ai_assistance_mode: 'ai_assistance_mode',
|
|
601
625
|
interview_status: 'interview_status',
|
|
@@ -636,6 +660,58 @@ exports.Prisma.InterviewNotesScalarFieldEnum = {
|
|
|
636
660
|
is_active: 'is_active'
|
|
637
661
|
};
|
|
638
662
|
|
|
663
|
+
exports.Prisma.JobApplicationFieldScalarFieldEnum = {
|
|
664
|
+
id: 'id',
|
|
665
|
+
organisation_id: 'organisation_id',
|
|
666
|
+
template_id: 'template_id',
|
|
667
|
+
field_type: 'field_type',
|
|
668
|
+
label: 'label',
|
|
669
|
+
description: 'description',
|
|
670
|
+
is_mandatory: 'is_mandatory',
|
|
671
|
+
is_draft: 'is_draft',
|
|
672
|
+
options: 'options',
|
|
673
|
+
is_active: 'is_active',
|
|
674
|
+
created_by: 'created_by',
|
|
675
|
+
updated_by: 'updated_by',
|
|
676
|
+
created_at: 'created_at',
|
|
677
|
+
updated_at: 'updated_at'
|
|
678
|
+
};
|
|
679
|
+
|
|
680
|
+
exports.Prisma.JobApplicationResponseScalarFieldEnum = {
|
|
681
|
+
id: 'id',
|
|
682
|
+
application_id: 'application_id',
|
|
683
|
+
job_application_field_id: 'job_application_field_id',
|
|
684
|
+
document_id: 'document_id',
|
|
685
|
+
response: 'response',
|
|
686
|
+
field_type: 'field_type',
|
|
687
|
+
label: 'label',
|
|
688
|
+
description: 'description',
|
|
689
|
+
is_mandatory: 'is_mandatory',
|
|
690
|
+
is_draft: 'is_draft',
|
|
691
|
+
is_submitted: 'is_submitted',
|
|
692
|
+
options: 'options',
|
|
693
|
+
updated_by_organisation: 'updated_by_organisation',
|
|
694
|
+
created_at: 'created_at',
|
|
695
|
+
updated_at: 'updated_at',
|
|
696
|
+
created_by: 'created_by',
|
|
697
|
+
updated_by: 'updated_by',
|
|
698
|
+
is_active: 'is_active'
|
|
699
|
+
};
|
|
700
|
+
|
|
701
|
+
exports.Prisma.JobApplicationTemplateScalarFieldEnum = {
|
|
702
|
+
id: 'id',
|
|
703
|
+
organisation_id: 'organisation_id',
|
|
704
|
+
job_description_id: 'job_description_id',
|
|
705
|
+
name: 'name',
|
|
706
|
+
description: 'description',
|
|
707
|
+
scope: 'scope',
|
|
708
|
+
is_active: 'is_active',
|
|
709
|
+
created_by: 'created_by',
|
|
710
|
+
updated_by: 'updated_by',
|
|
711
|
+
created_at: 'created_at',
|
|
712
|
+
updated_at: 'updated_at'
|
|
713
|
+
};
|
|
714
|
+
|
|
639
715
|
exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
640
716
|
id: 'id',
|
|
641
717
|
organisation_id: 'organisation_id',
|
|
@@ -644,6 +720,7 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
|
644
720
|
screeningQuestions: 'screeningQuestions',
|
|
645
721
|
recommendedQuestions: 'recommendedQuestions',
|
|
646
722
|
uploaded_job_description_path: 'uploaded_job_description_path',
|
|
723
|
+
source_document_id: 'source_document_id',
|
|
647
724
|
is_plan_published: 'is_plan_published',
|
|
648
725
|
is_posted: 'is_posted',
|
|
649
726
|
summary: 'summary',
|
|
@@ -865,6 +942,7 @@ exports.Prisma.ResumeScalarFieldEnum = {
|
|
|
865
942
|
organisation_id: 'organisation_id',
|
|
866
943
|
job_description_id: 'job_description_id',
|
|
867
944
|
uploaded_resume_path: 'uploaded_resume_path',
|
|
945
|
+
document_id: 'document_id',
|
|
868
946
|
file_hash: 'file_hash',
|
|
869
947
|
summary: 'summary',
|
|
870
948
|
created_at: 'created_at',
|
|
@@ -1071,6 +1149,7 @@ exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
|
|
|
1071
1149
|
PENDING: 'PENDING',
|
|
1072
1150
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
1073
1151
|
SHORTLISTED: 'SHORTLISTED',
|
|
1152
|
+
SELECTED: 'SELECTED',
|
|
1074
1153
|
REJECTED: 'REJECTED'
|
|
1075
1154
|
};
|
|
1076
1155
|
|
|
@@ -1237,6 +1316,21 @@ exports.InterviewFeedback = exports.$Enums.InterviewFeedback = {
|
|
|
1237
1316
|
STRONG_NO_HIRE: 'STRONG_NO_HIRE'
|
|
1238
1317
|
};
|
|
1239
1318
|
|
|
1319
|
+
exports.JobApplicationFieldType = exports.$Enums.JobApplicationFieldType = {
|
|
1320
|
+
TEXT: 'TEXT',
|
|
1321
|
+
NUMBER: 'NUMBER',
|
|
1322
|
+
DATE: 'DATE',
|
|
1323
|
+
BOOLEAN: 'BOOLEAN',
|
|
1324
|
+
MULTI_SELECT: 'MULTI_SELECT',
|
|
1325
|
+
FILE: 'FILE',
|
|
1326
|
+
DROP_DOWN: 'DROP_DOWN'
|
|
1327
|
+
};
|
|
1328
|
+
|
|
1329
|
+
exports.JobApplicationTemplateScope = exports.$Enums.JobApplicationTemplateScope = {
|
|
1330
|
+
ORGANIZATION: 'ORGANIZATION',
|
|
1331
|
+
JOB: 'JOB'
|
|
1332
|
+
};
|
|
1333
|
+
|
|
1240
1334
|
exports.JobDescriptionStatus = exports.$Enums.JobDescriptionStatus = {
|
|
1241
1335
|
CREATED: 'CREATED',
|
|
1242
1336
|
DRAFT: 'DRAFT',
|
|
@@ -1328,6 +1422,7 @@ exports.Prisma.ModelName = {
|
|
|
1328
1422
|
Conversation: 'Conversation',
|
|
1329
1423
|
CommunicationMessage: 'CommunicationMessage',
|
|
1330
1424
|
ContactUs: 'ContactUs',
|
|
1425
|
+
Document: 'Document',
|
|
1331
1426
|
EvaluationPlan: 'EvaluationPlan',
|
|
1332
1427
|
Feedback: 'Feedback',
|
|
1333
1428
|
FitCheck: 'FitCheck',
|
|
@@ -1337,6 +1432,9 @@ exports.Prisma.ModelName = {
|
|
|
1337
1432
|
ZohoSyncMapping: 'ZohoSyncMapping',
|
|
1338
1433
|
Interview: 'Interview',
|
|
1339
1434
|
InterviewNotes: 'InterviewNotes',
|
|
1435
|
+
JobApplicationField: 'JobApplicationField',
|
|
1436
|
+
JobApplicationResponse: 'JobApplicationResponse',
|
|
1437
|
+
JobApplicationTemplate: 'JobApplicationTemplate',
|
|
1340
1438
|
JobDescription: 'JobDescription',
|
|
1341
1439
|
JobDescriptionData: 'JobDescriptionData',
|
|
1342
1440
|
JobProfile: 'JobProfile',
|