@adaptware/eagles-db 0.1.59 → 0.1.60
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/package.json +1 -1
- package/client/schema.prisma +1 -0
- package/client/wasm.js +1 -0
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/schema/interview.prisma +1 -0
- package/client/libquery_engine-darwin.dylib.node +0 -0
package/client/index.d.ts
CHANGED
|
@@ -32808,6 +32808,7 @@ export namespace Prisma {
|
|
|
32808
32808
|
human_feedback: number
|
|
32809
32809
|
interviewer_feedback: number
|
|
32810
32810
|
section_feedback: number
|
|
32811
|
+
interview_preparation: number
|
|
32811
32812
|
created_at: number
|
|
32812
32813
|
updated_at: number
|
|
32813
32814
|
created_by: number
|
|
@@ -32907,6 +32908,7 @@ export namespace Prisma {
|
|
|
32907
32908
|
human_feedback?: true
|
|
32908
32909
|
interviewer_feedback?: true
|
|
32909
32910
|
section_feedback?: true
|
|
32911
|
+
interview_preparation?: true
|
|
32910
32912
|
created_at?: true
|
|
32911
32913
|
updated_at?: true
|
|
32912
32914
|
created_by?: true
|
|
@@ -33027,6 +33029,7 @@ export namespace Prisma {
|
|
|
33027
33029
|
human_feedback: JsonValue | null
|
|
33028
33030
|
interviewer_feedback: JsonValue | null
|
|
33029
33031
|
section_feedback: JsonValue[]
|
|
33032
|
+
interview_preparation: JsonValue | null
|
|
33030
33033
|
created_at: Date
|
|
33031
33034
|
updated_at: Date
|
|
33032
33035
|
created_by: string
|
|
@@ -33079,6 +33082,7 @@ export namespace Prisma {
|
|
|
33079
33082
|
human_feedback?: boolean
|
|
33080
33083
|
interviewer_feedback?: boolean
|
|
33081
33084
|
section_feedback?: boolean
|
|
33085
|
+
interview_preparation?: boolean
|
|
33082
33086
|
created_at?: boolean
|
|
33083
33087
|
updated_at?: boolean
|
|
33084
33088
|
created_by?: boolean
|
|
@@ -33125,6 +33129,7 @@ export namespace Prisma {
|
|
|
33125
33129
|
human_feedback?: boolean
|
|
33126
33130
|
interviewer_feedback?: boolean
|
|
33127
33131
|
section_feedback?: boolean
|
|
33132
|
+
interview_preparation?: boolean
|
|
33128
33133
|
created_at?: boolean
|
|
33129
33134
|
updated_at?: boolean
|
|
33130
33135
|
created_by?: boolean
|
|
@@ -33165,6 +33170,7 @@ export namespace Prisma {
|
|
|
33165
33170
|
human_feedback?: boolean
|
|
33166
33171
|
interviewer_feedback?: boolean
|
|
33167
33172
|
section_feedback?: boolean
|
|
33173
|
+
interview_preparation?: boolean
|
|
33168
33174
|
created_at?: boolean
|
|
33169
33175
|
updated_at?: boolean
|
|
33170
33176
|
created_by?: boolean
|
|
@@ -33205,6 +33211,7 @@ export namespace Prisma {
|
|
|
33205
33211
|
human_feedback?: boolean
|
|
33206
33212
|
interviewer_feedback?: boolean
|
|
33207
33213
|
section_feedback?: boolean
|
|
33214
|
+
interview_preparation?: boolean
|
|
33208
33215
|
created_at?: boolean
|
|
33209
33216
|
updated_at?: boolean
|
|
33210
33217
|
created_by?: boolean
|
|
@@ -33212,7 +33219,7 @@ export namespace Prisma {
|
|
|
33212
33219
|
is_active?: boolean
|
|
33213
33220
|
}
|
|
33214
33221
|
|
|
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"]>
|
|
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"]>
|
|
33216
33223
|
export type InterviewInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33217
33224
|
candidate?: boolean | Interview$candidateArgs<ExtArgs>
|
|
33218
33225
|
interviewer?: boolean | Interview$interviewerArgs<ExtArgs>
|
|
@@ -33301,6 +33308,7 @@ export namespace Prisma {
|
|
|
33301
33308
|
human_feedback: Prisma.JsonValue | null
|
|
33302
33309
|
interviewer_feedback: Prisma.JsonValue | null
|
|
33303
33310
|
section_feedback: Prisma.JsonValue[]
|
|
33311
|
+
interview_preparation: Prisma.JsonValue | null
|
|
33304
33312
|
/**
|
|
33305
33313
|
* Audit fields
|
|
33306
33314
|
*/
|
|
@@ -33769,6 +33777,7 @@ export namespace Prisma {
|
|
|
33769
33777
|
readonly human_feedback: FieldRef<"Interview", 'Json'>
|
|
33770
33778
|
readonly interviewer_feedback: FieldRef<"Interview", 'Json'>
|
|
33771
33779
|
readonly section_feedback: FieldRef<"Interview", 'Json[]'>
|
|
33780
|
+
readonly interview_preparation: FieldRef<"Interview", 'Json'>
|
|
33772
33781
|
readonly created_at: FieldRef<"Interview", 'DateTime'>
|
|
33773
33782
|
readonly updated_at: FieldRef<"Interview", 'DateTime'>
|
|
33774
33783
|
readonly created_by: FieldRef<"Interview", 'String'>
|
|
@@ -54982,6 +54991,7 @@ export namespace Prisma {
|
|
|
54982
54991
|
human_feedback: 'human_feedback',
|
|
54983
54992
|
interviewer_feedback: 'interviewer_feedback',
|
|
54984
54993
|
section_feedback: 'section_feedback',
|
|
54994
|
+
interview_preparation: 'interview_preparation',
|
|
54985
54995
|
created_at: 'created_at',
|
|
54986
54996
|
updated_at: 'updated_at',
|
|
54987
54997
|
created_by: 'created_by',
|
|
@@ -58228,6 +58238,7 @@ export namespace Prisma {
|
|
|
58228
58238
|
human_feedback?: JsonNullableFilter<"Interview">
|
|
58229
58239
|
interviewer_feedback?: JsonNullableFilter<"Interview">
|
|
58230
58240
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
58241
|
+
interview_preparation?: JsonNullableFilter<"Interview">
|
|
58231
58242
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
58232
58243
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
58233
58244
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -58273,6 +58284,7 @@ export namespace Prisma {
|
|
|
58273
58284
|
human_feedback?: SortOrderInput | SortOrder
|
|
58274
58285
|
interviewer_feedback?: SortOrderInput | SortOrder
|
|
58275
58286
|
section_feedback?: SortOrder
|
|
58287
|
+
interview_preparation?: SortOrderInput | SortOrder
|
|
58276
58288
|
created_at?: SortOrder
|
|
58277
58289
|
updated_at?: SortOrder
|
|
58278
58290
|
created_by?: SortOrder
|
|
@@ -58322,6 +58334,7 @@ export namespace Prisma {
|
|
|
58322
58334
|
human_feedback?: JsonNullableFilter<"Interview">
|
|
58323
58335
|
interviewer_feedback?: JsonNullableFilter<"Interview">
|
|
58324
58336
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
58337
|
+
interview_preparation?: JsonNullableFilter<"Interview">
|
|
58325
58338
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
58326
58339
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
58327
58340
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -58367,6 +58380,7 @@ export namespace Prisma {
|
|
|
58367
58380
|
human_feedback?: SortOrderInput | SortOrder
|
|
58368
58381
|
interviewer_feedback?: SortOrderInput | SortOrder
|
|
58369
58382
|
section_feedback?: SortOrder
|
|
58383
|
+
interview_preparation?: SortOrderInput | SortOrder
|
|
58370
58384
|
created_at?: SortOrder
|
|
58371
58385
|
updated_at?: SortOrder
|
|
58372
58386
|
created_by?: SortOrder
|
|
@@ -58408,6 +58422,7 @@ export namespace Prisma {
|
|
|
58408
58422
|
human_feedback?: JsonNullableWithAggregatesFilter<"Interview">
|
|
58409
58423
|
interviewer_feedback?: JsonNullableWithAggregatesFilter<"Interview">
|
|
58410
58424
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
58425
|
+
interview_preparation?: JsonNullableWithAggregatesFilter<"Interview">
|
|
58411
58426
|
created_at?: DateTimeWithAggregatesFilter<"Interview"> | Date | string
|
|
58412
58427
|
updated_at?: DateTimeWithAggregatesFilter<"Interview"> | Date | string
|
|
58413
58428
|
created_by?: StringWithAggregatesFilter<"Interview"> | string
|
|
@@ -62838,6 +62853,7 @@ export namespace Prisma {
|
|
|
62838
62853
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62839
62854
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62840
62855
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
62856
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
62841
62857
|
created_at?: Date | string
|
|
62842
62858
|
updated_at?: Date | string
|
|
62843
62859
|
created_by: string
|
|
@@ -62883,6 +62899,7 @@ export namespace Prisma {
|
|
|
62883
62899
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62884
62900
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62885
62901
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
62902
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
62886
62903
|
created_at?: Date | string
|
|
62887
62904
|
updated_at?: Date | string
|
|
62888
62905
|
created_by: string
|
|
@@ -62914,6 +62931,7 @@ export namespace Prisma {
|
|
|
62914
62931
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62915
62932
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62916
62933
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
62934
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
62917
62935
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62918
62936
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62919
62937
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -62959,6 +62977,7 @@ export namespace Prisma {
|
|
|
62959
62977
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62960
62978
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62961
62979
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
62980
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
62962
62981
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62963
62982
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62964
62983
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -62997,6 +63016,7 @@ export namespace Prisma {
|
|
|
62997
63016
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62998
63017
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
62999
63018
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
63019
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
63000
63020
|
created_at?: Date | string
|
|
63001
63021
|
updated_at?: Date | string
|
|
63002
63022
|
created_by: string
|
|
@@ -63023,6 +63043,7 @@ export namespace Prisma {
|
|
|
63023
63043
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63024
63044
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63025
63045
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
63046
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
63026
63047
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63027
63048
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63028
63049
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -63056,6 +63077,7 @@ export namespace Prisma {
|
|
|
63056
63077
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63057
63078
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
63058
63079
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
63080
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
63059
63081
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63060
63082
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63061
63083
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -67349,6 +67371,7 @@ export namespace Prisma {
|
|
|
67349
67371
|
human_feedback?: SortOrder
|
|
67350
67372
|
interviewer_feedback?: SortOrder
|
|
67351
67373
|
section_feedback?: SortOrder
|
|
67374
|
+
interview_preparation?: SortOrder
|
|
67352
67375
|
created_at?: SortOrder
|
|
67353
67376
|
updated_at?: SortOrder
|
|
67354
67377
|
created_by?: SortOrder
|
|
@@ -76773,6 +76796,7 @@ export namespace Prisma {
|
|
|
76773
76796
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76774
76797
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76775
76798
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
76799
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
76776
76800
|
created_at?: Date | string
|
|
76777
76801
|
updated_at?: Date | string
|
|
76778
76802
|
created_by: string
|
|
@@ -76816,6 +76840,7 @@ export namespace Prisma {
|
|
|
76816
76840
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76817
76841
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
76818
76842
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
76843
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
76819
76844
|
created_at?: Date | string
|
|
76820
76845
|
updated_at?: Date | string
|
|
76821
76846
|
created_by: string
|
|
@@ -77523,6 +77548,7 @@ export namespace Prisma {
|
|
|
77523
77548
|
human_feedback?: JsonNullableFilter<"Interview">
|
|
77524
77549
|
interviewer_feedback?: JsonNullableFilter<"Interview">
|
|
77525
77550
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
77551
|
+
interview_preparation?: JsonNullableFilter<"Interview">
|
|
77526
77552
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
77527
77553
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
77528
77554
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -82234,6 +82260,7 @@ export namespace Prisma {
|
|
|
82234
82260
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82235
82261
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82236
82262
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
82263
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82237
82264
|
created_at?: Date | string
|
|
82238
82265
|
updated_at?: Date | string
|
|
82239
82266
|
created_by: string
|
|
@@ -82277,6 +82304,7 @@ export namespace Prisma {
|
|
|
82277
82304
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82278
82305
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82279
82306
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
82307
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82280
82308
|
created_at?: Date | string
|
|
82281
82309
|
updated_at?: Date | string
|
|
82282
82310
|
created_by: string
|
|
@@ -82782,6 +82810,7 @@ export namespace Prisma {
|
|
|
82782
82810
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82783
82811
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82784
82812
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
82813
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82785
82814
|
created_at?: Date | string
|
|
82786
82815
|
updated_at?: Date | string
|
|
82787
82816
|
created_by: string
|
|
@@ -82826,6 +82855,7 @@ export namespace Prisma {
|
|
|
82826
82855
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82827
82856
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82828
82857
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
82858
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82829
82859
|
created_at?: Date | string
|
|
82830
82860
|
updated_at?: Date | string
|
|
82831
82861
|
created_by: string
|
|
@@ -82872,6 +82902,7 @@ export namespace Prisma {
|
|
|
82872
82902
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82873
82903
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82874
82904
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
82905
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82875
82906
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82876
82907
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82877
82908
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -82916,6 +82947,7 @@ export namespace Prisma {
|
|
|
82916
82947
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82917
82948
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
82918
82949
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
82950
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
82919
82951
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82920
82952
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
82921
82953
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -85954,6 +85986,7 @@ export namespace Prisma {
|
|
|
85954
85986
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
85955
85987
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
85956
85988
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
85989
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
85957
85990
|
created_at?: Date | string
|
|
85958
85991
|
updated_at?: Date | string
|
|
85959
85992
|
created_by: string
|
|
@@ -85998,6 +86031,7 @@ export namespace Prisma {
|
|
|
85998
86031
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
85999
86032
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86000
86033
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
86034
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86001
86035
|
created_at?: Date | string
|
|
86002
86036
|
updated_at?: Date | string
|
|
86003
86037
|
created_by: string
|
|
@@ -86044,6 +86078,7 @@ export namespace Prisma {
|
|
|
86044
86078
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86045
86079
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86046
86080
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
86081
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86047
86082
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86048
86083
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86049
86084
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -86088,6 +86123,7 @@ export namespace Prisma {
|
|
|
86088
86123
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86089
86124
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86090
86125
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
86126
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86091
86127
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86092
86128
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86093
86129
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -86247,6 +86283,7 @@ export namespace Prisma {
|
|
|
86247
86283
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86248
86284
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86249
86285
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
86286
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86250
86287
|
created_at?: Date | string
|
|
86251
86288
|
updated_at?: Date | string
|
|
86252
86289
|
created_by: string
|
|
@@ -86290,6 +86327,7 @@ export namespace Prisma {
|
|
|
86290
86327
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86291
86328
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
86292
86329
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
86330
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
86293
86331
|
created_at?: Date | string
|
|
86294
86332
|
updated_at?: Date | string
|
|
86295
86333
|
created_by: string
|
|
@@ -88774,6 +88812,7 @@ export namespace Prisma {
|
|
|
88774
88812
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
88775
88813
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
88776
88814
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
88815
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
88777
88816
|
created_at?: Date | string
|
|
88778
88817
|
updated_at?: Date | string
|
|
88779
88818
|
created_by: string
|
|
@@ -88818,6 +88857,7 @@ export namespace Prisma {
|
|
|
88818
88857
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
88819
88858
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
88820
88859
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
88860
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
88821
88861
|
created_at?: Date | string
|
|
88822
88862
|
updated_at?: Date | string
|
|
88823
88863
|
created_by: string
|
|
@@ -89369,6 +89409,7 @@ export namespace Prisma {
|
|
|
89369
89409
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89370
89410
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89371
89411
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
89412
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
89372
89413
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89373
89414
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89374
89415
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89413,6 +89454,7 @@ export namespace Prisma {
|
|
|
89413
89454
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89414
89455
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89415
89456
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
89457
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
89416
89458
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89417
89459
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89418
89460
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89880,6 +89922,7 @@ export namespace Prisma {
|
|
|
89880
89922
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89881
89923
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89882
89924
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
89925
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
89883
89926
|
created_at?: Date | string
|
|
89884
89927
|
updated_at?: Date | string
|
|
89885
89928
|
created_by: string
|
|
@@ -89923,6 +89966,7 @@ export namespace Prisma {
|
|
|
89923
89966
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89924
89967
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
89925
89968
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
89969
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
89926
89970
|
created_at?: Date | string
|
|
89927
89971
|
updated_at?: Date | string
|
|
89928
89972
|
created_by: string
|
|
@@ -91980,6 +92024,7 @@ export namespace Prisma {
|
|
|
91980
92024
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
91981
92025
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
91982
92026
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
92027
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
91983
92028
|
created_at?: Date | string
|
|
91984
92029
|
updated_at?: Date | string
|
|
91985
92030
|
created_by: string
|
|
@@ -92023,6 +92068,7 @@ export namespace Prisma {
|
|
|
92023
92068
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92024
92069
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92025
92070
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
92071
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
92026
92072
|
created_at?: Date | string
|
|
92027
92073
|
updated_at?: Date | string
|
|
92028
92074
|
created_by: string
|
|
@@ -92824,6 +92870,7 @@ export namespace Prisma {
|
|
|
92824
92870
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92825
92871
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92826
92872
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
92873
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
92827
92874
|
created_at?: Date | string
|
|
92828
92875
|
updated_at?: Date | string
|
|
92829
92876
|
created_by: string
|
|
@@ -92868,6 +92915,7 @@ export namespace Prisma {
|
|
|
92868
92915
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92869
92916
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
92870
92917
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
92918
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
92871
92919
|
created_at?: Date | string
|
|
92872
92920
|
updated_at?: Date | string
|
|
92873
92921
|
created_by: string
|
|
@@ -93031,6 +93079,7 @@ export namespace Prisma {
|
|
|
93031
93079
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93032
93080
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93033
93081
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
93082
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93034
93083
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93035
93084
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93036
93085
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -93075,6 +93124,7 @@ export namespace Prisma {
|
|
|
93075
93124
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93076
93125
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93077
93126
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
93127
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93078
93128
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93079
93129
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93080
93130
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -93200,6 +93250,7 @@ export namespace Prisma {
|
|
|
93200
93250
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93201
93251
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93202
93252
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
93253
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93203
93254
|
created_at?: Date | string
|
|
93204
93255
|
updated_at?: Date | string
|
|
93205
93256
|
created_by: string
|
|
@@ -93244,6 +93295,7 @@ export namespace Prisma {
|
|
|
93244
93295
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93245
93296
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93246
93297
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
93298
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93247
93299
|
created_at?: Date | string
|
|
93248
93300
|
updated_at?: Date | string
|
|
93249
93301
|
created_by: string
|
|
@@ -93394,6 +93446,7 @@ export namespace Prisma {
|
|
|
93394
93446
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93395
93447
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93396
93448
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
93449
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93397
93450
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93398
93451
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93399
93452
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -93438,6 +93491,7 @@ export namespace Prisma {
|
|
|
93438
93491
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93439
93492
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93440
93493
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
93494
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93441
93495
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93442
93496
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93443
93497
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -94142,6 +94196,7 @@ export namespace Prisma {
|
|
|
94142
94196
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94143
94197
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94144
94198
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
94199
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
94145
94200
|
created_at?: Date | string
|
|
94146
94201
|
updated_at?: Date | string
|
|
94147
94202
|
created_by: string
|
|
@@ -94185,6 +94240,7 @@ export namespace Prisma {
|
|
|
94185
94240
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94186
94241
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94187
94242
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
94243
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
94188
94244
|
created_at?: Date | string
|
|
94189
94245
|
updated_at?: Date | string
|
|
94190
94246
|
created_by: string
|
|
@@ -94226,6 +94282,7 @@ export namespace Prisma {
|
|
|
94226
94282
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94227
94283
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94228
94284
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
94285
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
94229
94286
|
created_at?: Date | string
|
|
94230
94287
|
updated_at?: Date | string
|
|
94231
94288
|
created_by: string
|
|
@@ -94269,6 +94326,7 @@ export namespace Prisma {
|
|
|
94269
94326
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94270
94327
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
94271
94328
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
94329
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
94272
94330
|
created_at?: Date | string
|
|
94273
94331
|
updated_at?: Date | string
|
|
94274
94332
|
created_by: string
|
|
@@ -96022,6 +96080,7 @@ export namespace Prisma {
|
|
|
96022
96080
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96023
96081
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96024
96082
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
96083
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
96025
96084
|
created_at?: Date | string
|
|
96026
96085
|
updated_at?: Date | string
|
|
96027
96086
|
created_by: string
|
|
@@ -96113,6 +96172,7 @@ export namespace Prisma {
|
|
|
96113
96172
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96114
96173
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96115
96174
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
96175
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
96116
96176
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96117
96177
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96118
96178
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -96156,6 +96216,7 @@ export namespace Prisma {
|
|
|
96156
96216
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96157
96217
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96158
96218
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
96219
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
96159
96220
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96160
96221
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96161
96222
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -96193,6 +96254,7 @@ export namespace Prisma {
|
|
|
96193
96254
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96194
96255
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96195
96256
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
96257
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
96196
96258
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96197
96259
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
96198
96260
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -96952,6 +97014,7 @@ export namespace Prisma {
|
|
|
96952
97014
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96953
97015
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
96954
97016
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
97017
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
96955
97018
|
created_at?: Date | string
|
|
96956
97019
|
updated_at?: Date | string
|
|
96957
97020
|
created_by: string
|
|
@@ -97087,6 +97150,7 @@ export namespace Prisma {
|
|
|
97087
97150
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97088
97151
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97089
97152
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
97153
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97090
97154
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97091
97155
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97092
97156
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97130,6 +97194,7 @@ export namespace Prisma {
|
|
|
97130
97194
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97131
97195
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97132
97196
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
97197
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97133
97198
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97134
97199
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97135
97200
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97167,6 +97232,7 @@ export namespace Prisma {
|
|
|
97167
97232
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97168
97233
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97169
97234
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
97235
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97170
97236
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97171
97237
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97172
97238
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97599,6 +97665,7 @@ export namespace Prisma {
|
|
|
97599
97665
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97600
97666
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97601
97667
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
97668
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97602
97669
|
created_at?: Date | string
|
|
97603
97670
|
updated_at?: Date | string
|
|
97604
97671
|
created_by: string
|
|
@@ -97877,6 +97944,7 @@ export namespace Prisma {
|
|
|
97877
97944
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97878
97945
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97879
97946
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
97947
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97880
97948
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97881
97949
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97882
97950
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97920,6 +97988,7 @@ export namespace Prisma {
|
|
|
97920
97988
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97921
97989
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97922
97990
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
97991
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97923
97992
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97924
97993
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97925
97994
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -97957,6 +98026,7 @@ export namespace Prisma {
|
|
|
97957
98026
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97958
98027
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97959
98028
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
98029
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97960
98030
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97961
98031
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
97962
98032
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -98842,6 +98912,7 @@ export namespace Prisma {
|
|
|
98842
98912
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98843
98913
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98844
98914
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
98915
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98845
98916
|
created_at?: Date | string
|
|
98846
98917
|
updated_at?: Date | string
|
|
98847
98918
|
created_by: string
|
|
@@ -99473,6 +99544,7 @@ export namespace Prisma {
|
|
|
99473
99544
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99474
99545
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99475
99546
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
99547
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
99476
99548
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99477
99549
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99478
99550
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -99516,6 +99588,7 @@ export namespace Prisma {
|
|
|
99516
99588
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99517
99589
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99518
99590
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
99591
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
99519
99592
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99520
99593
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99521
99594
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -99553,6 +99626,7 @@ export namespace Prisma {
|
|
|
99553
99626
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99554
99627
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
99555
99628
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
99629
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
99556
99630
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99557
99631
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
99558
99632
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100208,6 +100282,7 @@ export namespace Prisma {
|
|
|
100208
100282
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100209
100283
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100210
100284
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
100285
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100211
100286
|
created_at?: Date | string
|
|
100212
100287
|
updated_at?: Date | string
|
|
100213
100288
|
created_by: string
|
|
@@ -100375,6 +100450,7 @@ export namespace Prisma {
|
|
|
100375
100450
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100376
100451
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100377
100452
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
100453
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100378
100454
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100379
100455
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100380
100456
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100418,6 +100494,7 @@ export namespace Prisma {
|
|
|
100418
100494
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100419
100495
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100420
100496
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
100497
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100421
100498
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100422
100499
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100423
100500
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100455,6 +100532,7 @@ export namespace Prisma {
|
|
|
100455
100532
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100456
100533
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100457
100534
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
100535
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100458
100536
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100459
100537
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
100460
100538
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -100872,6 +100950,7 @@ export namespace Prisma {
|
|
|
100872
100950
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100873
100951
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100874
100952
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
100953
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100875
100954
|
created_at?: Date | string
|
|
100876
100955
|
updated_at?: Date | string
|
|
100877
100956
|
created_by: string
|
|
@@ -100904,6 +100983,7 @@ export namespace Prisma {
|
|
|
100904
100983
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100905
100984
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
100906
100985
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
100986
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
100907
100987
|
created_at?: Date | string
|
|
100908
100988
|
updated_at?: Date | string
|
|
100909
100989
|
created_by: string
|
|
@@ -101536,6 +101616,7 @@ export namespace Prisma {
|
|
|
101536
101616
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101537
101617
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101538
101618
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101619
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101539
101620
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101540
101621
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101541
101622
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101579,6 +101660,7 @@ export namespace Prisma {
|
|
|
101579
101660
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101580
101661
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101581
101662
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101663
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101582
101664
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101583
101665
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101584
101666
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101616,6 +101698,7 @@ export namespace Prisma {
|
|
|
101616
101698
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101617
101699
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101618
101700
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101701
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101619
101702
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101620
101703
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101621
101704
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101642,6 +101725,7 @@ export namespace Prisma {
|
|
|
101642
101725
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101643
101726
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101644
101727
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101728
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101645
101729
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101646
101730
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101647
101731
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101685,6 +101769,7 @@ export namespace Prisma {
|
|
|
101685
101769
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101686
101770
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101687
101771
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101772
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101688
101773
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101689
101774
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101690
101775
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -101722,6 +101807,7 @@ export namespace Prisma {
|
|
|
101722
101807
|
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101723
101808
|
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
101724
101809
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
101810
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
101725
101811
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101726
101812
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101727
101813
|
created_by?: StringFieldUpdateOperationsInput | string
|