@adaptware/eagles-db 0.4.13 → 0.4.17
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 +105 -88
- package/client/index-browser.js +100 -83
- package/client/index.d.ts +31764 -25474
- package/client/index.js +105 -88
- package/client/package.json +1 -1
- package/client/schema.prisma +227 -184
- package/client/wasm.js +100 -83
- package/package.json +1 -1
- package/prisma/schema/applications.prisma +2 -2
- package/prisma/schema/assessmentLibrary.prisma +14 -14
- package/prisma/schema/assignment.prisma +36 -36
- package/prisma/schema/calendly.prisma +13 -13
- package/prisma/schema/communication.prisma +156 -0
- package/prisma/schema/evaluationPlan.prisma +0 -9
- package/prisma/schema/google.prisma +11 -11
- package/prisma/schema/jobDescription.prisma +26 -29
- package/prisma/schema/migrations/20260610100000_add_communication/migration.sql +131 -0
- package/prisma/schema/migrations/20260610170000_add_communication_application_scope/migration.sql +45 -0
- package/prisma/schema/notes.prisma +15 -15
- package/prisma/schema/organisation.prisma +4 -3
- package/prisma/schema/organisationConfig.prisma +9 -9
- package/prisma/schema/refreshToken.prisma +8 -8
- package/prisma/schema/user.prisma +0 -1
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/prisma/schema/activityEvent.prisma +0 -101
package/client/index-browser.js
CHANGED
|
@@ -163,22 +163,6 @@ exports.Prisma.ActionScalarFieldEnum = {
|
|
|
163
163
|
is_active: 'is_active'
|
|
164
164
|
};
|
|
165
165
|
|
|
166
|
-
exports.Prisma.ActivityEventScalarFieldEnum = {
|
|
167
|
-
id: 'id',
|
|
168
|
-
organisation_id: 'organisation_id',
|
|
169
|
-
event_type: 'event_type',
|
|
170
|
-
entity_type: 'entity_type',
|
|
171
|
-
entity_id: 'entity_id',
|
|
172
|
-
actor_id: 'actor_id',
|
|
173
|
-
actor_type: 'actor_type',
|
|
174
|
-
related_entities: 'related_entities',
|
|
175
|
-
snapshot: 'snapshot',
|
|
176
|
-
payload: 'payload',
|
|
177
|
-
schema_version: 'schema_version',
|
|
178
|
-
occurred_at: 'occurred_at',
|
|
179
|
-
created_at: 'created_at'
|
|
180
|
-
};
|
|
181
|
-
|
|
182
166
|
exports.Prisma.ActivityLogScalarFieldEnum = {
|
|
183
167
|
id: 'id',
|
|
184
168
|
application_id: 'application_id',
|
|
@@ -201,7 +185,6 @@ exports.Prisma.ApplicationScalarFieldEnum = {
|
|
|
201
185
|
applied_at: 'applied_at',
|
|
202
186
|
evaluation_plan_id: 'evaluation_plan_id',
|
|
203
187
|
fit_check_id: 'fit_check_id',
|
|
204
|
-
recruiter_id: 'recruiter_id',
|
|
205
188
|
round_no: 'round_no',
|
|
206
189
|
on_notice_period: 'on_notice_period',
|
|
207
190
|
expected_joining_date: 'expected_joining_date',
|
|
@@ -386,6 +369,70 @@ exports.Prisma.CandidateProfileScalarFieldEnum = {
|
|
|
386
369
|
is_active: 'is_active'
|
|
387
370
|
};
|
|
388
371
|
|
|
372
|
+
exports.Prisma.ChannelProviderConfigScalarFieldEnum = {
|
|
373
|
+
id: 'id',
|
|
374
|
+
organisation_id: 'organisation_id',
|
|
375
|
+
channel: 'channel',
|
|
376
|
+
provider: 'provider',
|
|
377
|
+
credentials: 'credentials',
|
|
378
|
+
metadata: 'metadata',
|
|
379
|
+
is_active: 'is_active',
|
|
380
|
+
is_default: 'is_default',
|
|
381
|
+
created_at: 'created_at',
|
|
382
|
+
updated_at: 'updated_at',
|
|
383
|
+
created_by: 'created_by',
|
|
384
|
+
updated_by: 'updated_by'
|
|
385
|
+
};
|
|
386
|
+
|
|
387
|
+
exports.Prisma.ConversationScalarFieldEnum = {
|
|
388
|
+
id: 'id',
|
|
389
|
+
organisation_id: 'organisation_id',
|
|
390
|
+
channel: 'channel',
|
|
391
|
+
provider: 'provider',
|
|
392
|
+
channel_provider_id: 'channel_provider_id',
|
|
393
|
+
external_id: 'external_id',
|
|
394
|
+
contact_user_id: 'contact_user_id',
|
|
395
|
+
application_id: 'application_id',
|
|
396
|
+
job_description_id: 'job_description_id',
|
|
397
|
+
provider_thread_id: 'provider_thread_id',
|
|
398
|
+
subject: 'subject',
|
|
399
|
+
status: 'status',
|
|
400
|
+
unread_count: 'unread_count',
|
|
401
|
+
last_message_at: 'last_message_at',
|
|
402
|
+
metadata: 'metadata',
|
|
403
|
+
created_at: 'created_at',
|
|
404
|
+
updated_at: 'updated_at',
|
|
405
|
+
created_by: 'created_by',
|
|
406
|
+
updated_by: 'updated_by'
|
|
407
|
+
};
|
|
408
|
+
|
|
409
|
+
exports.Prisma.CommunicationMessageScalarFieldEnum = {
|
|
410
|
+
id: 'id',
|
|
411
|
+
conversation_id: 'conversation_id',
|
|
412
|
+
organisation_id: 'organisation_id',
|
|
413
|
+
channel: 'channel',
|
|
414
|
+
provider: 'provider',
|
|
415
|
+
channel_provider_id: 'channel_provider_id',
|
|
416
|
+
direction: 'direction',
|
|
417
|
+
status: 'status',
|
|
418
|
+
body: 'body',
|
|
419
|
+
from_identifier: 'from_identifier',
|
|
420
|
+
to_identifier: 'to_identifier',
|
|
421
|
+
sender_user_id: 'sender_user_id',
|
|
422
|
+
application_id: 'application_id',
|
|
423
|
+
job_description_id: 'job_description_id',
|
|
424
|
+
provider_message_id: 'provider_message_id',
|
|
425
|
+
template_name: 'template_name',
|
|
426
|
+
attachments: 'attachments',
|
|
427
|
+
metadata: 'metadata',
|
|
428
|
+
error: 'error',
|
|
429
|
+
sent_at: 'sent_at',
|
|
430
|
+
delivered_at: 'delivered_at',
|
|
431
|
+
read_at: 'read_at',
|
|
432
|
+
created_at: 'created_at',
|
|
433
|
+
updated_at: 'updated_at'
|
|
434
|
+
};
|
|
435
|
+
|
|
389
436
|
exports.Prisma.ContactUsScalarFieldEnum = {
|
|
390
437
|
id: 'id',
|
|
391
438
|
name: 'name',
|
|
@@ -419,7 +466,6 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
|
419
466
|
duration: 'duration',
|
|
420
467
|
duration_unit: 'duration_unit',
|
|
421
468
|
deadline: 'deadline',
|
|
422
|
-
category: 'category',
|
|
423
469
|
created_by: 'created_by',
|
|
424
470
|
updated_by: 'updated_by',
|
|
425
471
|
created_at: 'created_at',
|
|
@@ -603,10 +649,6 @@ exports.Prisma.JobDescriptionScalarFieldEnum = {
|
|
|
603
649
|
summary: 'summary',
|
|
604
650
|
ai_insight: 'ai_insight',
|
|
605
651
|
job_fit_comparison: 'job_fit_comparison',
|
|
606
|
-
target_closing_date: 'target_closing_date',
|
|
607
|
-
closing_date: 'closing_date',
|
|
608
|
-
job_number: 'job_number',
|
|
609
|
-
job_code: 'job_code',
|
|
610
652
|
created_at: 'created_at',
|
|
611
653
|
updated_at: 'updated_at',
|
|
612
654
|
created_by: 'created_by',
|
|
@@ -747,8 +789,6 @@ exports.Prisma.OrganisationScalarFieldEnum = {
|
|
|
747
789
|
is_active: 'is_active',
|
|
748
790
|
alias: 'alias',
|
|
749
791
|
logo: 'logo',
|
|
750
|
-
org_code: 'org_code',
|
|
751
|
-
job_sequence: 'job_sequence',
|
|
752
792
|
timezone: 'timezone'
|
|
753
793
|
};
|
|
754
794
|
|
|
@@ -1015,56 +1055,6 @@ exports.ActionStatus = exports.$Enums.ActionStatus = {
|
|
|
1015
1055
|
CANCELLED: 'CANCELLED'
|
|
1016
1056
|
};
|
|
1017
1057
|
|
|
1018
|
-
exports.ActivityEventType = exports.$Enums.ActivityEventType = {
|
|
1019
|
-
APPLICATION_CREATED: 'APPLICATION_CREATED',
|
|
1020
|
-
APPLICATION_STARTED: 'APPLICATION_STARTED',
|
|
1021
|
-
APPLICATION_REJECTED: 'APPLICATION_REJECTED',
|
|
1022
|
-
APPLICATION_SHORTLISTED: 'APPLICATION_SHORTLISTED',
|
|
1023
|
-
ROUND_ASSIGNED: 'ROUND_ASSIGNED',
|
|
1024
|
-
ROUND_STARTED: 'ROUND_STARTED',
|
|
1025
|
-
ROUND_COMPLETED: 'ROUND_COMPLETED',
|
|
1026
|
-
ROUND_PASSED: 'ROUND_PASSED',
|
|
1027
|
-
ROUND_FAILED: 'ROUND_FAILED',
|
|
1028
|
-
ROUND_SKIPPED: 'ROUND_SKIPPED',
|
|
1029
|
-
INTERVIEW_SCHEDULED: 'INTERVIEW_SCHEDULED',
|
|
1030
|
-
INTERVIEW_RESCHEDULED: 'INTERVIEW_RESCHEDULED',
|
|
1031
|
-
INTERVIEW_CANCELLED: 'INTERVIEW_CANCELLED',
|
|
1032
|
-
INTERVIEW_COMPLETED: 'INTERVIEW_COMPLETED',
|
|
1033
|
-
INTERVIEW_NO_SHOW: 'INTERVIEW_NO_SHOW',
|
|
1034
|
-
INTERVIEW_EVALUATION_PENDING: 'INTERVIEW_EVALUATION_PENDING',
|
|
1035
|
-
INTERVIEW_EVALUATED: 'INTERVIEW_EVALUATED',
|
|
1036
|
-
FEEDBACK_SUBMITTED: 'FEEDBACK_SUBMITTED',
|
|
1037
|
-
JOB_CREATED: 'JOB_CREATED',
|
|
1038
|
-
JOB_PUBLISHED: 'JOB_PUBLISHED',
|
|
1039
|
-
JOB_CLOSED: 'JOB_CLOSED',
|
|
1040
|
-
JOB_DEACTIVATED: 'JOB_DEACTIVATED',
|
|
1041
|
-
EVALUATION_PLAN_CREATED: 'EVALUATION_PLAN_CREATED',
|
|
1042
|
-
EVALUATION_PLAN_PUBLISHED: 'EVALUATION_PLAN_PUBLISHED',
|
|
1043
|
-
EVALUATION_PLAN_DELETED: 'EVALUATION_PLAN_DELETED',
|
|
1044
|
-
EVALUATION_PLAN_UPDATED: 'EVALUATION_PLAN_UPDATED',
|
|
1045
|
-
STATUS_CHANGED: 'STATUS_CHANGED',
|
|
1046
|
-
CUSTOM: 'CUSTOM'
|
|
1047
|
-
};
|
|
1048
|
-
|
|
1049
|
-
exports.ActivityEntityType = exports.$Enums.ActivityEntityType = {
|
|
1050
|
-
APPLICATION: 'APPLICATION',
|
|
1051
|
-
CANDIDATE: 'CANDIDATE',
|
|
1052
|
-
JOB: 'JOB',
|
|
1053
|
-
ONGOING_EVALUATION: 'ONGOING_EVALUATION',
|
|
1054
|
-
EVALUATION_PLAN: 'EVALUATION_PLAN',
|
|
1055
|
-
INTERVIEW: 'INTERVIEW',
|
|
1056
|
-
ASSESSMENT: 'ASSESSMENT',
|
|
1057
|
-
ORGANISATION: 'ORGANISATION',
|
|
1058
|
-
USER: 'USER'
|
|
1059
|
-
};
|
|
1060
|
-
|
|
1061
|
-
exports.ActivityEntityActorType = exports.$Enums.ActivityEntityActorType = {
|
|
1062
|
-
USER: 'USER',
|
|
1063
|
-
SYSTEM: 'SYSTEM',
|
|
1064
|
-
AI_AGENT: 'AI_AGENT',
|
|
1065
|
-
WEBHOOK: 'WEBHOOK'
|
|
1066
|
-
};
|
|
1067
|
-
|
|
1068
1058
|
exports.ActivityActorType = exports.$Enums.ActivityActorType = {
|
|
1069
1059
|
USER: 'USER',
|
|
1070
1060
|
AI: 'AI',
|
|
@@ -1112,6 +1102,39 @@ exports.JDCreationType = exports.$Enums.JDCreationType = {
|
|
|
1112
1102
|
Create_From_Profile: 'Create_From_Profile'
|
|
1113
1103
|
};
|
|
1114
1104
|
|
|
1105
|
+
exports.CommChannel = exports.$Enums.CommChannel = {
|
|
1106
|
+
WHATSAPP: 'WHATSAPP',
|
|
1107
|
+
EMAIL: 'EMAIL',
|
|
1108
|
+
SMS: 'SMS',
|
|
1109
|
+
CALL: 'CALL'
|
|
1110
|
+
};
|
|
1111
|
+
|
|
1112
|
+
exports.CommProvider = exports.$Enums.CommProvider = {
|
|
1113
|
+
META_WHATSAPP: 'META_WHATSAPP',
|
|
1114
|
+
TWILIO: 'TWILIO',
|
|
1115
|
+
GUPSHUP: 'GUPSHUP',
|
|
1116
|
+
MTALKZ: 'MTALKZ',
|
|
1117
|
+
THREE_SIXTY_DIALOG: 'THREE_SIXTY_DIALOG',
|
|
1118
|
+
GMAIL: 'GMAIL',
|
|
1119
|
+
OUTLOOK: 'OUTLOOK',
|
|
1120
|
+
GENERIC_SMTP: 'GENERIC_SMTP',
|
|
1121
|
+
GENERIC: 'GENERIC'
|
|
1122
|
+
};
|
|
1123
|
+
|
|
1124
|
+
exports.CommDirection = exports.$Enums.CommDirection = {
|
|
1125
|
+
INBOUND: 'INBOUND',
|
|
1126
|
+
OUTBOUND: 'OUTBOUND'
|
|
1127
|
+
};
|
|
1128
|
+
|
|
1129
|
+
exports.CommMessageStatus = exports.$Enums.CommMessageStatus = {
|
|
1130
|
+
QUEUED: 'QUEUED',
|
|
1131
|
+
SENT: 'SENT',
|
|
1132
|
+
DELIVERED: 'DELIVERED',
|
|
1133
|
+
READ: 'READ',
|
|
1134
|
+
FAILED: 'FAILED',
|
|
1135
|
+
RECEIVED: 'RECEIVED'
|
|
1136
|
+
};
|
|
1137
|
+
|
|
1115
1138
|
exports.EvaluationRoundFormat = exports.$Enums.EvaluationRoundFormat = {
|
|
1116
1139
|
PHONE_CALL: 'PHONE_CALL',
|
|
1117
1140
|
VIDEO_CALL_AI_ASSISTED: 'VIDEO_CALL_AI_ASSISTED',
|
|
@@ -1152,14 +1175,6 @@ exports.DurationUnit = exports.$Enums.DurationUnit = {
|
|
|
1152
1175
|
DAYS: 'DAYS'
|
|
1153
1176
|
};
|
|
1154
1177
|
|
|
1155
|
-
exports.EvaluationCategory = exports.$Enums.EvaluationCategory = {
|
|
1156
|
-
EXPERIENCE_SCREENING: 'EXPERIENCE_SCREENING',
|
|
1157
|
-
TECHNICAL_SCREENING: 'TECHNICAL_SCREENING',
|
|
1158
|
-
TECHNICAL_INTERVIEW: 'TECHNICAL_INTERVIEW',
|
|
1159
|
-
BUSINESS_ROUND: 'BUSINESS_ROUND',
|
|
1160
|
-
BEHAVIORAL_ROUND: 'BEHAVIORAL_ROUND'
|
|
1161
|
-
};
|
|
1162
|
-
|
|
1163
1178
|
exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
|
|
1164
1179
|
NAUKRI: 'NAUKRI',
|
|
1165
1180
|
ZOHO_RECRUIT: 'ZOHO_RECRUIT',
|
|
@@ -1297,7 +1312,6 @@ exports.Prisma.ModelName = {
|
|
|
1297
1312
|
CandidateQuestionResponse: 'CandidateQuestionResponse',
|
|
1298
1313
|
UserRole: 'UserRole',
|
|
1299
1314
|
Action: 'Action',
|
|
1300
|
-
ActivityEvent: 'ActivityEvent',
|
|
1301
1315
|
ActivityLog: 'ActivityLog',
|
|
1302
1316
|
Application: 'Application',
|
|
1303
1317
|
Approval: 'Approval',
|
|
@@ -1310,6 +1324,9 @@ exports.Prisma.ModelName = {
|
|
|
1310
1324
|
Budget: 'Budget',
|
|
1311
1325
|
Calendly: 'Calendly',
|
|
1312
1326
|
CandidateProfile: 'CandidateProfile',
|
|
1327
|
+
ChannelProviderConfig: 'ChannelProviderConfig',
|
|
1328
|
+
Conversation: 'Conversation',
|
|
1329
|
+
CommunicationMessage: 'CommunicationMessage',
|
|
1313
1330
|
ContactUs: 'ContactUs',
|
|
1314
1331
|
EvaluationPlan: 'EvaluationPlan',
|
|
1315
1332
|
Feedback: 'Feedback',
|