@adaptware/eagles-db 0.1.91 → 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 +8 -8
- package/client/index-browser.js +3 -3
- package/client/index.d.ts +213 -183
- package/client/index.js +8 -8
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +4 -5
- package/client/wasm.js +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +6 -6
- package/package.json +1 -1
- package/prisma/schema/assessment.prisma +0 -4
- package/prisma/schema/interview.prisma +4 -0
- package/prisma/schema/organisation.prisma +0 -1
- 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
|
@@ -13940,7 +13940,6 @@ export namespace Prisma {
|
|
|
13940
13940
|
scheduled_end_time: Date | null
|
|
13941
13941
|
actual_start_time: Date | null
|
|
13942
13942
|
actual_end_time: Date | null
|
|
13943
|
-
attempt_expires_at: Date | null
|
|
13944
13943
|
created_at: Date | null
|
|
13945
13944
|
updated_at: Date | null
|
|
13946
13945
|
created_by: string | null
|
|
@@ -13960,7 +13959,6 @@ export namespace Prisma {
|
|
|
13960
13959
|
scheduled_end_time: Date | null
|
|
13961
13960
|
actual_start_time: Date | null
|
|
13962
13961
|
actual_end_time: Date | null
|
|
13963
|
-
attempt_expires_at: Date | null
|
|
13964
13962
|
created_at: Date | null
|
|
13965
13963
|
updated_at: Date | null
|
|
13966
13964
|
created_by: string | null
|
|
@@ -13981,7 +13979,6 @@ export namespace Prisma {
|
|
|
13981
13979
|
scheduled_end_time: number
|
|
13982
13980
|
actual_start_time: number
|
|
13983
13981
|
actual_end_time: number
|
|
13984
|
-
attempt_expires_at: number
|
|
13985
13982
|
created_at: number
|
|
13986
13983
|
updated_at: number
|
|
13987
13984
|
created_by: number
|
|
@@ -14011,7 +14008,6 @@ export namespace Prisma {
|
|
|
14011
14008
|
scheduled_end_time?: true
|
|
14012
14009
|
actual_start_time?: true
|
|
14013
14010
|
actual_end_time?: true
|
|
14014
|
-
attempt_expires_at?: true
|
|
14015
14011
|
created_at?: true
|
|
14016
14012
|
updated_at?: true
|
|
14017
14013
|
created_by?: true
|
|
@@ -14031,7 +14027,6 @@ export namespace Prisma {
|
|
|
14031
14027
|
scheduled_end_time?: true
|
|
14032
14028
|
actual_start_time?: true
|
|
14033
14029
|
actual_end_time?: true
|
|
14034
|
-
attempt_expires_at?: true
|
|
14035
14030
|
created_at?: true
|
|
14036
14031
|
updated_at?: true
|
|
14037
14032
|
created_by?: true
|
|
@@ -14052,7 +14047,6 @@ export namespace Prisma {
|
|
|
14052
14047
|
scheduled_end_time?: true
|
|
14053
14048
|
actual_start_time?: true
|
|
14054
14049
|
actual_end_time?: true
|
|
14055
|
-
attempt_expires_at?: true
|
|
14056
14050
|
created_at?: true
|
|
14057
14051
|
updated_at?: true
|
|
14058
14052
|
created_by?: true
|
|
@@ -14160,7 +14154,6 @@ export namespace Prisma {
|
|
|
14160
14154
|
scheduled_end_time: Date | null
|
|
14161
14155
|
actual_start_time: Date | null
|
|
14162
14156
|
actual_end_time: Date | null
|
|
14163
|
-
attempt_expires_at: Date | null
|
|
14164
14157
|
created_at: Date
|
|
14165
14158
|
updated_at: Date
|
|
14166
14159
|
created_by: string
|
|
@@ -14200,7 +14193,6 @@ export namespace Prisma {
|
|
|
14200
14193
|
scheduled_end_time?: boolean
|
|
14201
14194
|
actual_start_time?: boolean
|
|
14202
14195
|
actual_end_time?: boolean
|
|
14203
|
-
attempt_expires_at?: boolean
|
|
14204
14196
|
created_at?: boolean
|
|
14205
14197
|
updated_at?: boolean
|
|
14206
14198
|
created_by?: boolean
|
|
@@ -14230,7 +14222,6 @@ export namespace Prisma {
|
|
|
14230
14222
|
scheduled_end_time?: boolean
|
|
14231
14223
|
actual_start_time?: boolean
|
|
14232
14224
|
actual_end_time?: boolean
|
|
14233
|
-
attempt_expires_at?: boolean
|
|
14234
14225
|
created_at?: boolean
|
|
14235
14226
|
updated_at?: boolean
|
|
14236
14227
|
created_by?: boolean
|
|
@@ -14256,7 +14247,6 @@ export namespace Prisma {
|
|
|
14256
14247
|
scheduled_end_time?: boolean
|
|
14257
14248
|
actual_start_time?: boolean
|
|
14258
14249
|
actual_end_time?: boolean
|
|
14259
|
-
attempt_expires_at?: boolean
|
|
14260
14250
|
created_at?: boolean
|
|
14261
14251
|
updated_at?: boolean
|
|
14262
14252
|
created_by?: boolean
|
|
@@ -14282,7 +14272,6 @@ export namespace Prisma {
|
|
|
14282
14272
|
scheduled_end_time?: boolean
|
|
14283
14273
|
actual_start_time?: boolean
|
|
14284
14274
|
actual_end_time?: boolean
|
|
14285
|
-
attempt_expires_at?: boolean
|
|
14286
14275
|
created_at?: boolean
|
|
14287
14276
|
updated_at?: boolean
|
|
14288
14277
|
created_by?: boolean
|
|
@@ -14291,7 +14280,7 @@ export namespace Prisma {
|
|
|
14291
14280
|
userId?: boolean
|
|
14292
14281
|
}
|
|
14293
14282
|
|
|
14294
|
-
export type AssessmentOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "assessment_library_id" | "candidate_id" | "reviewer_id" | "score" | "feedback" | "scheduled_start_time" | "scheduled_end_time" | "actual_start_time" | "actual_end_time" | "
|
|
14283
|
+
export type AssessmentOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "assessment_library_id" | "candidate_id" | "reviewer_id" | "score" | "feedback" | "scheduled_start_time" | "scheduled_end_time" | "actual_start_time" | "actual_end_time" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "userId", ExtArgs["result"]["assessment"]>
|
|
14295
14284
|
export type AssessmentInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14296
14285
|
assessment_library?: boolean | AssessmentLibraryDefaultArgs<ExtArgs>
|
|
14297
14286
|
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
@@ -14340,15 +14329,8 @@ export namespace Prisma {
|
|
|
14340
14329
|
feedback: Prisma.JsonValue | null
|
|
14341
14330
|
scheduled_start_time: Date | null
|
|
14342
14331
|
scheduled_end_time: Date | null
|
|
14343
|
-
/**
|
|
14344
|
-
* Actual Start and End Time
|
|
14345
|
-
*/
|
|
14346
14332
|
actual_start_time: Date | null
|
|
14347
14333
|
actual_end_time: Date | null
|
|
14348
|
-
/**
|
|
14349
|
-
* Attempt Expires At
|
|
14350
|
-
*/
|
|
14351
|
-
attempt_expires_at: Date | null
|
|
14352
14334
|
/**
|
|
14353
14335
|
* Audit fields
|
|
14354
14336
|
*/
|
|
@@ -14800,7 +14782,6 @@ export namespace Prisma {
|
|
|
14800
14782
|
readonly scheduled_end_time: FieldRef<"Assessment", 'DateTime'>
|
|
14801
14783
|
readonly actual_start_time: FieldRef<"Assessment", 'DateTime'>
|
|
14802
14784
|
readonly actual_end_time: FieldRef<"Assessment", 'DateTime'>
|
|
14803
|
-
readonly attempt_expires_at: FieldRef<"Assessment", 'DateTime'>
|
|
14804
14785
|
readonly created_at: FieldRef<"Assessment", 'DateTime'>
|
|
14805
14786
|
readonly updated_at: FieldRef<"Assessment", 'DateTime'>
|
|
14806
14787
|
readonly created_by: FieldRef<"Assessment", 'String'>
|
|
@@ -35010,10 +34991,12 @@ export namespace Prisma {
|
|
|
35010
34991
|
|
|
35011
34992
|
export type InterviewAvgAggregateOutputType = {
|
|
35012
34993
|
interview_rating: number | null
|
|
34994
|
+
reschedule_count: number | null
|
|
35013
34995
|
}
|
|
35014
34996
|
|
|
35015
34997
|
export type InterviewSumAggregateOutputType = {
|
|
35016
34998
|
interview_rating: number | null
|
|
34999
|
+
reschedule_count: number | null
|
|
35017
35000
|
}
|
|
35018
35001
|
|
|
35019
35002
|
export type InterviewMinAggregateOutputType = {
|
|
@@ -35038,6 +35021,8 @@ export namespace Prisma {
|
|
|
35038
35021
|
interview_feedback: $Enums.InterviewFeedback | null
|
|
35039
35022
|
overall_feedback: string | null
|
|
35040
35023
|
interview_rating: number | null
|
|
35024
|
+
reschedule_count: number | null
|
|
35025
|
+
last_rescheduled_at: Date | null
|
|
35041
35026
|
created_at: Date | null
|
|
35042
35027
|
updated_at: Date | null
|
|
35043
35028
|
created_by: string | null
|
|
@@ -35067,6 +35052,8 @@ export namespace Prisma {
|
|
|
35067
35052
|
interview_feedback: $Enums.InterviewFeedback | null
|
|
35068
35053
|
overall_feedback: string | null
|
|
35069
35054
|
interview_rating: number | null
|
|
35055
|
+
reschedule_count: number | null
|
|
35056
|
+
last_rescheduled_at: Date | null
|
|
35070
35057
|
created_at: Date | null
|
|
35071
35058
|
updated_at: Date | null
|
|
35072
35059
|
created_by: string | null
|
|
@@ -35103,6 +35090,8 @@ export namespace Prisma {
|
|
|
35103
35090
|
section_feedback: number
|
|
35104
35091
|
interview_preparation: number
|
|
35105
35092
|
final_feedback: number
|
|
35093
|
+
reschedule_count: number
|
|
35094
|
+
last_rescheduled_at: number
|
|
35106
35095
|
created_at: number
|
|
35107
35096
|
updated_at: number
|
|
35108
35097
|
created_by: number
|
|
@@ -35114,10 +35103,12 @@ export namespace Prisma {
|
|
|
35114
35103
|
|
|
35115
35104
|
export type InterviewAvgAggregateInputType = {
|
|
35116
35105
|
interview_rating?: true
|
|
35106
|
+
reschedule_count?: true
|
|
35117
35107
|
}
|
|
35118
35108
|
|
|
35119
35109
|
export type InterviewSumAggregateInputType = {
|
|
35120
35110
|
interview_rating?: true
|
|
35111
|
+
reschedule_count?: true
|
|
35121
35112
|
}
|
|
35122
35113
|
|
|
35123
35114
|
export type InterviewMinAggregateInputType = {
|
|
@@ -35142,6 +35133,8 @@ export namespace Prisma {
|
|
|
35142
35133
|
interview_feedback?: true
|
|
35143
35134
|
overall_feedback?: true
|
|
35144
35135
|
interview_rating?: true
|
|
35136
|
+
reschedule_count?: true
|
|
35137
|
+
last_rescheduled_at?: true
|
|
35145
35138
|
created_at?: true
|
|
35146
35139
|
updated_at?: true
|
|
35147
35140
|
created_by?: true
|
|
@@ -35171,6 +35164,8 @@ export namespace Prisma {
|
|
|
35171
35164
|
interview_feedback?: true
|
|
35172
35165
|
overall_feedback?: true
|
|
35173
35166
|
interview_rating?: true
|
|
35167
|
+
reschedule_count?: true
|
|
35168
|
+
last_rescheduled_at?: true
|
|
35174
35169
|
created_at?: true
|
|
35175
35170
|
updated_at?: true
|
|
35176
35171
|
created_by?: true
|
|
@@ -35207,6 +35202,8 @@ export namespace Prisma {
|
|
|
35207
35202
|
section_feedback?: true
|
|
35208
35203
|
interview_preparation?: true
|
|
35209
35204
|
final_feedback?: true
|
|
35205
|
+
reschedule_count?: true
|
|
35206
|
+
last_rescheduled_at?: true
|
|
35210
35207
|
created_at?: true
|
|
35211
35208
|
updated_at?: true
|
|
35212
35209
|
created_by?: true
|
|
@@ -35330,6 +35327,8 @@ export namespace Prisma {
|
|
|
35330
35327
|
section_feedback: JsonValue[]
|
|
35331
35328
|
interview_preparation: JsonValue | null
|
|
35332
35329
|
final_feedback: JsonValue | null
|
|
35330
|
+
reschedule_count: number
|
|
35331
|
+
last_rescheduled_at: Date | null
|
|
35333
35332
|
created_at: Date
|
|
35334
35333
|
updated_at: Date
|
|
35335
35334
|
created_by: string
|
|
@@ -35385,6 +35384,8 @@ export namespace Prisma {
|
|
|
35385
35384
|
section_feedback?: boolean
|
|
35386
35385
|
interview_preparation?: boolean
|
|
35387
35386
|
final_feedback?: boolean
|
|
35387
|
+
reschedule_count?: boolean
|
|
35388
|
+
last_rescheduled_at?: boolean
|
|
35388
35389
|
created_at?: boolean
|
|
35389
35390
|
updated_at?: boolean
|
|
35390
35391
|
created_by?: boolean
|
|
@@ -35436,6 +35437,8 @@ export namespace Prisma {
|
|
|
35436
35437
|
section_feedback?: boolean
|
|
35437
35438
|
interview_preparation?: boolean
|
|
35438
35439
|
final_feedback?: boolean
|
|
35440
|
+
reschedule_count?: boolean
|
|
35441
|
+
last_rescheduled_at?: boolean
|
|
35439
35442
|
created_at?: boolean
|
|
35440
35443
|
updated_at?: boolean
|
|
35441
35444
|
created_by?: boolean
|
|
@@ -35479,6 +35482,8 @@ export namespace Prisma {
|
|
|
35479
35482
|
section_feedback?: boolean
|
|
35480
35483
|
interview_preparation?: boolean
|
|
35481
35484
|
final_feedback?: boolean
|
|
35485
|
+
reschedule_count?: boolean
|
|
35486
|
+
last_rescheduled_at?: boolean
|
|
35482
35487
|
created_at?: boolean
|
|
35483
35488
|
updated_at?: boolean
|
|
35484
35489
|
created_by?: boolean
|
|
@@ -35522,6 +35527,8 @@ export namespace Prisma {
|
|
|
35522
35527
|
section_feedback?: boolean
|
|
35523
35528
|
interview_preparation?: boolean
|
|
35524
35529
|
final_feedback?: boolean
|
|
35530
|
+
reschedule_count?: boolean
|
|
35531
|
+
last_rescheduled_at?: boolean
|
|
35525
35532
|
created_at?: boolean
|
|
35526
35533
|
updated_at?: boolean
|
|
35527
35534
|
created_by?: boolean
|
|
@@ -35529,7 +35536,7 @@ export namespace Prisma {
|
|
|
35529
35536
|
is_active?: boolean
|
|
35530
35537
|
}
|
|
35531
35538
|
|
|
35532
|
-
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"]>
|
|
35533
35540
|
export type InterviewInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
35534
35541
|
candidate?: boolean | Interview$candidateArgs<ExtArgs>
|
|
35535
35542
|
interviewer?: boolean | Interview$interviewerArgs<ExtArgs>
|
|
@@ -35625,6 +35632,11 @@ export namespace Prisma {
|
|
|
35625
35632
|
section_feedback: Prisma.JsonValue[]
|
|
35626
35633
|
interview_preparation: Prisma.JsonValue | null
|
|
35627
35634
|
final_feedback: Prisma.JsonValue | null
|
|
35635
|
+
/**
|
|
35636
|
+
* Self-scheduling
|
|
35637
|
+
*/
|
|
35638
|
+
reschedule_count: number
|
|
35639
|
+
last_rescheduled_at: Date | null
|
|
35628
35640
|
/**
|
|
35629
35641
|
* Audit fields
|
|
35630
35642
|
*/
|
|
@@ -36098,6 +36110,8 @@ export namespace Prisma {
|
|
|
36098
36110
|
readonly section_feedback: FieldRef<"Interview", 'Json[]'>
|
|
36099
36111
|
readonly interview_preparation: FieldRef<"Interview", 'Json'>
|
|
36100
36112
|
readonly final_feedback: FieldRef<"Interview", 'Json'>
|
|
36113
|
+
readonly reschedule_count: FieldRef<"Interview", 'Int'>
|
|
36114
|
+
readonly last_rescheduled_at: FieldRef<"Interview", 'DateTime'>
|
|
36101
36115
|
readonly created_at: FieldRef<"Interview", 'DateTime'>
|
|
36102
36116
|
readonly updated_at: FieldRef<"Interview", 'DateTime'>
|
|
36103
36117
|
readonly created_by: FieldRef<"Interview", 'String'>
|
|
@@ -47083,7 +47097,6 @@ export namespace Prisma {
|
|
|
47083
47097
|
is_active: boolean | null
|
|
47084
47098
|
alias: string | null
|
|
47085
47099
|
logo: string | null
|
|
47086
|
-
timezone: string | null
|
|
47087
47100
|
}
|
|
47088
47101
|
|
|
47089
47102
|
export type OrganisationMaxAggregateOutputType = {
|
|
@@ -47102,7 +47115,6 @@ export namespace Prisma {
|
|
|
47102
47115
|
is_active: boolean | null
|
|
47103
47116
|
alias: string | null
|
|
47104
47117
|
logo: string | null
|
|
47105
|
-
timezone: string | null
|
|
47106
47118
|
}
|
|
47107
47119
|
|
|
47108
47120
|
export type OrganisationCountAggregateOutputType = {
|
|
@@ -47123,7 +47135,6 @@ export namespace Prisma {
|
|
|
47123
47135
|
is_active: number
|
|
47124
47136
|
alias: number
|
|
47125
47137
|
logo: number
|
|
47126
|
-
timezone: number
|
|
47127
47138
|
_all: number
|
|
47128
47139
|
}
|
|
47129
47140
|
|
|
@@ -47144,7 +47155,6 @@ export namespace Prisma {
|
|
|
47144
47155
|
is_active?: true
|
|
47145
47156
|
alias?: true
|
|
47146
47157
|
logo?: true
|
|
47147
|
-
timezone?: true
|
|
47148
47158
|
}
|
|
47149
47159
|
|
|
47150
47160
|
export type OrganisationMaxAggregateInputType = {
|
|
@@ -47163,7 +47173,6 @@ export namespace Prisma {
|
|
|
47163
47173
|
is_active?: true
|
|
47164
47174
|
alias?: true
|
|
47165
47175
|
logo?: true
|
|
47166
|
-
timezone?: true
|
|
47167
47176
|
}
|
|
47168
47177
|
|
|
47169
47178
|
export type OrganisationCountAggregateInputType = {
|
|
@@ -47184,7 +47193,6 @@ export namespace Prisma {
|
|
|
47184
47193
|
is_active?: true
|
|
47185
47194
|
alias?: true
|
|
47186
47195
|
logo?: true
|
|
47187
|
-
timezone?: true
|
|
47188
47196
|
_all?: true
|
|
47189
47197
|
}
|
|
47190
47198
|
|
|
@@ -47278,7 +47286,6 @@ export namespace Prisma {
|
|
|
47278
47286
|
is_active: boolean
|
|
47279
47287
|
alias: string | null
|
|
47280
47288
|
logo: string | null
|
|
47281
|
-
timezone: string
|
|
47282
47289
|
_count: OrganisationCountAggregateOutputType | null
|
|
47283
47290
|
_min: OrganisationMinAggregateOutputType | null
|
|
47284
47291
|
_max: OrganisationMaxAggregateOutputType | null
|
|
@@ -47316,7 +47323,6 @@ export namespace Prisma {
|
|
|
47316
47323
|
is_active?: boolean
|
|
47317
47324
|
alias?: boolean
|
|
47318
47325
|
logo?: boolean
|
|
47319
|
-
timezone?: boolean
|
|
47320
47326
|
interviewers?: boolean | Organisation$interviewersArgs<ExtArgs>
|
|
47321
47327
|
applications?: boolean | Organisation$applicationsArgs<ExtArgs>
|
|
47322
47328
|
user_roles?: boolean | Organisation$user_rolesArgs<ExtArgs>
|
|
@@ -47356,7 +47362,6 @@ export namespace Prisma {
|
|
|
47356
47362
|
is_active?: boolean
|
|
47357
47363
|
alias?: boolean
|
|
47358
47364
|
logo?: boolean
|
|
47359
|
-
timezone?: boolean
|
|
47360
47365
|
}, ExtArgs["result"]["organisation"]>
|
|
47361
47366
|
|
|
47362
47367
|
export type OrganisationSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -47377,7 +47382,6 @@ export namespace Prisma {
|
|
|
47377
47382
|
is_active?: boolean
|
|
47378
47383
|
alias?: boolean
|
|
47379
47384
|
logo?: boolean
|
|
47380
|
-
timezone?: boolean
|
|
47381
47385
|
}, ExtArgs["result"]["organisation"]>
|
|
47382
47386
|
|
|
47383
47387
|
export type OrganisationSelectScalar = {
|
|
@@ -47398,10 +47402,9 @@ export namespace Prisma {
|
|
|
47398
47402
|
is_active?: boolean
|
|
47399
47403
|
alias?: boolean
|
|
47400
47404
|
logo?: boolean
|
|
47401
|
-
timezone?: boolean
|
|
47402
47405
|
}
|
|
47403
47406
|
|
|
47404
|
-
export type OrganisationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "industry" | "about" | "website" | "size" | "phone" | "address" | "company_values" | "allowed_email_domains" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "alias" | "logo"
|
|
47407
|
+
export type OrganisationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "industry" | "about" | "website" | "size" | "phone" | "address" | "company_values" | "allowed_email_domains" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "alias" | "logo", ExtArgs["result"]["organisation"]>
|
|
47405
47408
|
export type OrganisationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
47406
47409
|
interviewers?: boolean | Organisation$interviewersArgs<ExtArgs>
|
|
47407
47410
|
applications?: boolean | Organisation$applicationsArgs<ExtArgs>
|
|
@@ -47466,7 +47469,6 @@ export namespace Prisma {
|
|
|
47466
47469
|
is_active: boolean
|
|
47467
47470
|
alias: string | null
|
|
47468
47471
|
logo: string | null
|
|
47469
|
-
timezone: string
|
|
47470
47472
|
}, ExtArgs["result"]["organisation"]>
|
|
47471
47473
|
composites: {}
|
|
47472
47474
|
}
|
|
@@ -47925,7 +47927,6 @@ export namespace Prisma {
|
|
|
47925
47927
|
readonly is_active: FieldRef<"Organisation", 'Boolean'>
|
|
47926
47928
|
readonly alias: FieldRef<"Organisation", 'String'>
|
|
47927
47929
|
readonly logo: FieldRef<"Organisation", 'String'>
|
|
47928
|
-
readonly timezone: FieldRef<"Organisation", 'String'>
|
|
47929
47930
|
}
|
|
47930
47931
|
|
|
47931
47932
|
|
|
@@ -65491,7 +65492,6 @@ export namespace Prisma {
|
|
|
65491
65492
|
scheduled_end_time: 'scheduled_end_time',
|
|
65492
65493
|
actual_start_time: 'actual_start_time',
|
|
65493
65494
|
actual_end_time: 'actual_end_time',
|
|
65494
|
-
attempt_expires_at: 'attempt_expires_at',
|
|
65495
65495
|
created_at: 'created_at',
|
|
65496
65496
|
updated_at: 'updated_at',
|
|
65497
65497
|
created_by: 'created_by',
|
|
@@ -65860,6 +65860,8 @@ export namespace Prisma {
|
|
|
65860
65860
|
section_feedback: 'section_feedback',
|
|
65861
65861
|
interview_preparation: 'interview_preparation',
|
|
65862
65862
|
final_feedback: 'final_feedback',
|
|
65863
|
+
reschedule_count: 'reschedule_count',
|
|
65864
|
+
last_rescheduled_at: 'last_rescheduled_at',
|
|
65863
65865
|
created_at: 'created_at',
|
|
65864
65866
|
updated_at: 'updated_at',
|
|
65865
65867
|
created_by: 'created_by',
|
|
@@ -66058,8 +66060,7 @@ export namespace Prisma {
|
|
|
66058
66060
|
updated_by: 'updated_by',
|
|
66059
66061
|
is_active: 'is_active',
|
|
66060
66062
|
alias: 'alias',
|
|
66061
|
-
logo: 'logo'
|
|
66062
|
-
timezone: 'timezone'
|
|
66063
|
+
logo: 'logo'
|
|
66063
66064
|
};
|
|
66064
66065
|
|
|
66065
66066
|
export type OrganisationScalarFieldEnum = (typeof OrganisationScalarFieldEnum)[keyof typeof OrganisationScalarFieldEnum]
|
|
@@ -67517,7 +67518,6 @@ export namespace Prisma {
|
|
|
67517
67518
|
scheduled_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67518
67519
|
actual_start_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67519
67520
|
actual_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67520
|
-
attempt_expires_at?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67521
67521
|
created_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
67522
67522
|
updated_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
67523
67523
|
created_by?: StringFilter<"Assessment"> | string
|
|
@@ -67546,7 +67546,6 @@ export namespace Prisma {
|
|
|
67546
67546
|
scheduled_end_time?: SortOrderInput | SortOrder
|
|
67547
67547
|
actual_start_time?: SortOrderInput | SortOrder
|
|
67548
67548
|
actual_end_time?: SortOrderInput | SortOrder
|
|
67549
|
-
attempt_expires_at?: SortOrderInput | SortOrder
|
|
67550
67549
|
created_at?: SortOrder
|
|
67551
67550
|
updated_at?: SortOrder
|
|
67552
67551
|
created_by?: SortOrder
|
|
@@ -67579,7 +67578,6 @@ export namespace Prisma {
|
|
|
67579
67578
|
scheduled_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67580
67579
|
actual_start_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67581
67580
|
actual_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67582
|
-
attempt_expires_at?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67583
67581
|
created_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
67584
67582
|
updated_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
67585
67583
|
created_by?: StringFilter<"Assessment"> | string
|
|
@@ -67608,7 +67606,6 @@ export namespace Prisma {
|
|
|
67608
67606
|
scheduled_end_time?: SortOrderInput | SortOrder
|
|
67609
67607
|
actual_start_time?: SortOrderInput | SortOrder
|
|
67610
67608
|
actual_end_time?: SortOrderInput | SortOrder
|
|
67611
|
-
attempt_expires_at?: SortOrderInput | SortOrder
|
|
67612
67609
|
created_at?: SortOrder
|
|
67613
67610
|
updated_at?: SortOrder
|
|
67614
67611
|
created_by?: SortOrder
|
|
@@ -67637,7 +67634,6 @@ export namespace Prisma {
|
|
|
67637
67634
|
scheduled_end_time?: DateTimeNullableWithAggregatesFilter<"Assessment"> | Date | string | null
|
|
67638
67635
|
actual_start_time?: DateTimeNullableWithAggregatesFilter<"Assessment"> | Date | string | null
|
|
67639
67636
|
actual_end_time?: DateTimeNullableWithAggregatesFilter<"Assessment"> | Date | string | null
|
|
67640
|
-
attempt_expires_at?: DateTimeNullableWithAggregatesFilter<"Assessment"> | Date | string | null
|
|
67641
67637
|
created_at?: DateTimeWithAggregatesFilter<"Assessment"> | Date | string
|
|
67642
67638
|
updated_at?: DateTimeWithAggregatesFilter<"Assessment"> | Date | string
|
|
67643
67639
|
created_by?: StringWithAggregatesFilter<"Assessment"> | string
|
|
@@ -69410,6 +69406,8 @@ export namespace Prisma {
|
|
|
69410
69406
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
69411
69407
|
interview_preparation?: JsonNullableFilter<"Interview">
|
|
69412
69408
|
final_feedback?: JsonNullableFilter<"Interview">
|
|
69409
|
+
reschedule_count?: IntFilter<"Interview"> | number
|
|
69410
|
+
last_rescheduled_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
69413
69411
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
69414
69412
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
69415
69413
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -69460,6 +69458,8 @@ export namespace Prisma {
|
|
|
69460
69458
|
section_feedback?: SortOrder
|
|
69461
69459
|
interview_preparation?: SortOrderInput | SortOrder
|
|
69462
69460
|
final_feedback?: SortOrderInput | SortOrder
|
|
69461
|
+
reschedule_count?: SortOrder
|
|
69462
|
+
last_rescheduled_at?: SortOrderInput | SortOrder
|
|
69463
69463
|
created_at?: SortOrder
|
|
69464
69464
|
updated_at?: SortOrder
|
|
69465
69465
|
created_by?: SortOrder
|
|
@@ -69514,6 +69514,8 @@ export namespace Prisma {
|
|
|
69514
69514
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
69515
69515
|
interview_preparation?: JsonNullableFilter<"Interview">
|
|
69516
69516
|
final_feedback?: JsonNullableFilter<"Interview">
|
|
69517
|
+
reschedule_count?: IntFilter<"Interview"> | number
|
|
69518
|
+
last_rescheduled_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
69517
69519
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
69518
69520
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
69519
69521
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -69564,6 +69566,8 @@ export namespace Prisma {
|
|
|
69564
69566
|
section_feedback?: SortOrder
|
|
69565
69567
|
interview_preparation?: SortOrderInput | SortOrder
|
|
69566
69568
|
final_feedback?: SortOrderInput | SortOrder
|
|
69569
|
+
reschedule_count?: SortOrder
|
|
69570
|
+
last_rescheduled_at?: SortOrderInput | SortOrder
|
|
69567
69571
|
created_at?: SortOrder
|
|
69568
69572
|
updated_at?: SortOrder
|
|
69569
69573
|
created_by?: SortOrder
|
|
@@ -69608,6 +69612,8 @@ export namespace Prisma {
|
|
|
69608
69612
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
69609
69613
|
interview_preparation?: JsonNullableWithAggregatesFilter<"Interview">
|
|
69610
69614
|
final_feedback?: JsonNullableWithAggregatesFilter<"Interview">
|
|
69615
|
+
reschedule_count?: IntWithAggregatesFilter<"Interview"> | number
|
|
69616
|
+
last_rescheduled_at?: DateTimeNullableWithAggregatesFilter<"Interview"> | Date | string | null
|
|
69611
69617
|
created_at?: DateTimeWithAggregatesFilter<"Interview"> | Date | string
|
|
69612
69618
|
updated_at?: DateTimeWithAggregatesFilter<"Interview"> | Date | string
|
|
69613
69619
|
created_by?: StringWithAggregatesFilter<"Interview"> | string
|
|
@@ -70587,7 +70593,6 @@ export namespace Prisma {
|
|
|
70587
70593
|
is_active?: BoolFilter<"Organisation"> | boolean
|
|
70588
70594
|
alias?: StringNullableFilter<"Organisation"> | string | null
|
|
70589
70595
|
logo?: StringNullableFilter<"Organisation"> | string | null
|
|
70590
|
-
timezone?: StringFilter<"Organisation"> | string
|
|
70591
70596
|
interviewers?: UserListRelationFilter
|
|
70592
70597
|
applications?: ApplicationListRelationFilter
|
|
70593
70598
|
user_roles?: UserRoleListRelationFilter
|
|
@@ -70626,7 +70631,6 @@ export namespace Prisma {
|
|
|
70626
70631
|
is_active?: SortOrder
|
|
70627
70632
|
alias?: SortOrderInput | SortOrder
|
|
70628
70633
|
logo?: SortOrderInput | SortOrder
|
|
70629
|
-
timezone?: SortOrder
|
|
70630
70634
|
interviewers?: UserOrderByRelationAggregateInput
|
|
70631
70635
|
applications?: ApplicationOrderByRelationAggregateInput
|
|
70632
70636
|
user_roles?: UserRoleOrderByRelationAggregateInput
|
|
@@ -70668,7 +70672,6 @@ export namespace Prisma {
|
|
|
70668
70672
|
updated_by?: StringFilter<"Organisation"> | string
|
|
70669
70673
|
is_active?: BoolFilter<"Organisation"> | boolean
|
|
70670
70674
|
logo?: StringNullableFilter<"Organisation"> | string | null
|
|
70671
|
-
timezone?: StringFilter<"Organisation"> | string
|
|
70672
70675
|
interviewers?: UserListRelationFilter
|
|
70673
70676
|
applications?: ApplicationListRelationFilter
|
|
70674
70677
|
user_roles?: UserRoleListRelationFilter
|
|
@@ -70707,7 +70710,6 @@ export namespace Prisma {
|
|
|
70707
70710
|
is_active?: SortOrder
|
|
70708
70711
|
alias?: SortOrderInput | SortOrder
|
|
70709
70712
|
logo?: SortOrderInput | SortOrder
|
|
70710
|
-
timezone?: SortOrder
|
|
70711
70713
|
_count?: OrganisationCountOrderByAggregateInput
|
|
70712
70714
|
_max?: OrganisationMaxOrderByAggregateInput
|
|
70713
70715
|
_min?: OrganisationMinOrderByAggregateInput
|
|
@@ -70734,7 +70736,6 @@ export namespace Prisma {
|
|
|
70734
70736
|
is_active?: BoolWithAggregatesFilter<"Organisation"> | boolean
|
|
70735
70737
|
alias?: StringNullableWithAggregatesFilter<"Organisation"> | string | null
|
|
70736
70738
|
logo?: StringNullableWithAggregatesFilter<"Organisation"> | string | null
|
|
70737
|
-
timezone?: StringWithAggregatesFilter<"Organisation"> | string
|
|
70738
70739
|
}
|
|
70739
70740
|
|
|
70740
70741
|
export type PermissionWhereInput = {
|
|
@@ -72796,7 +72797,6 @@ export namespace Prisma {
|
|
|
72796
72797
|
scheduled_end_time?: Date | string | null
|
|
72797
72798
|
actual_start_time?: Date | string | null
|
|
72798
72799
|
actual_end_time?: Date | string | null
|
|
72799
|
-
attempt_expires_at?: Date | string | null
|
|
72800
72800
|
created_at?: Date | string
|
|
72801
72801
|
updated_at?: Date | string
|
|
72802
72802
|
created_by: string
|
|
@@ -72824,7 +72824,6 @@ export namespace Prisma {
|
|
|
72824
72824
|
scheduled_end_time?: Date | string | null
|
|
72825
72825
|
actual_start_time?: Date | string | null
|
|
72826
72826
|
actual_end_time?: Date | string | null
|
|
72827
|
-
attempt_expires_at?: Date | string | null
|
|
72828
72827
|
created_at?: Date | string
|
|
72829
72828
|
updated_at?: Date | string
|
|
72830
72829
|
created_by: string
|
|
@@ -72844,7 +72843,6 @@ export namespace Prisma {
|
|
|
72844
72843
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72845
72844
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72846
72845
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72847
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72848
72846
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72849
72847
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72850
72848
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -72872,7 +72870,6 @@ export namespace Prisma {
|
|
|
72872
72870
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72873
72871
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72874
72872
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72875
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72876
72873
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72877
72874
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72878
72875
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -72896,7 +72893,6 @@ export namespace Prisma {
|
|
|
72896
72893
|
scheduled_end_time?: Date | string | null
|
|
72897
72894
|
actual_start_time?: Date | string | null
|
|
72898
72895
|
actual_end_time?: Date | string | null
|
|
72899
|
-
attempt_expires_at?: Date | string | null
|
|
72900
72896
|
created_at?: Date | string
|
|
72901
72897
|
updated_at?: Date | string
|
|
72902
72898
|
created_by: string
|
|
@@ -72913,7 +72909,6 @@ export namespace Prisma {
|
|
|
72913
72909
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72914
72910
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72915
72911
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72916
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72917
72912
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72918
72913
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72919
72914
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -72933,7 +72928,6 @@ export namespace Prisma {
|
|
|
72933
72928
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72934
72929
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72935
72930
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72936
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72937
72931
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72938
72932
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72939
72933
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -74935,6 +74929,8 @@ export namespace Prisma {
|
|
|
74935
74929
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
74936
74930
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
74937
74931
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
74932
|
+
reschedule_count?: number
|
|
74933
|
+
last_rescheduled_at?: Date | string | null
|
|
74938
74934
|
created_at?: Date | string
|
|
74939
74935
|
updated_at?: Date | string
|
|
74940
74936
|
created_by: string
|
|
@@ -74985,6 +74981,8 @@ export namespace Prisma {
|
|
|
74985
74981
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
74986
74982
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
74987
74983
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
74984
|
+
reschedule_count?: number
|
|
74985
|
+
last_rescheduled_at?: Date | string | null
|
|
74988
74986
|
created_at?: Date | string
|
|
74989
74987
|
updated_at?: Date | string
|
|
74990
74988
|
created_by: string
|
|
@@ -75021,6 +75019,8 @@ export namespace Prisma {
|
|
|
75021
75019
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
75022
75020
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
75023
75021
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
75022
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
75023
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
75024
75024
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75025
75025
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75026
75026
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -75071,6 +75071,8 @@ export namespace Prisma {
|
|
|
75071
75071
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
75072
75072
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
75073
75073
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
75074
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
75075
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
75074
75076
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75075
75077
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75076
75078
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -75114,6 +75116,8 @@ export namespace Prisma {
|
|
|
75114
75116
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
75115
75117
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
75116
75118
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
75119
|
+
reschedule_count?: number
|
|
75120
|
+
last_rescheduled_at?: Date | string | null
|
|
75117
75121
|
created_at?: Date | string
|
|
75118
75122
|
updated_at?: Date | string
|
|
75119
75123
|
created_by: string
|
|
@@ -75143,6 +75147,8 @@ export namespace Prisma {
|
|
|
75143
75147
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
75144
75148
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
75145
75149
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
75150
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
75151
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
75146
75152
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75147
75153
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75148
75154
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -75179,6 +75185,8 @@ export namespace Prisma {
|
|
|
75179
75185
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
75180
75186
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
75181
75187
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
75188
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
75189
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
75182
75190
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75183
75191
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75184
75192
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -76275,7 +76283,6 @@ export namespace Prisma {
|
|
|
76275
76283
|
is_active?: boolean
|
|
76276
76284
|
alias?: string | null
|
|
76277
76285
|
logo?: string | null
|
|
76278
|
-
timezone?: string
|
|
76279
76286
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
76280
76287
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
76281
76288
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -76314,7 +76321,6 @@ export namespace Prisma {
|
|
|
76314
76321
|
is_active?: boolean
|
|
76315
76322
|
alias?: string | null
|
|
76316
76323
|
logo?: string | null
|
|
76317
|
-
timezone?: string
|
|
76318
76324
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
76319
76325
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
76320
76326
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -76353,7 +76359,6 @@ export namespace Prisma {
|
|
|
76353
76359
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76354
76360
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76355
76361
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76356
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
76357
76362
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
76358
76363
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
76359
76364
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -76392,7 +76397,6 @@ export namespace Prisma {
|
|
|
76392
76397
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76393
76398
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76394
76399
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76395
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
76396
76400
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
76397
76401
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
76398
76402
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -76431,7 +76435,6 @@ export namespace Prisma {
|
|
|
76431
76435
|
is_active?: boolean
|
|
76432
76436
|
alias?: string | null
|
|
76433
76437
|
logo?: string | null
|
|
76434
|
-
timezone?: string
|
|
76435
76438
|
}
|
|
76436
76439
|
|
|
76437
76440
|
export type OrganisationUpdateManyMutationInput = {
|
|
@@ -76452,7 +76455,6 @@ export namespace Prisma {
|
|
|
76452
76455
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76453
76456
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76454
76457
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76455
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
76456
76458
|
}
|
|
76457
76459
|
|
|
76458
76460
|
export type OrganisationUncheckedUpdateManyInput = {
|
|
@@ -76473,7 +76475,6 @@ export namespace Prisma {
|
|
|
76473
76475
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76474
76476
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76475
76477
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76476
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
76477
76478
|
}
|
|
76478
76479
|
|
|
76479
76480
|
export type PermissionCreateInput = {
|
|
@@ -78913,7 +78914,6 @@ export namespace Prisma {
|
|
|
78913
78914
|
scheduled_end_time?: SortOrder
|
|
78914
78915
|
actual_start_time?: SortOrder
|
|
78915
78916
|
actual_end_time?: SortOrder
|
|
78916
|
-
attempt_expires_at?: SortOrder
|
|
78917
78917
|
created_at?: SortOrder
|
|
78918
78918
|
updated_at?: SortOrder
|
|
78919
78919
|
created_by?: SortOrder
|
|
@@ -78937,7 +78937,6 @@ export namespace Prisma {
|
|
|
78937
78937
|
scheduled_end_time?: SortOrder
|
|
78938
78938
|
actual_start_time?: SortOrder
|
|
78939
78939
|
actual_end_time?: SortOrder
|
|
78940
|
-
attempt_expires_at?: SortOrder
|
|
78941
78940
|
created_at?: SortOrder
|
|
78942
78941
|
updated_at?: SortOrder
|
|
78943
78942
|
created_by?: SortOrder
|
|
@@ -78957,7 +78956,6 @@ export namespace Prisma {
|
|
|
78957
78956
|
scheduled_end_time?: SortOrder
|
|
78958
78957
|
actual_start_time?: SortOrder
|
|
78959
78958
|
actual_end_time?: SortOrder
|
|
78960
|
-
attempt_expires_at?: SortOrder
|
|
78961
78959
|
created_at?: SortOrder
|
|
78962
78960
|
updated_at?: SortOrder
|
|
78963
78961
|
created_by?: SortOrder
|
|
@@ -80399,6 +80397,8 @@ export namespace Prisma {
|
|
|
80399
80397
|
section_feedback?: SortOrder
|
|
80400
80398
|
interview_preparation?: SortOrder
|
|
80401
80399
|
final_feedback?: SortOrder
|
|
80400
|
+
reschedule_count?: SortOrder
|
|
80401
|
+
last_rescheduled_at?: SortOrder
|
|
80402
80402
|
created_at?: SortOrder
|
|
80403
80403
|
updated_at?: SortOrder
|
|
80404
80404
|
created_by?: SortOrder
|
|
@@ -80408,6 +80408,7 @@ export namespace Prisma {
|
|
|
80408
80408
|
|
|
80409
80409
|
export type InterviewAvgOrderByAggregateInput = {
|
|
80410
80410
|
interview_rating?: SortOrder
|
|
80411
|
+
reschedule_count?: SortOrder
|
|
80411
80412
|
}
|
|
80412
80413
|
|
|
80413
80414
|
export type InterviewMaxOrderByAggregateInput = {
|
|
@@ -80432,6 +80433,8 @@ export namespace Prisma {
|
|
|
80432
80433
|
interview_feedback?: SortOrder
|
|
80433
80434
|
overall_feedback?: SortOrder
|
|
80434
80435
|
interview_rating?: SortOrder
|
|
80436
|
+
reschedule_count?: SortOrder
|
|
80437
|
+
last_rescheduled_at?: SortOrder
|
|
80435
80438
|
created_at?: SortOrder
|
|
80436
80439
|
updated_at?: SortOrder
|
|
80437
80440
|
created_by?: SortOrder
|
|
@@ -80461,6 +80464,8 @@ export namespace Prisma {
|
|
|
80461
80464
|
interview_feedback?: SortOrder
|
|
80462
80465
|
overall_feedback?: SortOrder
|
|
80463
80466
|
interview_rating?: SortOrder
|
|
80467
|
+
reschedule_count?: SortOrder
|
|
80468
|
+
last_rescheduled_at?: SortOrder
|
|
80464
80469
|
created_at?: SortOrder
|
|
80465
80470
|
updated_at?: SortOrder
|
|
80466
80471
|
created_by?: SortOrder
|
|
@@ -80470,6 +80475,7 @@ export namespace Prisma {
|
|
|
80470
80475
|
|
|
80471
80476
|
export type InterviewSumOrderByAggregateInput = {
|
|
80472
80477
|
interview_rating?: SortOrder
|
|
80478
|
+
reschedule_count?: SortOrder
|
|
80473
80479
|
}
|
|
80474
80480
|
|
|
80475
80481
|
export type EnumInterviewStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -81248,7 +81254,6 @@ export namespace Prisma {
|
|
|
81248
81254
|
is_active?: SortOrder
|
|
81249
81255
|
alias?: SortOrder
|
|
81250
81256
|
logo?: SortOrder
|
|
81251
|
-
timezone?: SortOrder
|
|
81252
81257
|
}
|
|
81253
81258
|
|
|
81254
81259
|
export type OrganisationMaxOrderByAggregateInput = {
|
|
@@ -81267,7 +81272,6 @@ export namespace Prisma {
|
|
|
81267
81272
|
is_active?: SortOrder
|
|
81268
81273
|
alias?: SortOrder
|
|
81269
81274
|
logo?: SortOrder
|
|
81270
|
-
timezone?: SortOrder
|
|
81271
81275
|
}
|
|
81272
81276
|
|
|
81273
81277
|
export type OrganisationMinOrderByAggregateInput = {
|
|
@@ -81286,7 +81290,6 @@ export namespace Prisma {
|
|
|
81286
81290
|
is_active?: SortOrder
|
|
81287
81291
|
alias?: SortOrder
|
|
81288
81292
|
logo?: SortOrder
|
|
81289
|
-
timezone?: SortOrder
|
|
81290
81293
|
}
|
|
81291
81294
|
|
|
81292
81295
|
export type EnumOrganisationSizeWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -89066,7 +89069,6 @@ export namespace Prisma {
|
|
|
89066
89069
|
scheduled_end_time?: Date | string | null
|
|
89067
89070
|
actual_start_time?: Date | string | null
|
|
89068
89071
|
actual_end_time?: Date | string | null
|
|
89069
|
-
attempt_expires_at?: Date | string | null
|
|
89070
89072
|
created_at?: Date | string
|
|
89071
89073
|
updated_at?: Date | string
|
|
89072
89074
|
created_by: string
|
|
@@ -89093,7 +89095,6 @@ export namespace Prisma {
|
|
|
89093
89095
|
scheduled_end_time?: Date | string | null
|
|
89094
89096
|
actual_start_time?: Date | string | null
|
|
89095
89097
|
actual_end_time?: Date | string | null
|
|
89096
|
-
attempt_expires_at?: Date | string | null
|
|
89097
89098
|
created_at?: Date | string
|
|
89098
89099
|
updated_at?: Date | string
|
|
89099
89100
|
created_by: string
|
|
@@ -89314,7 +89315,6 @@ export namespace Prisma {
|
|
|
89314
89315
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89315
89316
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89316
89317
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89317
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89318
89318
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89319
89319
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89320
89320
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89341,7 +89341,6 @@ export namespace Prisma {
|
|
|
89341
89341
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89342
89342
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89343
89343
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89344
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89345
89344
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89346
89345
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89347
89346
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89513,7 +89512,6 @@ export namespace Prisma {
|
|
|
89513
89512
|
is_active?: boolean
|
|
89514
89513
|
alias?: string | null
|
|
89515
89514
|
logo?: string | null
|
|
89516
|
-
timezone?: string
|
|
89517
89515
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
89518
89516
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
89519
89517
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutOrganisationInput
|
|
@@ -89551,7 +89549,6 @@ export namespace Prisma {
|
|
|
89551
89549
|
is_active?: boolean
|
|
89552
89550
|
alias?: string | null
|
|
89553
89551
|
logo?: string | null
|
|
89554
|
-
timezone?: string
|
|
89555
89552
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
89556
89553
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
89557
89554
|
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -89774,7 +89771,6 @@ export namespace Prisma {
|
|
|
89774
89771
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
89775
89772
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89776
89773
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89777
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
89778
89774
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
89779
89775
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
89780
89776
|
job_descriptions?: JobDescriptionUpdateManyWithoutOrganisationNestedInput
|
|
@@ -89812,7 +89808,6 @@ export namespace Prisma {
|
|
|
89812
89808
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
89813
89809
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89814
89810
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89815
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
89816
89811
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
89817
89812
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
89818
89813
|
job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -90075,7 +90070,6 @@ export namespace Prisma {
|
|
|
90075
90070
|
is_active?: boolean
|
|
90076
90071
|
alias?: string | null
|
|
90077
90072
|
logo?: string | null
|
|
90078
|
-
timezone?: string
|
|
90079
90073
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
90080
90074
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
90081
90075
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -90113,7 +90107,6 @@ export namespace Prisma {
|
|
|
90113
90107
|
is_active?: boolean
|
|
90114
90108
|
alias?: string | null
|
|
90115
90109
|
logo?: string | null
|
|
90116
|
-
timezone?: string
|
|
90117
90110
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
90118
90111
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
90119
90112
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -90310,7 +90303,6 @@ export namespace Prisma {
|
|
|
90310
90303
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
90311
90304
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90312
90305
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90313
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
90314
90306
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
90315
90307
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
90316
90308
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -90348,7 +90340,6 @@ export namespace Prisma {
|
|
|
90348
90340
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
90349
90341
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90350
90342
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90351
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
90352
90343
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
90353
90344
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
90354
90345
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -91004,7 +90995,6 @@ export namespace Prisma {
|
|
|
91004
90995
|
is_active?: boolean
|
|
91005
90996
|
alias?: string | null
|
|
91006
90997
|
logo?: string | null
|
|
91007
|
-
timezone?: string
|
|
91008
90998
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
91009
90999
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
91010
91000
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutOrganisationInput
|
|
@@ -91042,7 +91032,6 @@ export namespace Prisma {
|
|
|
91042
91032
|
is_active?: boolean
|
|
91043
91033
|
alias?: string | null
|
|
91044
91034
|
logo?: string | null
|
|
91045
|
-
timezone?: string
|
|
91046
91035
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
91047
91036
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
91048
91037
|
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -91286,6 +91275,8 @@ export namespace Prisma {
|
|
|
91286
91275
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
91287
91276
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
91288
91277
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
91278
|
+
reschedule_count?: number
|
|
91279
|
+
last_rescheduled_at?: Date | string | null
|
|
91289
91280
|
created_at?: Date | string
|
|
91290
91281
|
updated_at?: Date | string
|
|
91291
91282
|
created_by: string
|
|
@@ -91334,6 +91325,8 @@ export namespace Prisma {
|
|
|
91334
91325
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
91335
91326
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
91336
91327
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
91328
|
+
reschedule_count?: number
|
|
91329
|
+
last_rescheduled_at?: Date | string | null
|
|
91337
91330
|
created_at?: Date | string
|
|
91338
91331
|
updated_at?: Date | string
|
|
91339
91332
|
created_by: string
|
|
@@ -91805,7 +91798,6 @@ export namespace Prisma {
|
|
|
91805
91798
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
91806
91799
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
91807
91800
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
91808
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
91809
91801
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
91810
91802
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
91811
91803
|
job_descriptions?: JobDescriptionUpdateManyWithoutOrganisationNestedInput
|
|
@@ -91843,7 +91835,6 @@ export namespace Prisma {
|
|
|
91843
91835
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
91844
91836
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
91845
91837
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
91846
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
91847
91838
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
91848
91839
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
91849
91840
|
job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -92126,6 +92117,8 @@ export namespace Prisma {
|
|
|
92126
92117
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
92127
92118
|
interview_preparation?: JsonNullableFilter<"Interview">
|
|
92128
92119
|
final_feedback?: JsonNullableFilter<"Interview">
|
|
92120
|
+
reschedule_count?: IntFilter<"Interview"> | number
|
|
92121
|
+
last_rescheduled_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
92129
92122
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
92130
92123
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
92131
92124
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -92524,7 +92517,6 @@ export namespace Prisma {
|
|
|
92524
92517
|
is_active?: boolean
|
|
92525
92518
|
alias?: string | null
|
|
92526
92519
|
logo?: string | null
|
|
92527
|
-
timezone?: string
|
|
92528
92520
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
92529
92521
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
92530
92522
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -92562,7 +92554,6 @@ export namespace Prisma {
|
|
|
92562
92554
|
is_active?: boolean
|
|
92563
92555
|
alias?: string | null
|
|
92564
92556
|
logo?: string | null
|
|
92565
|
-
timezone?: string
|
|
92566
92557
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
92567
92558
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
92568
92559
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -92840,7 +92831,6 @@ export namespace Prisma {
|
|
|
92840
92831
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
92841
92832
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92842
92833
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92843
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
92844
92834
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
92845
92835
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
92846
92836
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -92878,7 +92868,6 @@ export namespace Prisma {
|
|
|
92878
92868
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
92879
92869
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92880
92870
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92881
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
92882
92871
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
92883
92872
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
92884
92873
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -93285,7 +93274,6 @@ export namespace Prisma {
|
|
|
93285
93274
|
is_active?: boolean
|
|
93286
93275
|
alias?: string | null
|
|
93287
93276
|
logo?: string | null
|
|
93288
|
-
timezone?: string
|
|
93289
93277
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
93290
93278
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
93291
93279
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -93323,7 +93311,6 @@ export namespace Prisma {
|
|
|
93323
93311
|
is_active?: boolean
|
|
93324
93312
|
alias?: string | null
|
|
93325
93313
|
logo?: string | null
|
|
93326
|
-
timezone?: string
|
|
93327
93314
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
93328
93315
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
93329
93316
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -93979,7 +93966,6 @@ export namespace Prisma {
|
|
|
93979
93966
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
93980
93967
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93981
93968
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93982
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
93983
93969
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
93984
93970
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
93985
93971
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -94017,7 +94003,6 @@ export namespace Prisma {
|
|
|
94017
94003
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
94018
94004
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94019
94005
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94020
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
94021
94006
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
94022
94007
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
94023
94008
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -94281,7 +94266,6 @@ export namespace Prisma {
|
|
|
94281
94266
|
is_active?: boolean
|
|
94282
94267
|
alias?: string | null
|
|
94283
94268
|
logo?: string | null
|
|
94284
|
-
timezone?: string
|
|
94285
94269
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
94286
94270
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
94287
94271
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -94319,7 +94303,6 @@ export namespace Prisma {
|
|
|
94319
94303
|
is_active?: boolean
|
|
94320
94304
|
alias?: string | null
|
|
94321
94305
|
logo?: string | null
|
|
94322
|
-
timezone?: string
|
|
94323
94306
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
94324
94307
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
94325
94308
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -94400,7 +94383,6 @@ export namespace Prisma {
|
|
|
94400
94383
|
scheduled_end_time?: Date | string | null
|
|
94401
94384
|
actual_start_time?: Date | string | null
|
|
94402
94385
|
actual_end_time?: Date | string | null
|
|
94403
|
-
attempt_expires_at?: Date | string | null
|
|
94404
94386
|
created_at?: Date | string
|
|
94405
94387
|
updated_at?: Date | string
|
|
94406
94388
|
created_by: string
|
|
@@ -94426,7 +94408,6 @@ export namespace Prisma {
|
|
|
94426
94408
|
scheduled_end_time?: Date | string | null
|
|
94427
94409
|
actual_start_time?: Date | string | null
|
|
94428
94410
|
actual_end_time?: Date | string | null
|
|
94429
|
-
attempt_expires_at?: Date | string | null
|
|
94430
94411
|
created_at?: Date | string
|
|
94431
94412
|
updated_at?: Date | string
|
|
94432
94413
|
created_by: string
|
|
@@ -94547,7 +94528,6 @@ export namespace Prisma {
|
|
|
94547
94528
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
94548
94529
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94549
94530
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94550
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
94551
94531
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
94552
94532
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
94553
94533
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -94585,7 +94565,6 @@ export namespace Prisma {
|
|
|
94585
94565
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
94586
94566
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94587
94567
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94588
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
94589
94568
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
94590
94569
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
94591
94570
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -94673,7 +94652,6 @@ export namespace Prisma {
|
|
|
94673
94652
|
scheduled_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
94674
94653
|
actual_start_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
94675
94654
|
actual_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
94676
|
-
attempt_expires_at?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
94677
94655
|
created_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
94678
94656
|
updated_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
94679
94657
|
created_by?: StringFilter<"Assessment"> | string
|
|
@@ -94736,7 +94714,6 @@ export namespace Prisma {
|
|
|
94736
94714
|
scheduled_end_time?: Date | string | null
|
|
94737
94715
|
actual_start_time?: Date | string | null
|
|
94738
94716
|
actual_end_time?: Date | string | null
|
|
94739
|
-
attempt_expires_at?: Date | string | null
|
|
94740
94717
|
created_at?: Date | string
|
|
94741
94718
|
updated_at?: Date | string
|
|
94742
94719
|
created_by: string
|
|
@@ -94763,7 +94740,6 @@ export namespace Prisma {
|
|
|
94763
94740
|
scheduled_end_time?: Date | string | null
|
|
94764
94741
|
actual_start_time?: Date | string | null
|
|
94765
94742
|
actual_end_time?: Date | string | null
|
|
94766
|
-
attempt_expires_at?: Date | string | null
|
|
94767
94743
|
created_at?: Date | string
|
|
94768
94744
|
updated_at?: Date | string
|
|
94769
94745
|
created_by: string
|
|
@@ -94841,7 +94817,6 @@ export namespace Prisma {
|
|
|
94841
94817
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94842
94818
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94843
94819
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94844
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94845
94820
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94846
94821
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94847
94822
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -94868,7 +94843,6 @@ export namespace Prisma {
|
|
|
94868
94843
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94869
94844
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94870
94845
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94871
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94872
94846
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94873
94847
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94874
94848
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -95253,7 +95227,6 @@ export namespace Prisma {
|
|
|
95253
95227
|
is_active?: boolean
|
|
95254
95228
|
alias?: string | null
|
|
95255
95229
|
logo?: string | null
|
|
95256
|
-
timezone?: string
|
|
95257
95230
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
95258
95231
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
95259
95232
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -95291,7 +95264,6 @@ export namespace Prisma {
|
|
|
95291
95264
|
is_active?: boolean
|
|
95292
95265
|
alias?: string | null
|
|
95293
95266
|
logo?: string | null
|
|
95294
|
-
timezone?: string
|
|
95295
95267
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
95296
95268
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
95297
95269
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -95887,7 +95859,6 @@ export namespace Prisma {
|
|
|
95887
95859
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95888
95860
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95889
95861
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95890
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
95891
95862
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
95892
95863
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
95893
95864
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -95925,7 +95896,6 @@ export namespace Prisma {
|
|
|
95925
95896
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95926
95897
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95927
95898
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95928
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
95929
95899
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
95930
95900
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
95931
95901
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -96198,7 +96168,6 @@ export namespace Prisma {
|
|
|
96198
96168
|
is_active?: boolean
|
|
96199
96169
|
alias?: string | null
|
|
96200
96170
|
logo?: string | null
|
|
96201
|
-
timezone?: string
|
|
96202
96171
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
96203
96172
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
96204
96173
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -96236,7 +96205,6 @@ export namespace Prisma {
|
|
|
96236
96205
|
is_active?: boolean
|
|
96237
96206
|
alias?: string | null
|
|
96238
96207
|
logo?: string | null
|
|
96239
|
-
timezone?: string
|
|
96240
96208
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
96241
96209
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
96242
96210
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -96491,7 +96459,6 @@ export namespace Prisma {
|
|
|
96491
96459
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
96492
96460
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96493
96461
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96494
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
96495
96462
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
96496
96463
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
96497
96464
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -96529,7 +96496,6 @@ export namespace Prisma {
|
|
|
96529
96496
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
96530
96497
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96531
96498
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96532
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
96533
96499
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
96534
96500
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
96535
96501
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -97907,6 +97873,8 @@ export namespace Prisma {
|
|
|
97907
97873
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
97908
97874
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97909
97875
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97876
|
+
reschedule_count?: number
|
|
97877
|
+
last_rescheduled_at?: Date | string | null
|
|
97910
97878
|
created_at?: Date | string
|
|
97911
97879
|
updated_at?: Date | string
|
|
97912
97880
|
created_by: string
|
|
@@ -97955,6 +97923,8 @@ export namespace Prisma {
|
|
|
97955
97923
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
97956
97924
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97957
97925
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97926
|
+
reschedule_count?: number
|
|
97927
|
+
last_rescheduled_at?: Date | string | null
|
|
97958
97928
|
created_at?: Date | string
|
|
97959
97929
|
updated_at?: Date | string
|
|
97960
97930
|
created_by: string
|
|
@@ -98479,6 +98449,8 @@ export namespace Prisma {
|
|
|
98479
98449
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
98480
98450
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98481
98451
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98452
|
+
reschedule_count?: number
|
|
98453
|
+
last_rescheduled_at?: Date | string | null
|
|
98482
98454
|
created_at?: Date | string
|
|
98483
98455
|
updated_at?: Date | string
|
|
98484
98456
|
created_by: string
|
|
@@ -98528,6 +98500,8 @@ export namespace Prisma {
|
|
|
98528
98500
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
98529
98501
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98530
98502
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98503
|
+
reschedule_count?: number
|
|
98504
|
+
last_rescheduled_at?: Date | string | null
|
|
98531
98505
|
created_at?: Date | string
|
|
98532
98506
|
updated_at?: Date | string
|
|
98533
98507
|
created_by: string
|
|
@@ -98579,6 +98553,8 @@ export namespace Prisma {
|
|
|
98579
98553
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
98580
98554
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98581
98555
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98556
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
98557
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98582
98558
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98583
98559
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98584
98560
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -98628,6 +98604,8 @@ export namespace Prisma {
|
|
|
98628
98604
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
98629
98605
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98630
98606
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98607
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
98608
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98631
98609
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98632
98610
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98633
98611
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -98659,7 +98637,6 @@ export namespace Prisma {
|
|
|
98659
98637
|
is_active?: boolean
|
|
98660
98638
|
alias?: string | null
|
|
98661
98639
|
logo?: string | null
|
|
98662
|
-
timezone?: string
|
|
98663
98640
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
98664
98641
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
98665
98642
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -98697,7 +98674,6 @@ export namespace Prisma {
|
|
|
98697
98674
|
is_active?: boolean
|
|
98698
98675
|
alias?: string | null
|
|
98699
98676
|
logo?: string | null
|
|
98700
|
-
timezone?: string
|
|
98701
98677
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
98702
98678
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
98703
98679
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -99077,7 +99053,6 @@ export namespace Prisma {
|
|
|
99077
99053
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
99078
99054
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99079
99055
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99080
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
99081
99056
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
99082
99057
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
99083
99058
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -99115,7 +99090,6 @@ export namespace Prisma {
|
|
|
99115
99090
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
99116
99091
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99117
99092
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99118
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
99119
99093
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
99120
99094
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
99121
99095
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -99783,7 +99757,6 @@ export namespace Prisma {
|
|
|
99783
99757
|
is_active?: boolean
|
|
99784
99758
|
alias?: string | null
|
|
99785
99759
|
logo?: string | null
|
|
99786
|
-
timezone?: string
|
|
99787
99760
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
99788
99761
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
99789
99762
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -99821,7 +99794,6 @@ export namespace Prisma {
|
|
|
99821
99794
|
is_active?: boolean
|
|
99822
99795
|
alias?: string | null
|
|
99823
99796
|
logo?: string | null
|
|
99824
|
-
timezone?: string
|
|
99825
99797
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
99826
99798
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
99827
99799
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -99875,7 +99847,6 @@ export namespace Prisma {
|
|
|
99875
99847
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
99876
99848
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99877
99849
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99878
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
99879
99850
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
99880
99851
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
99881
99852
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -99913,7 +99884,6 @@ export namespace Prisma {
|
|
|
99913
99884
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
99914
99885
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99915
99886
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99916
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
99917
99887
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
99918
99888
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
99919
99889
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -100107,7 +100077,6 @@ export namespace Prisma {
|
|
|
100107
100077
|
is_active?: boolean
|
|
100108
100078
|
alias?: string | null
|
|
100109
100079
|
logo?: string | null
|
|
100110
|
-
timezone?: string
|
|
100111
100080
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
100112
100081
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
100113
100082
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -100145,7 +100114,6 @@ export namespace Prisma {
|
|
|
100145
100114
|
is_active?: boolean
|
|
100146
100115
|
alias?: string | null
|
|
100147
100116
|
logo?: string | null
|
|
100148
|
-
timezone?: string
|
|
100149
100117
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
100150
100118
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
100151
100119
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -100199,7 +100167,6 @@ export namespace Prisma {
|
|
|
100199
100167
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
100200
100168
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100201
100169
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100202
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
100203
100170
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
100204
100171
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
100205
100172
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -100237,7 +100204,6 @@ export namespace Prisma {
|
|
|
100237
100204
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
100238
100205
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100239
100206
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100240
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
100241
100207
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
100242
100208
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
100243
100209
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -100549,7 +100515,6 @@ export namespace Prisma {
|
|
|
100549
100515
|
is_active?: boolean
|
|
100550
100516
|
alias?: string | null
|
|
100551
100517
|
logo?: string | null
|
|
100552
|
-
timezone?: string
|
|
100553
100518
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
100554
100519
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
100555
100520
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -100587,7 +100552,6 @@ export namespace Prisma {
|
|
|
100587
100552
|
is_active?: boolean
|
|
100588
100553
|
alias?: string | null
|
|
100589
100554
|
logo?: string | null
|
|
100590
|
-
timezone?: string
|
|
100591
100555
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
100592
100556
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
100593
100557
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -101481,7 +101445,6 @@ export namespace Prisma {
|
|
|
101481
101445
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101482
101446
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101483
101447
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101484
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
101485
101448
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
101486
101449
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
101487
101450
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -101519,7 +101482,6 @@ export namespace Prisma {
|
|
|
101519
101482
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101520
101483
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101521
101484
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101522
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
101523
101485
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
101524
101486
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
101525
101487
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -102135,6 +102097,8 @@ export namespace Prisma {
|
|
|
102135
102097
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
102136
102098
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102137
102099
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102100
|
+
reschedule_count?: number
|
|
102101
|
+
last_rescheduled_at?: Date | string | null
|
|
102138
102102
|
created_at?: Date | string
|
|
102139
102103
|
updated_at?: Date | string
|
|
102140
102104
|
created_by: string
|
|
@@ -102184,6 +102148,8 @@ export namespace Prisma {
|
|
|
102184
102148
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
102185
102149
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102186
102150
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102151
|
+
reschedule_count?: number
|
|
102152
|
+
last_rescheduled_at?: Date | string | null
|
|
102187
102153
|
created_at?: Date | string
|
|
102188
102154
|
updated_at?: Date | string
|
|
102189
102155
|
created_by: string
|
|
@@ -102235,6 +102201,8 @@ export namespace Prisma {
|
|
|
102235
102201
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
102236
102202
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102237
102203
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102204
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
102205
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102238
102206
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102239
102207
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102240
102208
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -102284,6 +102252,8 @@ export namespace Prisma {
|
|
|
102284
102252
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
102285
102253
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102286
102254
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102255
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
102256
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102287
102257
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102288
102258
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102289
102259
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -102376,7 +102346,6 @@ export namespace Prisma {
|
|
|
102376
102346
|
is_active?: boolean
|
|
102377
102347
|
alias?: string | null
|
|
102378
102348
|
logo?: string | null
|
|
102379
|
-
timezone?: string
|
|
102380
102349
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
102381
102350
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
102382
102351
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -102414,7 +102383,6 @@ export namespace Prisma {
|
|
|
102414
102383
|
is_active?: boolean
|
|
102415
102384
|
alias?: string | null
|
|
102416
102385
|
logo?: string | null
|
|
102417
|
-
timezone?: string
|
|
102418
102386
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
102419
102387
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
102420
102388
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -102531,6 +102499,8 @@ export namespace Prisma {
|
|
|
102531
102499
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
102532
102500
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102533
102501
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102502
|
+
reschedule_count?: number
|
|
102503
|
+
last_rescheduled_at?: Date | string | null
|
|
102534
102504
|
created_at?: Date | string
|
|
102535
102505
|
updated_at?: Date | string
|
|
102536
102506
|
created_by: string
|
|
@@ -102579,6 +102549,8 @@ export namespace Prisma {
|
|
|
102579
102549
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
102580
102550
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102581
102551
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102552
|
+
reschedule_count?: number
|
|
102553
|
+
last_rescheduled_at?: Date | string | null
|
|
102582
102554
|
created_at?: Date | string
|
|
102583
102555
|
updated_at?: Date | string
|
|
102584
102556
|
created_by: string
|
|
@@ -103542,7 +103514,6 @@ export namespace Prisma {
|
|
|
103542
103514
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
103543
103515
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103544
103516
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103545
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
103546
103517
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
103547
103518
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
103548
103519
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -103580,7 +103551,6 @@ export namespace Prisma {
|
|
|
103580
103551
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
103581
103552
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103582
103553
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103583
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
103584
103554
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
103585
103555
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
103586
103556
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -104299,7 +104269,6 @@ export namespace Prisma {
|
|
|
104299
104269
|
is_active?: boolean
|
|
104300
104270
|
alias?: string | null
|
|
104301
104271
|
logo?: string | null
|
|
104302
|
-
timezone?: string
|
|
104303
104272
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
104304
104273
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
104305
104274
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -104337,7 +104306,6 @@ export namespace Prisma {
|
|
|
104337
104306
|
is_active?: boolean
|
|
104338
104307
|
alias?: string | null
|
|
104339
104308
|
logo?: string | null
|
|
104340
|
-
timezone?: string
|
|
104341
104309
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
104342
104310
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
104343
104311
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -104882,7 +104850,6 @@ export namespace Prisma {
|
|
|
104882
104850
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
104883
104851
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104884
104852
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104885
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
104886
104853
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
104887
104854
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
104888
104855
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -104920,7 +104887,6 @@ export namespace Prisma {
|
|
|
104920
104887
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
104921
104888
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104922
104889
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104923
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
104924
104890
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
104925
104891
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
104926
104892
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -105432,6 +105398,8 @@ export namespace Prisma {
|
|
|
105432
105398
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
105433
105399
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
105434
105400
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
105401
|
+
reschedule_count?: number
|
|
105402
|
+
last_rescheduled_at?: Date | string | null
|
|
105435
105403
|
created_at?: Date | string
|
|
105436
105404
|
updated_at?: Date | string
|
|
105437
105405
|
created_by: string
|
|
@@ -105481,6 +105449,8 @@ export namespace Prisma {
|
|
|
105481
105449
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
105482
105450
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
105483
105451
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
105452
|
+
reschedule_count?: number
|
|
105453
|
+
last_rescheduled_at?: Date | string | null
|
|
105484
105454
|
created_at?: Date | string
|
|
105485
105455
|
updated_at?: Date | string
|
|
105486
105456
|
created_by: string
|
|
@@ -105532,6 +105502,8 @@ export namespace Prisma {
|
|
|
105532
105502
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
105533
105503
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
105534
105504
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
105505
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
105506
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105535
105507
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105536
105508
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105537
105509
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -105581,6 +105553,8 @@ export namespace Prisma {
|
|
|
105581
105553
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
105582
105554
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
105583
105555
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
105556
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
105557
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105584
105558
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105585
105559
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105586
105560
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -106914,7 +106888,6 @@ export namespace Prisma {
|
|
|
106914
106888
|
is_active?: boolean
|
|
106915
106889
|
alias?: string | null
|
|
106916
106890
|
logo?: string | null
|
|
106917
|
-
timezone?: string
|
|
106918
106891
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
106919
106892
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
106920
106893
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -106952,7 +106925,6 @@ export namespace Prisma {
|
|
|
106952
106925
|
is_active?: boolean
|
|
106953
106926
|
alias?: string | null
|
|
106954
106927
|
logo?: string | null
|
|
106955
|
-
timezone?: string
|
|
106956
106928
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
106957
106929
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
106958
106930
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -107064,6 +107036,8 @@ export namespace Prisma {
|
|
|
107064
107036
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
107065
107037
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
107066
107038
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
107039
|
+
reschedule_count?: number
|
|
107040
|
+
last_rescheduled_at?: Date | string | null
|
|
107067
107041
|
created_at?: Date | string
|
|
107068
107042
|
updated_at?: Date | string
|
|
107069
107043
|
created_by: string
|
|
@@ -107113,6 +107087,8 @@ export namespace Prisma {
|
|
|
107113
107087
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
107114
107088
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
107115
107089
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
107090
|
+
reschedule_count?: number
|
|
107091
|
+
last_rescheduled_at?: Date | string | null
|
|
107116
107092
|
created_at?: Date | string
|
|
107117
107093
|
updated_at?: Date | string
|
|
107118
107094
|
created_by: string
|
|
@@ -107190,7 +107166,6 @@ export namespace Prisma {
|
|
|
107190
107166
|
scheduled_end_time?: Date | string | null
|
|
107191
107167
|
actual_start_time?: Date | string | null
|
|
107192
107168
|
actual_end_time?: Date | string | null
|
|
107193
|
-
attempt_expires_at?: Date | string | null
|
|
107194
107169
|
created_at?: Date | string
|
|
107195
107170
|
updated_at?: Date | string
|
|
107196
107171
|
created_by: string
|
|
@@ -107217,7 +107192,6 @@ export namespace Prisma {
|
|
|
107217
107192
|
scheduled_end_time?: Date | string | null
|
|
107218
107193
|
actual_start_time?: Date | string | null
|
|
107219
107194
|
actual_end_time?: Date | string | null
|
|
107220
|
-
attempt_expires_at?: Date | string | null
|
|
107221
107195
|
created_at?: Date | string
|
|
107222
107196
|
updated_at?: Date | string
|
|
107223
107197
|
created_by: string
|
|
@@ -107612,7 +107586,6 @@ export namespace Prisma {
|
|
|
107612
107586
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
107613
107587
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107614
107588
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107615
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
107616
107589
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
107617
107590
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
107618
107591
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -107650,7 +107623,6 @@ export namespace Prisma {
|
|
|
107650
107623
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
107651
107624
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107652
107625
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107653
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
107654
107626
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
107655
107627
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
107656
107628
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -107774,6 +107746,8 @@ export namespace Prisma {
|
|
|
107774
107746
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
107775
107747
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
107776
107748
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
107749
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
107750
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107777
107751
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107778
107752
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107779
107753
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -107823,6 +107797,8 @@ export namespace Prisma {
|
|
|
107823
107797
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
107824
107798
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
107825
107799
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
107800
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
107801
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107826
107802
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107827
107803
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107828
107804
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -107912,7 +107888,6 @@ export namespace Prisma {
|
|
|
107912
107888
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107913
107889
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107914
107890
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107915
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107916
107891
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107917
107892
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107918
107893
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -107939,7 +107914,6 @@ export namespace Prisma {
|
|
|
107939
107914
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107940
107915
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107941
107916
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107942
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107943
107917
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107944
107918
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107945
107919
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -108446,6 +108420,8 @@ export namespace Prisma {
|
|
|
108446
108420
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
108447
108421
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
108448
108422
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
108423
|
+
reschedule_count?: number
|
|
108424
|
+
last_rescheduled_at?: Date | string | null
|
|
108449
108425
|
created_at?: Date | string
|
|
108450
108426
|
updated_at?: Date | string
|
|
108451
108427
|
created_by: string
|
|
@@ -108494,6 +108470,8 @@ export namespace Prisma {
|
|
|
108494
108470
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
108495
108471
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
108496
108472
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
108473
|
+
reschedule_count?: number
|
|
108474
|
+
last_rescheduled_at?: Date | string | null
|
|
108497
108475
|
created_at?: Date | string
|
|
108498
108476
|
updated_at?: Date | string
|
|
108499
108477
|
created_by: string
|
|
@@ -108986,7 +108964,6 @@ export namespace Prisma {
|
|
|
108986
108964
|
scheduled_end_time?: Date | string | null
|
|
108987
108965
|
actual_start_time?: Date | string | null
|
|
108988
108966
|
actual_end_time?: Date | string | null
|
|
108989
|
-
attempt_expires_at?: Date | string | null
|
|
108990
108967
|
created_at?: Date | string
|
|
108991
108968
|
updated_at?: Date | string
|
|
108992
108969
|
created_by: string
|
|
@@ -109012,7 +108989,6 @@ export namespace Prisma {
|
|
|
109012
108989
|
scheduled_end_time?: Date | string | null
|
|
109013
108990
|
actual_start_time?: Date | string | null
|
|
109014
108991
|
actual_end_time?: Date | string | null
|
|
109015
|
-
attempt_expires_at?: Date | string | null
|
|
109016
108992
|
created_at?: Date | string
|
|
109017
108993
|
updated_at?: Date | string
|
|
109018
108994
|
created_by: string
|
|
@@ -110812,7 +110788,6 @@ export namespace Prisma {
|
|
|
110812
110788
|
is_active?: boolean
|
|
110813
110789
|
alias?: string | null
|
|
110814
110790
|
logo?: string | null
|
|
110815
|
-
timezone?: string
|
|
110816
110791
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
110817
110792
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
110818
110793
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -110850,7 +110825,6 @@ export namespace Prisma {
|
|
|
110850
110825
|
is_active?: boolean
|
|
110851
110826
|
alias?: string | null
|
|
110852
110827
|
logo?: string | null
|
|
110853
|
-
timezone?: string
|
|
110854
110828
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
110855
110829
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
110856
110830
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -111042,6 +111016,8 @@ export namespace Prisma {
|
|
|
111042
111016
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
111043
111017
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
111044
111018
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
111019
|
+
reschedule_count?: number
|
|
111020
|
+
last_rescheduled_at?: Date | string | null
|
|
111045
111021
|
created_at?: Date | string
|
|
111046
111022
|
updated_at?: Date | string
|
|
111047
111023
|
created_by: string
|
|
@@ -111090,6 +111066,8 @@ export namespace Prisma {
|
|
|
111090
111066
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
111091
111067
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
111092
111068
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
111069
|
+
reschedule_count?: number
|
|
111070
|
+
last_rescheduled_at?: Date | string | null
|
|
111093
111071
|
created_at?: Date | string
|
|
111094
111072
|
updated_at?: Date | string
|
|
111095
111073
|
created_by: string
|
|
@@ -111525,7 +111503,6 @@ export namespace Prisma {
|
|
|
111525
111503
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
111526
111504
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111527
111505
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111528
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
111529
111506
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
111530
111507
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
111531
111508
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -111563,7 +111540,6 @@ export namespace Prisma {
|
|
|
111563
111540
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
111564
111541
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111565
111542
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111566
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
111567
111543
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
111568
111544
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
111569
111545
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -111938,6 +111914,8 @@ export namespace Prisma {
|
|
|
111938
111914
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
111939
111915
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
111940
111916
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
111917
|
+
reschedule_count?: number
|
|
111918
|
+
last_rescheduled_at?: Date | string | null
|
|
111941
111919
|
created_at?: Date | string
|
|
111942
111920
|
updated_at?: Date | string
|
|
111943
111921
|
created_by: string
|
|
@@ -111987,6 +111965,8 @@ export namespace Prisma {
|
|
|
111987
111965
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
111988
111966
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
111989
111967
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
111968
|
+
reschedule_count?: number
|
|
111969
|
+
last_rescheduled_at?: Date | string | null
|
|
111990
111970
|
created_at?: Date | string
|
|
111991
111971
|
updated_at?: Date | string
|
|
111992
111972
|
created_by: string
|
|
@@ -112067,7 +112047,6 @@ export namespace Prisma {
|
|
|
112067
112047
|
is_active?: boolean
|
|
112068
112048
|
alias?: string | null
|
|
112069
112049
|
logo?: string | null
|
|
112070
|
-
timezone?: string
|
|
112071
112050
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
112072
112051
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
112073
112052
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -112105,7 +112084,6 @@ export namespace Prisma {
|
|
|
112105
112084
|
is_active?: boolean
|
|
112106
112085
|
alias?: string | null
|
|
112107
112086
|
logo?: string | null
|
|
112108
|
-
timezone?: string
|
|
112109
112087
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
112110
112088
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
112111
112089
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -112163,6 +112141,8 @@ export namespace Prisma {
|
|
|
112163
112141
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
112164
112142
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112165
112143
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112144
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
112145
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112166
112146
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112167
112147
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112168
112148
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -112212,6 +112192,8 @@ export namespace Prisma {
|
|
|
112212
112192
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
112213
112193
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112214
112194
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112195
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
112196
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112215
112197
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112216
112198
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112217
112199
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -112270,7 +112252,6 @@ export namespace Prisma {
|
|
|
112270
112252
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
112271
112253
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112272
112254
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112273
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
112274
112255
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
112275
112256
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
112276
112257
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -112308,7 +112289,6 @@ export namespace Prisma {
|
|
|
112308
112289
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
112309
112290
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112310
112291
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112311
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
112312
112292
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
112313
112293
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
112314
112294
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -112350,6 +112330,8 @@ export namespace Prisma {
|
|
|
112350
112330
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
112351
112331
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112352
112332
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112333
|
+
reschedule_count?: number
|
|
112334
|
+
last_rescheduled_at?: Date | string | null
|
|
112353
112335
|
created_at?: Date | string
|
|
112354
112336
|
updated_at?: Date | string
|
|
112355
112337
|
created_by: string
|
|
@@ -112399,6 +112381,8 @@ export namespace Prisma {
|
|
|
112399
112381
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
112400
112382
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112401
112383
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112384
|
+
reschedule_count?: number
|
|
112385
|
+
last_rescheduled_at?: Date | string | null
|
|
112402
112386
|
created_at?: Date | string
|
|
112403
112387
|
updated_at?: Date | string
|
|
112404
112388
|
created_by: string
|
|
@@ -112558,6 +112542,8 @@ export namespace Prisma {
|
|
|
112558
112542
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
112559
112543
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112560
112544
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112545
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
112546
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112561
112547
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112562
112548
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112563
112549
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -112607,6 +112593,8 @@ export namespace Prisma {
|
|
|
112607
112593
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
112608
112594
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112609
112595
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112596
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
112597
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112610
112598
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112611
112599
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112612
112600
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -112816,7 +112804,6 @@ export namespace Prisma {
|
|
|
112816
112804
|
is_active?: boolean
|
|
112817
112805
|
alias?: string | null
|
|
112818
112806
|
logo?: string | null
|
|
112819
|
-
timezone?: string
|
|
112820
112807
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
112821
112808
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
112822
112809
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutOrganisationInput
|
|
@@ -112854,7 +112841,6 @@ export namespace Prisma {
|
|
|
112854
112841
|
is_active?: boolean
|
|
112855
112842
|
alias?: string | null
|
|
112856
112843
|
logo?: string | null
|
|
112857
|
-
timezone?: string
|
|
112858
112844
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
112859
112845
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
112860
112846
|
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -113420,6 +113406,8 @@ export namespace Prisma {
|
|
|
113420
113406
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
113421
113407
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
113422
113408
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
113409
|
+
reschedule_count?: number
|
|
113410
|
+
last_rescheduled_at?: Date | string | null
|
|
113423
113411
|
created_at?: Date | string
|
|
113424
113412
|
updated_at?: Date | string
|
|
113425
113413
|
created_by: string
|
|
@@ -113468,6 +113456,8 @@ export namespace Prisma {
|
|
|
113468
113456
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
113469
113457
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
113470
113458
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
113459
|
+
reschedule_count?: number
|
|
113460
|
+
last_rescheduled_at?: Date | string | null
|
|
113471
113461
|
created_at?: Date | string
|
|
113472
113462
|
updated_at?: Date | string
|
|
113473
113463
|
created_by: string
|
|
@@ -113514,6 +113504,8 @@ export namespace Prisma {
|
|
|
113514
113504
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
113515
113505
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
113516
113506
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
113507
|
+
reschedule_count?: number
|
|
113508
|
+
last_rescheduled_at?: Date | string | null
|
|
113517
113509
|
created_at?: Date | string
|
|
113518
113510
|
updated_at?: Date | string
|
|
113519
113511
|
created_by: string
|
|
@@ -113562,6 +113554,8 @@ export namespace Prisma {
|
|
|
113562
113554
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
113563
113555
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
113564
113556
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
113557
|
+
reschedule_count?: number
|
|
113558
|
+
last_rescheduled_at?: Date | string | null
|
|
113565
113559
|
created_at?: Date | string
|
|
113566
113560
|
updated_at?: Date | string
|
|
113567
113561
|
created_by: string
|
|
@@ -113594,7 +113588,6 @@ export namespace Prisma {
|
|
|
113594
113588
|
scheduled_end_time?: Date | string | null
|
|
113595
113589
|
actual_start_time?: Date | string | null
|
|
113596
113590
|
actual_end_time?: Date | string | null
|
|
113597
|
-
attempt_expires_at?: Date | string | null
|
|
113598
113591
|
created_at?: Date | string
|
|
113599
113592
|
updated_at?: Date | string
|
|
113600
113593
|
created_by: string
|
|
@@ -113621,7 +113614,6 @@ export namespace Prisma {
|
|
|
113621
113614
|
scheduled_end_time?: Date | string | null
|
|
113622
113615
|
actual_start_time?: Date | string | null
|
|
113623
113616
|
actual_end_time?: Date | string | null
|
|
113624
|
-
attempt_expires_at?: Date | string | null
|
|
113625
113617
|
created_at?: Date | string
|
|
113626
113618
|
updated_at?: Date | string
|
|
113627
113619
|
created_by: string
|
|
@@ -113650,7 +113642,6 @@ export namespace Prisma {
|
|
|
113650
113642
|
scheduled_end_time?: Date | string | null
|
|
113651
113643
|
actual_start_time?: Date | string | null
|
|
113652
113644
|
actual_end_time?: Date | string | null
|
|
113653
|
-
attempt_expires_at?: Date | string | null
|
|
113654
113645
|
created_at?: Date | string
|
|
113655
113646
|
updated_at?: Date | string
|
|
113656
113647
|
created_by: string
|
|
@@ -113676,7 +113667,6 @@ export namespace Prisma {
|
|
|
113676
113667
|
scheduled_end_time?: Date | string | null
|
|
113677
113668
|
actual_start_time?: Date | string | null
|
|
113678
113669
|
actual_end_time?: Date | string | null
|
|
113679
|
-
attempt_expires_at?: Date | string | null
|
|
113680
113670
|
created_at?: Date | string
|
|
113681
113671
|
updated_at?: Date | string
|
|
113682
113672
|
created_by: string
|
|
@@ -113706,7 +113696,6 @@ export namespace Prisma {
|
|
|
113706
113696
|
scheduled_end_time?: Date | string | null
|
|
113707
113697
|
actual_start_time?: Date | string | null
|
|
113708
113698
|
actual_end_time?: Date | string | null
|
|
113709
|
-
attempt_expires_at?: Date | string | null
|
|
113710
113699
|
created_at?: Date | string
|
|
113711
113700
|
updated_at?: Date | string
|
|
113712
113701
|
created_by: string
|
|
@@ -113732,7 +113721,6 @@ export namespace Prisma {
|
|
|
113732
113721
|
scheduled_end_time?: Date | string | null
|
|
113733
113722
|
actual_start_time?: Date | string | null
|
|
113734
113723
|
actual_end_time?: Date | string | null
|
|
113735
|
-
attempt_expires_at?: Date | string | null
|
|
113736
113724
|
created_at?: Date | string
|
|
113737
113725
|
updated_at?: Date | string
|
|
113738
113726
|
created_by: string
|
|
@@ -114613,7 +114601,6 @@ export namespace Prisma {
|
|
|
114613
114601
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
114614
114602
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114615
114603
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114616
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
114617
114604
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
114618
114605
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
114619
114606
|
job_descriptions?: JobDescriptionUpdateManyWithoutOrganisationNestedInput
|
|
@@ -114651,7 +114638,6 @@ export namespace Prisma {
|
|
|
114651
114638
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
114652
114639
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114653
114640
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114654
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
114655
114641
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
114656
114642
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
114657
114643
|
job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -115633,6 +115619,8 @@ export namespace Prisma {
|
|
|
115633
115619
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
115634
115620
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
115635
115621
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115622
|
+
reschedule_count?: number
|
|
115623
|
+
last_rescheduled_at?: Date | string | null
|
|
115636
115624
|
created_at?: Date | string
|
|
115637
115625
|
updated_at?: Date | string
|
|
115638
115626
|
created_by: string
|
|
@@ -115682,6 +115670,8 @@ export namespace Prisma {
|
|
|
115682
115670
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
115683
115671
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
115684
115672
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115673
|
+
reschedule_count?: number
|
|
115674
|
+
last_rescheduled_at?: Date | string | null
|
|
115685
115675
|
created_at?: Date | string
|
|
115686
115676
|
updated_at?: Date | string
|
|
115687
115677
|
created_by: string
|
|
@@ -115767,6 +115757,8 @@ export namespace Prisma {
|
|
|
115767
115757
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
115768
115758
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
115769
115759
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115760
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
115761
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115770
115762
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115771
115763
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115772
115764
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -115816,6 +115808,8 @@ export namespace Prisma {
|
|
|
115816
115808
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
115817
115809
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
115818
115810
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115811
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
115812
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115819
115813
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115820
115814
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115821
115815
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -116447,6 +116441,8 @@ export namespace Prisma {
|
|
|
116447
116441
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
116448
116442
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
116449
116443
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
116444
|
+
reschedule_count?: number
|
|
116445
|
+
last_rescheduled_at?: Date | string | null
|
|
116450
116446
|
created_at?: Date | string
|
|
116451
116447
|
updated_at?: Date | string
|
|
116452
116448
|
created_by: string
|
|
@@ -116557,6 +116553,8 @@ export namespace Prisma {
|
|
|
116557
116553
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
116558
116554
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
116559
116555
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
116556
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
116557
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116560
116558
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116561
116559
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116562
116560
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -116605,6 +116603,8 @@ export namespace Prisma {
|
|
|
116605
116603
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
116606
116604
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
116607
116605
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
116606
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
116607
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116608
116608
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116609
116609
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116610
116610
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -116647,6 +116647,8 @@ export namespace Prisma {
|
|
|
116647
116647
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
116648
116648
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
116649
116649
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
116650
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
116651
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116650
116652
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116651
116653
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116652
116654
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -117003,7 +117005,6 @@ export namespace Prisma {
|
|
|
117003
117005
|
scheduled_end_time?: Date | string | null
|
|
117004
117006
|
actual_start_time?: Date | string | null
|
|
117005
117007
|
actual_end_time?: Date | string | null
|
|
117006
|
-
attempt_expires_at?: Date | string | null
|
|
117007
117008
|
created_at?: Date | string
|
|
117008
117009
|
updated_at?: Date | string
|
|
117009
117010
|
created_by: string
|
|
@@ -117101,7 +117102,6 @@ export namespace Prisma {
|
|
|
117101
117102
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117102
117103
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117103
117104
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117104
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117105
117105
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117106
117106
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117107
117107
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -117127,7 +117127,6 @@ export namespace Prisma {
|
|
|
117127
117127
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117128
117128
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117129
117129
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117130
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117131
117130
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117132
117131
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117133
117132
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -117150,7 +117149,6 @@ export namespace Prisma {
|
|
|
117150
117149
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117151
117150
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117152
117151
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117153
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117154
117152
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117155
117153
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117156
117154
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -117494,6 +117492,8 @@ export namespace Prisma {
|
|
|
117494
117492
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
117495
117493
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
117496
117494
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
117495
|
+
reschedule_count?: number
|
|
117496
|
+
last_rescheduled_at?: Date | string | null
|
|
117497
117497
|
created_at?: Date | string
|
|
117498
117498
|
updated_at?: Date | string
|
|
117499
117499
|
created_by: string
|
|
@@ -117638,6 +117638,8 @@ export namespace Prisma {
|
|
|
117638
117638
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
117639
117639
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
117640
117640
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
117641
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
117642
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117641
117643
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117642
117644
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117643
117645
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -117686,6 +117688,8 @@ export namespace Prisma {
|
|
|
117686
117688
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
117687
117689
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
117688
117690
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
117691
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
117692
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117689
117693
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117690
117694
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117691
117695
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -117728,6 +117732,8 @@ export namespace Prisma {
|
|
|
117728
117732
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
117729
117733
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
117730
117734
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
117735
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
117736
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117731
117737
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117732
117738
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117733
117739
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -118238,6 +118244,8 @@ export namespace Prisma {
|
|
|
118238
118244
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
118239
118245
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
118240
118246
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
118247
|
+
reschedule_count?: number
|
|
118248
|
+
last_rescheduled_at?: Date | string | null
|
|
118241
118249
|
created_at?: Date | string
|
|
118242
118250
|
updated_at?: Date | string
|
|
118243
118251
|
created_by: string
|
|
@@ -118548,6 +118556,8 @@ export namespace Prisma {
|
|
|
118548
118556
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
118549
118557
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
118550
118558
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
118559
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
118560
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
118551
118561
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118552
118562
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118553
118563
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -118596,6 +118606,8 @@ export namespace Prisma {
|
|
|
118596
118606
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
118597
118607
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
118598
118608
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
118609
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
118610
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
118599
118611
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118600
118612
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118601
118613
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -118638,6 +118650,8 @@ export namespace Prisma {
|
|
|
118638
118650
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
118639
118651
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
118640
118652
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
118653
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
118654
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
118641
118655
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118642
118656
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118643
118657
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -119714,6 +119728,8 @@ export namespace Prisma {
|
|
|
119714
119728
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
119715
119729
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
119716
119730
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
119731
|
+
reschedule_count?: number
|
|
119732
|
+
last_rescheduled_at?: Date | string | null
|
|
119717
119733
|
created_at?: Date | string
|
|
119718
119734
|
updated_at?: Date | string
|
|
119719
119735
|
created_by: string
|
|
@@ -119908,7 +119924,6 @@ export namespace Prisma {
|
|
|
119908
119924
|
scheduled_end_time?: Date | string | null
|
|
119909
119925
|
actual_start_time?: Date | string | null
|
|
119910
119926
|
actual_end_time?: Date | string | null
|
|
119911
|
-
attempt_expires_at?: Date | string | null
|
|
119912
119927
|
created_at?: Date | string
|
|
119913
119928
|
updated_at?: Date | string
|
|
119914
119929
|
created_by: string
|
|
@@ -120488,6 +120503,8 @@ export namespace Prisma {
|
|
|
120488
120503
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
120489
120504
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
120490
120505
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
120506
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
120507
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120491
120508
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120492
120509
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120493
120510
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -120536,6 +120553,8 @@ export namespace Prisma {
|
|
|
120536
120553
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
120537
120554
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
120538
120555
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
120556
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
120557
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120539
120558
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120540
120559
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120541
120560
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -120578,6 +120597,8 @@ export namespace Prisma {
|
|
|
120578
120597
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
120579
120598
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
120580
120599
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
120600
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
120601
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120581
120602
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120582
120603
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120583
120604
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121139,7 +121160,6 @@ export namespace Prisma {
|
|
|
121139
121160
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121140
121161
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121141
121162
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121142
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121143
121163
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121144
121164
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121145
121165
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121165,7 +121185,6 @@ export namespace Prisma {
|
|
|
121165
121185
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121166
121186
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121167
121187
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121168
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121169
121188
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121170
121189
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121171
121190
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121188,7 +121207,6 @@ export namespace Prisma {
|
|
|
121188
121207
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121189
121208
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121190
121209
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121191
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121192
121210
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121193
121211
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121194
121212
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121326,6 +121344,8 @@ export namespace Prisma {
|
|
|
121326
121344
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
121327
121345
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121328
121346
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
121347
|
+
reschedule_count?: number
|
|
121348
|
+
last_rescheduled_at?: Date | string | null
|
|
121329
121349
|
created_at?: Date | string
|
|
121330
121350
|
updated_at?: Date | string
|
|
121331
121351
|
created_by: string
|
|
@@ -121519,6 +121539,8 @@ export namespace Prisma {
|
|
|
121519
121539
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
121520
121540
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121521
121541
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
121542
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
121543
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121522
121544
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121523
121545
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121524
121546
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121567,6 +121589,8 @@ export namespace Prisma {
|
|
|
121567
121589
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
121568
121590
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121569
121591
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
121592
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
121593
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121570
121594
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121571
121595
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121572
121596
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121609,6 +121633,8 @@ export namespace Prisma {
|
|
|
121609
121633
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
121610
121634
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121611
121635
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
121636
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
121637
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121612
121638
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121613
121639
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121614
121640
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -122075,6 +122101,8 @@ export namespace Prisma {
|
|
|
122075
122101
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
122076
122102
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
122077
122103
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
122104
|
+
reschedule_count?: number
|
|
122105
|
+
last_rescheduled_at?: Date | string | null
|
|
122078
122106
|
created_at?: Date | string
|
|
122079
122107
|
updated_at?: Date | string
|
|
122080
122108
|
created_by: string
|
|
@@ -122110,6 +122138,8 @@ export namespace Prisma {
|
|
|
122110
122138
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
122111
122139
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
122112
122140
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
122141
|
+
reschedule_count?: number
|
|
122142
|
+
last_rescheduled_at?: Date | string | null
|
|
122113
122143
|
created_at?: Date | string
|
|
122114
122144
|
updated_at?: Date | string
|
|
122115
122145
|
created_by: string
|
|
@@ -122129,7 +122159,6 @@ export namespace Prisma {
|
|
|
122129
122159
|
scheduled_end_time?: Date | string | null
|
|
122130
122160
|
actual_start_time?: Date | string | null
|
|
122131
122161
|
actual_end_time?: Date | string | null
|
|
122132
|
-
attempt_expires_at?: Date | string | null
|
|
122133
122162
|
created_at?: Date | string
|
|
122134
122163
|
updated_at?: Date | string
|
|
122135
122164
|
created_by: string
|
|
@@ -122148,7 +122177,6 @@ export namespace Prisma {
|
|
|
122148
122177
|
scheduled_end_time?: Date | string | null
|
|
122149
122178
|
actual_start_time?: Date | string | null
|
|
122150
122179
|
actual_end_time?: Date | string | null
|
|
122151
|
-
attempt_expires_at?: Date | string | null
|
|
122152
122180
|
created_at?: Date | string
|
|
122153
122181
|
updated_at?: Date | string
|
|
122154
122182
|
created_by: string
|
|
@@ -122168,7 +122196,6 @@ export namespace Prisma {
|
|
|
122168
122196
|
scheduled_end_time?: Date | string | null
|
|
122169
122197
|
actual_start_time?: Date | string | null
|
|
122170
122198
|
actual_end_time?: Date | string | null
|
|
122171
|
-
attempt_expires_at?: Date | string | null
|
|
122172
122199
|
created_at?: Date | string
|
|
122173
122200
|
updated_at?: Date | string
|
|
122174
122201
|
created_by: string
|
|
@@ -122982,6 +123009,8 @@ export namespace Prisma {
|
|
|
122982
123009
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
122983
123010
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
122984
123011
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123012
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123013
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
122985
123014
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
122986
123015
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
122987
123016
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123030,6 +123059,8 @@ export namespace Prisma {
|
|
|
123030
123059
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
123031
123060
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
123032
123061
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123062
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123063
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123033
123064
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123034
123065
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123035
123066
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123072,6 +123103,8 @@ export namespace Prisma {
|
|
|
123072
123103
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
123073
123104
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
123074
123105
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123106
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123107
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123075
123108
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123076
123109
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123077
123110
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123101,6 +123134,8 @@ export namespace Prisma {
|
|
|
123101
123134
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
123102
123135
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
123103
123136
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123137
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123138
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123104
123139
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123105
123140
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123106
123141
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123149,6 +123184,8 @@ export namespace Prisma {
|
|
|
123149
123184
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
123150
123185
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
123151
123186
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123187
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123188
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123152
123189
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123153
123190
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123154
123191
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123191,6 +123228,8 @@ export namespace Prisma {
|
|
|
123191
123228
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
123192
123229
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
123193
123230
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123231
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123232
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123194
123233
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123195
123234
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123196
123235
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123206,7 +123245,6 @@ export namespace Prisma {
|
|
|
123206
123245
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123207
123246
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123208
123247
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123209
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123210
123248
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123211
123249
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123212
123250
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123233,7 +123271,6 @@ export namespace Prisma {
|
|
|
123233
123271
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123234
123272
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123235
123273
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123236
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123237
123274
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123238
123275
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123239
123276
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123256,7 +123293,6 @@ export namespace Prisma {
|
|
|
123256
123293
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123257
123294
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123258
123295
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123259
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123260
123296
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123261
123297
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123262
123298
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123272,7 +123308,6 @@ export namespace Prisma {
|
|
|
123272
123308
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123273
123309
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123274
123310
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123275
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123276
123311
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123277
123312
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123278
123313
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123298,7 +123333,6 @@ export namespace Prisma {
|
|
|
123298
123333
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123299
123334
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123300
123335
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123301
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123302
123336
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123303
123337
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123304
123338
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123321,7 +123355,6 @@ export namespace Prisma {
|
|
|
123321
123355
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123322
123356
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123323
123357
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123324
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123325
123358
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123326
123359
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123327
123360
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123338,7 +123371,6 @@ export namespace Prisma {
|
|
|
123338
123371
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123339
123372
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123340
123373
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123341
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123342
123374
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123343
123375
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123344
123376
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123364,7 +123396,6 @@ export namespace Prisma {
|
|
|
123364
123396
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123365
123397
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123366
123398
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123367
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123368
123399
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123369
123400
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123370
123401
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123387,7 +123418,6 @@ export namespace Prisma {
|
|
|
123387
123418
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123388
123419
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123389
123420
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123390
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123391
123421
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123392
123422
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123393
123423
|
created_by?: StringFieldUpdateOperationsInput | string
|