@adaptware/eagles-db 0.1.80 → 0.1.82
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 +123 -10
- package/client/index-browser.js +124 -11
- package/client/index.d.ts +30904 -17811
- package/client/index.js +123 -10
- package/client/package.json +1 -1
- package/client/schema.prisma +199 -27
- package/client/wasm.js +124 -11
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/migrations/20260415120000_remove_job_profile_current_phase/migration.sql +2 -0
- package/prisma/migrations/20260422120000_add_integration_provider_zoom/migration.sql +2 -0
- package/prisma/migrations/20260422140000_add_zoom_meeting_tables/migration.sql +57 -0
- package/prisma/migrations/20260422180000_add_zoom_webhook_event/migration.sql +18 -0
- package/prisma/migrations/20260423140000_add_interview_platform/migration.sql +6 -0
- package/prisma/migrations/20260423150000_remove_interview_zoom_topic/migration.sql +2 -0
- package/prisma/migrations/20260423160000_zoom_meeting_uuid/migration.sql +4 -0
- package/prisma/migrations/20260424120000_auth_module_user_provider_unique/migration.sql +5 -0
- package/prisma/migrations/20260424130000_zoom_meeting_zoom_host_user_id/migration.sql +6 -0
- package/prisma/migrations/20260425100000_zoom_participant_user_enum/migration.sql +22 -0
- package/prisma/migrations/20260425110000_zoom_participant_zoom_id_required/migration.sql +13 -0
- package/prisma/migrations/20260425120000_zoom_participant_id_nullable/migration.sql +4 -0
- package/prisma/migrations/migration_lock.toml +3 -0
- package/prisma/schema/applications.prisma +1 -1
- package/prisma/schema/authModule.prisma +10 -5
- package/prisma/schema/integration.prisma +14 -10
- package/prisma/schema/interview.prisma +7 -0
- package/prisma/schema/user.prisma +1 -0
- package/prisma/schema/zoomMeeting.prisma +79 -0
- package/client/libquery_engine-darwin.dylib.node +0 -0
package/client/index-browser.js
CHANGED
|
@@ -181,13 +181,19 @@ exports.Prisma.ApplicationScalarFieldEnum = {
|
|
|
181
181
|
resume_id: 'resume_id',
|
|
182
182
|
organisation_id: 'organisation_id',
|
|
183
183
|
job_description_id: 'job_description_id',
|
|
184
|
-
status: 'status',
|
|
185
184
|
fit_check_score: 'fit_check_score',
|
|
186
|
-
fit_check_status: 'fit_check_status',
|
|
187
185
|
applied_at: 'applied_at',
|
|
188
186
|
evaluation_plan_id: 'evaluation_plan_id',
|
|
189
187
|
fit_check_id: 'fit_check_id',
|
|
190
188
|
round_no: 'round_no',
|
|
189
|
+
on_notice_period: 'on_notice_period',
|
|
190
|
+
expected_joining_date: 'expected_joining_date',
|
|
191
|
+
current_ctc: 'current_ctc',
|
|
192
|
+
expected_ctc: 'expected_ctc',
|
|
193
|
+
notice_period: 'notice_period',
|
|
194
|
+
preferred_location: 'preferred_location',
|
|
195
|
+
fit_check_status: 'fit_check_status',
|
|
196
|
+
status: 'status',
|
|
191
197
|
created_at: 'created_at',
|
|
192
198
|
updated_at: 'updated_at',
|
|
193
199
|
created_by: 'created_by',
|
|
@@ -289,6 +295,23 @@ exports.Prisma.AssignmentLibraryScalarFieldEnum = {
|
|
|
289
295
|
is_active: 'is_active'
|
|
290
296
|
};
|
|
291
297
|
|
|
298
|
+
exports.Prisma.AuthModuleScalarFieldEnum = {
|
|
299
|
+
id: 'id',
|
|
300
|
+
user_id: 'user_id',
|
|
301
|
+
provider: 'provider',
|
|
302
|
+
provider_account_id: 'provider_account_id',
|
|
303
|
+
access_token: 'access_token',
|
|
304
|
+
refresh_token: 'refresh_token',
|
|
305
|
+
id_token: 'id_token',
|
|
306
|
+
expires_at: 'expires_at',
|
|
307
|
+
token_type: 'token_type',
|
|
308
|
+
scope: 'scope',
|
|
309
|
+
is_active: 'is_active',
|
|
310
|
+
metadata: 'metadata',
|
|
311
|
+
created_at: 'created_at',
|
|
312
|
+
updated_at: 'updated_at'
|
|
313
|
+
};
|
|
314
|
+
|
|
292
315
|
exports.Prisma.BudgetScalarFieldEnum = {
|
|
293
316
|
id: 'id',
|
|
294
317
|
job_type: 'job_type',
|
|
@@ -511,6 +534,7 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
511
534
|
actual_end_time: 'actual_end_time',
|
|
512
535
|
recording_url: 'recording_url',
|
|
513
536
|
interview_status: 'interview_status',
|
|
537
|
+
interview_platform: 'interview_platform',
|
|
514
538
|
google_event_id: 'google_event_id',
|
|
515
539
|
ai_interview_feedback: 'ai_interview_feedback',
|
|
516
540
|
interview_feedback: 'interview_feedback',
|
|
@@ -627,6 +651,19 @@ exports.Prisma.MessageScalarFieldEnum = {
|
|
|
627
651
|
is_active: 'is_active'
|
|
628
652
|
};
|
|
629
653
|
|
|
654
|
+
exports.Prisma.NotesScalarFieldEnum = {
|
|
655
|
+
id: 'id',
|
|
656
|
+
application_id: 'application_id',
|
|
657
|
+
user_id: 'user_id',
|
|
658
|
+
note: 'note',
|
|
659
|
+
pinned: 'pinned',
|
|
660
|
+
created_at: 'created_at',
|
|
661
|
+
updated_at: 'updated_at',
|
|
662
|
+
created_by: 'created_by',
|
|
663
|
+
updated_by: 'updated_by',
|
|
664
|
+
is_active: 'is_active'
|
|
665
|
+
};
|
|
666
|
+
|
|
630
667
|
exports.Prisma.OngoingEvaluationScalarFieldEnum = {
|
|
631
668
|
id: 'id',
|
|
632
669
|
application_id: 'application_id',
|
|
@@ -730,12 +767,23 @@ exports.Prisma.QuestionScalarFieldEnum = {
|
|
|
730
767
|
is_active: 'is_active'
|
|
731
768
|
};
|
|
732
769
|
|
|
770
|
+
exports.Prisma.RefreshTokenScalarFieldEnum = {
|
|
771
|
+
id: 'id',
|
|
772
|
+
user_id: 'user_id',
|
|
773
|
+
token: 'token',
|
|
774
|
+
is_active: 'is_active',
|
|
775
|
+
expires_at: 'expires_at',
|
|
776
|
+
created_at: 'created_at',
|
|
777
|
+
updated_at: 'updated_at'
|
|
778
|
+
};
|
|
779
|
+
|
|
733
780
|
exports.Prisma.ResumeScalarFieldEnum = {
|
|
734
781
|
id: 'id',
|
|
735
782
|
user_id: 'user_id',
|
|
736
783
|
organisation_id: 'organisation_id',
|
|
737
784
|
job_description_id: 'job_description_id',
|
|
738
785
|
uploaded_resume_path: 'uploaded_resume_path',
|
|
786
|
+
file_hash: 'file_hash',
|
|
739
787
|
summary: 'summary',
|
|
740
788
|
created_at: 'created_at',
|
|
741
789
|
updated_at: 'updated_at',
|
|
@@ -839,6 +887,45 @@ exports.Prisma.UserProfileScalarFieldEnum = {
|
|
|
839
887
|
work_experience: 'work_experience'
|
|
840
888
|
};
|
|
841
889
|
|
|
890
|
+
exports.Prisma.ZoomMeetingScalarFieldEnum = {
|
|
891
|
+
id: 'id',
|
|
892
|
+
interview_id: 'interview_id',
|
|
893
|
+
zoom_host_user_id: 'zoom_host_user_id',
|
|
894
|
+
zoom_meeting_id: 'zoom_meeting_id',
|
|
895
|
+
zoom_meeting_uuid: 'zoom_meeting_uuid',
|
|
896
|
+
join_url: 'join_url',
|
|
897
|
+
start_url: 'start_url',
|
|
898
|
+
password: 'password',
|
|
899
|
+
topic: 'topic',
|
|
900
|
+
scheduled_start_time: 'scheduled_start_time',
|
|
901
|
+
scheduled_end_time: 'scheduled_end_time',
|
|
902
|
+
is_active: 'is_active',
|
|
903
|
+
created_at: 'created_at',
|
|
904
|
+
updated_at: 'updated_at',
|
|
905
|
+
created_by: 'created_by',
|
|
906
|
+
updated_by: 'updated_by'
|
|
907
|
+
};
|
|
908
|
+
|
|
909
|
+
exports.Prisma.ZoomMeetingParticipantScalarFieldEnum = {
|
|
910
|
+
id: 'id',
|
|
911
|
+
zoom_meeting_row_id: 'zoom_meeting_row_id',
|
|
912
|
+
user_id: 'user_id',
|
|
913
|
+
zoom_participant_id: 'zoom_participant_id',
|
|
914
|
+
role: 'role',
|
|
915
|
+
is_active: 'is_active',
|
|
916
|
+
created_at: 'created_at',
|
|
917
|
+
updated_at: 'updated_at',
|
|
918
|
+
created_by: 'created_by',
|
|
919
|
+
updated_by: 'updated_by'
|
|
920
|
+
};
|
|
921
|
+
|
|
922
|
+
exports.Prisma.ZoomWebhookEventScalarFieldEnum = {
|
|
923
|
+
id: 'id',
|
|
924
|
+
dedupe_key: 'dedupe_key',
|
|
925
|
+
event: 'event',
|
|
926
|
+
created_at: 'created_at'
|
|
927
|
+
};
|
|
928
|
+
|
|
842
929
|
exports.Prisma.SortOrder = {
|
|
843
930
|
asc: 'asc',
|
|
844
931
|
desc: 'desc'
|
|
@@ -886,6 +973,12 @@ exports.ActivityActorType = exports.$Enums.ActivityActorType = {
|
|
|
886
973
|
SYSTEM: 'SYSTEM'
|
|
887
974
|
};
|
|
888
975
|
|
|
976
|
+
exports.FitCheckStatus = exports.$Enums.FitCheckStatus = {
|
|
977
|
+
RECOMMENDED: 'RECOMMENDED',
|
|
978
|
+
TO_REVIEW: 'TO_REVIEW',
|
|
979
|
+
NOT_RECOMMENDED: 'NOT_RECOMMENDED'
|
|
980
|
+
};
|
|
981
|
+
|
|
889
982
|
exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
|
|
890
983
|
PENDING: 'PENDING',
|
|
891
984
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
@@ -893,12 +986,6 @@ exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
|
|
|
893
986
|
REJECTED: 'REJECTED'
|
|
894
987
|
};
|
|
895
988
|
|
|
896
|
-
exports.FitCheckStatus = exports.$Enums.FitCheckStatus = {
|
|
897
|
-
RECOMMENDED: 'RECOMMENDED',
|
|
898
|
-
TO_REVIEW: 'TO_REVIEW',
|
|
899
|
-
NOT_RECOMMENDED: 'NOT_RECOMMENDED'
|
|
900
|
-
};
|
|
901
|
-
|
|
902
989
|
exports.AssessmentCategory = exports.$Enums.AssessmentCategory = {
|
|
903
990
|
MCQ: 'MCQ',
|
|
904
991
|
COMPETENCY: 'COMPETENCY',
|
|
@@ -912,6 +999,12 @@ exports.AssignmentStatus = exports.$Enums.AssignmentStatus = {
|
|
|
912
999
|
CANCELLED: 'CANCELLED'
|
|
913
1000
|
};
|
|
914
1001
|
|
|
1002
|
+
exports.AuthProvider = exports.$Enums.AuthProvider = {
|
|
1003
|
+
GOOGLE: 'GOOGLE',
|
|
1004
|
+
MICROSOFT: 'MICROSOFT',
|
|
1005
|
+
ZOOM: 'ZOOM'
|
|
1006
|
+
};
|
|
1007
|
+
|
|
915
1008
|
exports.JobType = exports.$Enums.JobType = {
|
|
916
1009
|
Full_time: 'Full_time',
|
|
917
1010
|
Part_time: 'Part_time',
|
|
@@ -969,12 +1062,16 @@ exports.DurationUnit = exports.$Enums.DurationUnit = {
|
|
|
969
1062
|
exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
|
|
970
1063
|
NAUKRI: 'NAUKRI',
|
|
971
1064
|
ZOHO_RECRUIT: 'ZOHO_RECRUIT',
|
|
972
|
-
LINKEDIN: 'LINKEDIN'
|
|
1065
|
+
LINKEDIN: 'LINKEDIN',
|
|
1066
|
+
GOOGLE: 'GOOGLE',
|
|
1067
|
+
MICROSOFT: 'MICROSOFT',
|
|
1068
|
+
ZOOM: 'ZOOM'
|
|
973
1069
|
};
|
|
974
1070
|
|
|
975
1071
|
exports.IntegrationAuthType = exports.$Enums.IntegrationAuthType = {
|
|
976
1072
|
OAUTH2: 'OAUTH2',
|
|
977
|
-
API_KEY: 'API_KEY'
|
|
1073
|
+
API_KEY: 'API_KEY',
|
|
1074
|
+
SSO: 'SSO'
|
|
978
1075
|
};
|
|
979
1076
|
|
|
980
1077
|
exports.SyncDirection = exports.$Enums.SyncDirection = {
|
|
@@ -1006,6 +1103,11 @@ exports.InterviewStatus = exports.$Enums.InterviewStatus = {
|
|
|
1006
1103
|
EVALUATED: 'EVALUATED'
|
|
1007
1104
|
};
|
|
1008
1105
|
|
|
1106
|
+
exports.InterviewPlatform = exports.$Enums.InterviewPlatform = {
|
|
1107
|
+
TREADSPACE: 'TREADSPACE',
|
|
1108
|
+
ZOOM: 'ZOOM'
|
|
1109
|
+
};
|
|
1110
|
+
|
|
1009
1111
|
exports.InterviewFeedback = exports.$Enums.InterviewFeedback = {
|
|
1010
1112
|
STRONG_HIRE: 'STRONG_HIRE',
|
|
1011
1113
|
HIRE: 'HIRE',
|
|
@@ -1090,6 +1192,11 @@ exports.FirstLoginStatus = exports.$Enums.FirstLoginStatus = {
|
|
|
1090
1192
|
COMPLETED: 'COMPLETED'
|
|
1091
1193
|
};
|
|
1092
1194
|
|
|
1195
|
+
exports.ZoomMeetingParticipantRole = exports.$Enums.ZoomMeetingParticipantRole = {
|
|
1196
|
+
CANDIDATE: 'CANDIDATE',
|
|
1197
|
+
INTERVIEWER: 'INTERVIEWER'
|
|
1198
|
+
};
|
|
1199
|
+
|
|
1093
1200
|
exports.Prisma.ModelName = {
|
|
1094
1201
|
CandidateQuestionResponse: 'CandidateQuestionResponse',
|
|
1095
1202
|
UserRole: 'UserRole',
|
|
@@ -1102,6 +1209,7 @@ exports.Prisma.ModelName = {
|
|
|
1102
1209
|
AssessmentQuestion: 'AssessmentQuestion',
|
|
1103
1210
|
Assignment: 'Assignment',
|
|
1104
1211
|
AssignmentLibrary: 'AssignmentLibrary',
|
|
1212
|
+
AuthModule: 'AuthModule',
|
|
1105
1213
|
Budget: 'Budget',
|
|
1106
1214
|
Calendly: 'Calendly',
|
|
1107
1215
|
CandidateProfile: 'CandidateProfile',
|
|
@@ -1120,17 +1228,22 @@ exports.Prisma.ModelName = {
|
|
|
1120
1228
|
JobProfile: 'JobProfile',
|
|
1121
1229
|
LiveAnalysis: 'LiveAnalysis',
|
|
1122
1230
|
Message: 'Message',
|
|
1231
|
+
Notes: 'Notes',
|
|
1123
1232
|
OngoingEvaluation: 'OngoingEvaluation',
|
|
1124
1233
|
Organisation: 'Organisation',
|
|
1125
1234
|
Permission: 'Permission',
|
|
1126
1235
|
AsyncOperation: 'AsyncOperation',
|
|
1127
1236
|
Question: 'Question',
|
|
1237
|
+
RefreshToken: 'RefreshToken',
|
|
1128
1238
|
Resume: 'Resume',
|
|
1129
1239
|
ResumeData: 'ResumeData',
|
|
1130
1240
|
Suggestion: 'Suggestion',
|
|
1131
1241
|
Transcript: 'Transcript',
|
|
1132
1242
|
User: 'User',
|
|
1133
|
-
UserProfile: 'UserProfile'
|
|
1243
|
+
UserProfile: 'UserProfile',
|
|
1244
|
+
ZoomMeeting: 'ZoomMeeting',
|
|
1245
|
+
ZoomMeetingParticipant: 'ZoomMeetingParticipant',
|
|
1246
|
+
ZoomWebhookEvent: 'ZoomWebhookEvent'
|
|
1134
1247
|
};
|
|
1135
1248
|
|
|
1136
1249
|
/**
|