@adaptware/eagles-db 0.1.81 → 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 +68 -9
- package/client/index-browser.js +63 -4
- package/client/index.d.ts +6230 -314
- package/client/index.js +68 -9
- package/client/package.json +1 -1
- package/client/schema.prisma +102 -5
- package/client/wasm.js +63 -4
- 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/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
|
@@ -307,6 +307,7 @@ exports.Prisma.AuthModuleScalarFieldEnum = {
|
|
|
307
307
|
token_type: 'token_type',
|
|
308
308
|
scope: 'scope',
|
|
309
309
|
is_active: 'is_active',
|
|
310
|
+
metadata: 'metadata',
|
|
310
311
|
created_at: 'created_at',
|
|
311
312
|
updated_at: 'updated_at'
|
|
312
313
|
};
|
|
@@ -533,6 +534,7 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
533
534
|
actual_end_time: 'actual_end_time',
|
|
534
535
|
recording_url: 'recording_url',
|
|
535
536
|
interview_status: 'interview_status',
|
|
537
|
+
interview_platform: 'interview_platform',
|
|
536
538
|
google_event_id: 'google_event_id',
|
|
537
539
|
ai_interview_feedback: 'ai_interview_feedback',
|
|
538
540
|
interview_feedback: 'interview_feedback',
|
|
@@ -885,6 +887,45 @@ exports.Prisma.UserProfileScalarFieldEnum = {
|
|
|
885
887
|
work_experience: 'work_experience'
|
|
886
888
|
};
|
|
887
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
|
+
|
|
888
929
|
exports.Prisma.SortOrder = {
|
|
889
930
|
asc: 'asc',
|
|
890
931
|
desc: 'desc'
|
|
@@ -960,7 +1001,8 @@ exports.AssignmentStatus = exports.$Enums.AssignmentStatus = {
|
|
|
960
1001
|
|
|
961
1002
|
exports.AuthProvider = exports.$Enums.AuthProvider = {
|
|
962
1003
|
GOOGLE: 'GOOGLE',
|
|
963
|
-
MICROSOFT: 'MICROSOFT'
|
|
1004
|
+
MICROSOFT: 'MICROSOFT',
|
|
1005
|
+
ZOOM: 'ZOOM'
|
|
964
1006
|
};
|
|
965
1007
|
|
|
966
1008
|
exports.JobType = exports.$Enums.JobType = {
|
|
@@ -1020,12 +1062,16 @@ exports.DurationUnit = exports.$Enums.DurationUnit = {
|
|
|
1020
1062
|
exports.IntegrationProvider = exports.$Enums.IntegrationProvider = {
|
|
1021
1063
|
NAUKRI: 'NAUKRI',
|
|
1022
1064
|
ZOHO_RECRUIT: 'ZOHO_RECRUIT',
|
|
1023
|
-
LINKEDIN: 'LINKEDIN'
|
|
1065
|
+
LINKEDIN: 'LINKEDIN',
|
|
1066
|
+
GOOGLE: 'GOOGLE',
|
|
1067
|
+
MICROSOFT: 'MICROSOFT',
|
|
1068
|
+
ZOOM: 'ZOOM'
|
|
1024
1069
|
};
|
|
1025
1070
|
|
|
1026
1071
|
exports.IntegrationAuthType = exports.$Enums.IntegrationAuthType = {
|
|
1027
1072
|
OAUTH2: 'OAUTH2',
|
|
1028
|
-
API_KEY: 'API_KEY'
|
|
1073
|
+
API_KEY: 'API_KEY',
|
|
1074
|
+
SSO: 'SSO'
|
|
1029
1075
|
};
|
|
1030
1076
|
|
|
1031
1077
|
exports.SyncDirection = exports.$Enums.SyncDirection = {
|
|
@@ -1057,6 +1103,11 @@ exports.InterviewStatus = exports.$Enums.InterviewStatus = {
|
|
|
1057
1103
|
EVALUATED: 'EVALUATED'
|
|
1058
1104
|
};
|
|
1059
1105
|
|
|
1106
|
+
exports.InterviewPlatform = exports.$Enums.InterviewPlatform = {
|
|
1107
|
+
TREADSPACE: 'TREADSPACE',
|
|
1108
|
+
ZOOM: 'ZOOM'
|
|
1109
|
+
};
|
|
1110
|
+
|
|
1060
1111
|
exports.InterviewFeedback = exports.$Enums.InterviewFeedback = {
|
|
1061
1112
|
STRONG_HIRE: 'STRONG_HIRE',
|
|
1062
1113
|
HIRE: 'HIRE',
|
|
@@ -1141,6 +1192,11 @@ exports.FirstLoginStatus = exports.$Enums.FirstLoginStatus = {
|
|
|
1141
1192
|
COMPLETED: 'COMPLETED'
|
|
1142
1193
|
};
|
|
1143
1194
|
|
|
1195
|
+
exports.ZoomMeetingParticipantRole = exports.$Enums.ZoomMeetingParticipantRole = {
|
|
1196
|
+
CANDIDATE: 'CANDIDATE',
|
|
1197
|
+
INTERVIEWER: 'INTERVIEWER'
|
|
1198
|
+
};
|
|
1199
|
+
|
|
1144
1200
|
exports.Prisma.ModelName = {
|
|
1145
1201
|
CandidateQuestionResponse: 'CandidateQuestionResponse',
|
|
1146
1202
|
UserRole: 'UserRole',
|
|
@@ -1184,7 +1240,10 @@ exports.Prisma.ModelName = {
|
|
|
1184
1240
|
Suggestion: 'Suggestion',
|
|
1185
1241
|
Transcript: 'Transcript',
|
|
1186
1242
|
User: 'User',
|
|
1187
|
-
UserProfile: 'UserProfile'
|
|
1243
|
+
UserProfile: 'UserProfile',
|
|
1244
|
+
ZoomMeeting: 'ZoomMeeting',
|
|
1245
|
+
ZoomMeetingParticipant: 'ZoomMeetingParticipant',
|
|
1246
|
+
ZoomWebhookEvent: 'ZoomWebhookEvent'
|
|
1188
1247
|
};
|
|
1189
1248
|
|
|
1190
1249
|
/**
|