@adaptware/eagles-db 0.1.60 → 0.1.61
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 +6 -5
- package/client/index-browser.js +1 -0
- package/client/index.d.ts +87 -1
- package/client/index.js +6 -5
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +1 -0
- package/client/wasm.js +1 -0
- package/package.json +1 -1
- package/prisma/schema/interview.prisma +1 -0
- package/prisma/.DS_Store +0 -0
package/client/index.d.ts
CHANGED
|
@@ -32809,6 +32809,7 @@ export namespace Prisma {
|
|
|
32809
32809
|
interviewer_feedback: number
|
|
32810
32810
|
section_feedback: number
|
|
32811
32811
|
interview_preparation: number
|
|
32812
|
+
final_feedback: number
|
|
32812
32813
|
created_at: number
|
|
32813
32814
|
updated_at: number
|
|
32814
32815
|
created_by: number
|
|
@@ -32909,6 +32910,7 @@ export namespace Prisma {
|
|
|
32909
32910
|
interviewer_feedback?: true
|
|
32910
32911
|
section_feedback?: true
|
|
32911
32912
|
interview_preparation?: true
|
|
32913
|
+
final_feedback?: true
|
|
32912
32914
|
created_at?: true
|
|
32913
32915
|
updated_at?: true
|
|
32914
32916
|
created_by?: true
|
|
@@ -33030,6 +33032,7 @@ export namespace Prisma {
|
|
|
33030
33032
|
interviewer_feedback: JsonValue | null
|
|
33031
33033
|
section_feedback: JsonValue[]
|
|
33032
33034
|
interview_preparation: JsonValue | null
|
|
33035
|
+
final_feedback: JsonValue | null
|
|
33033
33036
|
created_at: Date
|
|
33034
33037
|
updated_at: Date
|
|
33035
33038
|
created_by: string
|
|
@@ -33083,6 +33086,7 @@ export namespace Prisma {
|
|
|
33083
33086
|
interviewer_feedback?: boolean
|
|
33084
33087
|
section_feedback?: boolean
|
|
33085
33088
|
interview_preparation?: boolean
|
|
33089
|
+
final_feedback?: boolean
|
|
33086
33090
|
created_at?: boolean
|
|
33087
33091
|
updated_at?: boolean
|
|
33088
33092
|
created_by?: boolean
|
|
@@ -33130,6 +33134,7 @@ export namespace Prisma {
|
|
|
33130
33134
|
interviewer_feedback?: boolean
|
|
33131
33135
|
section_feedback?: boolean
|
|
33132
33136
|
interview_preparation?: boolean
|
|
33137
|
+
final_feedback?: boolean
|
|
33133
33138
|
created_at?: boolean
|
|
33134
33139
|
updated_at?: boolean
|
|
33135
33140
|
created_by?: boolean
|
|
@@ -33171,6 +33176,7 @@ export namespace Prisma {
|
|
|
33171
33176
|
interviewer_feedback?: boolean
|
|
33172
33177
|
section_feedback?: boolean
|
|
33173
33178
|
interview_preparation?: boolean
|
|
33179
|
+
final_feedback?: boolean
|
|
33174
33180
|
created_at?: boolean
|
|
33175
33181
|
updated_at?: boolean
|
|
33176
33182
|
created_by?: boolean
|
|
@@ -33212,6 +33218,7 @@ export namespace Prisma {
|
|
|
33212
33218
|
interviewer_feedback?: boolean
|
|
33213
33219
|
section_feedback?: boolean
|
|
33214
33220
|
interview_preparation?: boolean
|
|
33221
|
+
final_feedback?: boolean
|
|
33215
33222
|
created_at?: boolean
|
|
33216
33223
|
updated_at?: boolean
|
|
33217
33224
|
created_by?: boolean
|
|
@@ -33219,7 +33226,7 @@ export namespace Prisma {
|
|
|
33219
33226
|
is_active?: boolean
|
|
33220
33227
|
}
|
|
33221
33228
|
|
|
33222
|
-
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" | "room_name" | "interview_summary" | "scheduled_start_time" | "scheduled_end_time" | "actual_start_time" | "actual_end_time" | "recording_url" | "interview_status" | "google_event_id" | "ai_interview_feedback" | "interview_feedback" | "overall_feedback" | "interview_rating" | "ai_feedback" | "human_feedback" | "interviewer_feedback" | "section_feedback" | "interview_preparation" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["interview"]>
|
|
33229
|
+
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" | "room_name" | "interview_summary" | "scheduled_start_time" | "scheduled_end_time" | "actual_start_time" | "actual_end_time" | "recording_url" | "interview_status" | "google_event_id" | "ai_interview_feedback" | "interview_feedback" | "overall_feedback" | "interview_rating" | "ai_feedback" | "human_feedback" | "interviewer_feedback" | "section_feedback" | "interview_preparation" | "final_feedback" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["interview"]>
|
|
33223
33230
|
export type InterviewInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33224
33231
|
candidate?: boolean | Interview$candidateArgs<ExtArgs>
|
|
33225
33232
|
interviewer?: boolean | Interview$interviewerArgs<ExtArgs>
|
|
@@ -33309,6 +33316,7 @@ export namespace Prisma {
|
|
|
33309
33316
|
interviewer_feedback: Prisma.JsonValue | null
|
|
33310
33317
|
section_feedback: Prisma.JsonValue[]
|
|
33311
33318
|
interview_preparation: Prisma.JsonValue | null
|
|
33319
|
+
final_feedback: Prisma.JsonValue | null
|
|
33312
33320
|
/**
|
|
33313
33321
|
* Audit fields
|
|
33314
33322
|
*/
|
|
@@ -33778,6 +33786,7 @@ export namespace Prisma {
|
|
|
33778
33786
|
readonly interviewer_feedback: FieldRef<"Interview", 'Json'>
|
|
33779
33787
|
readonly section_feedback: FieldRef<"Interview", 'Json[]'>
|
|
33780
33788
|
readonly interview_preparation: FieldRef<"Interview", 'Json'>
|
|
33789
|
+
readonly final_feedback: FieldRef<"Interview", 'Json'>
|
|
33781
33790
|
readonly created_at: FieldRef<"Interview", 'DateTime'>
|
|
33782
33791
|
readonly updated_at: FieldRef<"Interview", 'DateTime'>
|
|
33783
33792
|
readonly created_by: FieldRef<"Interview", 'String'>
|
|
@@ -54992,6 +55001,7 @@ export namespace Prisma {
|
|
|
54992
55001
|
interviewer_feedback: 'interviewer_feedback',
|
|
54993
55002
|
section_feedback: 'section_feedback',
|
|
54994
55003
|
interview_preparation: 'interview_preparation',
|
|
55004
|
+
final_feedback: 'final_feedback',
|
|
54995
55005
|
created_at: 'created_at',
|
|
54996
55006
|
updated_at: 'updated_at',
|
|
54997
55007
|
created_by: 'created_by',
|
|
@@ -58239,6 +58249,7 @@ export namespace Prisma {
|
|
|
58239
58249
|
interviewer_feedback?: JsonNullableFilter<"Interview">
|
|
58240
58250
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
58241
58251
|
interview_preparation?: JsonNullableFilter<"Interview">
|
|
58252
|
+
final_feedback?: JsonNullableFilter<"Interview">
|
|
58242
58253
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
58243
58254
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
58244
58255
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -58285,6 +58296,7 @@ export namespace Prisma {
|
|
|
58285
58296
|
interviewer_feedback?: SortOrderInput | SortOrder
|
|
58286
58297
|
section_feedback?: SortOrder
|
|
58287
58298
|
interview_preparation?: SortOrderInput | SortOrder
|
|
58299
|
+
final_feedback?: SortOrderInput | SortOrder
|
|
58288
58300
|
created_at?: SortOrder
|
|
58289
58301
|
updated_at?: SortOrder
|
|
58290
58302
|
created_by?: SortOrder
|
|
@@ -58335,6 +58347,7 @@ export namespace Prisma {
|
|
|
58335
58347
|
interviewer_feedback?: JsonNullableFilter<"Interview">
|
|
58336
58348
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
58337
58349
|
interview_preparation?: JsonNullableFilter<"Interview">
|
|
58350
|
+
final_feedback?: JsonNullableFilter<"Interview">
|
|
58338
58351
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
58339
58352
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
58340
58353
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -58381,6 +58394,7 @@ export namespace Prisma {
|
|
|
58381
58394
|
interviewer_feedback?: SortOrderInput | SortOrder
|
|
58382
58395
|
section_feedback?: SortOrder
|
|
58383
58396
|
interview_preparation?: SortOrderInput | SortOrder
|
|
58397
|
+
final_feedback?: SortOrderInput | SortOrder
|
|
58384
58398
|
created_at?: SortOrder
|
|
58385
58399
|
updated_at?: SortOrder
|
|
58386
58400
|
created_by?: SortOrder
|
|
@@ -58423,6 +58437,7 @@ export namespace Prisma {
|
|
|
58423
58437
|
interviewer_feedback?: JsonNullableWithAggregatesFilter<"Interview">
|
|
58424
58438
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
58425
58439
|
interview_preparation?: JsonNullableWithAggregatesFilter<"Interview">
|
|
58440
|
+
final_feedback?: JsonNullableWithAggregatesFilter<"Interview">
|
|
58426
58441
|
created_at?: DateTimeWithAggregatesFilter<"Interview"> | Date | string
|
|
58427
58442
|
updated_at?: DateTimeWithAggregatesFilter<"Interview"> | Date | string
|
|
58428
58443
|
created_by?: StringWithAggregatesFilter<"Interview"> | string
|
|
@@ -62854,6 +62869,7 @@ export namespace Prisma {
|
|
|
62854
62869
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62855
62870
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
62856
62871
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
62872
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62857
62873
|
created_at?: Date | string
|
|
62858
62874
|
updated_at?: Date | string
|
|
62859
62875
|
created_by: string
|
|
@@ -62900,6 +62916,7 @@ export namespace Prisma {
|
|
|
62900
62916
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62901
62917
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
62902
62918
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
62919
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62903
62920
|
created_at?: Date | string
|
|
62904
62921
|
updated_at?: Date | string
|
|
62905
62922
|
created_by: string
|
|
@@ -62932,6 +62949,7 @@ export namespace Prisma {
|
|
|
62932
62949
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62933
62950
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
62934
62951
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
62952
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62935
62953
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62936
62954
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62937
62955
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -62978,6 +62996,7 @@ export namespace Prisma {
|
|
|
62978
62996
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62979
62997
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
62980
62998
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
62999
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62981
63000
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62982
63001
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62983
63002
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -63017,6 +63036,7 @@ export namespace Prisma {
|
|
|
63017
63036
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63018
63037
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
63019
63038
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
63039
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63020
63040
|
created_at?: Date | string
|
|
63021
63041
|
updated_at?: Date | string
|
|
63022
63042
|
created_by: string
|
|
@@ -63044,6 +63064,7 @@ export namespace Prisma {
|
|
|
63044
63064
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63045
63065
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
63046
63066
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
63067
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63047
63068
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63048
63069
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63049
63070
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -63078,6 +63099,7 @@ export namespace Prisma {
|
|
|
63078
63099
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63079
63100
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
63080
63101
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
63102
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63081
63103
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63082
63104
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63083
63105
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -67372,6 +67394,7 @@ export namespace Prisma {
|
|
|
67372
67394
|
interviewer_feedback?: SortOrder
|
|
67373
67395
|
section_feedback?: SortOrder
|
|
67374
67396
|
interview_preparation?: SortOrder
|
|
67397
|
+
final_feedback?: SortOrder
|
|
67375
67398
|
created_at?: SortOrder
|
|
67376
67399
|
updated_at?: SortOrder
|
|
67377
67400
|
created_by?: SortOrder
|
|
@@ -76797,6 +76820,7 @@ export namespace Prisma {
|
|
|
76797
76820
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76798
76821
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
76799
76822
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
76823
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76800
76824
|
created_at?: Date | string
|
|
76801
76825
|
updated_at?: Date | string
|
|
76802
76826
|
created_by: string
|
|
@@ -76841,6 +76865,7 @@ export namespace Prisma {
|
|
|
76841
76865
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76842
76866
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
76843
76867
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
76868
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76844
76869
|
created_at?: Date | string
|
|
76845
76870
|
updated_at?: Date | string
|
|
76846
76871
|
created_by: string
|
|
@@ -77549,6 +77574,7 @@ export namespace Prisma {
|
|
|
77549
77574
|
interviewer_feedback?: JsonNullableFilter<"Interview">
|
|
77550
77575
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
77551
77576
|
interview_preparation?: JsonNullableFilter<"Interview">
|
|
77577
|
+
final_feedback?: JsonNullableFilter<"Interview">
|
|
77552
77578
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
77553
77579
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
77554
77580
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -82261,6 +82287,7 @@ export namespace Prisma {
|
|
|
82261
82287
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82262
82288
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
82263
82289
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82290
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82264
82291
|
created_at?: Date | string
|
|
82265
82292
|
updated_at?: Date | string
|
|
82266
82293
|
created_by: string
|
|
@@ -82305,6 +82332,7 @@ export namespace Prisma {
|
|
|
82305
82332
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82306
82333
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
82307
82334
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82335
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82308
82336
|
created_at?: Date | string
|
|
82309
82337
|
updated_at?: Date | string
|
|
82310
82338
|
created_by: string
|
|
@@ -82811,6 +82839,7 @@ export namespace Prisma {
|
|
|
82811
82839
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82812
82840
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
82813
82841
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82842
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82814
82843
|
created_at?: Date | string
|
|
82815
82844
|
updated_at?: Date | string
|
|
82816
82845
|
created_by: string
|
|
@@ -82856,6 +82885,7 @@ export namespace Prisma {
|
|
|
82856
82885
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82857
82886
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
82858
82887
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82888
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82859
82889
|
created_at?: Date | string
|
|
82860
82890
|
updated_at?: Date | string
|
|
82861
82891
|
created_by: string
|
|
@@ -82903,6 +82933,7 @@ export namespace Prisma {
|
|
|
82903
82933
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82904
82934
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
82905
82935
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82936
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82906
82937
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82907
82938
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82908
82939
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -82948,6 +82979,7 @@ export namespace Prisma {
|
|
|
82948
82979
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82949
82980
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
82950
82981
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82982
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82951
82983
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82952
82984
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82953
82985
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -85987,6 +86019,7 @@ export namespace Prisma {
|
|
|
85987
86019
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
85988
86020
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
85989
86021
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86022
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
85990
86023
|
created_at?: Date | string
|
|
85991
86024
|
updated_at?: Date | string
|
|
85992
86025
|
created_by: string
|
|
@@ -86032,6 +86065,7 @@ export namespace Prisma {
|
|
|
86032
86065
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86033
86066
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
86034
86067
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86068
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86035
86069
|
created_at?: Date | string
|
|
86036
86070
|
updated_at?: Date | string
|
|
86037
86071
|
created_by: string
|
|
@@ -86079,6 +86113,7 @@ export namespace Prisma {
|
|
|
86079
86113
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86080
86114
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
86081
86115
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86116
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86082
86117
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86083
86118
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86084
86119
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -86124,6 +86159,7 @@ export namespace Prisma {
|
|
|
86124
86159
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86125
86160
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
86126
86161
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86162
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86127
86163
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86128
86164
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86129
86165
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -86284,6 +86320,7 @@ export namespace Prisma {
|
|
|
86284
86320
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86285
86321
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
86286
86322
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86323
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86287
86324
|
created_at?: Date | string
|
|
86288
86325
|
updated_at?: Date | string
|
|
86289
86326
|
created_by: string
|
|
@@ -86328,6 +86365,7 @@ export namespace Prisma {
|
|
|
86328
86365
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86329
86366
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
86330
86367
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86368
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86331
86369
|
created_at?: Date | string
|
|
86332
86370
|
updated_at?: Date | string
|
|
86333
86371
|
created_by: string
|
|
@@ -88813,6 +88851,7 @@ export namespace Prisma {
|
|
|
88813
88851
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
88814
88852
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
88815
88853
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
88854
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
88816
88855
|
created_at?: Date | string
|
|
88817
88856
|
updated_at?: Date | string
|
|
88818
88857
|
created_by: string
|
|
@@ -88858,6 +88897,7 @@ export namespace Prisma {
|
|
|
88858
88897
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
88859
88898
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
88860
88899
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
88900
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
88861
88901
|
created_at?: Date | string
|
|
88862
88902
|
updated_at?: Date | string
|
|
88863
88903
|
created_by: string
|
|
@@ -89410,6 +89450,7 @@ export namespace Prisma {
|
|
|
89410
89450
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89411
89451
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
89412
89452
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
89453
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89413
89454
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89414
89455
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89415
89456
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89455,6 +89496,7 @@ export namespace Prisma {
|
|
|
89455
89496
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89456
89497
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
89457
89498
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
89499
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89458
89500
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89459
89501
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89460
89502
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89923,6 +89965,7 @@ export namespace Prisma {
|
|
|
89923
89965
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89924
89966
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
89925
89967
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
89968
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89926
89969
|
created_at?: Date | string
|
|
89927
89970
|
updated_at?: Date | string
|
|
89928
89971
|
created_by: string
|
|
@@ -89967,6 +90010,7 @@ export namespace Prisma {
|
|
|
89967
90010
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89968
90011
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
89969
90012
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
90013
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89970
90014
|
created_at?: Date | string
|
|
89971
90015
|
updated_at?: Date | string
|
|
89972
90016
|
created_by: string
|
|
@@ -92025,6 +92069,7 @@ export namespace Prisma {
|
|
|
92025
92069
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92026
92070
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
92027
92071
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
92072
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92028
92073
|
created_at?: Date | string
|
|
92029
92074
|
updated_at?: Date | string
|
|
92030
92075
|
created_by: string
|
|
@@ -92069,6 +92114,7 @@ export namespace Prisma {
|
|
|
92069
92114
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92070
92115
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
92071
92116
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
92117
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92072
92118
|
created_at?: Date | string
|
|
92073
92119
|
updated_at?: Date | string
|
|
92074
92120
|
created_by: string
|
|
@@ -92871,6 +92917,7 @@ export namespace Prisma {
|
|
|
92871
92917
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92872
92918
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
92873
92919
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
92920
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92874
92921
|
created_at?: Date | string
|
|
92875
92922
|
updated_at?: Date | string
|
|
92876
92923
|
created_by: string
|
|
@@ -92916,6 +92963,7 @@ export namespace Prisma {
|
|
|
92916
92963
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92917
92964
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
92918
92965
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
92966
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92919
92967
|
created_at?: Date | string
|
|
92920
92968
|
updated_at?: Date | string
|
|
92921
92969
|
created_by: string
|
|
@@ -93080,6 +93128,7 @@ export namespace Prisma {
|
|
|
93080
93128
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93081
93129
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
93082
93130
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93131
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93083
93132
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93084
93133
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93085
93134
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -93125,6 +93174,7 @@ export namespace Prisma {
|
|
|
93125
93174
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93126
93175
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
93127
93176
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93177
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93128
93178
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93129
93179
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93130
93180
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -93251,6 +93301,7 @@ export namespace Prisma {
|
|
|
93251
93301
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93252
93302
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
93253
93303
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93304
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93254
93305
|
created_at?: Date | string
|
|
93255
93306
|
updated_at?: Date | string
|
|
93256
93307
|
created_by: string
|
|
@@ -93296,6 +93347,7 @@ export namespace Prisma {
|
|
|
93296
93347
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93297
93348
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
93298
93349
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93350
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93299
93351
|
created_at?: Date | string
|
|
93300
93352
|
updated_at?: Date | string
|
|
93301
93353
|
created_by: string
|
|
@@ -93447,6 +93499,7 @@ export namespace Prisma {
|
|
|
93447
93499
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93448
93500
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
93449
93501
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93502
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93450
93503
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93451
93504
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93452
93505
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -93492,6 +93545,7 @@ export namespace Prisma {
|
|
|
93492
93545
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93493
93546
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
93494
93547
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93548
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93495
93549
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93496
93550
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93497
93551
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -94197,6 +94251,7 @@ export namespace Prisma {
|
|
|
94197
94251
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94198
94252
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
94199
94253
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
94254
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94200
94255
|
created_at?: Date | string
|
|
94201
94256
|
updated_at?: Date | string
|
|
94202
94257
|
created_by: string
|
|
@@ -94241,6 +94296,7 @@ export namespace Prisma {
|
|
|
94241
94296
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94242
94297
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
94243
94298
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
94299
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94244
94300
|
created_at?: Date | string
|
|
94245
94301
|
updated_at?: Date | string
|
|
94246
94302
|
created_by: string
|
|
@@ -94283,6 +94339,7 @@ export namespace Prisma {
|
|
|
94283
94339
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94284
94340
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
94285
94341
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
94342
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94286
94343
|
created_at?: Date | string
|
|
94287
94344
|
updated_at?: Date | string
|
|
94288
94345
|
created_by: string
|
|
@@ -94327,6 +94384,7 @@ export namespace Prisma {
|
|
|
94327
94384
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94328
94385
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
94329
94386
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
94387
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94330
94388
|
created_at?: Date | string
|
|
94331
94389
|
updated_at?: Date | string
|
|
94332
94390
|
created_by: string
|
|
@@ -96081,6 +96139,7 @@ export namespace Prisma {
|
|
|
96081
96139
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96082
96140
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
96083
96141
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
96142
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96084
96143
|
created_at?: Date | string
|
|
96085
96144
|
updated_at?: Date | string
|
|
96086
96145
|
created_by: string
|
|
@@ -96173,6 +96232,7 @@ export namespace Prisma {
|
|
|
96173
96232
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96174
96233
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
96175
96234
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
96235
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96176
96236
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96177
96237
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96178
96238
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -96217,6 +96277,7 @@ export namespace Prisma {
|
|
|
96217
96277
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96218
96278
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
96219
96279
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
96280
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96220
96281
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96221
96282
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96222
96283
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -96255,6 +96316,7 @@ export namespace Prisma {
|
|
|
96255
96316
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96256
96317
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
96257
96318
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
96319
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96258
96320
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96259
96321
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96260
96322
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97015,6 +97077,7 @@ export namespace Prisma {
|
|
|
97015
97077
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97016
97078
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
97017
97079
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97080
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97018
97081
|
created_at?: Date | string
|
|
97019
97082
|
updated_at?: Date | string
|
|
97020
97083
|
created_by: string
|
|
@@ -97151,6 +97214,7 @@ export namespace Prisma {
|
|
|
97151
97214
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97152
97215
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
97153
97216
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97217
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97154
97218
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97155
97219
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97156
97220
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97195,6 +97259,7 @@ export namespace Prisma {
|
|
|
97195
97259
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97196
97260
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
97197
97261
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97262
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97198
97263
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97199
97264
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97200
97265
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97233,6 +97298,7 @@ export namespace Prisma {
|
|
|
97233
97298
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97234
97299
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
97235
97300
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97301
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97236
97302
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97237
97303
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97238
97304
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97666,6 +97732,7 @@ export namespace Prisma {
|
|
|
97666
97732
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97667
97733
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
97668
97734
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97735
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97669
97736
|
created_at?: Date | string
|
|
97670
97737
|
updated_at?: Date | string
|
|
97671
97738
|
created_by: string
|
|
@@ -97945,6 +98012,7 @@ export namespace Prisma {
|
|
|
97945
98012
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97946
98013
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
97947
98014
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98015
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97948
98016
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97949
98017
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97950
98018
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97989,6 +98057,7 @@ export namespace Prisma {
|
|
|
97989
98057
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97990
98058
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
97991
98059
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98060
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97992
98061
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97993
98062
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97994
98063
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -98027,6 +98096,7 @@ export namespace Prisma {
|
|
|
98027
98096
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98028
98097
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
98029
98098
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98099
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98030
98100
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98031
98101
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98032
98102
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -98913,6 +98983,7 @@ export namespace Prisma {
|
|
|
98913
98983
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98914
98984
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
98915
98985
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98986
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98916
98987
|
created_at?: Date | string
|
|
98917
98988
|
updated_at?: Date | string
|
|
98918
98989
|
created_by: string
|
|
@@ -99545,6 +99616,7 @@ export namespace Prisma {
|
|
|
99545
99616
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99546
99617
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
99547
99618
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
99619
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99548
99620
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99549
99621
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99550
99622
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -99589,6 +99661,7 @@ export namespace Prisma {
|
|
|
99589
99661
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99590
99662
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
99591
99663
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
99664
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99592
99665
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99593
99666
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99594
99667
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -99627,6 +99700,7 @@ export namespace Prisma {
|
|
|
99627
99700
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99628
99701
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
99629
99702
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
99703
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99630
99704
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99631
99705
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99632
99706
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100283,6 +100357,7 @@ export namespace Prisma {
|
|
|
100283
100357
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100284
100358
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
100285
100359
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100360
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100286
100361
|
created_at?: Date | string
|
|
100287
100362
|
updated_at?: Date | string
|
|
100288
100363
|
created_by: string
|
|
@@ -100451,6 +100526,7 @@ export namespace Prisma {
|
|
|
100451
100526
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100452
100527
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
100453
100528
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100529
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100454
100530
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100455
100531
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100456
100532
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100495,6 +100571,7 @@ export namespace Prisma {
|
|
|
100495
100571
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100496
100572
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
100497
100573
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100574
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100498
100575
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100499
100576
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100500
100577
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100533,6 +100610,7 @@ export namespace Prisma {
|
|
|
100533
100610
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100534
100611
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
100535
100612
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100613
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100536
100614
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100537
100615
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100538
100616
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100951,6 +101029,7 @@ export namespace Prisma {
|
|
|
100951
101029
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100952
101030
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
100953
101031
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101032
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100954
101033
|
created_at?: Date | string
|
|
100955
101034
|
updated_at?: Date | string
|
|
100956
101035
|
created_by: string
|
|
@@ -100984,6 +101063,7 @@ export namespace Prisma {
|
|
|
100984
101063
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100985
101064
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
100986
101065
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101066
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100987
101067
|
created_at?: Date | string
|
|
100988
101068
|
updated_at?: Date | string
|
|
100989
101069
|
created_by: string
|
|
@@ -101617,6 +101697,7 @@ export namespace Prisma {
|
|
|
101617
101697
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101618
101698
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101619
101699
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101700
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101620
101701
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101621
101702
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101622
101703
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101661,6 +101742,7 @@ export namespace Prisma {
|
|
|
101661
101742
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101662
101743
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101663
101744
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101745
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101664
101746
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101665
101747
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101666
101748
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101699,6 +101781,7 @@ export namespace Prisma {
|
|
|
101699
101781
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101700
101782
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101701
101783
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101784
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101702
101785
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101703
101786
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101704
101787
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101726,6 +101809,7 @@ export namespace Prisma {
|
|
|
101726
101809
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101727
101810
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101728
101811
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101812
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101729
101813
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101730
101814
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101731
101815
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101770,6 +101854,7 @@ export namespace Prisma {
|
|
|
101770
101854
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101771
101855
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101772
101856
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101857
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101773
101858
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101774
101859
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101775
101860
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101808,6 +101893,7 @@ export namespace Prisma {
|
|
|
101808
101893
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101809
101894
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101810
101895
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101896
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101811
101897
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101812
101898
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101813
101899
|
created_by?: StringFieldUpdateOperationsInput | string
|