@adaptware/eagles-db 0.1.81 → 0.1.83

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.
@@ -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
  };
@@ -525,6 +526,7 @@ exports.Prisma.InterviewScalarFieldEnum = {
525
526
  application_id: 'application_id',
526
527
  resume_id: 'resume_id',
527
528
  job_description_id: 'job_description_id',
529
+ calendar_event_id: 'calendar_event_id',
528
530
  room_name: 'room_name',
529
531
  interview_summary: 'interview_summary',
530
532
  scheduled_start_time: 'scheduled_start_time',
@@ -533,7 +535,7 @@ exports.Prisma.InterviewScalarFieldEnum = {
533
535
  actual_end_time: 'actual_end_time',
534
536
  recording_url: 'recording_url',
535
537
  interview_status: 'interview_status',
536
- google_event_id: 'google_event_id',
538
+ interview_platform: 'interview_platform',
537
539
  ai_interview_feedback: 'ai_interview_feedback',
538
540
  interview_feedback: 'interview_feedback',
539
541
  overall_feedback: 'overall_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
  /**