@adaptware/eagles-db 0.1.59 → 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 +5 -3
- package/client/index-browser.js +2 -0
- package/client/index.d.ts +173 -1
- package/client/index.js +5 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +2 -0
- package/client/wasm.js +2 -0
- package/package.json +1 -1
- package/prisma/schema/interview.prisma +2 -0
package/client/index.d.ts
CHANGED
|
@@ -32808,6 +32808,8 @@ export namespace Prisma {
|
|
|
32808
32808
|
human_feedback: number
|
|
32809
32809
|
interviewer_feedback: number
|
|
32810
32810
|
section_feedback: number
|
|
32811
|
+
interview_preparation: number
|
|
32812
|
+
final_feedback: number
|
|
32811
32813
|
created_at: number
|
|
32812
32814
|
updated_at: number
|
|
32813
32815
|
created_by: number
|
|
@@ -32907,6 +32909,8 @@ export namespace Prisma {
|
|
|
32907
32909
|
human_feedback?: true
|
|
32908
32910
|
interviewer_feedback?: true
|
|
32909
32911
|
section_feedback?: true
|
|
32912
|
+
interview_preparation?: true
|
|
32913
|
+
final_feedback?: true
|
|
32910
32914
|
created_at?: true
|
|
32911
32915
|
updated_at?: true
|
|
32912
32916
|
created_by?: true
|
|
@@ -33027,6 +33031,8 @@ export namespace Prisma {
|
|
|
33027
33031
|
human_feedback: JsonValue | null
|
|
33028
33032
|
interviewer_feedback: JsonValue | null
|
|
33029
33033
|
section_feedback: JsonValue[]
|
|
33034
|
+
interview_preparation: JsonValue | null
|
|
33035
|
+
final_feedback: JsonValue | null
|
|
33030
33036
|
created_at: Date
|
|
33031
33037
|
updated_at: Date
|
|
33032
33038
|
created_by: string
|
|
@@ -33079,6 +33085,8 @@ export namespace Prisma {
|
|
|
33079
33085
|
human_feedback?: boolean
|
|
33080
33086
|
interviewer_feedback?: boolean
|
|
33081
33087
|
section_feedback?: boolean
|
|
33088
|
+
interview_preparation?: boolean
|
|
33089
|
+
final_feedback?: boolean
|
|
33082
33090
|
created_at?: boolean
|
|
33083
33091
|
updated_at?: boolean
|
|
33084
33092
|
created_by?: boolean
|
|
@@ -33125,6 +33133,8 @@ export namespace Prisma {
|
|
|
33125
33133
|
human_feedback?: boolean
|
|
33126
33134
|
interviewer_feedback?: boolean
|
|
33127
33135
|
section_feedback?: boolean
|
|
33136
|
+
interview_preparation?: boolean
|
|
33137
|
+
final_feedback?: boolean
|
|
33128
33138
|
created_at?: boolean
|
|
33129
33139
|
updated_at?: boolean
|
|
33130
33140
|
created_by?: boolean
|
|
@@ -33165,6 +33175,8 @@ export namespace Prisma {
|
|
|
33165
33175
|
human_feedback?: boolean
|
|
33166
33176
|
interviewer_feedback?: boolean
|
|
33167
33177
|
section_feedback?: boolean
|
|
33178
|
+
interview_preparation?: boolean
|
|
33179
|
+
final_feedback?: boolean
|
|
33168
33180
|
created_at?: boolean
|
|
33169
33181
|
updated_at?: boolean
|
|
33170
33182
|
created_by?: boolean
|
|
@@ -33205,6 +33217,8 @@ export namespace Prisma {
|
|
|
33205
33217
|
human_feedback?: boolean
|
|
33206
33218
|
interviewer_feedback?: boolean
|
|
33207
33219
|
section_feedback?: boolean
|
|
33220
|
+
interview_preparation?: boolean
|
|
33221
|
+
final_feedback?: boolean
|
|
33208
33222
|
created_at?: boolean
|
|
33209
33223
|
updated_at?: boolean
|
|
33210
33224
|
created_by?: boolean
|
|
@@ -33212,7 +33226,7 @@ export namespace Prisma {
|
|
|
33212
33226
|
is_active?: boolean
|
|
33213
33227
|
}
|
|
33214
33228
|
|
|
33215
|
-
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" | "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"]>
|
|
33216
33230
|
export type InterviewInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33217
33231
|
candidate?: boolean | Interview$candidateArgs<ExtArgs>
|
|
33218
33232
|
interviewer?: boolean | Interview$interviewerArgs<ExtArgs>
|
|
@@ -33301,6 +33315,8 @@ export namespace Prisma {
|
|
|
33301
33315
|
human_feedback: Prisma.JsonValue | null
|
|
33302
33316
|
interviewer_feedback: Prisma.JsonValue | null
|
|
33303
33317
|
section_feedback: Prisma.JsonValue[]
|
|
33318
|
+
interview_preparation: Prisma.JsonValue | null
|
|
33319
|
+
final_feedback: Prisma.JsonValue | null
|
|
33304
33320
|
/**
|
|
33305
33321
|
* Audit fields
|
|
33306
33322
|
*/
|
|
@@ -33769,6 +33785,8 @@ export namespace Prisma {
|
|
|
33769
33785
|
readonly human_feedback: FieldRef<"Interview", 'Json'>
|
|
33770
33786
|
readonly interviewer_feedback: FieldRef<"Interview", 'Json'>
|
|
33771
33787
|
readonly section_feedback: FieldRef<"Interview", 'Json[]'>
|
|
33788
|
+
readonly interview_preparation: FieldRef<"Interview", 'Json'>
|
|
33789
|
+
readonly final_feedback: FieldRef<"Interview", 'Json'>
|
|
33772
33790
|
readonly created_at: FieldRef<"Interview", 'DateTime'>
|
|
33773
33791
|
readonly updated_at: FieldRef<"Interview", 'DateTime'>
|
|
33774
33792
|
readonly created_by: FieldRef<"Interview", 'String'>
|
|
@@ -54982,6 +55000,8 @@ export namespace Prisma {
|
|
|
54982
55000
|
human_feedback: 'human_feedback',
|
|
54983
55001
|
interviewer_feedback: 'interviewer_feedback',
|
|
54984
55002
|
section_feedback: 'section_feedback',
|
|
55003
|
+
interview_preparation: 'interview_preparation',
|
|
55004
|
+
final_feedback: 'final_feedback',
|
|
54985
55005
|
created_at: 'created_at',
|
|
54986
55006
|
updated_at: 'updated_at',
|
|
54987
55007
|
created_by: 'created_by',
|
|
@@ -58228,6 +58248,8 @@ export namespace Prisma {
|
|
|
58228
58248
|
human_feedback?: JsonNullableFilter<"Interview">
|
|
58229
58249
|
interviewer_feedback?: JsonNullableFilter<"Interview">
|
|
58230
58250
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
58251
|
+
interview_preparation?: JsonNullableFilter<"Interview">
|
|
58252
|
+
final_feedback?: JsonNullableFilter<"Interview">
|
|
58231
58253
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
58232
58254
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
58233
58255
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -58273,6 +58295,8 @@ export namespace Prisma {
|
|
|
58273
58295
|
human_feedback?: SortOrderInput | SortOrder
|
|
58274
58296
|
interviewer_feedback?: SortOrderInput | SortOrder
|
|
58275
58297
|
section_feedback?: SortOrder
|
|
58298
|
+
interview_preparation?: SortOrderInput | SortOrder
|
|
58299
|
+
final_feedback?: SortOrderInput | SortOrder
|
|
58276
58300
|
created_at?: SortOrder
|
|
58277
58301
|
updated_at?: SortOrder
|
|
58278
58302
|
created_by?: SortOrder
|
|
@@ -58322,6 +58346,8 @@ export namespace Prisma {
|
|
|
58322
58346
|
human_feedback?: JsonNullableFilter<"Interview">
|
|
58323
58347
|
interviewer_feedback?: JsonNullableFilter<"Interview">
|
|
58324
58348
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
58349
|
+
interview_preparation?: JsonNullableFilter<"Interview">
|
|
58350
|
+
final_feedback?: JsonNullableFilter<"Interview">
|
|
58325
58351
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
58326
58352
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
58327
58353
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -58367,6 +58393,8 @@ export namespace Prisma {
|
|
|
58367
58393
|
human_feedback?: SortOrderInput | SortOrder
|
|
58368
58394
|
interviewer_feedback?: SortOrderInput | SortOrder
|
|
58369
58395
|
section_feedback?: SortOrder
|
|
58396
|
+
interview_preparation?: SortOrderInput | SortOrder
|
|
58397
|
+
final_feedback?: SortOrderInput | SortOrder
|
|
58370
58398
|
created_at?: SortOrder
|
|
58371
58399
|
updated_at?: SortOrder
|
|
58372
58400
|
created_by?: SortOrder
|
|
@@ -58408,6 +58436,8 @@ export namespace Prisma {
|
|
|
58408
58436
|
human_feedback?: JsonNullableWithAggregatesFilter<"Interview">
|
|
58409
58437
|
interviewer_feedback?: JsonNullableWithAggregatesFilter<"Interview">
|
|
58410
58438
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
58439
|
+
interview_preparation?: JsonNullableWithAggregatesFilter<"Interview">
|
|
58440
|
+
final_feedback?: JsonNullableWithAggregatesFilter<"Interview">
|
|
58411
58441
|
created_at?: DateTimeWithAggregatesFilter<"Interview"> | Date | string
|
|
58412
58442
|
updated_at?: DateTimeWithAggregatesFilter<"Interview"> | Date | string
|
|
58413
58443
|
created_by?: StringWithAggregatesFilter<"Interview"> | string
|
|
@@ -62838,6 +62868,8 @@ export namespace Prisma {
|
|
|
62838
62868
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62839
62869
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62840
62870
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
62871
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
62872
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62841
62873
|
created_at?: Date | string
|
|
62842
62874
|
updated_at?: Date | string
|
|
62843
62875
|
created_by: string
|
|
@@ -62883,6 +62915,8 @@ export namespace Prisma {
|
|
|
62883
62915
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62884
62916
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62885
62917
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
62918
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
62919
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62886
62920
|
created_at?: Date | string
|
|
62887
62921
|
updated_at?: Date | string
|
|
62888
62922
|
created_by: string
|
|
@@ -62914,6 +62948,8 @@ export namespace Prisma {
|
|
|
62914
62948
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62915
62949
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62916
62950
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
62951
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
62952
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62917
62953
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62918
62954
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62919
62955
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -62959,6 +62995,8 @@ export namespace Prisma {
|
|
|
62959
62995
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62960
62996
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62961
62997
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
62998
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
62999
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62962
63000
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62963
63001
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62964
63002
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -62997,6 +63035,8 @@ export namespace Prisma {
|
|
|
62997
63035
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62998
63036
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62999
63037
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
63038
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
63039
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63000
63040
|
created_at?: Date | string
|
|
63001
63041
|
updated_at?: Date | string
|
|
63002
63042
|
created_by: string
|
|
@@ -63023,6 +63063,8 @@ export namespace Prisma {
|
|
|
63023
63063
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63024
63064
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63025
63065
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
63066
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
63067
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63026
63068
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63027
63069
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63028
63070
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -63056,6 +63098,8 @@ export namespace Prisma {
|
|
|
63056
63098
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63057
63099
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63058
63100
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
63101
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
63102
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63059
63103
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63060
63104
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63061
63105
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -67349,6 +67393,8 @@ export namespace Prisma {
|
|
|
67349
67393
|
human_feedback?: SortOrder
|
|
67350
67394
|
interviewer_feedback?: SortOrder
|
|
67351
67395
|
section_feedback?: SortOrder
|
|
67396
|
+
interview_preparation?: SortOrder
|
|
67397
|
+
final_feedback?: SortOrder
|
|
67352
67398
|
created_at?: SortOrder
|
|
67353
67399
|
updated_at?: SortOrder
|
|
67354
67400
|
created_by?: SortOrder
|
|
@@ -76773,6 +76819,8 @@ export namespace Prisma {
|
|
|
76773
76819
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76774
76820
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76775
76821
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
76822
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
76823
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76776
76824
|
created_at?: Date | string
|
|
76777
76825
|
updated_at?: Date | string
|
|
76778
76826
|
created_by: string
|
|
@@ -76816,6 +76864,8 @@ export namespace Prisma {
|
|
|
76816
76864
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76817
76865
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76818
76866
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
76867
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
76868
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76819
76869
|
created_at?: Date | string
|
|
76820
76870
|
updated_at?: Date | string
|
|
76821
76871
|
created_by: string
|
|
@@ -77523,6 +77573,8 @@ export namespace Prisma {
|
|
|
77523
77573
|
human_feedback?: JsonNullableFilter<"Interview">
|
|
77524
77574
|
interviewer_feedback?: JsonNullableFilter<"Interview">
|
|
77525
77575
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
77576
|
+
interview_preparation?: JsonNullableFilter<"Interview">
|
|
77577
|
+
final_feedback?: JsonNullableFilter<"Interview">
|
|
77526
77578
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
77527
77579
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
77528
77580
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -82234,6 +82286,8 @@ export namespace Prisma {
|
|
|
82234
82286
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82235
82287
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82236
82288
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
82289
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82290
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82237
82291
|
created_at?: Date | string
|
|
82238
82292
|
updated_at?: Date | string
|
|
82239
82293
|
created_by: string
|
|
@@ -82277,6 +82331,8 @@ export namespace Prisma {
|
|
|
82277
82331
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82278
82332
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82279
82333
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
82334
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82335
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82280
82336
|
created_at?: Date | string
|
|
82281
82337
|
updated_at?: Date | string
|
|
82282
82338
|
created_by: string
|
|
@@ -82782,6 +82838,8 @@ export namespace Prisma {
|
|
|
82782
82838
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82783
82839
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82784
82840
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
82841
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82842
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82785
82843
|
created_at?: Date | string
|
|
82786
82844
|
updated_at?: Date | string
|
|
82787
82845
|
created_by: string
|
|
@@ -82826,6 +82884,8 @@ export namespace Prisma {
|
|
|
82826
82884
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82827
82885
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82828
82886
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
82887
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82888
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82829
82889
|
created_at?: Date | string
|
|
82830
82890
|
updated_at?: Date | string
|
|
82831
82891
|
created_by: string
|
|
@@ -82872,6 +82932,8 @@ export namespace Prisma {
|
|
|
82872
82932
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82873
82933
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82874
82934
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
82935
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82936
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82875
82937
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82876
82938
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82877
82939
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -82916,6 +82978,8 @@ export namespace Prisma {
|
|
|
82916
82978
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82917
82979
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82918
82980
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
82981
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82982
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82919
82983
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82920
82984
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82921
82985
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -85954,6 +86018,8 @@ export namespace Prisma {
|
|
|
85954
86018
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
85955
86019
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
85956
86020
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
86021
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86022
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
85957
86023
|
created_at?: Date | string
|
|
85958
86024
|
updated_at?: Date | string
|
|
85959
86025
|
created_by: string
|
|
@@ -85998,6 +86064,8 @@ export namespace Prisma {
|
|
|
85998
86064
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
85999
86065
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86000
86066
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
86067
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86068
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86001
86069
|
created_at?: Date | string
|
|
86002
86070
|
updated_at?: Date | string
|
|
86003
86071
|
created_by: string
|
|
@@ -86044,6 +86112,8 @@ export namespace Prisma {
|
|
|
86044
86112
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86045
86113
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86046
86114
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
86115
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86116
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86047
86117
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86048
86118
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86049
86119
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -86088,6 +86158,8 @@ export namespace Prisma {
|
|
|
86088
86158
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86089
86159
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86090
86160
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
86161
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86162
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86091
86163
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86092
86164
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86093
86165
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -86247,6 +86319,8 @@ export namespace Prisma {
|
|
|
86247
86319
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86248
86320
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86249
86321
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
86322
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86323
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86250
86324
|
created_at?: Date | string
|
|
86251
86325
|
updated_at?: Date | string
|
|
86252
86326
|
created_by: string
|
|
@@ -86290,6 +86364,8 @@ export namespace Prisma {
|
|
|
86290
86364
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86291
86365
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86292
86366
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
86367
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86368
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86293
86369
|
created_at?: Date | string
|
|
86294
86370
|
updated_at?: Date | string
|
|
86295
86371
|
created_by: string
|
|
@@ -88774,6 +88850,8 @@ export namespace Prisma {
|
|
|
88774
88850
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
88775
88851
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
88776
88852
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
88853
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
88854
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
88777
88855
|
created_at?: Date | string
|
|
88778
88856
|
updated_at?: Date | string
|
|
88779
88857
|
created_by: string
|
|
@@ -88818,6 +88896,8 @@ export namespace Prisma {
|
|
|
88818
88896
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
88819
88897
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
88820
88898
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
88899
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
88900
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
88821
88901
|
created_at?: Date | string
|
|
88822
88902
|
updated_at?: Date | string
|
|
88823
88903
|
created_by: string
|
|
@@ -89369,6 +89449,8 @@ export namespace Prisma {
|
|
|
89369
89449
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89370
89450
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89371
89451
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
89452
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
89453
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89372
89454
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89373
89455
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89374
89456
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89413,6 +89495,8 @@ export namespace Prisma {
|
|
|
89413
89495
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89414
89496
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89415
89497
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
89498
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
89499
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89416
89500
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89417
89501
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89418
89502
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89880,6 +89964,8 @@ export namespace Prisma {
|
|
|
89880
89964
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89881
89965
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89882
89966
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
89967
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
89968
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89883
89969
|
created_at?: Date | string
|
|
89884
89970
|
updated_at?: Date | string
|
|
89885
89971
|
created_by: string
|
|
@@ -89923,6 +90009,8 @@ export namespace Prisma {
|
|
|
89923
90009
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89924
90010
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89925
90011
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
90012
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
90013
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89926
90014
|
created_at?: Date | string
|
|
89927
90015
|
updated_at?: Date | string
|
|
89928
90016
|
created_by: string
|
|
@@ -91980,6 +92068,8 @@ export namespace Prisma {
|
|
|
91980
92068
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
91981
92069
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
91982
92070
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
92071
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
92072
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
91983
92073
|
created_at?: Date | string
|
|
91984
92074
|
updated_at?: Date | string
|
|
91985
92075
|
created_by: string
|
|
@@ -92023,6 +92113,8 @@ export namespace Prisma {
|
|
|
92023
92113
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92024
92114
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92025
92115
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
92116
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
92117
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92026
92118
|
created_at?: Date | string
|
|
92027
92119
|
updated_at?: Date | string
|
|
92028
92120
|
created_by: string
|
|
@@ -92824,6 +92916,8 @@ export namespace Prisma {
|
|
|
92824
92916
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92825
92917
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92826
92918
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
92919
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
92920
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92827
92921
|
created_at?: Date | string
|
|
92828
92922
|
updated_at?: Date | string
|
|
92829
92923
|
created_by: string
|
|
@@ -92868,6 +92962,8 @@ export namespace Prisma {
|
|
|
92868
92962
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92869
92963
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92870
92964
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
92965
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
92966
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92871
92967
|
created_at?: Date | string
|
|
92872
92968
|
updated_at?: Date | string
|
|
92873
92969
|
created_by: string
|
|
@@ -93031,6 +93127,8 @@ export namespace Prisma {
|
|
|
93031
93127
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93032
93128
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93033
93129
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
93130
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93131
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93034
93132
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93035
93133
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93036
93134
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -93075,6 +93173,8 @@ export namespace Prisma {
|
|
|
93075
93173
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93076
93174
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93077
93175
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
93176
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93177
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93078
93178
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93079
93179
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93080
93180
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -93200,6 +93300,8 @@ export namespace Prisma {
|
|
|
93200
93300
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93201
93301
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93202
93302
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
93303
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93304
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93203
93305
|
created_at?: Date | string
|
|
93204
93306
|
updated_at?: Date | string
|
|
93205
93307
|
created_by: string
|
|
@@ -93244,6 +93346,8 @@ export namespace Prisma {
|
|
|
93244
93346
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93245
93347
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93246
93348
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
93349
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93350
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93247
93351
|
created_at?: Date | string
|
|
93248
93352
|
updated_at?: Date | string
|
|
93249
93353
|
created_by: string
|
|
@@ -93394,6 +93498,8 @@ export namespace Prisma {
|
|
|
93394
93498
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93395
93499
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93396
93500
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
93501
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93502
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93397
93503
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93398
93504
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93399
93505
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -93438,6 +93544,8 @@ export namespace Prisma {
|
|
|
93438
93544
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93439
93545
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93440
93546
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
93547
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93548
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93441
93549
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93442
93550
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93443
93551
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -94142,6 +94250,8 @@ export namespace Prisma {
|
|
|
94142
94250
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94143
94251
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94144
94252
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
94253
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
94254
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94145
94255
|
created_at?: Date | string
|
|
94146
94256
|
updated_at?: Date | string
|
|
94147
94257
|
created_by: string
|
|
@@ -94185,6 +94295,8 @@ export namespace Prisma {
|
|
|
94185
94295
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94186
94296
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94187
94297
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
94298
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
94299
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94188
94300
|
created_at?: Date | string
|
|
94189
94301
|
updated_at?: Date | string
|
|
94190
94302
|
created_by: string
|
|
@@ -94226,6 +94338,8 @@ export namespace Prisma {
|
|
|
94226
94338
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94227
94339
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94228
94340
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
94341
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
94342
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94229
94343
|
created_at?: Date | string
|
|
94230
94344
|
updated_at?: Date | string
|
|
94231
94345
|
created_by: string
|
|
@@ -94269,6 +94383,8 @@ export namespace Prisma {
|
|
|
94269
94383
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94270
94384
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94271
94385
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
94386
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
94387
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94272
94388
|
created_at?: Date | string
|
|
94273
94389
|
updated_at?: Date | string
|
|
94274
94390
|
created_by: string
|
|
@@ -96022,6 +96138,8 @@ export namespace Prisma {
|
|
|
96022
96138
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96023
96139
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96024
96140
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
96141
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
96142
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96025
96143
|
created_at?: Date | string
|
|
96026
96144
|
updated_at?: Date | string
|
|
96027
96145
|
created_by: string
|
|
@@ -96113,6 +96231,8 @@ export namespace Prisma {
|
|
|
96113
96231
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96114
96232
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96115
96233
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
96234
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
96235
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96116
96236
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96117
96237
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96118
96238
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -96156,6 +96276,8 @@ export namespace Prisma {
|
|
|
96156
96276
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96157
96277
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96158
96278
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
96279
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
96280
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96159
96281
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96160
96282
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96161
96283
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -96193,6 +96315,8 @@ export namespace Prisma {
|
|
|
96193
96315
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96194
96316
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96195
96317
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
96318
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
96319
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96196
96320
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96197
96321
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96198
96322
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -96952,6 +97076,8 @@ export namespace Prisma {
|
|
|
96952
97076
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96953
97077
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96954
97078
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
97079
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97080
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96955
97081
|
created_at?: Date | string
|
|
96956
97082
|
updated_at?: Date | string
|
|
96957
97083
|
created_by: string
|
|
@@ -97087,6 +97213,8 @@ export namespace Prisma {
|
|
|
97087
97213
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97088
97214
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97089
97215
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
97216
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97217
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97090
97218
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97091
97219
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97092
97220
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97130,6 +97258,8 @@ export namespace Prisma {
|
|
|
97130
97258
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97131
97259
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97132
97260
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
97261
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97262
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97133
97263
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97134
97264
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97135
97265
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97167,6 +97297,8 @@ export namespace Prisma {
|
|
|
97167
97297
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97168
97298
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97169
97299
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
97300
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97301
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97170
97302
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97171
97303
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97172
97304
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97599,6 +97731,8 @@ export namespace Prisma {
|
|
|
97599
97731
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97600
97732
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97601
97733
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
97734
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97735
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97602
97736
|
created_at?: Date | string
|
|
97603
97737
|
updated_at?: Date | string
|
|
97604
97738
|
created_by: string
|
|
@@ -97877,6 +98011,8 @@ export namespace Prisma {
|
|
|
97877
98011
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97878
98012
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97879
98013
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
98014
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98015
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97880
98016
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97881
98017
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97882
98018
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97920,6 +98056,8 @@ export namespace Prisma {
|
|
|
97920
98056
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97921
98057
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97922
98058
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
98059
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98060
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97923
98061
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97924
98062
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97925
98063
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97957,6 +98095,8 @@ export namespace Prisma {
|
|
|
97957
98095
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97958
98096
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97959
98097
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
98098
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98099
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97960
98100
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97961
98101
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97962
98102
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -98842,6 +98982,8 @@ export namespace Prisma {
|
|
|
98842
98982
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98843
98983
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98844
98984
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
98985
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98986
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98845
98987
|
created_at?: Date | string
|
|
98846
98988
|
updated_at?: Date | string
|
|
98847
98989
|
created_by: string
|
|
@@ -99473,6 +99615,8 @@ export namespace Prisma {
|
|
|
99473
99615
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99474
99616
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99475
99617
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
99618
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
99619
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99476
99620
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99477
99621
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99478
99622
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -99516,6 +99660,8 @@ export namespace Prisma {
|
|
|
99516
99660
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99517
99661
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99518
99662
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
99663
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
99664
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99519
99665
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99520
99666
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99521
99667
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -99553,6 +99699,8 @@ export namespace Prisma {
|
|
|
99553
99699
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99554
99700
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99555
99701
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
99702
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
99703
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99556
99704
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99557
99705
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99558
99706
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100208,6 +100356,8 @@ export namespace Prisma {
|
|
|
100208
100356
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100209
100357
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100210
100358
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
100359
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100360
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100211
100361
|
created_at?: Date | string
|
|
100212
100362
|
updated_at?: Date | string
|
|
100213
100363
|
created_by: string
|
|
@@ -100375,6 +100525,8 @@ export namespace Prisma {
|
|
|
100375
100525
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100376
100526
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100377
100527
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
100528
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100529
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100378
100530
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100379
100531
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100380
100532
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100418,6 +100570,8 @@ export namespace Prisma {
|
|
|
100418
100570
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100419
100571
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100420
100572
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
100573
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100574
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100421
100575
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100422
100576
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100423
100577
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100455,6 +100609,8 @@ export namespace Prisma {
|
|
|
100455
100609
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100456
100610
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100457
100611
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
100612
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100613
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100458
100614
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100459
100615
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100460
100616
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100872,6 +101028,8 @@ export namespace Prisma {
|
|
|
100872
101028
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100873
101029
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100874
101030
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
101031
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101032
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100875
101033
|
created_at?: Date | string
|
|
100876
101034
|
updated_at?: Date | string
|
|
100877
101035
|
created_by: string
|
|
@@ -100904,6 +101062,8 @@ export namespace Prisma {
|
|
|
100904
101062
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100905
101063
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100906
101064
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
101065
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101066
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100907
101067
|
created_at?: Date | string
|
|
100908
101068
|
updated_at?: Date | string
|
|
100909
101069
|
created_by: string
|
|
@@ -101536,6 +101696,8 @@ export namespace Prisma {
|
|
|
101536
101696
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101537
101697
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101538
101698
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101699
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101700
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101539
101701
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101540
101702
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101541
101703
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101579,6 +101741,8 @@ export namespace Prisma {
|
|
|
101579
101741
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101580
101742
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101581
101743
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101744
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101745
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101582
101746
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101583
101747
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101584
101748
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101616,6 +101780,8 @@ export namespace Prisma {
|
|
|
101616
101780
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101617
101781
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101618
101782
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101783
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101784
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101619
101785
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101620
101786
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101621
101787
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101642,6 +101808,8 @@ export namespace Prisma {
|
|
|
101642
101808
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101643
101809
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101644
101810
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101811
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101812
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101645
101813
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101646
101814
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101647
101815
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101685,6 +101853,8 @@ export namespace Prisma {
|
|
|
101685
101853
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101686
101854
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101687
101855
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101856
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101857
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101688
101858
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101689
101859
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101690
101860
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101722,6 +101892,8 @@ export namespace Prisma {
|
|
|
101722
101892
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101723
101893
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101724
101894
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101895
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101896
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101725
101897
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101726
101898
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101727
101899
|
created_by?: StringFieldUpdateOperationsInput | string
|