@adaptware/eagles-db 0.3.4 → 0.3.5
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 +4 -3
- package/client/index-browser.js +1 -0
- package/client/index.d.ts +95 -1
- package/client/index.js +4 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +29 -28
- package/client/wasm.js +1 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +6 -6
- package/package.json +1 -1
- package/prisma/schema/interview.prisma +29 -28
package/client/index.d.ts
CHANGED
|
@@ -35240,6 +35240,7 @@ export namespace Prisma {
|
|
|
35240
35240
|
section_feedback: number
|
|
35241
35241
|
interview_preparation: number
|
|
35242
35242
|
final_feedback: number
|
|
35243
|
+
interview_analysis_ranges: number
|
|
35243
35244
|
reschedule_count: number
|
|
35244
35245
|
last_rescheduled_at: number
|
|
35245
35246
|
first_assigned_at: number
|
|
@@ -35361,6 +35362,7 @@ export namespace Prisma {
|
|
|
35361
35362
|
section_feedback?: true
|
|
35362
35363
|
interview_preparation?: true
|
|
35363
35364
|
final_feedback?: true
|
|
35365
|
+
interview_analysis_ranges?: true
|
|
35364
35366
|
reschedule_count?: true
|
|
35365
35367
|
last_rescheduled_at?: true
|
|
35366
35368
|
first_assigned_at?: true
|
|
@@ -35489,6 +35491,7 @@ export namespace Prisma {
|
|
|
35489
35491
|
section_feedback: JsonValue[]
|
|
35490
35492
|
interview_preparation: JsonValue | null
|
|
35491
35493
|
final_feedback: JsonValue | null
|
|
35494
|
+
interview_analysis_ranges: JsonValue | null
|
|
35492
35495
|
reschedule_count: number
|
|
35493
35496
|
last_rescheduled_at: Date | null
|
|
35494
35497
|
first_assigned_at: Date | null
|
|
@@ -35549,6 +35552,7 @@ export namespace Prisma {
|
|
|
35549
35552
|
section_feedback?: boolean
|
|
35550
35553
|
interview_preparation?: boolean
|
|
35551
35554
|
final_feedback?: boolean
|
|
35555
|
+
interview_analysis_ranges?: boolean
|
|
35552
35556
|
reschedule_count?: boolean
|
|
35553
35557
|
last_rescheduled_at?: boolean
|
|
35554
35558
|
first_assigned_at?: boolean
|
|
@@ -35605,6 +35609,7 @@ export namespace Prisma {
|
|
|
35605
35609
|
section_feedback?: boolean
|
|
35606
35610
|
interview_preparation?: boolean
|
|
35607
35611
|
final_feedback?: boolean
|
|
35612
|
+
interview_analysis_ranges?: boolean
|
|
35608
35613
|
reschedule_count?: boolean
|
|
35609
35614
|
last_rescheduled_at?: boolean
|
|
35610
35615
|
first_assigned_at?: boolean
|
|
@@ -35653,6 +35658,7 @@ export namespace Prisma {
|
|
|
35653
35658
|
section_feedback?: boolean
|
|
35654
35659
|
interview_preparation?: boolean
|
|
35655
35660
|
final_feedback?: boolean
|
|
35661
|
+
interview_analysis_ranges?: boolean
|
|
35656
35662
|
reschedule_count?: boolean
|
|
35657
35663
|
last_rescheduled_at?: boolean
|
|
35658
35664
|
first_assigned_at?: boolean
|
|
@@ -35701,6 +35707,7 @@ export namespace Prisma {
|
|
|
35701
35707
|
section_feedback?: boolean
|
|
35702
35708
|
interview_preparation?: boolean
|
|
35703
35709
|
final_feedback?: boolean
|
|
35710
|
+
interview_analysis_ranges?: boolean
|
|
35704
35711
|
reschedule_count?: boolean
|
|
35705
35712
|
last_rescheduled_at?: boolean
|
|
35706
35713
|
first_assigned_at?: boolean
|
|
@@ -35713,7 +35720,7 @@ export namespace Prisma {
|
|
|
35713
35720
|
ai_assistance_mode?: boolean
|
|
35714
35721
|
}
|
|
35715
35722
|
|
|
35716
|
-
export type InterviewOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "candidate_id" | "interviewer_id" | "evaluation_plan_id" | "application_id" | "resume_id" | "job_description_id" | "calendar_event_id" | "room_name" | "interview_summary" | "scheduled_start_time" | "scheduled_end_time" | "actual_start_time" | "actual_end_time" | "recording_url" | "interview_status" | "interview_platform" | "ai_interview_feedback" | "interview_feedback" | "overall_feedback" | "interview_rating" | "ai_feedback" | "human_feedback" | "interviewer_feedback" | "section_feedback" | "interview_preparation" | "final_feedback" | "reschedule_count" | "last_rescheduled_at" | "first_assigned_at" | "awaiting_recruiter_action" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "ai_assistance_mode", ExtArgs["result"]["interview"]>
|
|
35723
|
+
export type InterviewOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "candidate_id" | "interviewer_id" | "evaluation_plan_id" | "application_id" | "resume_id" | "job_description_id" | "calendar_event_id" | "room_name" | "interview_summary" | "scheduled_start_time" | "scheduled_end_time" | "actual_start_time" | "actual_end_time" | "recording_url" | "interview_status" | "interview_platform" | "ai_interview_feedback" | "interview_feedback" | "overall_feedback" | "interview_rating" | "ai_feedback" | "human_feedback" | "interviewer_feedback" | "section_feedback" | "interview_preparation" | "final_feedback" | "interview_analysis_ranges" | "reschedule_count" | "last_rescheduled_at" | "first_assigned_at" | "awaiting_recruiter_action" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "ai_assistance_mode", ExtArgs["result"]["interview"]>
|
|
35717
35724
|
export type InterviewInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
35718
35725
|
candidate?: boolean | Interview$candidateArgs<ExtArgs>
|
|
35719
35726
|
interviewer?: boolean | Interview$interviewerArgs<ExtArgs>
|
|
@@ -35809,6 +35816,7 @@ export namespace Prisma {
|
|
|
35809
35816
|
section_feedback: Prisma.JsonValue[]
|
|
35810
35817
|
interview_preparation: Prisma.JsonValue | null
|
|
35811
35818
|
final_feedback: Prisma.JsonValue | null
|
|
35819
|
+
interview_analysis_ranges: Prisma.JsonValue | null
|
|
35812
35820
|
/**
|
|
35813
35821
|
* Self-scheduling
|
|
35814
35822
|
*/
|
|
@@ -36296,6 +36304,7 @@ export namespace Prisma {
|
|
|
36296
36304
|
readonly section_feedback: FieldRef<"Interview", 'Json[]'>
|
|
36297
36305
|
readonly interview_preparation: FieldRef<"Interview", 'Json'>
|
|
36298
36306
|
readonly final_feedback: FieldRef<"Interview", 'Json'>
|
|
36307
|
+
readonly interview_analysis_ranges: FieldRef<"Interview", 'Json'>
|
|
36299
36308
|
readonly reschedule_count: FieldRef<"Interview", 'Int'>
|
|
36300
36309
|
readonly last_rescheduled_at: FieldRef<"Interview", 'DateTime'>
|
|
36301
36310
|
readonly first_assigned_at: FieldRef<"Interview", 'DateTime'>
|
|
@@ -67210,6 +67219,7 @@ export namespace Prisma {
|
|
|
67210
67219
|
section_feedback: 'section_feedback',
|
|
67211
67220
|
interview_preparation: 'interview_preparation',
|
|
67212
67221
|
final_feedback: 'final_feedback',
|
|
67222
|
+
interview_analysis_ranges: 'interview_analysis_ranges',
|
|
67213
67223
|
reschedule_count: 'reschedule_count',
|
|
67214
67224
|
last_rescheduled_at: 'last_rescheduled_at',
|
|
67215
67225
|
first_assigned_at: 'first_assigned_at',
|
|
@@ -70809,6 +70819,7 @@ export namespace Prisma {
|
|
|
70809
70819
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
70810
70820
|
interview_preparation?: JsonNullableFilter<"Interview">
|
|
70811
70821
|
final_feedback?: JsonNullableFilter<"Interview">
|
|
70822
|
+
interview_analysis_ranges?: JsonNullableFilter<"Interview">
|
|
70812
70823
|
reschedule_count?: IntFilter<"Interview"> | number
|
|
70813
70824
|
last_rescheduled_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
70814
70825
|
first_assigned_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
@@ -70864,6 +70875,7 @@ export namespace Prisma {
|
|
|
70864
70875
|
section_feedback?: SortOrder
|
|
70865
70876
|
interview_preparation?: SortOrderInput | SortOrder
|
|
70866
70877
|
final_feedback?: SortOrderInput | SortOrder
|
|
70878
|
+
interview_analysis_ranges?: SortOrderInput | SortOrder
|
|
70867
70879
|
reschedule_count?: SortOrder
|
|
70868
70880
|
last_rescheduled_at?: SortOrderInput | SortOrder
|
|
70869
70881
|
first_assigned_at?: SortOrderInput | SortOrder
|
|
@@ -70923,6 +70935,7 @@ export namespace Prisma {
|
|
|
70923
70935
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
70924
70936
|
interview_preparation?: JsonNullableFilter<"Interview">
|
|
70925
70937
|
final_feedback?: JsonNullableFilter<"Interview">
|
|
70938
|
+
interview_analysis_ranges?: JsonNullableFilter<"Interview">
|
|
70926
70939
|
reschedule_count?: IntFilter<"Interview"> | number
|
|
70927
70940
|
last_rescheduled_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
70928
70941
|
first_assigned_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
@@ -70978,6 +70991,7 @@ export namespace Prisma {
|
|
|
70978
70991
|
section_feedback?: SortOrder
|
|
70979
70992
|
interview_preparation?: SortOrderInput | SortOrder
|
|
70980
70993
|
final_feedback?: SortOrderInput | SortOrder
|
|
70994
|
+
interview_analysis_ranges?: SortOrderInput | SortOrder
|
|
70981
70995
|
reschedule_count?: SortOrder
|
|
70982
70996
|
last_rescheduled_at?: SortOrderInput | SortOrder
|
|
70983
70997
|
first_assigned_at?: SortOrderInput | SortOrder
|
|
@@ -71027,6 +71041,7 @@ export namespace Prisma {
|
|
|
71027
71041
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
71028
71042
|
interview_preparation?: JsonNullableWithAggregatesFilter<"Interview">
|
|
71029
71043
|
final_feedback?: JsonNullableWithAggregatesFilter<"Interview">
|
|
71044
|
+
interview_analysis_ranges?: JsonNullableWithAggregatesFilter<"Interview">
|
|
71030
71045
|
reschedule_count?: IntWithAggregatesFilter<"Interview"> | number
|
|
71031
71046
|
last_rescheduled_at?: DateTimeNullableWithAggregatesFilter<"Interview"> | Date | string | null
|
|
71032
71047
|
first_assigned_at?: DateTimeNullableWithAggregatesFilter<"Interview"> | Date | string | null
|
|
@@ -76443,6 +76458,7 @@ export namespace Prisma {
|
|
|
76443
76458
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
76444
76459
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
76445
76460
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76461
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
76446
76462
|
reschedule_count?: number
|
|
76447
76463
|
last_rescheduled_at?: Date | string | null
|
|
76448
76464
|
first_assigned_at?: Date | string | null
|
|
@@ -76498,6 +76514,7 @@ export namespace Prisma {
|
|
|
76498
76514
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
76499
76515
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
76500
76516
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76517
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
76501
76518
|
reschedule_count?: number
|
|
76502
76519
|
last_rescheduled_at?: Date | string | null
|
|
76503
76520
|
first_assigned_at?: Date | string | null
|
|
@@ -76539,6 +76556,7 @@ export namespace Prisma {
|
|
|
76539
76556
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
76540
76557
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
76541
76558
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76559
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
76542
76560
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
76543
76561
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
76544
76562
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -76594,6 +76612,7 @@ export namespace Prisma {
|
|
|
76594
76612
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
76595
76613
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
76596
76614
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76615
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
76597
76616
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
76598
76617
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
76599
76618
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -76642,6 +76661,7 @@ export namespace Prisma {
|
|
|
76642
76661
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
76643
76662
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
76644
76663
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76664
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
76645
76665
|
reschedule_count?: number
|
|
76646
76666
|
last_rescheduled_at?: Date | string | null
|
|
76647
76667
|
first_assigned_at?: Date | string | null
|
|
@@ -76676,6 +76696,7 @@ export namespace Prisma {
|
|
|
76676
76696
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
76677
76697
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
76678
76698
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76699
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
76679
76700
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
76680
76701
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
76681
76702
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -76717,6 +76738,7 @@ export namespace Prisma {
|
|
|
76717
76738
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
76718
76739
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
76719
76740
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76741
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
76720
76742
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
76721
76743
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
76722
76744
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -82043,6 +82065,7 @@ export namespace Prisma {
|
|
|
82043
82065
|
section_feedback?: SortOrder
|
|
82044
82066
|
interview_preparation?: SortOrder
|
|
82045
82067
|
final_feedback?: SortOrder
|
|
82068
|
+
interview_analysis_ranges?: SortOrder
|
|
82046
82069
|
reschedule_count?: SortOrder
|
|
82047
82070
|
last_rescheduled_at?: SortOrder
|
|
82048
82071
|
first_assigned_at?: SortOrder
|
|
@@ -93202,6 +93225,7 @@ export namespace Prisma {
|
|
|
93202
93225
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
93203
93226
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93204
93227
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93228
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
93205
93229
|
reschedule_count?: number
|
|
93206
93230
|
last_rescheduled_at?: Date | string | null
|
|
93207
93231
|
first_assigned_at?: Date | string | null
|
|
@@ -93255,6 +93279,7 @@ export namespace Prisma {
|
|
|
93255
93279
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
93256
93280
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93257
93281
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93282
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
93258
93283
|
reschedule_count?: number
|
|
93259
93284
|
last_rescheduled_at?: Date | string | null
|
|
93260
93285
|
first_assigned_at?: Date | string | null
|
|
@@ -94062,6 +94087,7 @@ export namespace Prisma {
|
|
|
94062
94087
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
94063
94088
|
interview_preparation?: JsonNullableFilter<"Interview">
|
|
94064
94089
|
final_feedback?: JsonNullableFilter<"Interview">
|
|
94090
|
+
interview_analysis_ranges?: JsonNullableFilter<"Interview">
|
|
94065
94091
|
reschedule_count?: IntFilter<"Interview"> | number
|
|
94066
94092
|
last_rescheduled_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
94067
94093
|
first_assigned_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
@@ -100012,6 +100038,7 @@ export namespace Prisma {
|
|
|
100012
100038
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
100013
100039
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100014
100040
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100041
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
100015
100042
|
reschedule_count?: number
|
|
100016
100043
|
last_rescheduled_at?: Date | string | null
|
|
100017
100044
|
first_assigned_at?: Date | string | null
|
|
@@ -100065,6 +100092,7 @@ export namespace Prisma {
|
|
|
100065
100092
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
100066
100093
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100067
100094
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100095
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
100068
100096
|
reschedule_count?: number
|
|
100069
100097
|
last_rescheduled_at?: Date | string | null
|
|
100070
100098
|
first_assigned_at?: Date | string | null
|
|
@@ -100594,6 +100622,7 @@ export namespace Prisma {
|
|
|
100594
100622
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
100595
100623
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100596
100624
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100625
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
100597
100626
|
reschedule_count?: number
|
|
100598
100627
|
last_rescheduled_at?: Date | string | null
|
|
100599
100628
|
first_assigned_at?: Date | string | null
|
|
@@ -100648,6 +100677,7 @@ export namespace Prisma {
|
|
|
100648
100677
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
100649
100678
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100650
100679
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100680
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
100651
100681
|
reschedule_count?: number
|
|
100652
100682
|
last_rescheduled_at?: Date | string | null
|
|
100653
100683
|
first_assigned_at?: Date | string | null
|
|
@@ -100704,6 +100734,7 @@ export namespace Prisma {
|
|
|
100704
100734
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
100705
100735
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100706
100736
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100737
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
100707
100738
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
100708
100739
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
100709
100740
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -100758,6 +100789,7 @@ export namespace Prisma {
|
|
|
100758
100789
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
100759
100790
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100760
100791
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100792
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
100761
100793
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
100762
100794
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
100763
100795
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -104350,6 +104382,7 @@ export namespace Prisma {
|
|
|
104350
104382
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
104351
104383
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
104352
104384
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
104385
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
104353
104386
|
reschedule_count?: number
|
|
104354
104387
|
last_rescheduled_at?: Date | string | null
|
|
104355
104388
|
first_assigned_at?: Date | string | null
|
|
@@ -104404,6 +104437,7 @@ export namespace Prisma {
|
|
|
104404
104437
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
104405
104438
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
104406
104439
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
104440
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
104407
104441
|
reschedule_count?: number
|
|
104408
104442
|
last_rescheduled_at?: Date | string | null
|
|
104409
104443
|
first_assigned_at?: Date | string | null
|
|
@@ -104460,6 +104494,7 @@ export namespace Prisma {
|
|
|
104460
104494
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
104461
104495
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
104462
104496
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
104497
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
104463
104498
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
104464
104499
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104465
104500
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -104514,6 +104549,7 @@ export namespace Prisma {
|
|
|
104514
104549
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
104515
104550
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
104516
104551
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
104552
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
104517
104553
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
104518
104554
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104519
104555
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -104768,6 +104804,7 @@ export namespace Prisma {
|
|
|
104768
104804
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
104769
104805
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
104770
104806
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
104807
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
104771
104808
|
reschedule_count?: number
|
|
104772
104809
|
last_rescheduled_at?: Date | string | null
|
|
104773
104810
|
first_assigned_at?: Date | string | null
|
|
@@ -104821,6 +104858,7 @@ export namespace Prisma {
|
|
|
104821
104858
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
104822
104859
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
104823
104860
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
104861
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
104824
104862
|
reschedule_count?: number
|
|
104825
104863
|
last_rescheduled_at?: Date | string | null
|
|
104826
104864
|
first_assigned_at?: Date | string | null
|
|
@@ -107757,6 +107795,7 @@ export namespace Prisma {
|
|
|
107757
107795
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
107758
107796
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
107759
107797
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
107798
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
107760
107799
|
reschedule_count?: number
|
|
107761
107800
|
last_rescheduled_at?: Date | string | null
|
|
107762
107801
|
first_assigned_at?: Date | string | null
|
|
@@ -107811,6 +107850,7 @@ export namespace Prisma {
|
|
|
107811
107850
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
107812
107851
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
107813
107852
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
107853
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
107814
107854
|
reschedule_count?: number
|
|
107815
107855
|
last_rescheduled_at?: Date | string | null
|
|
107816
107856
|
first_assigned_at?: Date | string | null
|
|
@@ -107867,6 +107907,7 @@ export namespace Prisma {
|
|
|
107867
107907
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
107868
107908
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
107869
107909
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
107910
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
107870
107911
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
107871
107912
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107872
107913
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -107921,6 +107962,7 @@ export namespace Prisma {
|
|
|
107921
107962
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
107922
107963
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
107923
107964
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
107965
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
107924
107966
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
107925
107967
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107926
107968
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -109467,6 +109509,7 @@ export namespace Prisma {
|
|
|
109467
109509
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
109468
109510
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
109469
109511
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
109512
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
109470
109513
|
reschedule_count?: number
|
|
109471
109514
|
last_rescheduled_at?: Date | string | null
|
|
109472
109515
|
first_assigned_at?: Date | string | null
|
|
@@ -109521,6 +109564,7 @@ export namespace Prisma {
|
|
|
109521
109564
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
109522
109565
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
109523
109566
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
109567
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
109524
109568
|
reschedule_count?: number
|
|
109525
109569
|
last_rescheduled_at?: Date | string | null
|
|
109526
109570
|
first_assigned_at?: Date | string | null
|
|
@@ -110197,6 +110241,7 @@ export namespace Prisma {
|
|
|
110197
110241
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
110198
110242
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
110199
110243
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
110244
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
110200
110245
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
110201
110246
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
110202
110247
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -110251,6 +110296,7 @@ export namespace Prisma {
|
|
|
110251
110296
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
110252
110297
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
110253
110298
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
110299
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
110254
110300
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
110255
110301
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
110256
110302
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -110887,6 +110933,7 @@ export namespace Prisma {
|
|
|
110887
110933
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
110888
110934
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
110889
110935
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
110936
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
110890
110937
|
reschedule_count?: number
|
|
110891
110938
|
last_rescheduled_at?: Date | string | null
|
|
110892
110939
|
first_assigned_at?: Date | string | null
|
|
@@ -110940,6 +110987,7 @@ export namespace Prisma {
|
|
|
110940
110987
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
110941
110988
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
110942
110989
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
110990
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
110943
110991
|
reschedule_count?: number
|
|
110944
110992
|
last_rescheduled_at?: Date | string | null
|
|
110945
110993
|
first_assigned_at?: Date | string | null
|
|
@@ -113777,6 +113825,7 @@ export namespace Prisma {
|
|
|
113777
113825
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
113778
113826
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
113779
113827
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
113828
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
113780
113829
|
reschedule_count?: number
|
|
113781
113830
|
last_rescheduled_at?: Date | string | null
|
|
113782
113831
|
first_assigned_at?: Date | string | null
|
|
@@ -113830,6 +113879,7 @@ export namespace Prisma {
|
|
|
113830
113879
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
113831
113880
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
113832
113881
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
113882
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
113833
113883
|
reschedule_count?: number
|
|
113834
113884
|
last_rescheduled_at?: Date | string | null
|
|
113835
113885
|
first_assigned_at?: Date | string | null
|
|
@@ -114693,6 +114743,7 @@ export namespace Prisma {
|
|
|
114693
114743
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
114694
114744
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
114695
114745
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
114746
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
114696
114747
|
reschedule_count?: number
|
|
114697
114748
|
last_rescheduled_at?: Date | string | null
|
|
114698
114749
|
first_assigned_at?: Date | string | null
|
|
@@ -114747,6 +114798,7 @@ export namespace Prisma {
|
|
|
114747
114798
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
114748
114799
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
114749
114800
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
114801
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
114750
114802
|
reschedule_count?: number
|
|
114751
114803
|
last_rescheduled_at?: Date | string | null
|
|
114752
114804
|
first_assigned_at?: Date | string | null
|
|
@@ -114930,6 +114982,7 @@ export namespace Prisma {
|
|
|
114930
114982
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
114931
114983
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
114932
114984
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
114985
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
114933
114986
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
114934
114987
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
114935
114988
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -114984,6 +115037,7 @@ export namespace Prisma {
|
|
|
114984
115037
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
114985
115038
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
114986
115039
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115040
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
114987
115041
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
114988
115042
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
114989
115043
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -115129,6 +115183,7 @@ export namespace Prisma {
|
|
|
115129
115183
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
115130
115184
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
115131
115185
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115186
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
115132
115187
|
reschedule_count?: number
|
|
115133
115188
|
last_rescheduled_at?: Date | string | null
|
|
115134
115189
|
first_assigned_at?: Date | string | null
|
|
@@ -115183,6 +115238,7 @@ export namespace Prisma {
|
|
|
115183
115238
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
115184
115239
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
115185
115240
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115241
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
115186
115242
|
reschedule_count?: number
|
|
115187
115243
|
last_rescheduled_at?: Date | string | null
|
|
115188
115244
|
first_assigned_at?: Date | string | null
|
|
@@ -115347,6 +115403,7 @@ export namespace Prisma {
|
|
|
115347
115403
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
115348
115404
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
115349
115405
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115406
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
115350
115407
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
115351
115408
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115352
115409
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -115401,6 +115458,7 @@ export namespace Prisma {
|
|
|
115401
115458
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
115402
115459
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
115403
115460
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115461
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
115404
115462
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
115405
115463
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115406
115464
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -116221,6 +116279,7 @@ export namespace Prisma {
|
|
|
116221
116279
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
116222
116280
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
116223
116281
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
116282
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
116224
116283
|
reschedule_count?: number
|
|
116225
116284
|
last_rescheduled_at?: Date | string | null
|
|
116226
116285
|
first_assigned_at?: Date | string | null
|
|
@@ -116274,6 +116333,7 @@ export namespace Prisma {
|
|
|
116274
116333
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
116275
116334
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
116276
116335
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
116336
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
116277
116337
|
reschedule_count?: number
|
|
116278
116338
|
last_rescheduled_at?: Date | string | null
|
|
116279
116339
|
first_assigned_at?: Date | string | null
|
|
@@ -116325,6 +116385,7 @@ export namespace Prisma {
|
|
|
116325
116385
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
116326
116386
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
116327
116387
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
116388
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
116328
116389
|
reschedule_count?: number
|
|
116329
116390
|
last_rescheduled_at?: Date | string | null
|
|
116330
116391
|
first_assigned_at?: Date | string | null
|
|
@@ -116378,6 +116439,7 @@ export namespace Prisma {
|
|
|
116378
116439
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
116379
116440
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
116380
116441
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
116442
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
116381
116443
|
reschedule_count?: number
|
|
116382
116444
|
last_rescheduled_at?: Date | string | null
|
|
116383
116445
|
first_assigned_at?: Date | string | null
|
|
@@ -118472,6 +118534,7 @@ export namespace Prisma {
|
|
|
118472
118534
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
118473
118535
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
118474
118536
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
118537
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
118475
118538
|
reschedule_count?: number
|
|
118476
118539
|
last_rescheduled_at?: Date | string | null
|
|
118477
118540
|
first_assigned_at?: Date | string | null
|
|
@@ -118526,6 +118589,7 @@ export namespace Prisma {
|
|
|
118526
118589
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
118527
118590
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
118528
118591
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
118592
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
118529
118593
|
reschedule_count?: number
|
|
118530
118594
|
last_rescheduled_at?: Date | string | null
|
|
118531
118595
|
first_assigned_at?: Date | string | null
|
|
@@ -118616,6 +118680,7 @@ export namespace Prisma {
|
|
|
118616
118680
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
118617
118681
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
118618
118682
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
118683
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
118619
118684
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
118620
118685
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
118621
118686
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -118670,6 +118735,7 @@ export namespace Prisma {
|
|
|
118670
118735
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
118671
118736
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
118672
118737
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
118738
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
118673
118739
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
118674
118740
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
118675
118741
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -119338,6 +119404,7 @@ export namespace Prisma {
|
|
|
119338
119404
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
119339
119405
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
119340
119406
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
119407
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
119341
119408
|
reschedule_count?: number
|
|
119342
119409
|
last_rescheduled_at?: Date | string | null
|
|
119343
119410
|
first_assigned_at?: Date | string | null
|
|
@@ -119453,6 +119520,7 @@ export namespace Prisma {
|
|
|
119453
119520
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
119454
119521
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
119455
119522
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
119523
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
119456
119524
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
119457
119525
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
119458
119526
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -119506,6 +119574,7 @@ export namespace Prisma {
|
|
|
119506
119574
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
119507
119575
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
119508
119576
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
119577
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
119509
119578
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
119510
119579
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
119511
119580
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -119553,6 +119622,7 @@ export namespace Prisma {
|
|
|
119553
119622
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
119554
119623
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
119555
119624
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
119625
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
119556
119626
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
119557
119627
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
119558
119628
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -120405,6 +120475,7 @@ export namespace Prisma {
|
|
|
120405
120475
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
120406
120476
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
120407
120477
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
120478
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
120408
120479
|
reschedule_count?: number
|
|
120409
120480
|
last_rescheduled_at?: Date | string | null
|
|
120410
120481
|
first_assigned_at?: Date | string | null
|
|
@@ -120554,6 +120625,7 @@ export namespace Prisma {
|
|
|
120554
120625
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
120555
120626
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
120556
120627
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
120628
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
120557
120629
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
120558
120630
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120559
120631
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -120607,6 +120679,7 @@ export namespace Prisma {
|
|
|
120607
120679
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
120608
120680
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
120609
120681
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
120682
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
120610
120683
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
120611
120684
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120612
120685
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -120654,6 +120727,7 @@ export namespace Prisma {
|
|
|
120654
120727
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
120655
120728
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
120656
120729
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
120730
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
120657
120731
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
120658
120732
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120659
120733
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -121169,6 +121243,7 @@ export namespace Prisma {
|
|
|
121169
121243
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
121170
121244
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121171
121245
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
121246
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
121172
121247
|
reschedule_count?: number
|
|
121173
121248
|
last_rescheduled_at?: Date | string | null
|
|
121174
121249
|
first_assigned_at?: Date | string | null
|
|
@@ -121484,6 +121559,7 @@ export namespace Prisma {
|
|
|
121484
121559
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
121485
121560
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121486
121561
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
121562
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
121487
121563
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
121488
121564
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121489
121565
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -121537,6 +121613,7 @@ export namespace Prisma {
|
|
|
121537
121613
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
121538
121614
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121539
121615
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
121616
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
121540
121617
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
121541
121618
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121542
121619
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -121584,6 +121661,7 @@ export namespace Prisma {
|
|
|
121584
121661
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
121585
121662
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121586
121663
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
121664
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
121587
121665
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
121588
121666
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121589
121667
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -122681,6 +122759,7 @@ export namespace Prisma {
|
|
|
122681
122759
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
122682
122760
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
122683
122761
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
122762
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
122684
122763
|
reschedule_count?: number
|
|
122685
122764
|
last_rescheduled_at?: Date | string | null
|
|
122686
122765
|
first_assigned_at?: Date | string | null
|
|
@@ -123480,6 +123559,7 @@ export namespace Prisma {
|
|
|
123480
123559
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
123481
123560
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
123482
123561
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123562
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
123483
123563
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123484
123564
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123485
123565
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -123533,6 +123613,7 @@ export namespace Prisma {
|
|
|
123533
123613
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
123534
123614
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
123535
123615
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123616
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
123536
123617
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123537
123618
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123538
123619
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -123580,6 +123661,7 @@ export namespace Prisma {
|
|
|
123580
123661
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
123581
123662
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
123582
123663
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123664
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
123583
123665
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123584
123666
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123585
123667
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -124357,6 +124439,7 @@ export namespace Prisma {
|
|
|
124357
124439
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
124358
124440
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
124359
124441
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
124442
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
124360
124443
|
reschedule_count?: number
|
|
124361
124444
|
last_rescheduled_at?: Date | string | null
|
|
124362
124445
|
first_assigned_at?: Date | string | null
|
|
@@ -124555,6 +124638,7 @@ export namespace Prisma {
|
|
|
124555
124638
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
124556
124639
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
124557
124640
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
124641
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
124558
124642
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
124559
124643
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
124560
124644
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -124608,6 +124692,7 @@ export namespace Prisma {
|
|
|
124608
124692
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
124609
124693
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
124610
124694
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
124695
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
124611
124696
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
124612
124697
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
124613
124698
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -124655,6 +124740,7 @@ export namespace Prisma {
|
|
|
124655
124740
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
124656
124741
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
124657
124742
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
124743
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
124658
124744
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
124659
124745
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
124660
124746
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -125126,6 +125212,7 @@ export namespace Prisma {
|
|
|
125126
125212
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
125127
125213
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
125128
125214
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
125215
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
125129
125216
|
reschedule_count?: number
|
|
125130
125217
|
last_rescheduled_at?: Date | string | null
|
|
125131
125218
|
first_assigned_at?: Date | string | null
|
|
@@ -125166,6 +125253,7 @@ export namespace Prisma {
|
|
|
125166
125253
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
125167
125254
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
125168
125255
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
125256
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
125169
125257
|
reschedule_count?: number
|
|
125170
125258
|
last_rescheduled_at?: Date | string | null
|
|
125171
125259
|
first_assigned_at?: Date | string | null
|
|
@@ -126043,6 +126131,7 @@ export namespace Prisma {
|
|
|
126043
126131
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
126044
126132
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
126045
126133
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
126134
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
126046
126135
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
126047
126136
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
126048
126137
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -126096,6 +126185,7 @@ export namespace Prisma {
|
|
|
126096
126185
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
126097
126186
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
126098
126187
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
126188
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
126099
126189
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
126100
126190
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
126101
126191
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -126143,6 +126233,7 @@ export namespace Prisma {
|
|
|
126143
126233
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
126144
126234
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
126145
126235
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
126236
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
126146
126237
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
126147
126238
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
126148
126239
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -126177,6 +126268,7 @@ export namespace Prisma {
|
|
|
126177
126268
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
126178
126269
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
126179
126270
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
126271
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
126180
126272
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
126181
126273
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
126182
126274
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -126230,6 +126322,7 @@ export namespace Prisma {
|
|
|
126230
126322
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
126231
126323
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
126232
126324
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
126325
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
126233
126326
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
126234
126327
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
126235
126328
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -126277,6 +126370,7 @@ export namespace Prisma {
|
|
|
126277
126370
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
126278
126371
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
126279
126372
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
126373
|
+
interview_analysis_ranges?: NullableJsonNullValueInput | InputJsonValue
|
|
126280
126374
|
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
126281
126375
|
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
126282
126376
|
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|