@adaptware/eagles-db 0.5.56 → 0.5.59
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 +161 -29
- package/client/index-browser.js +154 -23
- package/client/index.d.ts +38935 -29421
- package/client/index.js +161 -29
- package/client/package.json +1 -1
- package/client/schema.prisma +392 -167
- package/client/wasm.js +161 -29
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/schema/.DS_Store +0 -0
- package/prisma/schema/interview.prisma +6 -0
- package/prisma/schema/migrations/.DS_Store +0 -0
- package/prisma/schema/migrations/20260826160000_add_application_fit_check_report_document/.DS_Store +0 -0
- package/prisma/schema/migrations/20260918153000_add_is_proctored_fields/migration.sql +5 -0
- package/prisma/schema/proctoring.prisma +126 -0
- package/prisma/schema/user.prisma +3 -0
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/prisma/migrations/20260519120000_migrate_shortlisted_to_selected/migration.sql +0 -2
package/client/index-browser.js
CHANGED
|
@@ -281,7 +281,10 @@ exports.Prisma.ApplicationScalarFieldEnum = {
|
|
|
281
281
|
updated_at: 'updated_at',
|
|
282
282
|
created_by: 'created_by',
|
|
283
283
|
updated_by: 'updated_by',
|
|
284
|
-
is_active: 'is_active'
|
|
284
|
+
is_active: 'is_active',
|
|
285
|
+
fit_check_report_document_id: 'fit_check_report_document_id',
|
|
286
|
+
fit_check_report_updated_flag: 'fit_check_report_updated_flag',
|
|
287
|
+
fit_check_report_data: 'fit_check_report_data'
|
|
285
288
|
};
|
|
286
289
|
|
|
287
290
|
exports.Prisma.ApprovalScalarFieldEnum = {
|
|
@@ -329,7 +332,8 @@ exports.Prisma.AssessmentLibraryScalarFieldEnum = {
|
|
|
329
332
|
updated_at: 'updated_at',
|
|
330
333
|
created_by: 'created_by',
|
|
331
334
|
updated_by: 'updated_by',
|
|
332
|
-
is_active: 'is_active'
|
|
335
|
+
is_active: 'is_active',
|
|
336
|
+
generation_state: 'generation_state'
|
|
333
337
|
};
|
|
334
338
|
|
|
335
339
|
exports.Prisma.AssessmentQuestionScalarFieldEnum = {
|
|
@@ -824,19 +828,6 @@ exports.Prisma.EvaluationPlanScalarFieldEnum = {
|
|
|
824
828
|
is_active: 'is_active'
|
|
825
829
|
};
|
|
826
830
|
|
|
827
|
-
exports.Prisma.FeedbackScalarFieldEnum = {
|
|
828
|
-
id: 'id',
|
|
829
|
-
interview_id: 'interview_id',
|
|
830
|
-
order_no: 'order_no',
|
|
831
|
-
ai_feedback: 'ai_feedback',
|
|
832
|
-
human_feedback: 'human_feedback',
|
|
833
|
-
created_at: 'created_at',
|
|
834
|
-
updated_at: 'updated_at',
|
|
835
|
-
created_by: 'created_by',
|
|
836
|
-
updated_by: 'updated_by',
|
|
837
|
-
is_active: 'is_active'
|
|
838
|
-
};
|
|
839
|
-
|
|
840
831
|
exports.Prisma.FitCheckScalarFieldEnum = {
|
|
841
832
|
id: 'id',
|
|
842
833
|
organisation_id: 'organisation_id',
|
|
@@ -848,6 +839,7 @@ exports.Prisma.FitCheckScalarFieldEnum = {
|
|
|
848
839
|
overall_analysis: 'overall_analysis',
|
|
849
840
|
overall_score: 'overall_score',
|
|
850
841
|
overall_recommendation: 'overall_recommendation',
|
|
842
|
+
score_reasoning: 'score_reasoning',
|
|
851
843
|
short_match_analysis: 'short_match_analysis',
|
|
852
844
|
fit_comparison: 'fit_comparison',
|
|
853
845
|
recommendation: 'recommendation',
|
|
@@ -1019,8 +1011,10 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
1019
1011
|
resume_id: 'resume_id',
|
|
1020
1012
|
job_description_id: 'job_description_id',
|
|
1021
1013
|
calendar_event_id: 'calendar_event_id',
|
|
1014
|
+
calendar_events: 'calendar_events',
|
|
1015
|
+
candidate_initiated: 'candidate_initiated',
|
|
1016
|
+
candidate_interview_metadata: 'candidate_interview_metadata',
|
|
1022
1017
|
room_name: 'room_name',
|
|
1023
|
-
interview_summary: 'interview_summary',
|
|
1024
1018
|
scheduled_start_time: 'scheduled_start_time',
|
|
1025
1019
|
scheduled_end_time: 'scheduled_end_time',
|
|
1026
1020
|
actual_start_time: 'actual_start_time',
|
|
@@ -1029,22 +1023,23 @@ exports.Prisma.InterviewScalarFieldEnum = {
|
|
|
1029
1023
|
recording_url: 'recording_url',
|
|
1030
1024
|
recording_document_id: 'recording_document_id',
|
|
1031
1025
|
evaluation_type: 'evaluation_type',
|
|
1026
|
+
is_proctored: 'is_proctored',
|
|
1032
1027
|
ai_assistance_mode: 'ai_assistance_mode',
|
|
1033
1028
|
interview_status: 'interview_status',
|
|
1034
1029
|
interview_platform: 'interview_platform',
|
|
1035
|
-
overall_feedback: 'overall_feedback',
|
|
1036
1030
|
ai_feedback: 'ai_feedback',
|
|
1037
1031
|
human_feedback: 'human_feedback',
|
|
1038
|
-
section_feedback: 'section_feedback',
|
|
1039
1032
|
interview_preparation: 'interview_preparation',
|
|
1040
1033
|
final_feedback: 'final_feedback',
|
|
1041
1034
|
interview_analysis_ranges: 'interview_analysis_ranges',
|
|
1042
1035
|
interview_flow_summary: 'interview_flow_summary',
|
|
1036
|
+
ai_context: 'ai_context',
|
|
1043
1037
|
ai_feedback_generated_at: 'ai_feedback_generated_at',
|
|
1044
1038
|
beta_ai_feedback: 'beta_ai_feedback',
|
|
1045
1039
|
beta_section_feedback: 'beta_section_feedback',
|
|
1046
1040
|
beta_final_feedback: 'beta_final_feedback',
|
|
1047
1041
|
beta_interview_flow_summary: 'beta_interview_flow_summary',
|
|
1042
|
+
beta_ai_context: 'beta_ai_context',
|
|
1048
1043
|
beta_ai_feedback_generated_at: 'beta_ai_feedback_generated_at',
|
|
1049
1044
|
human_feedback_updated_at: 'human_feedback_updated_at',
|
|
1050
1045
|
evaluated_at: 'evaluated_at',
|
|
@@ -1266,7 +1261,8 @@ exports.Prisma.JobApplicationFieldScalarFieldEnum = {
|
|
|
1266
1261
|
created_by: 'created_by',
|
|
1267
1262
|
updated_by: 'updated_by',
|
|
1268
1263
|
created_at: 'created_at',
|
|
1269
|
-
updated_at: 'updated_at'
|
|
1264
|
+
updated_at: 'updated_at',
|
|
1265
|
+
order_no: 'order_no'
|
|
1270
1266
|
};
|
|
1271
1267
|
|
|
1272
1268
|
exports.Prisma.JobApplicationResponseScalarFieldEnum = {
|
|
@@ -1287,7 +1283,8 @@ exports.Prisma.JobApplicationResponseScalarFieldEnum = {
|
|
|
1287
1283
|
updated_at: 'updated_at',
|
|
1288
1284
|
created_by: 'created_by',
|
|
1289
1285
|
updated_by: 'updated_by',
|
|
1290
|
-
is_active: 'is_active'
|
|
1286
|
+
is_active: 'is_active',
|
|
1287
|
+
order_no: 'order_no'
|
|
1291
1288
|
};
|
|
1292
1289
|
|
|
1293
1290
|
exports.Prisma.JobApplicationTemplateScalarFieldEnum = {
|
|
@@ -1456,6 +1453,8 @@ exports.Prisma.PurchasedHiringUnitAssignmentEventScalarFieldEnum = {
|
|
|
1456
1453
|
event_kind: 'event_kind',
|
|
1457
1454
|
previous_department_id: 'previous_department_id',
|
|
1458
1455
|
new_department_id: 'new_department_id',
|
|
1456
|
+
previous_assigned_user_id: 'previous_assigned_user_id',
|
|
1457
|
+
new_assigned_user_id: 'new_assigned_user_id',
|
|
1459
1458
|
previous_job_description_id: 'previous_job_description_id',
|
|
1460
1459
|
new_job_description_id: 'new_job_description_id',
|
|
1461
1460
|
effective_at: 'effective_at',
|
|
@@ -1544,6 +1543,7 @@ exports.Prisma.PurchasedHiringUnitScalarFieldEnum = {
|
|
|
1544
1543
|
purchased_license_package_id: 'purchased_license_package_id',
|
|
1545
1544
|
status: 'status',
|
|
1546
1545
|
department_id: 'department_id',
|
|
1546
|
+
assigned_user_id: 'assigned_user_id',
|
|
1547
1547
|
first_assigned_at: 'first_assigned_at',
|
|
1548
1548
|
expiry_at: 'expiry_at',
|
|
1549
1549
|
job_description_id: 'job_description_id',
|
|
@@ -1719,6 +1719,8 @@ exports.Prisma.OngoingEvaluationScalarFieldEnum = {
|
|
|
1719
1719
|
duration_unit: 'duration_unit',
|
|
1720
1720
|
details: 'details',
|
|
1721
1721
|
category: 'category',
|
|
1722
|
+
relevance_score: 'relevance_score',
|
|
1723
|
+
relevance_reasoning: 'relevance_reasoning',
|
|
1722
1724
|
created_at: 'created_at',
|
|
1723
1725
|
updated_at: 'updated_at',
|
|
1724
1726
|
created_by: 'created_by',
|
|
@@ -1813,7 +1815,8 @@ exports.Prisma.OrganisationScalarFieldEnum = {
|
|
|
1813
1815
|
job_sequence: 'job_sequence',
|
|
1814
1816
|
employee_sequence: 'employee_sequence',
|
|
1815
1817
|
timezone: 'timezone',
|
|
1816
|
-
country_code: 'country_code'
|
|
1818
|
+
country_code: 'country_code',
|
|
1819
|
+
hiring_unit_assignment_scope: 'hiring_unit_assignment_scope'
|
|
1817
1820
|
};
|
|
1818
1821
|
|
|
1819
1822
|
exports.Prisma.OrganisationConfigScalarFieldEnum = {
|
|
@@ -1881,6 +1884,56 @@ exports.Prisma.PipelineDistributionAnalyticsDailyScalarFieldEnum = {
|
|
|
1881
1884
|
withdrawn_count: 'withdrawn_count'
|
|
1882
1885
|
};
|
|
1883
1886
|
|
|
1887
|
+
exports.Prisma.ProctoringSessionScalarFieldEnum = {
|
|
1888
|
+
id: 'id',
|
|
1889
|
+
interviewId: 'interviewId',
|
|
1890
|
+
candidateId: 'candidateId',
|
|
1891
|
+
isProctored: 'isProctored',
|
|
1892
|
+
status: 'status',
|
|
1893
|
+
calibrationFeatures: 'calibrationFeatures',
|
|
1894
|
+
fullVideoKey: 'fullVideoKey',
|
|
1895
|
+
fullVideoUrl: 'fullVideoUrl',
|
|
1896
|
+
chunkCount: 'chunkCount',
|
|
1897
|
+
completedChunks: 'completedChunks',
|
|
1898
|
+
overallRisk: 'overallRisk',
|
|
1899
|
+
integrityScore: 'integrityScore',
|
|
1900
|
+
totalDurationSec: 'totalDurationSec',
|
|
1901
|
+
faceDetectedPct: 'faceDetectedPct',
|
|
1902
|
+
onScreenGazePct: 'onScreenGazePct',
|
|
1903
|
+
totalGazeEvents: 'totalGazeEvents',
|
|
1904
|
+
totalObjectEvents: 'totalObjectEvents',
|
|
1905
|
+
totalFaceEvents: 'totalFaceEvents',
|
|
1906
|
+
totalBrowserEvents: 'totalBrowserEvents',
|
|
1907
|
+
createdAt: 'createdAt',
|
|
1908
|
+
updatedAt: 'updatedAt'
|
|
1909
|
+
};
|
|
1910
|
+
|
|
1911
|
+
exports.Prisma.ProctoringAnalysisScalarFieldEnum = {
|
|
1912
|
+
id: 'id',
|
|
1913
|
+
sessionId: 'sessionId',
|
|
1914
|
+
status: 'status',
|
|
1915
|
+
chunkIndex: 'chunkIndex',
|
|
1916
|
+
totalChunks: 'totalChunks',
|
|
1917
|
+
startTimeSec: 'startTimeSec',
|
|
1918
|
+
endTimeSec: 'endTimeSec',
|
|
1919
|
+
videoKey: 'videoKey',
|
|
1920
|
+
annotatedKey: 'annotatedKey',
|
|
1921
|
+
error: 'error',
|
|
1922
|
+
createdAt: 'createdAt',
|
|
1923
|
+
updatedAt: 'updatedAt'
|
|
1924
|
+
};
|
|
1925
|
+
|
|
1926
|
+
exports.Prisma.ProctoringEventScalarFieldEnum = {
|
|
1927
|
+
id: 'id',
|
|
1928
|
+
sessionId: 'sessionId',
|
|
1929
|
+
eventType: 'eventType',
|
|
1930
|
+
timestampSec: 'timestampSec',
|
|
1931
|
+
timestampStr: 'timestampStr',
|
|
1932
|
+
risk: 'risk',
|
|
1933
|
+
metadata: 'metadata',
|
|
1934
|
+
createdAt: 'createdAt'
|
|
1935
|
+
};
|
|
1936
|
+
|
|
1884
1937
|
exports.Prisma.AsyncOperationScalarFieldEnum = {
|
|
1885
1938
|
id: 'id',
|
|
1886
1939
|
operation_name: 'operation_name',
|
|
@@ -1907,6 +1960,8 @@ exports.Prisma.QuestionScalarFieldEnum = {
|
|
|
1907
1960
|
evaluation_plan_id: 'evaluation_plan_id',
|
|
1908
1961
|
candidate_id: 'candidate_id',
|
|
1909
1962
|
skill: 'skill',
|
|
1963
|
+
category: 'category',
|
|
1964
|
+
bank_item_key: 'bank_item_key',
|
|
1910
1965
|
question: 'question',
|
|
1911
1966
|
answer: 'answer',
|
|
1912
1967
|
options: 'options',
|
|
@@ -1969,7 +2024,18 @@ exports.Prisma.ResumeScalarFieldEnum = {
|
|
|
1969
2024
|
updated_by: 'updated_by',
|
|
1970
2025
|
is_active: 'is_active',
|
|
1971
2026
|
name: 'name',
|
|
1972
|
-
yearsOfExperience: 'yearsOfExperience'
|
|
2027
|
+
yearsOfExperience: 'yearsOfExperience',
|
|
2028
|
+
status: 'status',
|
|
2029
|
+
origin: 'origin',
|
|
2030
|
+
intake_session_id: 'intake_session_id',
|
|
2031
|
+
conversation_history: 'conversation_history',
|
|
2032
|
+
intake_progress: 'intake_progress',
|
|
2033
|
+
orion_execution_id: 'orion_execution_id',
|
|
2034
|
+
intake_raw_data: 'intake_raw_data',
|
|
2035
|
+
tailoring_jd_text: 'tailoring_jd_text',
|
|
2036
|
+
tailoring_jd_parsed: 'tailoring_jd_parsed',
|
|
2037
|
+
tailoring_gap_analysis: 'tailoring_gap_analysis',
|
|
2038
|
+
tailoring_draft: 'tailoring_draft'
|
|
1973
2039
|
};
|
|
1974
2040
|
|
|
1975
2041
|
exports.Prisma.ResumeDataScalarFieldEnum = {
|
|
@@ -2218,6 +2284,7 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
2218
2284
|
created_by: 'created_by',
|
|
2219
2285
|
updated_by: 'updated_by',
|
|
2220
2286
|
is_active: 'is_active',
|
|
2287
|
+
deleted_at: 'deleted_at',
|
|
2221
2288
|
is_self_registered: 'is_self_registered',
|
|
2222
2289
|
permission_id: 'permission_id',
|
|
2223
2290
|
preferences: 'preferences',
|
|
@@ -2243,6 +2310,7 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
2243
2310
|
gender: 'gender',
|
|
2244
2311
|
ethnicity: 'ethnicity',
|
|
2245
2312
|
veteran_status: 'veteran_status',
|
|
2313
|
+
self_registered_organisation_name: 'self_registered_organisation_name',
|
|
2246
2314
|
disability_status: 'disability_status',
|
|
2247
2315
|
professional_expertise: 'professional_expertise',
|
|
2248
2316
|
employee_number: 'employee_number',
|
|
@@ -2493,6 +2561,8 @@ exports.EvaluationCategory = exports.$Enums.EvaluationCategory = {
|
|
|
2493
2561
|
|
|
2494
2562
|
exports.RoundType = exports.$Enums.RoundType = {
|
|
2495
2563
|
ASSESSMENT: 'ASSESSMENT',
|
|
2564
|
+
GENERAL_APTITUDE_ASSESSMENT: 'GENERAL_APTITUDE_ASSESSMENT',
|
|
2565
|
+
DOMAIN_KNOWLEDGE_ASSESSMENT: 'DOMAIN_KNOWLEDGE_ASSESSMENT',
|
|
2496
2566
|
INTERVIEW: 'INTERVIEW',
|
|
2497
2567
|
ASSIGNMENT: 'ASSIGNMENT',
|
|
2498
2568
|
SCREENING: 'SCREENING'
|
|
@@ -2763,6 +2833,8 @@ exports.AiCostLedgerReason = exports.$Enums.AiCostLedgerReason = {
|
|
|
2763
2833
|
exports.PurchasedHiringUnitAssignmentEventKind = exports.$Enums.PurchasedHiringUnitAssignmentEventKind = {
|
|
2764
2834
|
DEPARTMENT_ASSIGNED: 'DEPARTMENT_ASSIGNED',
|
|
2765
2835
|
DEPARTMENT_UNASSIGNED: 'DEPARTMENT_UNASSIGNED',
|
|
2836
|
+
USER_ASSIGNED: 'USER_ASSIGNED',
|
|
2837
|
+
USER_UNASSIGNED: 'USER_UNASSIGNED',
|
|
2766
2838
|
JOB_LINKED: 'JOB_LINKED',
|
|
2767
2839
|
JOB_UNLINKED: 'JOB_UNLINKED'
|
|
2768
2840
|
};
|
|
@@ -2869,6 +2941,45 @@ exports.OrganisationSize = exports.$Enums.OrganisationSize = {
|
|
|
2869
2941
|
FIVE_HUNDRED_PLUS: 'FIVE_HUNDRED_PLUS'
|
|
2870
2942
|
};
|
|
2871
2943
|
|
|
2944
|
+
exports.HiringUnitAssignmentScope = exports.$Enums.HiringUnitAssignmentScope = {
|
|
2945
|
+
USER: 'USER',
|
|
2946
|
+
DEPARTMENT: 'DEPARTMENT',
|
|
2947
|
+
ORGANISATION: 'ORGANISATION'
|
|
2948
|
+
};
|
|
2949
|
+
|
|
2950
|
+
exports.ProctoringSessionStatus = exports.$Enums.ProctoringSessionStatus = {
|
|
2951
|
+
NOT_STARTED: 'NOT_STARTED',
|
|
2952
|
+
CALIBRATING: 'CALIBRATING',
|
|
2953
|
+
CALIBRATED: 'CALIBRATED',
|
|
2954
|
+
PROCESSING: 'PROCESSING',
|
|
2955
|
+
COMPLETED: 'COMPLETED',
|
|
2956
|
+
FAILED: 'FAILED'
|
|
2957
|
+
};
|
|
2958
|
+
|
|
2959
|
+
exports.RiskLevel = exports.$Enums.RiskLevel = {
|
|
2960
|
+
LOW: 'LOW',
|
|
2961
|
+
MEDIUM: 'MEDIUM',
|
|
2962
|
+
HIGH: 'HIGH',
|
|
2963
|
+
CRITICAL: 'CRITICAL'
|
|
2964
|
+
};
|
|
2965
|
+
|
|
2966
|
+
exports.AnalysisStatus = exports.$Enums.AnalysisStatus = {
|
|
2967
|
+
QUEUED: 'QUEUED',
|
|
2968
|
+
RUNNING: 'RUNNING',
|
|
2969
|
+
COMPLETED: 'COMPLETED',
|
|
2970
|
+
FAILED: 'FAILED'
|
|
2971
|
+
};
|
|
2972
|
+
|
|
2973
|
+
exports.ProctoringEventType = exports.$Enums.ProctoringEventType = {
|
|
2974
|
+
GAZE_DISRUPTION: 'GAZE_DISRUPTION',
|
|
2975
|
+
OBJECT_DETECTED: 'OBJECT_DETECTED',
|
|
2976
|
+
FACE_MISSING: 'FACE_MISSING',
|
|
2977
|
+
MULTIPLE_FACES: 'MULTIPLE_FACES',
|
|
2978
|
+
BROWSER_TAB_SWITCH: 'BROWSER_TAB_SWITCH',
|
|
2979
|
+
BROWSER_BLUR: 'BROWSER_BLUR',
|
|
2980
|
+
FULLSCREEN_EXIT: 'FULLSCREEN_EXIT'
|
|
2981
|
+
};
|
|
2982
|
+
|
|
2872
2983
|
exports.AsyncOperationStatus = exports.$Enums.AsyncOperationStatus = {
|
|
2873
2984
|
PENDING: 'PENDING',
|
|
2874
2985
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
@@ -2878,12 +2989,30 @@ exports.AsyncOperationStatus = exports.$Enums.AsyncOperationStatus = {
|
|
|
2878
2989
|
CANCELLED: 'CANCELLED'
|
|
2879
2990
|
};
|
|
2880
2991
|
|
|
2992
|
+
exports.QuestionCategory = exports.$Enums.QuestionCategory = {
|
|
2993
|
+
GENERAL_APTITUDE: 'GENERAL_APTITUDE',
|
|
2994
|
+
DOMAIN_KNOWLEDGE: 'DOMAIN_KNOWLEDGE'
|
|
2995
|
+
};
|
|
2996
|
+
|
|
2881
2997
|
exports.Difficulty = exports.$Enums.Difficulty = {
|
|
2882
2998
|
EASY: 'EASY',
|
|
2883
2999
|
MEDIUM: 'MEDIUM',
|
|
2884
3000
|
HARD: 'HARD'
|
|
2885
3001
|
};
|
|
2886
3002
|
|
|
3003
|
+
exports.ResumeStatus = exports.$Enums.ResumeStatus = {
|
|
3004
|
+
DRAFT: 'DRAFT',
|
|
3005
|
+
GENERATING: 'GENERATING',
|
|
3006
|
+
COMPLETED: 'COMPLETED'
|
|
3007
|
+
};
|
|
3008
|
+
|
|
3009
|
+
exports.ResumeOrigin = exports.$Enums.ResumeOrigin = {
|
|
3010
|
+
UPLOADED: 'UPLOADED',
|
|
3011
|
+
PARSED: 'PARSED',
|
|
3012
|
+
AI_GENERATED: 'AI_GENERATED',
|
|
3013
|
+
TAILORED: 'TAILORED'
|
|
3014
|
+
};
|
|
3015
|
+
|
|
2887
3016
|
exports.UsageSourceType = exports.$Enums.UsageSourceType = {
|
|
2888
3017
|
activity_event: 'activity_event',
|
|
2889
3018
|
usage_publisher: 'usage_publisher',
|
|
@@ -2953,7 +3082,6 @@ exports.Prisma.ModelName = {
|
|
|
2953
3082
|
Document: 'Document',
|
|
2954
3083
|
EvaluationCriteria: 'EvaluationCriteria',
|
|
2955
3084
|
EvaluationPlan: 'EvaluationPlan',
|
|
2956
|
-
Feedback: 'Feedback',
|
|
2957
3085
|
FitCheck: 'FitCheck',
|
|
2958
3086
|
Google: 'Google',
|
|
2959
3087
|
HiringPlan: 'HiringPlan',
|
|
@@ -3001,6 +3129,9 @@ exports.Prisma.ModelName = {
|
|
|
3001
3129
|
Permission: 'Permission',
|
|
3002
3130
|
PipelineDistributionAnalytics: 'PipelineDistributionAnalytics',
|
|
3003
3131
|
PipelineDistributionAnalyticsDaily: 'PipelineDistributionAnalyticsDaily',
|
|
3132
|
+
ProctoringSession: 'ProctoringSession',
|
|
3133
|
+
ProctoringAnalysis: 'ProctoringAnalysis',
|
|
3134
|
+
ProctoringEvent: 'ProctoringEvent',
|
|
3004
3135
|
AsyncOperation: 'AsyncOperation',
|
|
3005
3136
|
Question: 'Question',
|
|
3006
3137
|
RefreshToken: 'RefreshToken',
|