@adaptware/eagles-db 0.1.89 → 0.2.0
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 +7 -5
- package/client/index-browser.js +2 -0
- package/client/index.d.ts +210 -1
- package/client/index.js +7 -5
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +4 -0
- package/client/wasm.js +2 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.js +6 -6
- package/package.json +1 -1
- package/prisma/schema/interview.prisma +4 -0
- package/prisma/.DS_Store +0 -0
- package/prisma/migrations/20260415120000_remove_job_profile_current_phase/migration.sql +0 -2
- package/prisma/migrations/20260422120000_add_integration_provider_zoom/migration.sql +0 -2
- package/prisma/migrations/20260422140000_add_zoom_meeting_tables/migration.sql +0 -57
- package/prisma/migrations/20260422180000_add_zoom_webhook_event/migration.sql +0 -18
- package/prisma/migrations/20260423140000_add_interview_platform/migration.sql +0 -6
- package/prisma/migrations/20260423150000_remove_interview_zoom_topic/migration.sql +0 -2
- package/prisma/migrations/20260423160000_zoom_meeting_uuid/migration.sql +0 -4
- package/prisma/migrations/20260424120000_auth_module_user_provider_unique/migration.sql +0 -5
- package/prisma/migrations/20260424130000_zoom_meeting_zoom_host_user_id/migration.sql +0 -6
- package/prisma/migrations/20260425100000_zoom_participant_user_enum/migration.sql +0 -22
- package/prisma/migrations/20260425110000_zoom_participant_zoom_id_required/migration.sql +0 -13
- package/prisma/migrations/20260425120000_zoom_participant_id_nullable/migration.sql +0 -4
- package/prisma/migrations/20260429140000_drop_evaluation_plan_job_order_unique/migration.sql +0 -5
- package/prisma/migrations/20260429180000_eval_plan_timeline_optional_ongoing_duration/migration.sql +0 -15
- package/prisma/migrations/20260430120000_drop_assessment_library_metadata_fields/migration.sql +0 -8
- package/prisma/migrations/20260430140000_drop_question_question_type/migration.sql +0 -5
- package/prisma/migrations/migration_lock.toml +0 -3
package/client/index.d.ts
CHANGED
|
@@ -34991,10 +34991,12 @@ export namespace Prisma {
|
|
|
34991
34991
|
|
|
34992
34992
|
export type InterviewAvgAggregateOutputType = {
|
|
34993
34993
|
interview_rating: number | null
|
|
34994
|
+
reschedule_count: number | null
|
|
34994
34995
|
}
|
|
34995
34996
|
|
|
34996
34997
|
export type InterviewSumAggregateOutputType = {
|
|
34997
34998
|
interview_rating: number | null
|
|
34999
|
+
reschedule_count: number | null
|
|
34998
35000
|
}
|
|
34999
35001
|
|
|
35000
35002
|
export type InterviewMinAggregateOutputType = {
|
|
@@ -35019,6 +35021,8 @@ export namespace Prisma {
|
|
|
35019
35021
|
interview_feedback: $Enums.InterviewFeedback | null
|
|
35020
35022
|
overall_feedback: string | null
|
|
35021
35023
|
interview_rating: number | null
|
|
35024
|
+
reschedule_count: number | null
|
|
35025
|
+
last_rescheduled_at: Date | null
|
|
35022
35026
|
created_at: Date | null
|
|
35023
35027
|
updated_at: Date | null
|
|
35024
35028
|
created_by: string | null
|
|
@@ -35048,6 +35052,8 @@ export namespace Prisma {
|
|
|
35048
35052
|
interview_feedback: $Enums.InterviewFeedback | null
|
|
35049
35053
|
overall_feedback: string | null
|
|
35050
35054
|
interview_rating: number | null
|
|
35055
|
+
reschedule_count: number | null
|
|
35056
|
+
last_rescheduled_at: Date | null
|
|
35051
35057
|
created_at: Date | null
|
|
35052
35058
|
updated_at: Date | null
|
|
35053
35059
|
created_by: string | null
|
|
@@ -35084,6 +35090,8 @@ export namespace Prisma {
|
|
|
35084
35090
|
section_feedback: number
|
|
35085
35091
|
interview_preparation: number
|
|
35086
35092
|
final_feedback: number
|
|
35093
|
+
reschedule_count: number
|
|
35094
|
+
last_rescheduled_at: number
|
|
35087
35095
|
created_at: number
|
|
35088
35096
|
updated_at: number
|
|
35089
35097
|
created_by: number
|
|
@@ -35095,10 +35103,12 @@ export namespace Prisma {
|
|
|
35095
35103
|
|
|
35096
35104
|
export type InterviewAvgAggregateInputType = {
|
|
35097
35105
|
interview_rating?: true
|
|
35106
|
+
reschedule_count?: true
|
|
35098
35107
|
}
|
|
35099
35108
|
|
|
35100
35109
|
export type InterviewSumAggregateInputType = {
|
|
35101
35110
|
interview_rating?: true
|
|
35111
|
+
reschedule_count?: true
|
|
35102
35112
|
}
|
|
35103
35113
|
|
|
35104
35114
|
export type InterviewMinAggregateInputType = {
|
|
@@ -35123,6 +35133,8 @@ export namespace Prisma {
|
|
|
35123
35133
|
interview_feedback?: true
|
|
35124
35134
|
overall_feedback?: true
|
|
35125
35135
|
interview_rating?: true
|
|
35136
|
+
reschedule_count?: true
|
|
35137
|
+
last_rescheduled_at?: true
|
|
35126
35138
|
created_at?: true
|
|
35127
35139
|
updated_at?: true
|
|
35128
35140
|
created_by?: true
|
|
@@ -35152,6 +35164,8 @@ export namespace Prisma {
|
|
|
35152
35164
|
interview_feedback?: true
|
|
35153
35165
|
overall_feedback?: true
|
|
35154
35166
|
interview_rating?: true
|
|
35167
|
+
reschedule_count?: true
|
|
35168
|
+
last_rescheduled_at?: true
|
|
35155
35169
|
created_at?: true
|
|
35156
35170
|
updated_at?: true
|
|
35157
35171
|
created_by?: true
|
|
@@ -35188,6 +35202,8 @@ export namespace Prisma {
|
|
|
35188
35202
|
section_feedback?: true
|
|
35189
35203
|
interview_preparation?: true
|
|
35190
35204
|
final_feedback?: true
|
|
35205
|
+
reschedule_count?: true
|
|
35206
|
+
last_rescheduled_at?: true
|
|
35191
35207
|
created_at?: true
|
|
35192
35208
|
updated_at?: true
|
|
35193
35209
|
created_by?: true
|
|
@@ -35311,6 +35327,8 @@ export namespace Prisma {
|
|
|
35311
35327
|
section_feedback: JsonValue[]
|
|
35312
35328
|
interview_preparation: JsonValue | null
|
|
35313
35329
|
final_feedback: JsonValue | null
|
|
35330
|
+
reschedule_count: number
|
|
35331
|
+
last_rescheduled_at: Date | null
|
|
35314
35332
|
created_at: Date
|
|
35315
35333
|
updated_at: Date
|
|
35316
35334
|
created_by: string
|
|
@@ -35366,6 +35384,8 @@ export namespace Prisma {
|
|
|
35366
35384
|
section_feedback?: boolean
|
|
35367
35385
|
interview_preparation?: boolean
|
|
35368
35386
|
final_feedback?: boolean
|
|
35387
|
+
reschedule_count?: boolean
|
|
35388
|
+
last_rescheduled_at?: boolean
|
|
35369
35389
|
created_at?: boolean
|
|
35370
35390
|
updated_at?: boolean
|
|
35371
35391
|
created_by?: boolean
|
|
@@ -35417,6 +35437,8 @@ export namespace Prisma {
|
|
|
35417
35437
|
section_feedback?: boolean
|
|
35418
35438
|
interview_preparation?: boolean
|
|
35419
35439
|
final_feedback?: boolean
|
|
35440
|
+
reschedule_count?: boolean
|
|
35441
|
+
last_rescheduled_at?: boolean
|
|
35420
35442
|
created_at?: boolean
|
|
35421
35443
|
updated_at?: boolean
|
|
35422
35444
|
created_by?: boolean
|
|
@@ -35460,6 +35482,8 @@ export namespace Prisma {
|
|
|
35460
35482
|
section_feedback?: boolean
|
|
35461
35483
|
interview_preparation?: boolean
|
|
35462
35484
|
final_feedback?: boolean
|
|
35485
|
+
reschedule_count?: boolean
|
|
35486
|
+
last_rescheduled_at?: boolean
|
|
35463
35487
|
created_at?: boolean
|
|
35464
35488
|
updated_at?: boolean
|
|
35465
35489
|
created_by?: boolean
|
|
@@ -35503,6 +35527,8 @@ export namespace Prisma {
|
|
|
35503
35527
|
section_feedback?: boolean
|
|
35504
35528
|
interview_preparation?: boolean
|
|
35505
35529
|
final_feedback?: boolean
|
|
35530
|
+
reschedule_count?: boolean
|
|
35531
|
+
last_rescheduled_at?: boolean
|
|
35506
35532
|
created_at?: boolean
|
|
35507
35533
|
updated_at?: boolean
|
|
35508
35534
|
created_by?: boolean
|
|
@@ -35510,7 +35536,7 @@ export namespace Prisma {
|
|
|
35510
35536
|
is_active?: boolean
|
|
35511
35537
|
}
|
|
35512
35538
|
|
|
35513
|
-
export type InterviewOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "candidate_id" | "interviewer_id" | "evaluation_plan_id" | "application_id" | "resume_id" | "job_description_id" | "calendar_event_id" | "room_name" | "interview_summary" | "scheduled_start_time" | "scheduled_end_time" | "actual_start_time" | "actual_end_time" | "recording_url" | "interview_status" | "interview_platform" | "ai_interview_feedback" | "interview_feedback" | "overall_feedback" | "interview_rating" | "ai_feedback" | "human_feedback" | "interviewer_feedback" | "section_feedback" | "interview_preparation" | "final_feedback" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["interview"]>
|
|
35539
|
+
export type InterviewOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "candidate_id" | "interviewer_id" | "evaluation_plan_id" | "application_id" | "resume_id" | "job_description_id" | "calendar_event_id" | "room_name" | "interview_summary" | "scheduled_start_time" | "scheduled_end_time" | "actual_start_time" | "actual_end_time" | "recording_url" | "interview_status" | "interview_platform" | "ai_interview_feedback" | "interview_feedback" | "overall_feedback" | "interview_rating" | "ai_feedback" | "human_feedback" | "interviewer_feedback" | "section_feedback" | "interview_preparation" | "final_feedback" | "reschedule_count" | "last_rescheduled_at" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["interview"]>
|
|
35514
35540
|
export type InterviewInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
35515
35541
|
candidate?: boolean | Interview$candidateArgs<ExtArgs>
|
|
35516
35542
|
interviewer?: boolean | Interview$interviewerArgs<ExtArgs>
|
|
@@ -35606,6 +35632,11 @@ export namespace Prisma {
|
|
|
35606
35632
|
section_feedback: Prisma.JsonValue[]
|
|
35607
35633
|
interview_preparation: Prisma.JsonValue | null
|
|
35608
35634
|
final_feedback: Prisma.JsonValue | null
|
|
35635
|
+
/**
|
|
35636
|
+
* Self-scheduling
|
|
35637
|
+
*/
|
|
35638
|
+
reschedule_count: number
|
|
35639
|
+
last_rescheduled_at: Date | null
|
|
35609
35640
|
/**
|
|
35610
35641
|
* Audit fields
|
|
35611
35642
|
*/
|
|
@@ -36079,6 +36110,8 @@ export namespace Prisma {
|
|
|
36079
36110
|
readonly section_feedback: FieldRef<"Interview", 'Json[]'>
|
|
36080
36111
|
readonly interview_preparation: FieldRef<"Interview", 'Json'>
|
|
36081
36112
|
readonly final_feedback: FieldRef<"Interview", 'Json'>
|
|
36113
|
+
readonly reschedule_count: FieldRef<"Interview", 'Int'>
|
|
36114
|
+
readonly last_rescheduled_at: FieldRef<"Interview", 'DateTime'>
|
|
36082
36115
|
readonly created_at: FieldRef<"Interview", 'DateTime'>
|
|
36083
36116
|
readonly updated_at: FieldRef<"Interview", 'DateTime'>
|
|
36084
36117
|
readonly created_by: FieldRef<"Interview", 'String'>
|
|
@@ -65827,6 +65860,8 @@ export namespace Prisma {
|
|
|
65827
65860
|
section_feedback: 'section_feedback',
|
|
65828
65861
|
interview_preparation: 'interview_preparation',
|
|
65829
65862
|
final_feedback: 'final_feedback',
|
|
65863
|
+
reschedule_count: 'reschedule_count',
|
|
65864
|
+
last_rescheduled_at: 'last_rescheduled_at',
|
|
65830
65865
|
created_at: 'created_at',
|
|
65831
65866
|
updated_at: 'updated_at',
|
|
65832
65867
|
created_by: 'created_by',
|
|
@@ -69371,6 +69406,8 @@ export namespace Prisma {
|
|
|
69371
69406
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
69372
69407
|
interview_preparation?: JsonNullableFilter<"Interview">
|
|
69373
69408
|
final_feedback?: JsonNullableFilter<"Interview">
|
|
69409
|
+
reschedule_count?: IntFilter<"Interview"> | number
|
|
69410
|
+
last_rescheduled_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
69374
69411
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
69375
69412
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
69376
69413
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -69421,6 +69458,8 @@ export namespace Prisma {
|
|
|
69421
69458
|
section_feedback?: SortOrder
|
|
69422
69459
|
interview_preparation?: SortOrderInput | SortOrder
|
|
69423
69460
|
final_feedback?: SortOrderInput | SortOrder
|
|
69461
|
+
reschedule_count?: SortOrder
|
|
69462
|
+
last_rescheduled_at?: SortOrderInput | SortOrder
|
|
69424
69463
|
created_at?: SortOrder
|
|
69425
69464
|
updated_at?: SortOrder
|
|
69426
69465
|
created_by?: SortOrder
|
|
@@ -69475,6 +69514,8 @@ export namespace Prisma {
|
|
|
69475
69514
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
69476
69515
|
interview_preparation?: JsonNullableFilter<"Interview">
|
|
69477
69516
|
final_feedback?: JsonNullableFilter<"Interview">
|
|
69517
|
+
reschedule_count?: IntFilter<"Interview"> | number
|
|
69518
|
+
last_rescheduled_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
69478
69519
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
69479
69520
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
69480
69521
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -69525,6 +69566,8 @@ export namespace Prisma {
|
|
|
69525
69566
|
section_feedback?: SortOrder
|
|
69526
69567
|
interview_preparation?: SortOrderInput | SortOrder
|
|
69527
69568
|
final_feedback?: SortOrderInput | SortOrder
|
|
69569
|
+
reschedule_count?: SortOrder
|
|
69570
|
+
last_rescheduled_at?: SortOrderInput | SortOrder
|
|
69528
69571
|
created_at?: SortOrder
|
|
69529
69572
|
updated_at?: SortOrder
|
|
69530
69573
|
created_by?: SortOrder
|
|
@@ -69569,6 +69612,8 @@ export namespace Prisma {
|
|
|
69569
69612
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
69570
69613
|
interview_preparation?: JsonNullableWithAggregatesFilter<"Interview">
|
|
69571
69614
|
final_feedback?: JsonNullableWithAggregatesFilter<"Interview">
|
|
69615
|
+
reschedule_count?: IntWithAggregatesFilter<"Interview"> | number
|
|
69616
|
+
last_rescheduled_at?: DateTimeNullableWithAggregatesFilter<"Interview"> | Date | string | null
|
|
69572
69617
|
created_at?: DateTimeWithAggregatesFilter<"Interview"> | Date | string
|
|
69573
69618
|
updated_at?: DateTimeWithAggregatesFilter<"Interview"> | Date | string
|
|
69574
69619
|
created_by?: StringWithAggregatesFilter<"Interview"> | string
|
|
@@ -74884,6 +74929,8 @@ export namespace Prisma {
|
|
|
74884
74929
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
74885
74930
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
74886
74931
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
74932
|
+
reschedule_count?: number
|
|
74933
|
+
last_rescheduled_at?: Date | string | null
|
|
74887
74934
|
created_at?: Date | string
|
|
74888
74935
|
updated_at?: Date | string
|
|
74889
74936
|
created_by: string
|
|
@@ -74934,6 +74981,8 @@ export namespace Prisma {
|
|
|
74934
74981
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
74935
74982
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
74936
74983
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
74984
|
+
reschedule_count?: number
|
|
74985
|
+
last_rescheduled_at?: Date | string | null
|
|
74937
74986
|
created_at?: Date | string
|
|
74938
74987
|
updated_at?: Date | string
|
|
74939
74988
|
created_by: string
|
|
@@ -74970,6 +75019,8 @@ export namespace Prisma {
|
|
|
74970
75019
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
74971
75020
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
74972
75021
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
75022
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
75023
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
74973
75024
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
74974
75025
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
74975
75026
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -75020,6 +75071,8 @@ export namespace Prisma {
|
|
|
75020
75071
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
75021
75072
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
75022
75073
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
75074
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
75075
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
75023
75076
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75024
75077
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75025
75078
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -75063,6 +75116,8 @@ export namespace Prisma {
|
|
|
75063
75116
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
75064
75117
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
75065
75118
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
75119
|
+
reschedule_count?: number
|
|
75120
|
+
last_rescheduled_at?: Date | string | null
|
|
75066
75121
|
created_at?: Date | string
|
|
75067
75122
|
updated_at?: Date | string
|
|
75068
75123
|
created_by: string
|
|
@@ -75092,6 +75147,8 @@ export namespace Prisma {
|
|
|
75092
75147
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
75093
75148
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
75094
75149
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
75150
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
75151
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
75095
75152
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75096
75153
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75097
75154
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -75128,6 +75185,8 @@ export namespace Prisma {
|
|
|
75128
75185
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
75129
75186
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
75130
75187
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
75188
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
75189
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
75131
75190
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75132
75191
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75133
75192
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -80338,6 +80397,8 @@ export namespace Prisma {
|
|
|
80338
80397
|
section_feedback?: SortOrder
|
|
80339
80398
|
interview_preparation?: SortOrder
|
|
80340
80399
|
final_feedback?: SortOrder
|
|
80400
|
+
reschedule_count?: SortOrder
|
|
80401
|
+
last_rescheduled_at?: SortOrder
|
|
80341
80402
|
created_at?: SortOrder
|
|
80342
80403
|
updated_at?: SortOrder
|
|
80343
80404
|
created_by?: SortOrder
|
|
@@ -80347,6 +80408,7 @@ export namespace Prisma {
|
|
|
80347
80408
|
|
|
80348
80409
|
export type InterviewAvgOrderByAggregateInput = {
|
|
80349
80410
|
interview_rating?: SortOrder
|
|
80411
|
+
reschedule_count?: SortOrder
|
|
80350
80412
|
}
|
|
80351
80413
|
|
|
80352
80414
|
export type InterviewMaxOrderByAggregateInput = {
|
|
@@ -80371,6 +80433,8 @@ export namespace Prisma {
|
|
|
80371
80433
|
interview_feedback?: SortOrder
|
|
80372
80434
|
overall_feedback?: SortOrder
|
|
80373
80435
|
interview_rating?: SortOrder
|
|
80436
|
+
reschedule_count?: SortOrder
|
|
80437
|
+
last_rescheduled_at?: SortOrder
|
|
80374
80438
|
created_at?: SortOrder
|
|
80375
80439
|
updated_at?: SortOrder
|
|
80376
80440
|
created_by?: SortOrder
|
|
@@ -80400,6 +80464,8 @@ export namespace Prisma {
|
|
|
80400
80464
|
interview_feedback?: SortOrder
|
|
80401
80465
|
overall_feedback?: SortOrder
|
|
80402
80466
|
interview_rating?: SortOrder
|
|
80467
|
+
reschedule_count?: SortOrder
|
|
80468
|
+
last_rescheduled_at?: SortOrder
|
|
80403
80469
|
created_at?: SortOrder
|
|
80404
80470
|
updated_at?: SortOrder
|
|
80405
80471
|
created_by?: SortOrder
|
|
@@ -80409,6 +80475,7 @@ export namespace Prisma {
|
|
|
80409
80475
|
|
|
80410
80476
|
export type InterviewSumOrderByAggregateInput = {
|
|
80411
80477
|
interview_rating?: SortOrder
|
|
80478
|
+
reschedule_count?: SortOrder
|
|
80412
80479
|
}
|
|
80413
80480
|
|
|
80414
80481
|
export type EnumInterviewStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -91208,6 +91275,8 @@ export namespace Prisma {
|
|
|
91208
91275
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
91209
91276
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
91210
91277
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
91278
|
+
reschedule_count?: number
|
|
91279
|
+
last_rescheduled_at?: Date | string | null
|
|
91211
91280
|
created_at?: Date | string
|
|
91212
91281
|
updated_at?: Date | string
|
|
91213
91282
|
created_by: string
|
|
@@ -91256,6 +91325,8 @@ export namespace Prisma {
|
|
|
91256
91325
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
91257
91326
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
91258
91327
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
91328
|
+
reschedule_count?: number
|
|
91329
|
+
last_rescheduled_at?: Date | string | null
|
|
91259
91330
|
created_at?: Date | string
|
|
91260
91331
|
updated_at?: Date | string
|
|
91261
91332
|
created_by: string
|
|
@@ -92046,6 +92117,8 @@ export namespace Prisma {
|
|
|
92046
92117
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
92047
92118
|
interview_preparation?: JsonNullableFilter<"Interview">
|
|
92048
92119
|
final_feedback?: JsonNullableFilter<"Interview">
|
|
92120
|
+
reschedule_count?: IntFilter<"Interview"> | number
|
|
92121
|
+
last_rescheduled_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
92049
92122
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
92050
92123
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
92051
92124
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -97800,6 +97873,8 @@ export namespace Prisma {
|
|
|
97800
97873
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
97801
97874
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97802
97875
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97876
|
+
reschedule_count?: number
|
|
97877
|
+
last_rescheduled_at?: Date | string | null
|
|
97803
97878
|
created_at?: Date | string
|
|
97804
97879
|
updated_at?: Date | string
|
|
97805
97880
|
created_by: string
|
|
@@ -97848,6 +97923,8 @@ export namespace Prisma {
|
|
|
97848
97923
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
97849
97924
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97850
97925
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97926
|
+
reschedule_count?: number
|
|
97927
|
+
last_rescheduled_at?: Date | string | null
|
|
97851
97928
|
created_at?: Date | string
|
|
97852
97929
|
updated_at?: Date | string
|
|
97853
97930
|
created_by: string
|
|
@@ -98372,6 +98449,8 @@ export namespace Prisma {
|
|
|
98372
98449
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
98373
98450
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98374
98451
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98452
|
+
reschedule_count?: number
|
|
98453
|
+
last_rescheduled_at?: Date | string | null
|
|
98375
98454
|
created_at?: Date | string
|
|
98376
98455
|
updated_at?: Date | string
|
|
98377
98456
|
created_by: string
|
|
@@ -98421,6 +98500,8 @@ export namespace Prisma {
|
|
|
98421
98500
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
98422
98501
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98423
98502
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98503
|
+
reschedule_count?: number
|
|
98504
|
+
last_rescheduled_at?: Date | string | null
|
|
98424
98505
|
created_at?: Date | string
|
|
98425
98506
|
updated_at?: Date | string
|
|
98426
98507
|
created_by: string
|
|
@@ -98472,6 +98553,8 @@ export namespace Prisma {
|
|
|
98472
98553
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
98473
98554
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98474
98555
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98556
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
98557
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98475
98558
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98476
98559
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98477
98560
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -98521,6 +98604,8 @@ export namespace Prisma {
|
|
|
98521
98604
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
98522
98605
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98523
98606
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98607
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
98608
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98524
98609
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98525
98610
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98526
98611
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -102012,6 +102097,8 @@ export namespace Prisma {
|
|
|
102012
102097
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
102013
102098
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102014
102099
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102100
|
+
reschedule_count?: number
|
|
102101
|
+
last_rescheduled_at?: Date | string | null
|
|
102015
102102
|
created_at?: Date | string
|
|
102016
102103
|
updated_at?: Date | string
|
|
102017
102104
|
created_by: string
|
|
@@ -102061,6 +102148,8 @@ export namespace Prisma {
|
|
|
102061
102148
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
102062
102149
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102063
102150
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102151
|
+
reschedule_count?: number
|
|
102152
|
+
last_rescheduled_at?: Date | string | null
|
|
102064
102153
|
created_at?: Date | string
|
|
102065
102154
|
updated_at?: Date | string
|
|
102066
102155
|
created_by: string
|
|
@@ -102112,6 +102201,8 @@ export namespace Prisma {
|
|
|
102112
102201
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
102113
102202
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102114
102203
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102204
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
102205
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102115
102206
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102116
102207
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102117
102208
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -102161,6 +102252,8 @@ export namespace Prisma {
|
|
|
102161
102252
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
102162
102253
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102163
102254
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102255
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
102256
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102164
102257
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102165
102258
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102166
102259
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -102406,6 +102499,8 @@ export namespace Prisma {
|
|
|
102406
102499
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
102407
102500
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102408
102501
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102502
|
+
reschedule_count?: number
|
|
102503
|
+
last_rescheduled_at?: Date | string | null
|
|
102409
102504
|
created_at?: Date | string
|
|
102410
102505
|
updated_at?: Date | string
|
|
102411
102506
|
created_by: string
|
|
@@ -102454,6 +102549,8 @@ export namespace Prisma {
|
|
|
102454
102549
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
102455
102550
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102456
102551
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102552
|
+
reschedule_count?: number
|
|
102553
|
+
last_rescheduled_at?: Date | string | null
|
|
102457
102554
|
created_at?: Date | string
|
|
102458
102555
|
updated_at?: Date | string
|
|
102459
102556
|
created_by: string
|
|
@@ -105301,6 +105398,8 @@ export namespace Prisma {
|
|
|
105301
105398
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
105302
105399
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
105303
105400
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
105401
|
+
reschedule_count?: number
|
|
105402
|
+
last_rescheduled_at?: Date | string | null
|
|
105304
105403
|
created_at?: Date | string
|
|
105305
105404
|
updated_at?: Date | string
|
|
105306
105405
|
created_by: string
|
|
@@ -105350,6 +105449,8 @@ export namespace Prisma {
|
|
|
105350
105449
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
105351
105450
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
105352
105451
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
105452
|
+
reschedule_count?: number
|
|
105453
|
+
last_rescheduled_at?: Date | string | null
|
|
105353
105454
|
created_at?: Date | string
|
|
105354
105455
|
updated_at?: Date | string
|
|
105355
105456
|
created_by: string
|
|
@@ -105401,6 +105502,8 @@ export namespace Prisma {
|
|
|
105401
105502
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
105402
105503
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
105403
105504
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
105505
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
105506
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105404
105507
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105405
105508
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105406
105509
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -105450,6 +105553,8 @@ export namespace Prisma {
|
|
|
105450
105553
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
105451
105554
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
105452
105555
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
105556
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
105557
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105453
105558
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105454
105559
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105455
105560
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -106931,6 +107036,8 @@ export namespace Prisma {
|
|
|
106931
107036
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
106932
107037
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
106933
107038
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
107039
|
+
reschedule_count?: number
|
|
107040
|
+
last_rescheduled_at?: Date | string | null
|
|
106934
107041
|
created_at?: Date | string
|
|
106935
107042
|
updated_at?: Date | string
|
|
106936
107043
|
created_by: string
|
|
@@ -106980,6 +107087,8 @@ export namespace Prisma {
|
|
|
106980
107087
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
106981
107088
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
106982
107089
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
107090
|
+
reschedule_count?: number
|
|
107091
|
+
last_rescheduled_at?: Date | string | null
|
|
106983
107092
|
created_at?: Date | string
|
|
106984
107093
|
updated_at?: Date | string
|
|
106985
107094
|
created_by: string
|
|
@@ -107637,6 +107746,8 @@ export namespace Prisma {
|
|
|
107637
107746
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
107638
107747
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
107639
107748
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
107749
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
107750
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107640
107751
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107641
107752
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107642
107753
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -107686,6 +107797,8 @@ export namespace Prisma {
|
|
|
107686
107797
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
107687
107798
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
107688
107799
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
107800
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
107801
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107689
107802
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107690
107803
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107691
107804
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -108307,6 +108420,8 @@ export namespace Prisma {
|
|
|
108307
108420
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
108308
108421
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
108309
108422
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
108423
|
+
reschedule_count?: number
|
|
108424
|
+
last_rescheduled_at?: Date | string | null
|
|
108310
108425
|
created_at?: Date | string
|
|
108311
108426
|
updated_at?: Date | string
|
|
108312
108427
|
created_by: string
|
|
@@ -108355,6 +108470,8 @@ export namespace Prisma {
|
|
|
108355
108470
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
108356
108471
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
108357
108472
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
108473
|
+
reschedule_count?: number
|
|
108474
|
+
last_rescheduled_at?: Date | string | null
|
|
108358
108475
|
created_at?: Date | string
|
|
108359
108476
|
updated_at?: Date | string
|
|
108360
108477
|
created_by: string
|
|
@@ -110899,6 +111016,8 @@ export namespace Prisma {
|
|
|
110899
111016
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
110900
111017
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
110901
111018
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
111019
|
+
reschedule_count?: number
|
|
111020
|
+
last_rescheduled_at?: Date | string | null
|
|
110902
111021
|
created_at?: Date | string
|
|
110903
111022
|
updated_at?: Date | string
|
|
110904
111023
|
created_by: string
|
|
@@ -110947,6 +111066,8 @@ export namespace Prisma {
|
|
|
110947
111066
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
110948
111067
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
110949
111068
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
111069
|
+
reschedule_count?: number
|
|
111070
|
+
last_rescheduled_at?: Date | string | null
|
|
110950
111071
|
created_at?: Date | string
|
|
110951
111072
|
updated_at?: Date | string
|
|
110952
111073
|
created_by: string
|
|
@@ -111793,6 +111914,8 @@ export namespace Prisma {
|
|
|
111793
111914
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
111794
111915
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
111795
111916
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
111917
|
+
reschedule_count?: number
|
|
111918
|
+
last_rescheduled_at?: Date | string | null
|
|
111796
111919
|
created_at?: Date | string
|
|
111797
111920
|
updated_at?: Date | string
|
|
111798
111921
|
created_by: string
|
|
@@ -111842,6 +111965,8 @@ export namespace Prisma {
|
|
|
111842
111965
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
111843
111966
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
111844
111967
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
111968
|
+
reschedule_count?: number
|
|
111969
|
+
last_rescheduled_at?: Date | string | null
|
|
111845
111970
|
created_at?: Date | string
|
|
111846
111971
|
updated_at?: Date | string
|
|
111847
111972
|
created_by: string
|
|
@@ -112016,6 +112141,8 @@ export namespace Prisma {
|
|
|
112016
112141
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
112017
112142
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112018
112143
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112144
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
112145
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112019
112146
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112020
112147
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112021
112148
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -112065,6 +112192,8 @@ export namespace Prisma {
|
|
|
112065
112192
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
112066
112193
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112067
112194
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112195
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
112196
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112068
112197
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112069
112198
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112070
112199
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -112201,6 +112330,8 @@ export namespace Prisma {
|
|
|
112201
112330
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
112202
112331
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112203
112332
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112333
|
+
reschedule_count?: number
|
|
112334
|
+
last_rescheduled_at?: Date | string | null
|
|
112204
112335
|
created_at?: Date | string
|
|
112205
112336
|
updated_at?: Date | string
|
|
112206
112337
|
created_by: string
|
|
@@ -112250,6 +112381,8 @@ export namespace Prisma {
|
|
|
112250
112381
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
112251
112382
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112252
112383
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112384
|
+
reschedule_count?: number
|
|
112385
|
+
last_rescheduled_at?: Date | string | null
|
|
112253
112386
|
created_at?: Date | string
|
|
112254
112387
|
updated_at?: Date | string
|
|
112255
112388
|
created_by: string
|
|
@@ -112409,6 +112542,8 @@ export namespace Prisma {
|
|
|
112409
112542
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
112410
112543
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112411
112544
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112545
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
112546
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112412
112547
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112413
112548
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112414
112549
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -112458,6 +112593,8 @@ export namespace Prisma {
|
|
|
112458
112593
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
112459
112594
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112460
112595
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112596
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
112597
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112461
112598
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112462
112599
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112463
112600
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -113269,6 +113406,8 @@ export namespace Prisma {
|
|
|
113269
113406
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
113270
113407
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
113271
113408
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
113409
|
+
reschedule_count?: number
|
|
113410
|
+
last_rescheduled_at?: Date | string | null
|
|
113272
113411
|
created_at?: Date | string
|
|
113273
113412
|
updated_at?: Date | string
|
|
113274
113413
|
created_by: string
|
|
@@ -113317,6 +113456,8 @@ export namespace Prisma {
|
|
|
113317
113456
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
113318
113457
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
113319
113458
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
113459
|
+
reschedule_count?: number
|
|
113460
|
+
last_rescheduled_at?: Date | string | null
|
|
113320
113461
|
created_at?: Date | string
|
|
113321
113462
|
updated_at?: Date | string
|
|
113322
113463
|
created_by: string
|
|
@@ -113363,6 +113504,8 @@ export namespace Prisma {
|
|
|
113363
113504
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
113364
113505
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
113365
113506
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
113507
|
+
reschedule_count?: number
|
|
113508
|
+
last_rescheduled_at?: Date | string | null
|
|
113366
113509
|
created_at?: Date | string
|
|
113367
113510
|
updated_at?: Date | string
|
|
113368
113511
|
created_by: string
|
|
@@ -113411,6 +113554,8 @@ export namespace Prisma {
|
|
|
113411
113554
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
113412
113555
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
113413
113556
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
113557
|
+
reschedule_count?: number
|
|
113558
|
+
last_rescheduled_at?: Date | string | null
|
|
113414
113559
|
created_at?: Date | string
|
|
113415
113560
|
updated_at?: Date | string
|
|
113416
113561
|
created_by: string
|
|
@@ -115474,6 +115619,8 @@ export namespace Prisma {
|
|
|
115474
115619
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
115475
115620
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
115476
115621
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115622
|
+
reschedule_count?: number
|
|
115623
|
+
last_rescheduled_at?: Date | string | null
|
|
115477
115624
|
created_at?: Date | string
|
|
115478
115625
|
updated_at?: Date | string
|
|
115479
115626
|
created_by: string
|
|
@@ -115523,6 +115670,8 @@ export namespace Prisma {
|
|
|
115523
115670
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
115524
115671
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
115525
115672
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115673
|
+
reschedule_count?: number
|
|
115674
|
+
last_rescheduled_at?: Date | string | null
|
|
115526
115675
|
created_at?: Date | string
|
|
115527
115676
|
updated_at?: Date | string
|
|
115528
115677
|
created_by: string
|
|
@@ -115608,6 +115757,8 @@ export namespace Prisma {
|
|
|
115608
115757
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
115609
115758
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
115610
115759
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115760
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
115761
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115611
115762
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115612
115763
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115613
115764
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -115657,6 +115808,8 @@ export namespace Prisma {
|
|
|
115657
115808
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
115658
115809
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
115659
115810
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115811
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
115812
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115660
115813
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115661
115814
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115662
115815
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -116288,6 +116441,8 @@ export namespace Prisma {
|
|
|
116288
116441
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
116289
116442
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
116290
116443
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
116444
|
+
reschedule_count?: number
|
|
116445
|
+
last_rescheduled_at?: Date | string | null
|
|
116291
116446
|
created_at?: Date | string
|
|
116292
116447
|
updated_at?: Date | string
|
|
116293
116448
|
created_by: string
|
|
@@ -116398,6 +116553,8 @@ export namespace Prisma {
|
|
|
116398
116553
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
116399
116554
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
116400
116555
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
116556
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
116557
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116401
116558
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116402
116559
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116403
116560
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -116446,6 +116603,8 @@ export namespace Prisma {
|
|
|
116446
116603
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
116447
116604
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
116448
116605
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
116606
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
116607
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116449
116608
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116450
116609
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116451
116610
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -116488,6 +116647,8 @@ export namespace Prisma {
|
|
|
116488
116647
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
116489
116648
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
116490
116649
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
116650
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
116651
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116491
116652
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116492
116653
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116493
116654
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -117331,6 +117492,8 @@ export namespace Prisma {
|
|
|
117331
117492
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
117332
117493
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
117333
117494
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
117495
|
+
reschedule_count?: number
|
|
117496
|
+
last_rescheduled_at?: Date | string | null
|
|
117334
117497
|
created_at?: Date | string
|
|
117335
117498
|
updated_at?: Date | string
|
|
117336
117499
|
created_by: string
|
|
@@ -117475,6 +117638,8 @@ export namespace Prisma {
|
|
|
117475
117638
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
117476
117639
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
117477
117640
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
117641
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
117642
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117478
117643
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117479
117644
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117480
117645
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -117523,6 +117688,8 @@ export namespace Prisma {
|
|
|
117523
117688
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
117524
117689
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
117525
117690
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
117691
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
117692
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117526
117693
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117527
117694
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117528
117695
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -117565,6 +117732,8 @@ export namespace Prisma {
|
|
|
117565
117732
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
117566
117733
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
117567
117734
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
117735
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
117736
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117568
117737
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117569
117738
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117570
117739
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -118075,6 +118244,8 @@ export namespace Prisma {
|
|
|
118075
118244
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
118076
118245
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
118077
118246
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
118247
|
+
reschedule_count?: number
|
|
118248
|
+
last_rescheduled_at?: Date | string | null
|
|
118078
118249
|
created_at?: Date | string
|
|
118079
118250
|
updated_at?: Date | string
|
|
118080
118251
|
created_by: string
|
|
@@ -118385,6 +118556,8 @@ export namespace Prisma {
|
|
|
118385
118556
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
118386
118557
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
118387
118558
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
118559
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
118560
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
118388
118561
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118389
118562
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118390
118563
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -118433,6 +118606,8 @@ export namespace Prisma {
|
|
|
118433
118606
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
118434
118607
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
118435
118608
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
118609
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
118610
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
118436
118611
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118437
118612
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118438
118613
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -118475,6 +118650,8 @@ export namespace Prisma {
|
|
|
118475
118650
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
118476
118651
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
118477
118652
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
118653
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
118654
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
118478
118655
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118479
118656
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118480
118657
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -119551,6 +119728,8 @@ export namespace Prisma {
|
|
|
119551
119728
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
119552
119729
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
119553
119730
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
119731
|
+
reschedule_count?: number
|
|
119732
|
+
last_rescheduled_at?: Date | string | null
|
|
119554
119733
|
created_at?: Date | string
|
|
119555
119734
|
updated_at?: Date | string
|
|
119556
119735
|
created_by: string
|
|
@@ -120324,6 +120503,8 @@ export namespace Prisma {
|
|
|
120324
120503
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
120325
120504
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
120326
120505
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
120506
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
120507
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120327
120508
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120328
120509
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120329
120510
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -120372,6 +120553,8 @@ export namespace Prisma {
|
|
|
120372
120553
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
120373
120554
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
120374
120555
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
120556
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
120557
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120375
120558
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120376
120559
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120377
120560
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -120414,6 +120597,8 @@ export namespace Prisma {
|
|
|
120414
120597
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
120415
120598
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
120416
120599
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
120600
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
120601
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120417
120602
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120418
120603
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120419
120604
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121159,6 +121344,8 @@ export namespace Prisma {
|
|
|
121159
121344
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
121160
121345
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121161
121346
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
121347
|
+
reschedule_count?: number
|
|
121348
|
+
last_rescheduled_at?: Date | string | null
|
|
121162
121349
|
created_at?: Date | string
|
|
121163
121350
|
updated_at?: Date | string
|
|
121164
121351
|
created_by: string
|
|
@@ -121352,6 +121539,8 @@ export namespace Prisma {
|
|
|
121352
121539
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
121353
121540
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121354
121541
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
121542
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
121543
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121355
121544
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121356
121545
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121357
121546
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121400,6 +121589,8 @@ export namespace Prisma {
|
|
|
121400
121589
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
121401
121590
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121402
121591
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
121592
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
121593
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121403
121594
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121404
121595
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121405
121596
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121442,6 +121633,8 @@ export namespace Prisma {
|
|
|
121442
121633
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
121443
121634
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121444
121635
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
121636
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
121637
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121445
121638
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121446
121639
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121447
121640
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121908,6 +122101,8 @@ export namespace Prisma {
|
|
|
121908
122101
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
121909
122102
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121910
122103
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
122104
|
+
reschedule_count?: number
|
|
122105
|
+
last_rescheduled_at?: Date | string | null
|
|
121911
122106
|
created_at?: Date | string
|
|
121912
122107
|
updated_at?: Date | string
|
|
121913
122108
|
created_by: string
|
|
@@ -121943,6 +122138,8 @@ export namespace Prisma {
|
|
|
121943
122138
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
121944
122139
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121945
122140
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
122141
|
+
reschedule_count?: number
|
|
122142
|
+
last_rescheduled_at?: Date | string | null
|
|
121946
122143
|
created_at?: Date | string
|
|
121947
122144
|
updated_at?: Date | string
|
|
121948
122145
|
created_by: string
|
|
@@ -122812,6 +123009,8 @@ export namespace Prisma {
|
|
|
122812
123009
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
122813
123010
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
122814
123011
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123012
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123013
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
122815
123014
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
122816
123015
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
122817
123016
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -122860,6 +123059,8 @@ export namespace Prisma {
|
|
|
122860
123059
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
122861
123060
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
122862
123061
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123062
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123063
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
122863
123064
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
122864
123065
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
122865
123066
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -122902,6 +123103,8 @@ export namespace Prisma {
|
|
|
122902
123103
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
122903
123104
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
122904
123105
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123106
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123107
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
122905
123108
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
122906
123109
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
122907
123110
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -122931,6 +123134,8 @@ export namespace Prisma {
|
|
|
122931
123134
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
122932
123135
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
122933
123136
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123137
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123138
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
122934
123139
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
122935
123140
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
122936
123141
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -122979,6 +123184,8 @@ export namespace Prisma {
|
|
|
122979
123184
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
122980
123185
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
122981
123186
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123187
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123188
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
122982
123189
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
122983
123190
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
122984
123191
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123021,6 +123228,8 @@ export namespace Prisma {
|
|
|
123021
123228
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
123022
123229
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
123023
123230
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123231
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123232
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123024
123233
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123025
123234
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123026
123235
|
created_by?: StringFieldUpdateOperationsInput | string
|