@adaptware/eagles-db 0.1.91 → 0.3.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 +9 -8
- package/client/index-browser.js +4 -3
- package/client/index.d.ts +313 -183
- package/client/index.js +9 -8
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +5 -5
- package/client/wasm.js +4 -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 +5 -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,9 @@ 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
|
|
35026
|
+
first_assigned_at: Date | null
|
|
35041
35027
|
created_at: Date | null
|
|
35042
35028
|
updated_at: Date | null
|
|
35043
35029
|
created_by: string | null
|
|
@@ -35067,6 +35053,9 @@ export namespace Prisma {
|
|
|
35067
35053
|
interview_feedback: $Enums.InterviewFeedback | null
|
|
35068
35054
|
overall_feedback: string | null
|
|
35069
35055
|
interview_rating: number | null
|
|
35056
|
+
reschedule_count: number | null
|
|
35057
|
+
last_rescheduled_at: Date | null
|
|
35058
|
+
first_assigned_at: Date | null
|
|
35070
35059
|
created_at: Date | null
|
|
35071
35060
|
updated_at: Date | null
|
|
35072
35061
|
created_by: string | null
|
|
@@ -35103,6 +35092,9 @@ export namespace Prisma {
|
|
|
35103
35092
|
section_feedback: number
|
|
35104
35093
|
interview_preparation: number
|
|
35105
35094
|
final_feedback: number
|
|
35095
|
+
reschedule_count: number
|
|
35096
|
+
last_rescheduled_at: number
|
|
35097
|
+
first_assigned_at: number
|
|
35106
35098
|
created_at: number
|
|
35107
35099
|
updated_at: number
|
|
35108
35100
|
created_by: number
|
|
@@ -35114,10 +35106,12 @@ export namespace Prisma {
|
|
|
35114
35106
|
|
|
35115
35107
|
export type InterviewAvgAggregateInputType = {
|
|
35116
35108
|
interview_rating?: true
|
|
35109
|
+
reschedule_count?: true
|
|
35117
35110
|
}
|
|
35118
35111
|
|
|
35119
35112
|
export type InterviewSumAggregateInputType = {
|
|
35120
35113
|
interview_rating?: true
|
|
35114
|
+
reschedule_count?: true
|
|
35121
35115
|
}
|
|
35122
35116
|
|
|
35123
35117
|
export type InterviewMinAggregateInputType = {
|
|
@@ -35142,6 +35136,9 @@ export namespace Prisma {
|
|
|
35142
35136
|
interview_feedback?: true
|
|
35143
35137
|
overall_feedback?: true
|
|
35144
35138
|
interview_rating?: true
|
|
35139
|
+
reschedule_count?: true
|
|
35140
|
+
last_rescheduled_at?: true
|
|
35141
|
+
first_assigned_at?: true
|
|
35145
35142
|
created_at?: true
|
|
35146
35143
|
updated_at?: true
|
|
35147
35144
|
created_by?: true
|
|
@@ -35171,6 +35168,9 @@ export namespace Prisma {
|
|
|
35171
35168
|
interview_feedback?: true
|
|
35172
35169
|
overall_feedback?: true
|
|
35173
35170
|
interview_rating?: true
|
|
35171
|
+
reschedule_count?: true
|
|
35172
|
+
last_rescheduled_at?: true
|
|
35173
|
+
first_assigned_at?: true
|
|
35174
35174
|
created_at?: true
|
|
35175
35175
|
updated_at?: true
|
|
35176
35176
|
created_by?: true
|
|
@@ -35207,6 +35207,9 @@ export namespace Prisma {
|
|
|
35207
35207
|
section_feedback?: true
|
|
35208
35208
|
interview_preparation?: true
|
|
35209
35209
|
final_feedback?: true
|
|
35210
|
+
reschedule_count?: true
|
|
35211
|
+
last_rescheduled_at?: true
|
|
35212
|
+
first_assigned_at?: true
|
|
35210
35213
|
created_at?: true
|
|
35211
35214
|
updated_at?: true
|
|
35212
35215
|
created_by?: true
|
|
@@ -35330,6 +35333,9 @@ export namespace Prisma {
|
|
|
35330
35333
|
section_feedback: JsonValue[]
|
|
35331
35334
|
interview_preparation: JsonValue | null
|
|
35332
35335
|
final_feedback: JsonValue | null
|
|
35336
|
+
reschedule_count: number
|
|
35337
|
+
last_rescheduled_at: Date | null
|
|
35338
|
+
first_assigned_at: Date | null
|
|
35333
35339
|
created_at: Date
|
|
35334
35340
|
updated_at: Date
|
|
35335
35341
|
created_by: string
|
|
@@ -35385,6 +35391,9 @@ export namespace Prisma {
|
|
|
35385
35391
|
section_feedback?: boolean
|
|
35386
35392
|
interview_preparation?: boolean
|
|
35387
35393
|
final_feedback?: boolean
|
|
35394
|
+
reschedule_count?: boolean
|
|
35395
|
+
last_rescheduled_at?: boolean
|
|
35396
|
+
first_assigned_at?: boolean
|
|
35388
35397
|
created_at?: boolean
|
|
35389
35398
|
updated_at?: boolean
|
|
35390
35399
|
created_by?: boolean
|
|
@@ -35436,6 +35445,9 @@ export namespace Prisma {
|
|
|
35436
35445
|
section_feedback?: boolean
|
|
35437
35446
|
interview_preparation?: boolean
|
|
35438
35447
|
final_feedback?: boolean
|
|
35448
|
+
reschedule_count?: boolean
|
|
35449
|
+
last_rescheduled_at?: boolean
|
|
35450
|
+
first_assigned_at?: boolean
|
|
35439
35451
|
created_at?: boolean
|
|
35440
35452
|
updated_at?: boolean
|
|
35441
35453
|
created_by?: boolean
|
|
@@ -35479,6 +35491,9 @@ export namespace Prisma {
|
|
|
35479
35491
|
section_feedback?: boolean
|
|
35480
35492
|
interview_preparation?: boolean
|
|
35481
35493
|
final_feedback?: boolean
|
|
35494
|
+
reschedule_count?: boolean
|
|
35495
|
+
last_rescheduled_at?: boolean
|
|
35496
|
+
first_assigned_at?: boolean
|
|
35482
35497
|
created_at?: boolean
|
|
35483
35498
|
updated_at?: boolean
|
|
35484
35499
|
created_by?: boolean
|
|
@@ -35522,6 +35537,9 @@ export namespace Prisma {
|
|
|
35522
35537
|
section_feedback?: boolean
|
|
35523
35538
|
interview_preparation?: boolean
|
|
35524
35539
|
final_feedback?: boolean
|
|
35540
|
+
reschedule_count?: boolean
|
|
35541
|
+
last_rescheduled_at?: boolean
|
|
35542
|
+
first_assigned_at?: boolean
|
|
35525
35543
|
created_at?: boolean
|
|
35526
35544
|
updated_at?: boolean
|
|
35527
35545
|
created_by?: boolean
|
|
@@ -35529,7 +35547,7 @@ export namespace Prisma {
|
|
|
35529
35547
|
is_active?: boolean
|
|
35530
35548
|
}
|
|
35531
35549
|
|
|
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"]>
|
|
35550
|
+
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" | "first_assigned_at" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["interview"]>
|
|
35533
35551
|
export type InterviewInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
35534
35552
|
candidate?: boolean | Interview$candidateArgs<ExtArgs>
|
|
35535
35553
|
interviewer?: boolean | Interview$interviewerArgs<ExtArgs>
|
|
@@ -35625,6 +35643,12 @@ export namespace Prisma {
|
|
|
35625
35643
|
section_feedback: Prisma.JsonValue[]
|
|
35626
35644
|
interview_preparation: Prisma.JsonValue | null
|
|
35627
35645
|
final_feedback: Prisma.JsonValue | null
|
|
35646
|
+
/**
|
|
35647
|
+
* Self-scheduling
|
|
35648
|
+
*/
|
|
35649
|
+
reschedule_count: number
|
|
35650
|
+
last_rescheduled_at: Date | null
|
|
35651
|
+
first_assigned_at: Date | null
|
|
35628
35652
|
/**
|
|
35629
35653
|
* Audit fields
|
|
35630
35654
|
*/
|
|
@@ -36098,6 +36122,9 @@ export namespace Prisma {
|
|
|
36098
36122
|
readonly section_feedback: FieldRef<"Interview", 'Json[]'>
|
|
36099
36123
|
readonly interview_preparation: FieldRef<"Interview", 'Json'>
|
|
36100
36124
|
readonly final_feedback: FieldRef<"Interview", 'Json'>
|
|
36125
|
+
readonly reschedule_count: FieldRef<"Interview", 'Int'>
|
|
36126
|
+
readonly last_rescheduled_at: FieldRef<"Interview", 'DateTime'>
|
|
36127
|
+
readonly first_assigned_at: FieldRef<"Interview", 'DateTime'>
|
|
36101
36128
|
readonly created_at: FieldRef<"Interview", 'DateTime'>
|
|
36102
36129
|
readonly updated_at: FieldRef<"Interview", 'DateTime'>
|
|
36103
36130
|
readonly created_by: FieldRef<"Interview", 'String'>
|
|
@@ -47083,7 +47110,6 @@ export namespace Prisma {
|
|
|
47083
47110
|
is_active: boolean | null
|
|
47084
47111
|
alias: string | null
|
|
47085
47112
|
logo: string | null
|
|
47086
|
-
timezone: string | null
|
|
47087
47113
|
}
|
|
47088
47114
|
|
|
47089
47115
|
export type OrganisationMaxAggregateOutputType = {
|
|
@@ -47102,7 +47128,6 @@ export namespace Prisma {
|
|
|
47102
47128
|
is_active: boolean | null
|
|
47103
47129
|
alias: string | null
|
|
47104
47130
|
logo: string | null
|
|
47105
|
-
timezone: string | null
|
|
47106
47131
|
}
|
|
47107
47132
|
|
|
47108
47133
|
export type OrganisationCountAggregateOutputType = {
|
|
@@ -47123,7 +47148,6 @@ export namespace Prisma {
|
|
|
47123
47148
|
is_active: number
|
|
47124
47149
|
alias: number
|
|
47125
47150
|
logo: number
|
|
47126
|
-
timezone: number
|
|
47127
47151
|
_all: number
|
|
47128
47152
|
}
|
|
47129
47153
|
|
|
@@ -47144,7 +47168,6 @@ export namespace Prisma {
|
|
|
47144
47168
|
is_active?: true
|
|
47145
47169
|
alias?: true
|
|
47146
47170
|
logo?: true
|
|
47147
|
-
timezone?: true
|
|
47148
47171
|
}
|
|
47149
47172
|
|
|
47150
47173
|
export type OrganisationMaxAggregateInputType = {
|
|
@@ -47163,7 +47186,6 @@ export namespace Prisma {
|
|
|
47163
47186
|
is_active?: true
|
|
47164
47187
|
alias?: true
|
|
47165
47188
|
logo?: true
|
|
47166
|
-
timezone?: true
|
|
47167
47189
|
}
|
|
47168
47190
|
|
|
47169
47191
|
export type OrganisationCountAggregateInputType = {
|
|
@@ -47184,7 +47206,6 @@ export namespace Prisma {
|
|
|
47184
47206
|
is_active?: true
|
|
47185
47207
|
alias?: true
|
|
47186
47208
|
logo?: true
|
|
47187
|
-
timezone?: true
|
|
47188
47209
|
_all?: true
|
|
47189
47210
|
}
|
|
47190
47211
|
|
|
@@ -47278,7 +47299,6 @@ export namespace Prisma {
|
|
|
47278
47299
|
is_active: boolean
|
|
47279
47300
|
alias: string | null
|
|
47280
47301
|
logo: string | null
|
|
47281
|
-
timezone: string
|
|
47282
47302
|
_count: OrganisationCountAggregateOutputType | null
|
|
47283
47303
|
_min: OrganisationMinAggregateOutputType | null
|
|
47284
47304
|
_max: OrganisationMaxAggregateOutputType | null
|
|
@@ -47316,7 +47336,6 @@ export namespace Prisma {
|
|
|
47316
47336
|
is_active?: boolean
|
|
47317
47337
|
alias?: boolean
|
|
47318
47338
|
logo?: boolean
|
|
47319
|
-
timezone?: boolean
|
|
47320
47339
|
interviewers?: boolean | Organisation$interviewersArgs<ExtArgs>
|
|
47321
47340
|
applications?: boolean | Organisation$applicationsArgs<ExtArgs>
|
|
47322
47341
|
user_roles?: boolean | Organisation$user_rolesArgs<ExtArgs>
|
|
@@ -47356,7 +47375,6 @@ export namespace Prisma {
|
|
|
47356
47375
|
is_active?: boolean
|
|
47357
47376
|
alias?: boolean
|
|
47358
47377
|
logo?: boolean
|
|
47359
|
-
timezone?: boolean
|
|
47360
47378
|
}, ExtArgs["result"]["organisation"]>
|
|
47361
47379
|
|
|
47362
47380
|
export type OrganisationSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -47377,7 +47395,6 @@ export namespace Prisma {
|
|
|
47377
47395
|
is_active?: boolean
|
|
47378
47396
|
alias?: boolean
|
|
47379
47397
|
logo?: boolean
|
|
47380
|
-
timezone?: boolean
|
|
47381
47398
|
}, ExtArgs["result"]["organisation"]>
|
|
47382
47399
|
|
|
47383
47400
|
export type OrganisationSelectScalar = {
|
|
@@ -47398,10 +47415,9 @@ export namespace Prisma {
|
|
|
47398
47415
|
is_active?: boolean
|
|
47399
47416
|
alias?: boolean
|
|
47400
47417
|
logo?: boolean
|
|
47401
|
-
timezone?: boolean
|
|
47402
47418
|
}
|
|
47403
47419
|
|
|
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"
|
|
47420
|
+
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
47421
|
export type OrganisationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
47406
47422
|
interviewers?: boolean | Organisation$interviewersArgs<ExtArgs>
|
|
47407
47423
|
applications?: boolean | Organisation$applicationsArgs<ExtArgs>
|
|
@@ -47466,7 +47482,6 @@ export namespace Prisma {
|
|
|
47466
47482
|
is_active: boolean
|
|
47467
47483
|
alias: string | null
|
|
47468
47484
|
logo: string | null
|
|
47469
|
-
timezone: string
|
|
47470
47485
|
}, ExtArgs["result"]["organisation"]>
|
|
47471
47486
|
composites: {}
|
|
47472
47487
|
}
|
|
@@ -47925,7 +47940,6 @@ export namespace Prisma {
|
|
|
47925
47940
|
readonly is_active: FieldRef<"Organisation", 'Boolean'>
|
|
47926
47941
|
readonly alias: FieldRef<"Organisation", 'String'>
|
|
47927
47942
|
readonly logo: FieldRef<"Organisation", 'String'>
|
|
47928
|
-
readonly timezone: FieldRef<"Organisation", 'String'>
|
|
47929
47943
|
}
|
|
47930
47944
|
|
|
47931
47945
|
|
|
@@ -65491,7 +65505,6 @@ export namespace Prisma {
|
|
|
65491
65505
|
scheduled_end_time: 'scheduled_end_time',
|
|
65492
65506
|
actual_start_time: 'actual_start_time',
|
|
65493
65507
|
actual_end_time: 'actual_end_time',
|
|
65494
|
-
attempt_expires_at: 'attempt_expires_at',
|
|
65495
65508
|
created_at: 'created_at',
|
|
65496
65509
|
updated_at: 'updated_at',
|
|
65497
65510
|
created_by: 'created_by',
|
|
@@ -65860,6 +65873,9 @@ export namespace Prisma {
|
|
|
65860
65873
|
section_feedback: 'section_feedback',
|
|
65861
65874
|
interview_preparation: 'interview_preparation',
|
|
65862
65875
|
final_feedback: 'final_feedback',
|
|
65876
|
+
reschedule_count: 'reschedule_count',
|
|
65877
|
+
last_rescheduled_at: 'last_rescheduled_at',
|
|
65878
|
+
first_assigned_at: 'first_assigned_at',
|
|
65863
65879
|
created_at: 'created_at',
|
|
65864
65880
|
updated_at: 'updated_at',
|
|
65865
65881
|
created_by: 'created_by',
|
|
@@ -66058,8 +66074,7 @@ export namespace Prisma {
|
|
|
66058
66074
|
updated_by: 'updated_by',
|
|
66059
66075
|
is_active: 'is_active',
|
|
66060
66076
|
alias: 'alias',
|
|
66061
|
-
logo: 'logo'
|
|
66062
|
-
timezone: 'timezone'
|
|
66077
|
+
logo: 'logo'
|
|
66063
66078
|
};
|
|
66064
66079
|
|
|
66065
66080
|
export type OrganisationScalarFieldEnum = (typeof OrganisationScalarFieldEnum)[keyof typeof OrganisationScalarFieldEnum]
|
|
@@ -67517,7 +67532,6 @@ export namespace Prisma {
|
|
|
67517
67532
|
scheduled_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67518
67533
|
actual_start_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67519
67534
|
actual_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67520
|
-
attempt_expires_at?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67521
67535
|
created_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
67522
67536
|
updated_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
67523
67537
|
created_by?: StringFilter<"Assessment"> | string
|
|
@@ -67546,7 +67560,6 @@ export namespace Prisma {
|
|
|
67546
67560
|
scheduled_end_time?: SortOrderInput | SortOrder
|
|
67547
67561
|
actual_start_time?: SortOrderInput | SortOrder
|
|
67548
67562
|
actual_end_time?: SortOrderInput | SortOrder
|
|
67549
|
-
attempt_expires_at?: SortOrderInput | SortOrder
|
|
67550
67563
|
created_at?: SortOrder
|
|
67551
67564
|
updated_at?: SortOrder
|
|
67552
67565
|
created_by?: SortOrder
|
|
@@ -67579,7 +67592,6 @@ export namespace Prisma {
|
|
|
67579
67592
|
scheduled_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67580
67593
|
actual_start_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67581
67594
|
actual_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67582
|
-
attempt_expires_at?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67583
67595
|
created_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
67584
67596
|
updated_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
67585
67597
|
created_by?: StringFilter<"Assessment"> | string
|
|
@@ -67608,7 +67620,6 @@ export namespace Prisma {
|
|
|
67608
67620
|
scheduled_end_time?: SortOrderInput | SortOrder
|
|
67609
67621
|
actual_start_time?: SortOrderInput | SortOrder
|
|
67610
67622
|
actual_end_time?: SortOrderInput | SortOrder
|
|
67611
|
-
attempt_expires_at?: SortOrderInput | SortOrder
|
|
67612
67623
|
created_at?: SortOrder
|
|
67613
67624
|
updated_at?: SortOrder
|
|
67614
67625
|
created_by?: SortOrder
|
|
@@ -67637,7 +67648,6 @@ export namespace Prisma {
|
|
|
67637
67648
|
scheduled_end_time?: DateTimeNullableWithAggregatesFilter<"Assessment"> | Date | string | null
|
|
67638
67649
|
actual_start_time?: DateTimeNullableWithAggregatesFilter<"Assessment"> | Date | string | null
|
|
67639
67650
|
actual_end_time?: DateTimeNullableWithAggregatesFilter<"Assessment"> | Date | string | null
|
|
67640
|
-
attempt_expires_at?: DateTimeNullableWithAggregatesFilter<"Assessment"> | Date | string | null
|
|
67641
67651
|
created_at?: DateTimeWithAggregatesFilter<"Assessment"> | Date | string
|
|
67642
67652
|
updated_at?: DateTimeWithAggregatesFilter<"Assessment"> | Date | string
|
|
67643
67653
|
created_by?: StringWithAggregatesFilter<"Assessment"> | string
|
|
@@ -69410,6 +69420,9 @@ export namespace Prisma {
|
|
|
69410
69420
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
69411
69421
|
interview_preparation?: JsonNullableFilter<"Interview">
|
|
69412
69422
|
final_feedback?: JsonNullableFilter<"Interview">
|
|
69423
|
+
reschedule_count?: IntFilter<"Interview"> | number
|
|
69424
|
+
last_rescheduled_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
69425
|
+
first_assigned_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
69413
69426
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
69414
69427
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
69415
69428
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -69460,6 +69473,9 @@ export namespace Prisma {
|
|
|
69460
69473
|
section_feedback?: SortOrder
|
|
69461
69474
|
interview_preparation?: SortOrderInput | SortOrder
|
|
69462
69475
|
final_feedback?: SortOrderInput | SortOrder
|
|
69476
|
+
reschedule_count?: SortOrder
|
|
69477
|
+
last_rescheduled_at?: SortOrderInput | SortOrder
|
|
69478
|
+
first_assigned_at?: SortOrderInput | SortOrder
|
|
69463
69479
|
created_at?: SortOrder
|
|
69464
69480
|
updated_at?: SortOrder
|
|
69465
69481
|
created_by?: SortOrder
|
|
@@ -69514,6 +69530,9 @@ export namespace Prisma {
|
|
|
69514
69530
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
69515
69531
|
interview_preparation?: JsonNullableFilter<"Interview">
|
|
69516
69532
|
final_feedback?: JsonNullableFilter<"Interview">
|
|
69533
|
+
reschedule_count?: IntFilter<"Interview"> | number
|
|
69534
|
+
last_rescheduled_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
69535
|
+
first_assigned_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
69517
69536
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
69518
69537
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
69519
69538
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -69564,6 +69583,9 @@ export namespace Prisma {
|
|
|
69564
69583
|
section_feedback?: SortOrder
|
|
69565
69584
|
interview_preparation?: SortOrderInput | SortOrder
|
|
69566
69585
|
final_feedback?: SortOrderInput | SortOrder
|
|
69586
|
+
reschedule_count?: SortOrder
|
|
69587
|
+
last_rescheduled_at?: SortOrderInput | SortOrder
|
|
69588
|
+
first_assigned_at?: SortOrderInput | SortOrder
|
|
69567
69589
|
created_at?: SortOrder
|
|
69568
69590
|
updated_at?: SortOrder
|
|
69569
69591
|
created_by?: SortOrder
|
|
@@ -69608,6 +69630,9 @@ export namespace Prisma {
|
|
|
69608
69630
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
69609
69631
|
interview_preparation?: JsonNullableWithAggregatesFilter<"Interview">
|
|
69610
69632
|
final_feedback?: JsonNullableWithAggregatesFilter<"Interview">
|
|
69633
|
+
reschedule_count?: IntWithAggregatesFilter<"Interview"> | number
|
|
69634
|
+
last_rescheduled_at?: DateTimeNullableWithAggregatesFilter<"Interview"> | Date | string | null
|
|
69635
|
+
first_assigned_at?: DateTimeNullableWithAggregatesFilter<"Interview"> | Date | string | null
|
|
69611
69636
|
created_at?: DateTimeWithAggregatesFilter<"Interview"> | Date | string
|
|
69612
69637
|
updated_at?: DateTimeWithAggregatesFilter<"Interview"> | Date | string
|
|
69613
69638
|
created_by?: StringWithAggregatesFilter<"Interview"> | string
|
|
@@ -70587,7 +70612,6 @@ export namespace Prisma {
|
|
|
70587
70612
|
is_active?: BoolFilter<"Organisation"> | boolean
|
|
70588
70613
|
alias?: StringNullableFilter<"Organisation"> | string | null
|
|
70589
70614
|
logo?: StringNullableFilter<"Organisation"> | string | null
|
|
70590
|
-
timezone?: StringFilter<"Organisation"> | string
|
|
70591
70615
|
interviewers?: UserListRelationFilter
|
|
70592
70616
|
applications?: ApplicationListRelationFilter
|
|
70593
70617
|
user_roles?: UserRoleListRelationFilter
|
|
@@ -70626,7 +70650,6 @@ export namespace Prisma {
|
|
|
70626
70650
|
is_active?: SortOrder
|
|
70627
70651
|
alias?: SortOrderInput | SortOrder
|
|
70628
70652
|
logo?: SortOrderInput | SortOrder
|
|
70629
|
-
timezone?: SortOrder
|
|
70630
70653
|
interviewers?: UserOrderByRelationAggregateInput
|
|
70631
70654
|
applications?: ApplicationOrderByRelationAggregateInput
|
|
70632
70655
|
user_roles?: UserRoleOrderByRelationAggregateInput
|
|
@@ -70668,7 +70691,6 @@ export namespace Prisma {
|
|
|
70668
70691
|
updated_by?: StringFilter<"Organisation"> | string
|
|
70669
70692
|
is_active?: BoolFilter<"Organisation"> | boolean
|
|
70670
70693
|
logo?: StringNullableFilter<"Organisation"> | string | null
|
|
70671
|
-
timezone?: StringFilter<"Organisation"> | string
|
|
70672
70694
|
interviewers?: UserListRelationFilter
|
|
70673
70695
|
applications?: ApplicationListRelationFilter
|
|
70674
70696
|
user_roles?: UserRoleListRelationFilter
|
|
@@ -70707,7 +70729,6 @@ export namespace Prisma {
|
|
|
70707
70729
|
is_active?: SortOrder
|
|
70708
70730
|
alias?: SortOrderInput | SortOrder
|
|
70709
70731
|
logo?: SortOrderInput | SortOrder
|
|
70710
|
-
timezone?: SortOrder
|
|
70711
70732
|
_count?: OrganisationCountOrderByAggregateInput
|
|
70712
70733
|
_max?: OrganisationMaxOrderByAggregateInput
|
|
70713
70734
|
_min?: OrganisationMinOrderByAggregateInput
|
|
@@ -70734,7 +70755,6 @@ export namespace Prisma {
|
|
|
70734
70755
|
is_active?: BoolWithAggregatesFilter<"Organisation"> | boolean
|
|
70735
70756
|
alias?: StringNullableWithAggregatesFilter<"Organisation"> | string | null
|
|
70736
70757
|
logo?: StringNullableWithAggregatesFilter<"Organisation"> | string | null
|
|
70737
|
-
timezone?: StringWithAggregatesFilter<"Organisation"> | string
|
|
70738
70758
|
}
|
|
70739
70759
|
|
|
70740
70760
|
export type PermissionWhereInput = {
|
|
@@ -72796,7 +72816,6 @@ export namespace Prisma {
|
|
|
72796
72816
|
scheduled_end_time?: Date | string | null
|
|
72797
72817
|
actual_start_time?: Date | string | null
|
|
72798
72818
|
actual_end_time?: Date | string | null
|
|
72799
|
-
attempt_expires_at?: Date | string | null
|
|
72800
72819
|
created_at?: Date | string
|
|
72801
72820
|
updated_at?: Date | string
|
|
72802
72821
|
created_by: string
|
|
@@ -72824,7 +72843,6 @@ export namespace Prisma {
|
|
|
72824
72843
|
scheduled_end_time?: Date | string | null
|
|
72825
72844
|
actual_start_time?: Date | string | null
|
|
72826
72845
|
actual_end_time?: Date | string | null
|
|
72827
|
-
attempt_expires_at?: Date | string | null
|
|
72828
72846
|
created_at?: Date | string
|
|
72829
72847
|
updated_at?: Date | string
|
|
72830
72848
|
created_by: string
|
|
@@ -72844,7 +72862,6 @@ export namespace Prisma {
|
|
|
72844
72862
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72845
72863
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72846
72864
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72847
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72848
72865
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72849
72866
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72850
72867
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -72872,7 +72889,6 @@ export namespace Prisma {
|
|
|
72872
72889
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72873
72890
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72874
72891
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72875
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72876
72892
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72877
72893
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72878
72894
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -72896,7 +72912,6 @@ export namespace Prisma {
|
|
|
72896
72912
|
scheduled_end_time?: Date | string | null
|
|
72897
72913
|
actual_start_time?: Date | string | null
|
|
72898
72914
|
actual_end_time?: Date | string | null
|
|
72899
|
-
attempt_expires_at?: Date | string | null
|
|
72900
72915
|
created_at?: Date | string
|
|
72901
72916
|
updated_at?: Date | string
|
|
72902
72917
|
created_by: string
|
|
@@ -72913,7 +72928,6 @@ export namespace Prisma {
|
|
|
72913
72928
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72914
72929
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72915
72930
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72916
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72917
72931
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72918
72932
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72919
72933
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -72933,7 +72947,6 @@ export namespace Prisma {
|
|
|
72933
72947
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72934
72948
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72935
72949
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72936
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72937
72950
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72938
72951
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72939
72952
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -74935,6 +74948,9 @@ export namespace Prisma {
|
|
|
74935
74948
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
74936
74949
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
74937
74950
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
74951
|
+
reschedule_count?: number
|
|
74952
|
+
last_rescheduled_at?: Date | string | null
|
|
74953
|
+
first_assigned_at?: Date | string | null
|
|
74938
74954
|
created_at?: Date | string
|
|
74939
74955
|
updated_at?: Date | string
|
|
74940
74956
|
created_by: string
|
|
@@ -74985,6 +75001,9 @@ export namespace Prisma {
|
|
|
74985
75001
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
74986
75002
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
74987
75003
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
75004
|
+
reschedule_count?: number
|
|
75005
|
+
last_rescheduled_at?: Date | string | null
|
|
75006
|
+
first_assigned_at?: Date | string | null
|
|
74988
75007
|
created_at?: Date | string
|
|
74989
75008
|
updated_at?: Date | string
|
|
74990
75009
|
created_by: string
|
|
@@ -75021,6 +75040,9 @@ export namespace Prisma {
|
|
|
75021
75040
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
75022
75041
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
75023
75042
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
75043
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
75044
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
75045
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
75024
75046
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75025
75047
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75026
75048
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -75071,6 +75093,9 @@ export namespace Prisma {
|
|
|
75071
75093
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
75072
75094
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
75073
75095
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
75096
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
75097
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
75098
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
75074
75099
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75075
75100
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75076
75101
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -75114,6 +75139,9 @@ export namespace Prisma {
|
|
|
75114
75139
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
75115
75140
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
75116
75141
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
75142
|
+
reschedule_count?: number
|
|
75143
|
+
last_rescheduled_at?: Date | string | null
|
|
75144
|
+
first_assigned_at?: Date | string | null
|
|
75117
75145
|
created_at?: Date | string
|
|
75118
75146
|
updated_at?: Date | string
|
|
75119
75147
|
created_by: string
|
|
@@ -75143,6 +75171,9 @@ export namespace Prisma {
|
|
|
75143
75171
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
75144
75172
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
75145
75173
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
75174
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
75175
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
75176
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
75146
75177
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75147
75178
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75148
75179
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -75179,6 +75210,9 @@ export namespace Prisma {
|
|
|
75179
75210
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
75180
75211
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
75181
75212
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
75213
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
75214
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
75215
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
75182
75216
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75183
75217
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75184
75218
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -76275,7 +76309,6 @@ export namespace Prisma {
|
|
|
76275
76309
|
is_active?: boolean
|
|
76276
76310
|
alias?: string | null
|
|
76277
76311
|
logo?: string | null
|
|
76278
|
-
timezone?: string
|
|
76279
76312
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
76280
76313
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
76281
76314
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -76314,7 +76347,6 @@ export namespace Prisma {
|
|
|
76314
76347
|
is_active?: boolean
|
|
76315
76348
|
alias?: string | null
|
|
76316
76349
|
logo?: string | null
|
|
76317
|
-
timezone?: string
|
|
76318
76350
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
76319
76351
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
76320
76352
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -76353,7 +76385,6 @@ export namespace Prisma {
|
|
|
76353
76385
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76354
76386
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76355
76387
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76356
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
76357
76388
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
76358
76389
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
76359
76390
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -76392,7 +76423,6 @@ export namespace Prisma {
|
|
|
76392
76423
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76393
76424
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76394
76425
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76395
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
76396
76426
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
76397
76427
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
76398
76428
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -76431,7 +76461,6 @@ export namespace Prisma {
|
|
|
76431
76461
|
is_active?: boolean
|
|
76432
76462
|
alias?: string | null
|
|
76433
76463
|
logo?: string | null
|
|
76434
|
-
timezone?: string
|
|
76435
76464
|
}
|
|
76436
76465
|
|
|
76437
76466
|
export type OrganisationUpdateManyMutationInput = {
|
|
@@ -76452,7 +76481,6 @@ export namespace Prisma {
|
|
|
76452
76481
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76453
76482
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76454
76483
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76455
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
76456
76484
|
}
|
|
76457
76485
|
|
|
76458
76486
|
export type OrganisationUncheckedUpdateManyInput = {
|
|
@@ -76473,7 +76501,6 @@ export namespace Prisma {
|
|
|
76473
76501
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76474
76502
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76475
76503
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76476
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
76477
76504
|
}
|
|
76478
76505
|
|
|
76479
76506
|
export type PermissionCreateInput = {
|
|
@@ -78913,7 +78940,6 @@ export namespace Prisma {
|
|
|
78913
78940
|
scheduled_end_time?: SortOrder
|
|
78914
78941
|
actual_start_time?: SortOrder
|
|
78915
78942
|
actual_end_time?: SortOrder
|
|
78916
|
-
attempt_expires_at?: SortOrder
|
|
78917
78943
|
created_at?: SortOrder
|
|
78918
78944
|
updated_at?: SortOrder
|
|
78919
78945
|
created_by?: SortOrder
|
|
@@ -78937,7 +78963,6 @@ export namespace Prisma {
|
|
|
78937
78963
|
scheduled_end_time?: SortOrder
|
|
78938
78964
|
actual_start_time?: SortOrder
|
|
78939
78965
|
actual_end_time?: SortOrder
|
|
78940
|
-
attempt_expires_at?: SortOrder
|
|
78941
78966
|
created_at?: SortOrder
|
|
78942
78967
|
updated_at?: SortOrder
|
|
78943
78968
|
created_by?: SortOrder
|
|
@@ -78957,7 +78982,6 @@ export namespace Prisma {
|
|
|
78957
78982
|
scheduled_end_time?: SortOrder
|
|
78958
78983
|
actual_start_time?: SortOrder
|
|
78959
78984
|
actual_end_time?: SortOrder
|
|
78960
|
-
attempt_expires_at?: SortOrder
|
|
78961
78985
|
created_at?: SortOrder
|
|
78962
78986
|
updated_at?: SortOrder
|
|
78963
78987
|
created_by?: SortOrder
|
|
@@ -80399,6 +80423,9 @@ export namespace Prisma {
|
|
|
80399
80423
|
section_feedback?: SortOrder
|
|
80400
80424
|
interview_preparation?: SortOrder
|
|
80401
80425
|
final_feedback?: SortOrder
|
|
80426
|
+
reschedule_count?: SortOrder
|
|
80427
|
+
last_rescheduled_at?: SortOrder
|
|
80428
|
+
first_assigned_at?: SortOrder
|
|
80402
80429
|
created_at?: SortOrder
|
|
80403
80430
|
updated_at?: SortOrder
|
|
80404
80431
|
created_by?: SortOrder
|
|
@@ -80408,6 +80435,7 @@ export namespace Prisma {
|
|
|
80408
80435
|
|
|
80409
80436
|
export type InterviewAvgOrderByAggregateInput = {
|
|
80410
80437
|
interview_rating?: SortOrder
|
|
80438
|
+
reschedule_count?: SortOrder
|
|
80411
80439
|
}
|
|
80412
80440
|
|
|
80413
80441
|
export type InterviewMaxOrderByAggregateInput = {
|
|
@@ -80432,6 +80460,9 @@ export namespace Prisma {
|
|
|
80432
80460
|
interview_feedback?: SortOrder
|
|
80433
80461
|
overall_feedback?: SortOrder
|
|
80434
80462
|
interview_rating?: SortOrder
|
|
80463
|
+
reschedule_count?: SortOrder
|
|
80464
|
+
last_rescheduled_at?: SortOrder
|
|
80465
|
+
first_assigned_at?: SortOrder
|
|
80435
80466
|
created_at?: SortOrder
|
|
80436
80467
|
updated_at?: SortOrder
|
|
80437
80468
|
created_by?: SortOrder
|
|
@@ -80461,6 +80492,9 @@ export namespace Prisma {
|
|
|
80461
80492
|
interview_feedback?: SortOrder
|
|
80462
80493
|
overall_feedback?: SortOrder
|
|
80463
80494
|
interview_rating?: SortOrder
|
|
80495
|
+
reschedule_count?: SortOrder
|
|
80496
|
+
last_rescheduled_at?: SortOrder
|
|
80497
|
+
first_assigned_at?: SortOrder
|
|
80464
80498
|
created_at?: SortOrder
|
|
80465
80499
|
updated_at?: SortOrder
|
|
80466
80500
|
created_by?: SortOrder
|
|
@@ -80470,6 +80504,7 @@ export namespace Prisma {
|
|
|
80470
80504
|
|
|
80471
80505
|
export type InterviewSumOrderByAggregateInput = {
|
|
80472
80506
|
interview_rating?: SortOrder
|
|
80507
|
+
reschedule_count?: SortOrder
|
|
80473
80508
|
}
|
|
80474
80509
|
|
|
80475
80510
|
export type EnumInterviewStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -81248,7 +81283,6 @@ export namespace Prisma {
|
|
|
81248
81283
|
is_active?: SortOrder
|
|
81249
81284
|
alias?: SortOrder
|
|
81250
81285
|
logo?: SortOrder
|
|
81251
|
-
timezone?: SortOrder
|
|
81252
81286
|
}
|
|
81253
81287
|
|
|
81254
81288
|
export type OrganisationMaxOrderByAggregateInput = {
|
|
@@ -81267,7 +81301,6 @@ export namespace Prisma {
|
|
|
81267
81301
|
is_active?: SortOrder
|
|
81268
81302
|
alias?: SortOrder
|
|
81269
81303
|
logo?: SortOrder
|
|
81270
|
-
timezone?: SortOrder
|
|
81271
81304
|
}
|
|
81272
81305
|
|
|
81273
81306
|
export type OrganisationMinOrderByAggregateInput = {
|
|
@@ -81286,7 +81319,6 @@ export namespace Prisma {
|
|
|
81286
81319
|
is_active?: SortOrder
|
|
81287
81320
|
alias?: SortOrder
|
|
81288
81321
|
logo?: SortOrder
|
|
81289
|
-
timezone?: SortOrder
|
|
81290
81322
|
}
|
|
81291
81323
|
|
|
81292
81324
|
export type EnumOrganisationSizeWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -89066,7 +89098,6 @@ export namespace Prisma {
|
|
|
89066
89098
|
scheduled_end_time?: Date | string | null
|
|
89067
89099
|
actual_start_time?: Date | string | null
|
|
89068
89100
|
actual_end_time?: Date | string | null
|
|
89069
|
-
attempt_expires_at?: Date | string | null
|
|
89070
89101
|
created_at?: Date | string
|
|
89071
89102
|
updated_at?: Date | string
|
|
89072
89103
|
created_by: string
|
|
@@ -89093,7 +89124,6 @@ export namespace Prisma {
|
|
|
89093
89124
|
scheduled_end_time?: Date | string | null
|
|
89094
89125
|
actual_start_time?: Date | string | null
|
|
89095
89126
|
actual_end_time?: Date | string | null
|
|
89096
|
-
attempt_expires_at?: Date | string | null
|
|
89097
89127
|
created_at?: Date | string
|
|
89098
89128
|
updated_at?: Date | string
|
|
89099
89129
|
created_by: string
|
|
@@ -89314,7 +89344,6 @@ export namespace Prisma {
|
|
|
89314
89344
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89315
89345
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89316
89346
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89317
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89318
89347
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89319
89348
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89320
89349
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89341,7 +89370,6 @@ export namespace Prisma {
|
|
|
89341
89370
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89342
89371
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89343
89372
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89344
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89345
89373
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89346
89374
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89347
89375
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89513,7 +89541,6 @@ export namespace Prisma {
|
|
|
89513
89541
|
is_active?: boolean
|
|
89514
89542
|
alias?: string | null
|
|
89515
89543
|
logo?: string | null
|
|
89516
|
-
timezone?: string
|
|
89517
89544
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
89518
89545
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
89519
89546
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutOrganisationInput
|
|
@@ -89551,7 +89578,6 @@ export namespace Prisma {
|
|
|
89551
89578
|
is_active?: boolean
|
|
89552
89579
|
alias?: string | null
|
|
89553
89580
|
logo?: string | null
|
|
89554
|
-
timezone?: string
|
|
89555
89581
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
89556
89582
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
89557
89583
|
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -89774,7 +89800,6 @@ export namespace Prisma {
|
|
|
89774
89800
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
89775
89801
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89776
89802
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89777
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
89778
89803
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
89779
89804
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
89780
89805
|
job_descriptions?: JobDescriptionUpdateManyWithoutOrganisationNestedInput
|
|
@@ -89812,7 +89837,6 @@ export namespace Prisma {
|
|
|
89812
89837
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
89813
89838
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89814
89839
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89815
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
89816
89840
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
89817
89841
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
89818
89842
|
job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -90075,7 +90099,6 @@ export namespace Prisma {
|
|
|
90075
90099
|
is_active?: boolean
|
|
90076
90100
|
alias?: string | null
|
|
90077
90101
|
logo?: string | null
|
|
90078
|
-
timezone?: string
|
|
90079
90102
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
90080
90103
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
90081
90104
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -90113,7 +90136,6 @@ export namespace Prisma {
|
|
|
90113
90136
|
is_active?: boolean
|
|
90114
90137
|
alias?: string | null
|
|
90115
90138
|
logo?: string | null
|
|
90116
|
-
timezone?: string
|
|
90117
90139
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
90118
90140
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
90119
90141
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -90310,7 +90332,6 @@ export namespace Prisma {
|
|
|
90310
90332
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
90311
90333
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90312
90334
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90313
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
90314
90335
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
90315
90336
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
90316
90337
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -90348,7 +90369,6 @@ export namespace Prisma {
|
|
|
90348
90369
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
90349
90370
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90350
90371
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90351
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
90352
90372
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
90353
90373
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
90354
90374
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -91004,7 +91024,6 @@ export namespace Prisma {
|
|
|
91004
91024
|
is_active?: boolean
|
|
91005
91025
|
alias?: string | null
|
|
91006
91026
|
logo?: string | null
|
|
91007
|
-
timezone?: string
|
|
91008
91027
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
91009
91028
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
91010
91029
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutOrganisationInput
|
|
@@ -91042,7 +91061,6 @@ export namespace Prisma {
|
|
|
91042
91061
|
is_active?: boolean
|
|
91043
91062
|
alias?: string | null
|
|
91044
91063
|
logo?: string | null
|
|
91045
|
-
timezone?: string
|
|
91046
91064
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
91047
91065
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
91048
91066
|
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -91286,6 +91304,9 @@ export namespace Prisma {
|
|
|
91286
91304
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
91287
91305
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
91288
91306
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
91307
|
+
reschedule_count?: number
|
|
91308
|
+
last_rescheduled_at?: Date | string | null
|
|
91309
|
+
first_assigned_at?: Date | string | null
|
|
91289
91310
|
created_at?: Date | string
|
|
91290
91311
|
updated_at?: Date | string
|
|
91291
91312
|
created_by: string
|
|
@@ -91334,6 +91355,9 @@ export namespace Prisma {
|
|
|
91334
91355
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
91335
91356
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
91336
91357
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
91358
|
+
reschedule_count?: number
|
|
91359
|
+
last_rescheduled_at?: Date | string | null
|
|
91360
|
+
first_assigned_at?: Date | string | null
|
|
91337
91361
|
created_at?: Date | string
|
|
91338
91362
|
updated_at?: Date | string
|
|
91339
91363
|
created_by: string
|
|
@@ -91805,7 +91829,6 @@ export namespace Prisma {
|
|
|
91805
91829
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
91806
91830
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
91807
91831
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
91808
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
91809
91832
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
91810
91833
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
91811
91834
|
job_descriptions?: JobDescriptionUpdateManyWithoutOrganisationNestedInput
|
|
@@ -91843,7 +91866,6 @@ export namespace Prisma {
|
|
|
91843
91866
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
91844
91867
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
91845
91868
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
91846
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
91847
91869
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
91848
91870
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
91849
91871
|
job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -92126,6 +92148,9 @@ export namespace Prisma {
|
|
|
92126
92148
|
section_feedback?: JsonNullableListFilter<"Interview">
|
|
92127
92149
|
interview_preparation?: JsonNullableFilter<"Interview">
|
|
92128
92150
|
final_feedback?: JsonNullableFilter<"Interview">
|
|
92151
|
+
reschedule_count?: IntFilter<"Interview"> | number
|
|
92152
|
+
last_rescheduled_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
92153
|
+
first_assigned_at?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
92129
92154
|
created_at?: DateTimeFilter<"Interview"> | Date | string
|
|
92130
92155
|
updated_at?: DateTimeFilter<"Interview"> | Date | string
|
|
92131
92156
|
created_by?: StringFilter<"Interview"> | string
|
|
@@ -92524,7 +92549,6 @@ export namespace Prisma {
|
|
|
92524
92549
|
is_active?: boolean
|
|
92525
92550
|
alias?: string | null
|
|
92526
92551
|
logo?: string | null
|
|
92527
|
-
timezone?: string
|
|
92528
92552
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
92529
92553
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
92530
92554
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -92562,7 +92586,6 @@ export namespace Prisma {
|
|
|
92562
92586
|
is_active?: boolean
|
|
92563
92587
|
alias?: string | null
|
|
92564
92588
|
logo?: string | null
|
|
92565
|
-
timezone?: string
|
|
92566
92589
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
92567
92590
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
92568
92591
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -92840,7 +92863,6 @@ export namespace Prisma {
|
|
|
92840
92863
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
92841
92864
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92842
92865
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92843
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
92844
92866
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
92845
92867
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
92846
92868
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -92878,7 +92900,6 @@ export namespace Prisma {
|
|
|
92878
92900
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
92879
92901
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92880
92902
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92881
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
92882
92903
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
92883
92904
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
92884
92905
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -93285,7 +93306,6 @@ export namespace Prisma {
|
|
|
93285
93306
|
is_active?: boolean
|
|
93286
93307
|
alias?: string | null
|
|
93287
93308
|
logo?: string | null
|
|
93288
|
-
timezone?: string
|
|
93289
93309
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
93290
93310
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
93291
93311
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -93323,7 +93343,6 @@ export namespace Prisma {
|
|
|
93323
93343
|
is_active?: boolean
|
|
93324
93344
|
alias?: string | null
|
|
93325
93345
|
logo?: string | null
|
|
93326
|
-
timezone?: string
|
|
93327
93346
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
93328
93347
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
93329
93348
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -93979,7 +93998,6 @@ export namespace Prisma {
|
|
|
93979
93998
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
93980
93999
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93981
94000
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93982
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
93983
94001
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
93984
94002
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
93985
94003
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -94017,7 +94035,6 @@ export namespace Prisma {
|
|
|
94017
94035
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
94018
94036
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94019
94037
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94020
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
94021
94038
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
94022
94039
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
94023
94040
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -94281,7 +94298,6 @@ export namespace Prisma {
|
|
|
94281
94298
|
is_active?: boolean
|
|
94282
94299
|
alias?: string | null
|
|
94283
94300
|
logo?: string | null
|
|
94284
|
-
timezone?: string
|
|
94285
94301
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
94286
94302
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
94287
94303
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -94319,7 +94335,6 @@ export namespace Prisma {
|
|
|
94319
94335
|
is_active?: boolean
|
|
94320
94336
|
alias?: string | null
|
|
94321
94337
|
logo?: string | null
|
|
94322
|
-
timezone?: string
|
|
94323
94338
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
94324
94339
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
94325
94340
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -94400,7 +94415,6 @@ export namespace Prisma {
|
|
|
94400
94415
|
scheduled_end_time?: Date | string | null
|
|
94401
94416
|
actual_start_time?: Date | string | null
|
|
94402
94417
|
actual_end_time?: Date | string | null
|
|
94403
|
-
attempt_expires_at?: Date | string | null
|
|
94404
94418
|
created_at?: Date | string
|
|
94405
94419
|
updated_at?: Date | string
|
|
94406
94420
|
created_by: string
|
|
@@ -94426,7 +94440,6 @@ export namespace Prisma {
|
|
|
94426
94440
|
scheduled_end_time?: Date | string | null
|
|
94427
94441
|
actual_start_time?: Date | string | null
|
|
94428
94442
|
actual_end_time?: Date | string | null
|
|
94429
|
-
attempt_expires_at?: Date | string | null
|
|
94430
94443
|
created_at?: Date | string
|
|
94431
94444
|
updated_at?: Date | string
|
|
94432
94445
|
created_by: string
|
|
@@ -94547,7 +94560,6 @@ export namespace Prisma {
|
|
|
94547
94560
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
94548
94561
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94549
94562
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94550
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
94551
94563
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
94552
94564
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
94553
94565
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -94585,7 +94597,6 @@ export namespace Prisma {
|
|
|
94585
94597
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
94586
94598
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94587
94599
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94588
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
94589
94600
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
94590
94601
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
94591
94602
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -94673,7 +94684,6 @@ export namespace Prisma {
|
|
|
94673
94684
|
scheduled_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
94674
94685
|
actual_start_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
94675
94686
|
actual_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
94676
|
-
attempt_expires_at?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
94677
94687
|
created_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
94678
94688
|
updated_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
94679
94689
|
created_by?: StringFilter<"Assessment"> | string
|
|
@@ -94736,7 +94746,6 @@ export namespace Prisma {
|
|
|
94736
94746
|
scheduled_end_time?: Date | string | null
|
|
94737
94747
|
actual_start_time?: Date | string | null
|
|
94738
94748
|
actual_end_time?: Date | string | null
|
|
94739
|
-
attempt_expires_at?: Date | string | null
|
|
94740
94749
|
created_at?: Date | string
|
|
94741
94750
|
updated_at?: Date | string
|
|
94742
94751
|
created_by: string
|
|
@@ -94763,7 +94772,6 @@ export namespace Prisma {
|
|
|
94763
94772
|
scheduled_end_time?: Date | string | null
|
|
94764
94773
|
actual_start_time?: Date | string | null
|
|
94765
94774
|
actual_end_time?: Date | string | null
|
|
94766
|
-
attempt_expires_at?: Date | string | null
|
|
94767
94775
|
created_at?: Date | string
|
|
94768
94776
|
updated_at?: Date | string
|
|
94769
94777
|
created_by: string
|
|
@@ -94841,7 +94849,6 @@ export namespace Prisma {
|
|
|
94841
94849
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94842
94850
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94843
94851
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94844
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94845
94852
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94846
94853
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94847
94854
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -94868,7 +94875,6 @@ export namespace Prisma {
|
|
|
94868
94875
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94869
94876
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94870
94877
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94871
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94872
94878
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94873
94879
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94874
94880
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -95253,7 +95259,6 @@ export namespace Prisma {
|
|
|
95253
95259
|
is_active?: boolean
|
|
95254
95260
|
alias?: string | null
|
|
95255
95261
|
logo?: string | null
|
|
95256
|
-
timezone?: string
|
|
95257
95262
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
95258
95263
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
95259
95264
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -95291,7 +95296,6 @@ export namespace Prisma {
|
|
|
95291
95296
|
is_active?: boolean
|
|
95292
95297
|
alias?: string | null
|
|
95293
95298
|
logo?: string | null
|
|
95294
|
-
timezone?: string
|
|
95295
95299
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
95296
95300
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
95297
95301
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -95887,7 +95891,6 @@ export namespace Prisma {
|
|
|
95887
95891
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95888
95892
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95889
95893
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95890
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
95891
95894
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
95892
95895
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
95893
95896
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -95925,7 +95928,6 @@ export namespace Prisma {
|
|
|
95925
95928
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95926
95929
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95927
95930
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95928
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
95929
95931
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
95930
95932
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
95931
95933
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -96198,7 +96200,6 @@ export namespace Prisma {
|
|
|
96198
96200
|
is_active?: boolean
|
|
96199
96201
|
alias?: string | null
|
|
96200
96202
|
logo?: string | null
|
|
96201
|
-
timezone?: string
|
|
96202
96203
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
96203
96204
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
96204
96205
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -96236,7 +96237,6 @@ export namespace Prisma {
|
|
|
96236
96237
|
is_active?: boolean
|
|
96237
96238
|
alias?: string | null
|
|
96238
96239
|
logo?: string | null
|
|
96239
|
-
timezone?: string
|
|
96240
96240
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
96241
96241
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
96242
96242
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -96491,7 +96491,6 @@ export namespace Prisma {
|
|
|
96491
96491
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
96492
96492
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96493
96493
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96494
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
96495
96494
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
96496
96495
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
96497
96496
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -96529,7 +96528,6 @@ export namespace Prisma {
|
|
|
96529
96528
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
96530
96529
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96531
96530
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96532
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
96533
96531
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
96534
96532
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
96535
96533
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -97907,6 +97905,9 @@ export namespace Prisma {
|
|
|
97907
97905
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
97908
97906
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97909
97907
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97908
|
+
reschedule_count?: number
|
|
97909
|
+
last_rescheduled_at?: Date | string | null
|
|
97910
|
+
first_assigned_at?: Date | string | null
|
|
97910
97911
|
created_at?: Date | string
|
|
97911
97912
|
updated_at?: Date | string
|
|
97912
97913
|
created_by: string
|
|
@@ -97955,6 +97956,9 @@ export namespace Prisma {
|
|
|
97955
97956
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
97956
97957
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
97957
97958
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
97959
|
+
reschedule_count?: number
|
|
97960
|
+
last_rescheduled_at?: Date | string | null
|
|
97961
|
+
first_assigned_at?: Date | string | null
|
|
97958
97962
|
created_at?: Date | string
|
|
97959
97963
|
updated_at?: Date | string
|
|
97960
97964
|
created_by: string
|
|
@@ -98479,6 +98483,9 @@ export namespace Prisma {
|
|
|
98479
98483
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
98480
98484
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98481
98485
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98486
|
+
reschedule_count?: number
|
|
98487
|
+
last_rescheduled_at?: Date | string | null
|
|
98488
|
+
first_assigned_at?: Date | string | null
|
|
98482
98489
|
created_at?: Date | string
|
|
98483
98490
|
updated_at?: Date | string
|
|
98484
98491
|
created_by: string
|
|
@@ -98528,6 +98535,9 @@ export namespace Prisma {
|
|
|
98528
98535
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
98529
98536
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98530
98537
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98538
|
+
reschedule_count?: number
|
|
98539
|
+
last_rescheduled_at?: Date | string | null
|
|
98540
|
+
first_assigned_at?: Date | string | null
|
|
98531
98541
|
created_at?: Date | string
|
|
98532
98542
|
updated_at?: Date | string
|
|
98533
98543
|
created_by: string
|
|
@@ -98579,6 +98589,9 @@ export namespace Prisma {
|
|
|
98579
98589
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
98580
98590
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98581
98591
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98592
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
98593
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98594
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98582
98595
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98583
98596
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98584
98597
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -98628,6 +98641,9 @@ export namespace Prisma {
|
|
|
98628
98641
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
98629
98642
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
98630
98643
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
98644
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
98645
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98646
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
98631
98647
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98632
98648
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98633
98649
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -98659,7 +98675,6 @@ export namespace Prisma {
|
|
|
98659
98675
|
is_active?: boolean
|
|
98660
98676
|
alias?: string | null
|
|
98661
98677
|
logo?: string | null
|
|
98662
|
-
timezone?: string
|
|
98663
98678
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
98664
98679
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
98665
98680
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -98697,7 +98712,6 @@ export namespace Prisma {
|
|
|
98697
98712
|
is_active?: boolean
|
|
98698
98713
|
alias?: string | null
|
|
98699
98714
|
logo?: string | null
|
|
98700
|
-
timezone?: string
|
|
98701
98715
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
98702
98716
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
98703
98717
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -99077,7 +99091,6 @@ export namespace Prisma {
|
|
|
99077
99091
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
99078
99092
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99079
99093
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99080
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
99081
99094
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
99082
99095
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
99083
99096
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -99115,7 +99128,6 @@ export namespace Prisma {
|
|
|
99115
99128
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
99116
99129
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99117
99130
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99118
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
99119
99131
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
99120
99132
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
99121
99133
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -99783,7 +99795,6 @@ export namespace Prisma {
|
|
|
99783
99795
|
is_active?: boolean
|
|
99784
99796
|
alias?: string | null
|
|
99785
99797
|
logo?: string | null
|
|
99786
|
-
timezone?: string
|
|
99787
99798
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
99788
99799
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
99789
99800
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -99821,7 +99832,6 @@ export namespace Prisma {
|
|
|
99821
99832
|
is_active?: boolean
|
|
99822
99833
|
alias?: string | null
|
|
99823
99834
|
logo?: string | null
|
|
99824
|
-
timezone?: string
|
|
99825
99835
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
99826
99836
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
99827
99837
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -99875,7 +99885,6 @@ export namespace Prisma {
|
|
|
99875
99885
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
99876
99886
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99877
99887
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99878
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
99879
99888
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
99880
99889
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
99881
99890
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -99913,7 +99922,6 @@ export namespace Prisma {
|
|
|
99913
99922
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
99914
99923
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99915
99924
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99916
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
99917
99925
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
99918
99926
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
99919
99927
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -100107,7 +100115,6 @@ export namespace Prisma {
|
|
|
100107
100115
|
is_active?: boolean
|
|
100108
100116
|
alias?: string | null
|
|
100109
100117
|
logo?: string | null
|
|
100110
|
-
timezone?: string
|
|
100111
100118
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
100112
100119
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
100113
100120
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -100145,7 +100152,6 @@ export namespace Prisma {
|
|
|
100145
100152
|
is_active?: boolean
|
|
100146
100153
|
alias?: string | null
|
|
100147
100154
|
logo?: string | null
|
|
100148
|
-
timezone?: string
|
|
100149
100155
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
100150
100156
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
100151
100157
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -100199,7 +100205,6 @@ export namespace Prisma {
|
|
|
100199
100205
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
100200
100206
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100201
100207
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100202
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
100203
100208
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
100204
100209
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
100205
100210
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -100237,7 +100242,6 @@ export namespace Prisma {
|
|
|
100237
100242
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
100238
100243
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100239
100244
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100240
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
100241
100245
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
100242
100246
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
100243
100247
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -100549,7 +100553,6 @@ export namespace Prisma {
|
|
|
100549
100553
|
is_active?: boolean
|
|
100550
100554
|
alias?: string | null
|
|
100551
100555
|
logo?: string | null
|
|
100552
|
-
timezone?: string
|
|
100553
100556
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
100554
100557
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
100555
100558
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -100587,7 +100590,6 @@ export namespace Prisma {
|
|
|
100587
100590
|
is_active?: boolean
|
|
100588
100591
|
alias?: string | null
|
|
100589
100592
|
logo?: string | null
|
|
100590
|
-
timezone?: string
|
|
100591
100593
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
100592
100594
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
100593
100595
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -101481,7 +101483,6 @@ export namespace Prisma {
|
|
|
101481
101483
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101482
101484
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101483
101485
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101484
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
101485
101486
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
101486
101487
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
101487
101488
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -101519,7 +101520,6 @@ export namespace Prisma {
|
|
|
101519
101520
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101520
101521
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101521
101522
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101522
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
101523
101523
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
101524
101524
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
101525
101525
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -102135,6 +102135,9 @@ export namespace Prisma {
|
|
|
102135
102135
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
102136
102136
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102137
102137
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102138
|
+
reschedule_count?: number
|
|
102139
|
+
last_rescheduled_at?: Date | string | null
|
|
102140
|
+
first_assigned_at?: Date | string | null
|
|
102138
102141
|
created_at?: Date | string
|
|
102139
102142
|
updated_at?: Date | string
|
|
102140
102143
|
created_by: string
|
|
@@ -102184,6 +102187,9 @@ export namespace Prisma {
|
|
|
102184
102187
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
102185
102188
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102186
102189
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102190
|
+
reschedule_count?: number
|
|
102191
|
+
last_rescheduled_at?: Date | string | null
|
|
102192
|
+
first_assigned_at?: Date | string | null
|
|
102187
102193
|
created_at?: Date | string
|
|
102188
102194
|
updated_at?: Date | string
|
|
102189
102195
|
created_by: string
|
|
@@ -102235,6 +102241,9 @@ export namespace Prisma {
|
|
|
102235
102241
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
102236
102242
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102237
102243
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102244
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
102245
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102246
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102238
102247
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102239
102248
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102240
102249
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -102284,6 +102293,9 @@ export namespace Prisma {
|
|
|
102284
102293
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
102285
102294
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102286
102295
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102296
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
102297
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102298
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102287
102299
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102288
102300
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102289
102301
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -102376,7 +102388,6 @@ export namespace Prisma {
|
|
|
102376
102388
|
is_active?: boolean
|
|
102377
102389
|
alias?: string | null
|
|
102378
102390
|
logo?: string | null
|
|
102379
|
-
timezone?: string
|
|
102380
102391
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
102381
102392
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
102382
102393
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -102414,7 +102425,6 @@ export namespace Prisma {
|
|
|
102414
102425
|
is_active?: boolean
|
|
102415
102426
|
alias?: string | null
|
|
102416
102427
|
logo?: string | null
|
|
102417
|
-
timezone?: string
|
|
102418
102428
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
102419
102429
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
102420
102430
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -102531,6 +102541,9 @@ export namespace Prisma {
|
|
|
102531
102541
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
102532
102542
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102533
102543
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102544
|
+
reschedule_count?: number
|
|
102545
|
+
last_rescheduled_at?: Date | string | null
|
|
102546
|
+
first_assigned_at?: Date | string | null
|
|
102534
102547
|
created_at?: Date | string
|
|
102535
102548
|
updated_at?: Date | string
|
|
102536
102549
|
created_by: string
|
|
@@ -102579,6 +102592,9 @@ export namespace Prisma {
|
|
|
102579
102592
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
102580
102593
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
102581
102594
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
102595
|
+
reschedule_count?: number
|
|
102596
|
+
last_rescheduled_at?: Date | string | null
|
|
102597
|
+
first_assigned_at?: Date | string | null
|
|
102582
102598
|
created_at?: Date | string
|
|
102583
102599
|
updated_at?: Date | string
|
|
102584
102600
|
created_by: string
|
|
@@ -103542,7 +103558,6 @@ export namespace Prisma {
|
|
|
103542
103558
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
103543
103559
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103544
103560
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103545
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
103546
103561
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
103547
103562
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
103548
103563
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -103580,7 +103595,6 @@ export namespace Prisma {
|
|
|
103580
103595
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
103581
103596
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103582
103597
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103583
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
103584
103598
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
103585
103599
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
103586
103600
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -104299,7 +104313,6 @@ export namespace Prisma {
|
|
|
104299
104313
|
is_active?: boolean
|
|
104300
104314
|
alias?: string | null
|
|
104301
104315
|
logo?: string | null
|
|
104302
|
-
timezone?: string
|
|
104303
104316
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
104304
104317
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
104305
104318
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -104337,7 +104350,6 @@ export namespace Prisma {
|
|
|
104337
104350
|
is_active?: boolean
|
|
104338
104351
|
alias?: string | null
|
|
104339
104352
|
logo?: string | null
|
|
104340
|
-
timezone?: string
|
|
104341
104353
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
104342
104354
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
104343
104355
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -104882,7 +104894,6 @@ export namespace Prisma {
|
|
|
104882
104894
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
104883
104895
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104884
104896
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104885
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
104886
104897
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
104887
104898
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
104888
104899
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -104920,7 +104931,6 @@ export namespace Prisma {
|
|
|
104920
104931
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
104921
104932
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104922
104933
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104923
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
104924
104934
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
104925
104935
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
104926
104936
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -105432,6 +105442,9 @@ export namespace Prisma {
|
|
|
105432
105442
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
105433
105443
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
105434
105444
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
105445
|
+
reschedule_count?: number
|
|
105446
|
+
last_rescheduled_at?: Date | string | null
|
|
105447
|
+
first_assigned_at?: Date | string | null
|
|
105435
105448
|
created_at?: Date | string
|
|
105436
105449
|
updated_at?: Date | string
|
|
105437
105450
|
created_by: string
|
|
@@ -105481,6 +105494,9 @@ export namespace Prisma {
|
|
|
105481
105494
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
105482
105495
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
105483
105496
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
105497
|
+
reschedule_count?: number
|
|
105498
|
+
last_rescheduled_at?: Date | string | null
|
|
105499
|
+
first_assigned_at?: Date | string | null
|
|
105484
105500
|
created_at?: Date | string
|
|
105485
105501
|
updated_at?: Date | string
|
|
105486
105502
|
created_by: string
|
|
@@ -105532,6 +105548,9 @@ export namespace Prisma {
|
|
|
105532
105548
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
105533
105549
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
105534
105550
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
105551
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
105552
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105553
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105535
105554
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105536
105555
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105537
105556
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -105581,6 +105600,9 @@ export namespace Prisma {
|
|
|
105581
105600
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
105582
105601
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
105583
105602
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
105603
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
105604
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105605
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
105584
105606
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105585
105607
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
105586
105608
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -106914,7 +106936,6 @@ export namespace Prisma {
|
|
|
106914
106936
|
is_active?: boolean
|
|
106915
106937
|
alias?: string | null
|
|
106916
106938
|
logo?: string | null
|
|
106917
|
-
timezone?: string
|
|
106918
106939
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
106919
106940
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
106920
106941
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -106952,7 +106973,6 @@ export namespace Prisma {
|
|
|
106952
106973
|
is_active?: boolean
|
|
106953
106974
|
alias?: string | null
|
|
106954
106975
|
logo?: string | null
|
|
106955
|
-
timezone?: string
|
|
106956
106976
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
106957
106977
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
106958
106978
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -107064,6 +107084,9 @@ export namespace Prisma {
|
|
|
107064
107084
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
107065
107085
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
107066
107086
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
107087
|
+
reschedule_count?: number
|
|
107088
|
+
last_rescheduled_at?: Date | string | null
|
|
107089
|
+
first_assigned_at?: Date | string | null
|
|
107067
107090
|
created_at?: Date | string
|
|
107068
107091
|
updated_at?: Date | string
|
|
107069
107092
|
created_by: string
|
|
@@ -107113,6 +107136,9 @@ export namespace Prisma {
|
|
|
107113
107136
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
107114
107137
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
107115
107138
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
107139
|
+
reschedule_count?: number
|
|
107140
|
+
last_rescheduled_at?: Date | string | null
|
|
107141
|
+
first_assigned_at?: Date | string | null
|
|
107116
107142
|
created_at?: Date | string
|
|
107117
107143
|
updated_at?: Date | string
|
|
107118
107144
|
created_by: string
|
|
@@ -107190,7 +107216,6 @@ export namespace Prisma {
|
|
|
107190
107216
|
scheduled_end_time?: Date | string | null
|
|
107191
107217
|
actual_start_time?: Date | string | null
|
|
107192
107218
|
actual_end_time?: Date | string | null
|
|
107193
|
-
attempt_expires_at?: Date | string | null
|
|
107194
107219
|
created_at?: Date | string
|
|
107195
107220
|
updated_at?: Date | string
|
|
107196
107221
|
created_by: string
|
|
@@ -107217,7 +107242,6 @@ export namespace Prisma {
|
|
|
107217
107242
|
scheduled_end_time?: Date | string | null
|
|
107218
107243
|
actual_start_time?: Date | string | null
|
|
107219
107244
|
actual_end_time?: Date | string | null
|
|
107220
|
-
attempt_expires_at?: Date | string | null
|
|
107221
107245
|
created_at?: Date | string
|
|
107222
107246
|
updated_at?: Date | string
|
|
107223
107247
|
created_by: string
|
|
@@ -107612,7 +107636,6 @@ export namespace Prisma {
|
|
|
107612
107636
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
107613
107637
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107614
107638
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107615
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
107616
107639
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
107617
107640
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
107618
107641
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -107650,7 +107673,6 @@ export namespace Prisma {
|
|
|
107650
107673
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
107651
107674
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107652
107675
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107653
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
107654
107676
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
107655
107677
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
107656
107678
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -107774,6 +107796,9 @@ export namespace Prisma {
|
|
|
107774
107796
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
107775
107797
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
107776
107798
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
107799
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
107800
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107801
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107777
107802
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107778
107803
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107779
107804
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -107823,6 +107848,9 @@ export namespace Prisma {
|
|
|
107823
107848
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
107824
107849
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
107825
107850
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
107851
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
107852
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107853
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107826
107854
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107827
107855
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107828
107856
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -107912,7 +107940,6 @@ export namespace Prisma {
|
|
|
107912
107940
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107913
107941
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107914
107942
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107915
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107916
107943
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107917
107944
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107918
107945
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -107939,7 +107966,6 @@ export namespace Prisma {
|
|
|
107939
107966
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107940
107967
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107941
107968
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107942
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107943
107969
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107944
107970
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107945
107971
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -108446,6 +108472,9 @@ export namespace Prisma {
|
|
|
108446
108472
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
108447
108473
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
108448
108474
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
108475
|
+
reschedule_count?: number
|
|
108476
|
+
last_rescheduled_at?: Date | string | null
|
|
108477
|
+
first_assigned_at?: Date | string | null
|
|
108449
108478
|
created_at?: Date | string
|
|
108450
108479
|
updated_at?: Date | string
|
|
108451
108480
|
created_by: string
|
|
@@ -108494,6 +108523,9 @@ export namespace Prisma {
|
|
|
108494
108523
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
108495
108524
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
108496
108525
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
108526
|
+
reschedule_count?: number
|
|
108527
|
+
last_rescheduled_at?: Date | string | null
|
|
108528
|
+
first_assigned_at?: Date | string | null
|
|
108497
108529
|
created_at?: Date | string
|
|
108498
108530
|
updated_at?: Date | string
|
|
108499
108531
|
created_by: string
|
|
@@ -108986,7 +109018,6 @@ export namespace Prisma {
|
|
|
108986
109018
|
scheduled_end_time?: Date | string | null
|
|
108987
109019
|
actual_start_time?: Date | string | null
|
|
108988
109020
|
actual_end_time?: Date | string | null
|
|
108989
|
-
attempt_expires_at?: Date | string | null
|
|
108990
109021
|
created_at?: Date | string
|
|
108991
109022
|
updated_at?: Date | string
|
|
108992
109023
|
created_by: string
|
|
@@ -109012,7 +109043,6 @@ export namespace Prisma {
|
|
|
109012
109043
|
scheduled_end_time?: Date | string | null
|
|
109013
109044
|
actual_start_time?: Date | string | null
|
|
109014
109045
|
actual_end_time?: Date | string | null
|
|
109015
|
-
attempt_expires_at?: Date | string | null
|
|
109016
109046
|
created_at?: Date | string
|
|
109017
109047
|
updated_at?: Date | string
|
|
109018
109048
|
created_by: string
|
|
@@ -110812,7 +110842,6 @@ export namespace Prisma {
|
|
|
110812
110842
|
is_active?: boolean
|
|
110813
110843
|
alias?: string | null
|
|
110814
110844
|
logo?: string | null
|
|
110815
|
-
timezone?: string
|
|
110816
110845
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
110817
110846
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
110818
110847
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -110850,7 +110879,6 @@ export namespace Prisma {
|
|
|
110850
110879
|
is_active?: boolean
|
|
110851
110880
|
alias?: string | null
|
|
110852
110881
|
logo?: string | null
|
|
110853
|
-
timezone?: string
|
|
110854
110882
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
110855
110883
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
110856
110884
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -111042,6 +111070,9 @@ export namespace Prisma {
|
|
|
111042
111070
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
111043
111071
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
111044
111072
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
111073
|
+
reschedule_count?: number
|
|
111074
|
+
last_rescheduled_at?: Date | string | null
|
|
111075
|
+
first_assigned_at?: Date | string | null
|
|
111045
111076
|
created_at?: Date | string
|
|
111046
111077
|
updated_at?: Date | string
|
|
111047
111078
|
created_by: string
|
|
@@ -111090,6 +111121,9 @@ export namespace Prisma {
|
|
|
111090
111121
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
111091
111122
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
111092
111123
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
111124
|
+
reschedule_count?: number
|
|
111125
|
+
last_rescheduled_at?: Date | string | null
|
|
111126
|
+
first_assigned_at?: Date | string | null
|
|
111093
111127
|
created_at?: Date | string
|
|
111094
111128
|
updated_at?: Date | string
|
|
111095
111129
|
created_by: string
|
|
@@ -111525,7 +111559,6 @@ export namespace Prisma {
|
|
|
111525
111559
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
111526
111560
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111527
111561
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111528
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
111529
111562
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
111530
111563
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
111531
111564
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -111563,7 +111596,6 @@ export namespace Prisma {
|
|
|
111563
111596
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
111564
111597
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111565
111598
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111566
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
111567
111599
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
111568
111600
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
111569
111601
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -111938,6 +111970,9 @@ export namespace Prisma {
|
|
|
111938
111970
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
111939
111971
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
111940
111972
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
111973
|
+
reschedule_count?: number
|
|
111974
|
+
last_rescheduled_at?: Date | string | null
|
|
111975
|
+
first_assigned_at?: Date | string | null
|
|
111941
111976
|
created_at?: Date | string
|
|
111942
111977
|
updated_at?: Date | string
|
|
111943
111978
|
created_by: string
|
|
@@ -111987,6 +112022,9 @@ export namespace Prisma {
|
|
|
111987
112022
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
111988
112023
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
111989
112024
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112025
|
+
reschedule_count?: number
|
|
112026
|
+
last_rescheduled_at?: Date | string | null
|
|
112027
|
+
first_assigned_at?: Date | string | null
|
|
111990
112028
|
created_at?: Date | string
|
|
111991
112029
|
updated_at?: Date | string
|
|
111992
112030
|
created_by: string
|
|
@@ -112067,7 +112105,6 @@ export namespace Prisma {
|
|
|
112067
112105
|
is_active?: boolean
|
|
112068
112106
|
alias?: string | null
|
|
112069
112107
|
logo?: string | null
|
|
112070
|
-
timezone?: string
|
|
112071
112108
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
112072
112109
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
112073
112110
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -112105,7 +112142,6 @@ export namespace Prisma {
|
|
|
112105
112142
|
is_active?: boolean
|
|
112106
112143
|
alias?: string | null
|
|
112107
112144
|
logo?: string | null
|
|
112108
|
-
timezone?: string
|
|
112109
112145
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
112110
112146
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
112111
112147
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -112163,6 +112199,9 @@ export namespace Prisma {
|
|
|
112163
112199
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
112164
112200
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112165
112201
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112202
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
112203
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112204
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112166
112205
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112167
112206
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112168
112207
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -112212,6 +112251,9 @@ export namespace Prisma {
|
|
|
112212
112251
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
112213
112252
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112214
112253
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112254
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
112255
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112256
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112215
112257
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112216
112258
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112217
112259
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -112270,7 +112312,6 @@ export namespace Prisma {
|
|
|
112270
112312
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
112271
112313
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112272
112314
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112273
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
112274
112315
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
112275
112316
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
112276
112317
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -112308,7 +112349,6 @@ export namespace Prisma {
|
|
|
112308
112349
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
112309
112350
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112310
112351
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112311
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
112312
112352
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
112313
112353
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
112314
112354
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -112350,6 +112390,9 @@ export namespace Prisma {
|
|
|
112350
112390
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
112351
112391
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112352
112392
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112393
|
+
reschedule_count?: number
|
|
112394
|
+
last_rescheduled_at?: Date | string | null
|
|
112395
|
+
first_assigned_at?: Date | string | null
|
|
112353
112396
|
created_at?: Date | string
|
|
112354
112397
|
updated_at?: Date | string
|
|
112355
112398
|
created_by: string
|
|
@@ -112399,6 +112442,9 @@ export namespace Prisma {
|
|
|
112399
112442
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
112400
112443
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112401
112444
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112445
|
+
reschedule_count?: number
|
|
112446
|
+
last_rescheduled_at?: Date | string | null
|
|
112447
|
+
first_assigned_at?: Date | string | null
|
|
112402
112448
|
created_at?: Date | string
|
|
112403
112449
|
updated_at?: Date | string
|
|
112404
112450
|
created_by: string
|
|
@@ -112558,6 +112604,9 @@ export namespace Prisma {
|
|
|
112558
112604
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
112559
112605
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112560
112606
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112607
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
112608
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112609
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112561
112610
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112562
112611
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112563
112612
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -112607,6 +112656,9 @@ export namespace Prisma {
|
|
|
112607
112656
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
112608
112657
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
112609
112658
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
112659
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
112660
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112661
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
112610
112662
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112611
112663
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
112612
112664
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -112816,7 +112868,6 @@ export namespace Prisma {
|
|
|
112816
112868
|
is_active?: boolean
|
|
112817
112869
|
alias?: string | null
|
|
112818
112870
|
logo?: string | null
|
|
112819
|
-
timezone?: string
|
|
112820
112871
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
112821
112872
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
112822
112873
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutOrganisationInput
|
|
@@ -112854,7 +112905,6 @@ export namespace Prisma {
|
|
|
112854
112905
|
is_active?: boolean
|
|
112855
112906
|
alias?: string | null
|
|
112856
112907
|
logo?: string | null
|
|
112857
|
-
timezone?: string
|
|
112858
112908
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
112859
112909
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
112860
112910
|
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -113420,6 +113470,9 @@ export namespace Prisma {
|
|
|
113420
113470
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
113421
113471
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
113422
113472
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
113473
|
+
reschedule_count?: number
|
|
113474
|
+
last_rescheduled_at?: Date | string | null
|
|
113475
|
+
first_assigned_at?: Date | string | null
|
|
113423
113476
|
created_at?: Date | string
|
|
113424
113477
|
updated_at?: Date | string
|
|
113425
113478
|
created_by: string
|
|
@@ -113468,6 +113521,9 @@ export namespace Prisma {
|
|
|
113468
113521
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
113469
113522
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
113470
113523
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
113524
|
+
reschedule_count?: number
|
|
113525
|
+
last_rescheduled_at?: Date | string | null
|
|
113526
|
+
first_assigned_at?: Date | string | null
|
|
113471
113527
|
created_at?: Date | string
|
|
113472
113528
|
updated_at?: Date | string
|
|
113473
113529
|
created_by: string
|
|
@@ -113514,6 +113570,9 @@ export namespace Prisma {
|
|
|
113514
113570
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
113515
113571
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
113516
113572
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
113573
|
+
reschedule_count?: number
|
|
113574
|
+
last_rescheduled_at?: Date | string | null
|
|
113575
|
+
first_assigned_at?: Date | string | null
|
|
113517
113576
|
created_at?: Date | string
|
|
113518
113577
|
updated_at?: Date | string
|
|
113519
113578
|
created_by: string
|
|
@@ -113562,6 +113621,9 @@ export namespace Prisma {
|
|
|
113562
113621
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
113563
113622
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
113564
113623
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
113624
|
+
reschedule_count?: number
|
|
113625
|
+
last_rescheduled_at?: Date | string | null
|
|
113626
|
+
first_assigned_at?: Date | string | null
|
|
113565
113627
|
created_at?: Date | string
|
|
113566
113628
|
updated_at?: Date | string
|
|
113567
113629
|
created_by: string
|
|
@@ -113594,7 +113656,6 @@ export namespace Prisma {
|
|
|
113594
113656
|
scheduled_end_time?: Date | string | null
|
|
113595
113657
|
actual_start_time?: Date | string | null
|
|
113596
113658
|
actual_end_time?: Date | string | null
|
|
113597
|
-
attempt_expires_at?: Date | string | null
|
|
113598
113659
|
created_at?: Date | string
|
|
113599
113660
|
updated_at?: Date | string
|
|
113600
113661
|
created_by: string
|
|
@@ -113621,7 +113682,6 @@ export namespace Prisma {
|
|
|
113621
113682
|
scheduled_end_time?: Date | string | null
|
|
113622
113683
|
actual_start_time?: Date | string | null
|
|
113623
113684
|
actual_end_time?: Date | string | null
|
|
113624
|
-
attempt_expires_at?: Date | string | null
|
|
113625
113685
|
created_at?: Date | string
|
|
113626
113686
|
updated_at?: Date | string
|
|
113627
113687
|
created_by: string
|
|
@@ -113650,7 +113710,6 @@ export namespace Prisma {
|
|
|
113650
113710
|
scheduled_end_time?: Date | string | null
|
|
113651
113711
|
actual_start_time?: Date | string | null
|
|
113652
113712
|
actual_end_time?: Date | string | null
|
|
113653
|
-
attempt_expires_at?: Date | string | null
|
|
113654
113713
|
created_at?: Date | string
|
|
113655
113714
|
updated_at?: Date | string
|
|
113656
113715
|
created_by: string
|
|
@@ -113676,7 +113735,6 @@ export namespace Prisma {
|
|
|
113676
113735
|
scheduled_end_time?: Date | string | null
|
|
113677
113736
|
actual_start_time?: Date | string | null
|
|
113678
113737
|
actual_end_time?: Date | string | null
|
|
113679
|
-
attempt_expires_at?: Date | string | null
|
|
113680
113738
|
created_at?: Date | string
|
|
113681
113739
|
updated_at?: Date | string
|
|
113682
113740
|
created_by: string
|
|
@@ -113706,7 +113764,6 @@ export namespace Prisma {
|
|
|
113706
113764
|
scheduled_end_time?: Date | string | null
|
|
113707
113765
|
actual_start_time?: Date | string | null
|
|
113708
113766
|
actual_end_time?: Date | string | null
|
|
113709
|
-
attempt_expires_at?: Date | string | null
|
|
113710
113767
|
created_at?: Date | string
|
|
113711
113768
|
updated_at?: Date | string
|
|
113712
113769
|
created_by: string
|
|
@@ -113732,7 +113789,6 @@ export namespace Prisma {
|
|
|
113732
113789
|
scheduled_end_time?: Date | string | null
|
|
113733
113790
|
actual_start_time?: Date | string | null
|
|
113734
113791
|
actual_end_time?: Date | string | null
|
|
113735
|
-
attempt_expires_at?: Date | string | null
|
|
113736
113792
|
created_at?: Date | string
|
|
113737
113793
|
updated_at?: Date | string
|
|
113738
113794
|
created_by: string
|
|
@@ -114613,7 +114669,6 @@ export namespace Prisma {
|
|
|
114613
114669
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
114614
114670
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114615
114671
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114616
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
114617
114672
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
114618
114673
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
114619
114674
|
job_descriptions?: JobDescriptionUpdateManyWithoutOrganisationNestedInput
|
|
@@ -114651,7 +114706,6 @@ export namespace Prisma {
|
|
|
114651
114706
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
114652
114707
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114653
114708
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114654
|
-
timezone?: StringFieldUpdateOperationsInput | string
|
|
114655
114709
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
114656
114710
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
114657
114711
|
job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -115633,6 +115687,9 @@ export namespace Prisma {
|
|
|
115633
115687
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
115634
115688
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
115635
115689
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115690
|
+
reschedule_count?: number
|
|
115691
|
+
last_rescheduled_at?: Date | string | null
|
|
115692
|
+
first_assigned_at?: Date | string | null
|
|
115636
115693
|
created_at?: Date | string
|
|
115637
115694
|
updated_at?: Date | string
|
|
115638
115695
|
created_by: string
|
|
@@ -115682,6 +115739,9 @@ export namespace Prisma {
|
|
|
115682
115739
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
115683
115740
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
115684
115741
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115742
|
+
reschedule_count?: number
|
|
115743
|
+
last_rescheduled_at?: Date | string | null
|
|
115744
|
+
first_assigned_at?: Date | string | null
|
|
115685
115745
|
created_at?: Date | string
|
|
115686
115746
|
updated_at?: Date | string
|
|
115687
115747
|
created_by: string
|
|
@@ -115767,6 +115827,9 @@ export namespace Prisma {
|
|
|
115767
115827
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
115768
115828
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
115769
115829
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115830
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
115831
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115832
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115770
115833
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115771
115834
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115772
115835
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -115816,6 +115879,9 @@ export namespace Prisma {
|
|
|
115816
115879
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
115817
115880
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
115818
115881
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
115882
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
115883
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115884
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
115819
115885
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115820
115886
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115821
115887
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -116447,6 +116513,9 @@ export namespace Prisma {
|
|
|
116447
116513
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
116448
116514
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
116449
116515
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
116516
|
+
reschedule_count?: number
|
|
116517
|
+
last_rescheduled_at?: Date | string | null
|
|
116518
|
+
first_assigned_at?: Date | string | null
|
|
116450
116519
|
created_at?: Date | string
|
|
116451
116520
|
updated_at?: Date | string
|
|
116452
116521
|
created_by: string
|
|
@@ -116557,6 +116626,9 @@ export namespace Prisma {
|
|
|
116557
116626
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
116558
116627
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
116559
116628
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
116629
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
116630
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116631
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116560
116632
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116561
116633
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116562
116634
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -116605,6 +116677,9 @@ export namespace Prisma {
|
|
|
116605
116677
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
116606
116678
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
116607
116679
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
116680
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
116681
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116682
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116608
116683
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116609
116684
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116610
116685
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -116647,6 +116722,9 @@ export namespace Prisma {
|
|
|
116647
116722
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
116648
116723
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
116649
116724
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
116725
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
116726
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116727
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116650
116728
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116651
116729
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116652
116730
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -117003,7 +117081,6 @@ export namespace Prisma {
|
|
|
117003
117081
|
scheduled_end_time?: Date | string | null
|
|
117004
117082
|
actual_start_time?: Date | string | null
|
|
117005
117083
|
actual_end_time?: Date | string | null
|
|
117006
|
-
attempt_expires_at?: Date | string | null
|
|
117007
117084
|
created_at?: Date | string
|
|
117008
117085
|
updated_at?: Date | string
|
|
117009
117086
|
created_by: string
|
|
@@ -117101,7 +117178,6 @@ export namespace Prisma {
|
|
|
117101
117178
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117102
117179
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117103
117180
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117104
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117105
117181
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117106
117182
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117107
117183
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -117127,7 +117203,6 @@ export namespace Prisma {
|
|
|
117127
117203
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117128
117204
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117129
117205
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117130
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117131
117206
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117132
117207
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117133
117208
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -117150,7 +117225,6 @@ export namespace Prisma {
|
|
|
117150
117225
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117151
117226
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117152
117227
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117153
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117154
117228
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117155
117229
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117156
117230
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -117494,6 +117568,9 @@ export namespace Prisma {
|
|
|
117494
117568
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
117495
117569
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
117496
117570
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
117571
|
+
reschedule_count?: number
|
|
117572
|
+
last_rescheduled_at?: Date | string | null
|
|
117573
|
+
first_assigned_at?: Date | string | null
|
|
117497
117574
|
created_at?: Date | string
|
|
117498
117575
|
updated_at?: Date | string
|
|
117499
117576
|
created_by: string
|
|
@@ -117638,6 +117715,9 @@ export namespace Prisma {
|
|
|
117638
117715
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
117639
117716
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
117640
117717
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
117718
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
117719
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117720
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117641
117721
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117642
117722
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117643
117723
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -117686,6 +117766,9 @@ export namespace Prisma {
|
|
|
117686
117766
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
117687
117767
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
117688
117768
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
117769
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
117770
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117771
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117689
117772
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117690
117773
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117691
117774
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -117728,6 +117811,9 @@ export namespace Prisma {
|
|
|
117728
117811
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
117729
117812
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
117730
117813
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
117814
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
117815
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117816
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117731
117817
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117732
117818
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
117733
117819
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -118238,6 +118324,9 @@ export namespace Prisma {
|
|
|
118238
118324
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
118239
118325
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
118240
118326
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
118327
|
+
reschedule_count?: number
|
|
118328
|
+
last_rescheduled_at?: Date | string | null
|
|
118329
|
+
first_assigned_at?: Date | string | null
|
|
118241
118330
|
created_at?: Date | string
|
|
118242
118331
|
updated_at?: Date | string
|
|
118243
118332
|
created_by: string
|
|
@@ -118548,6 +118637,9 @@ export namespace Prisma {
|
|
|
118548
118637
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
118549
118638
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
118550
118639
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
118640
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
118641
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
118642
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
118551
118643
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118552
118644
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118553
118645
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -118596,6 +118688,9 @@ export namespace Prisma {
|
|
|
118596
118688
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
118597
118689
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
118598
118690
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
118691
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
118692
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
118693
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
118599
118694
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118600
118695
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118601
118696
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -118638,6 +118733,9 @@ export namespace Prisma {
|
|
|
118638
118733
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
118639
118734
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
118640
118735
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
118736
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
118737
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
118738
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
118641
118739
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118642
118740
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
118643
118741
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -119714,6 +119812,9 @@ export namespace Prisma {
|
|
|
119714
119812
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
119715
119813
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
119716
119814
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
119815
|
+
reschedule_count?: number
|
|
119816
|
+
last_rescheduled_at?: Date | string | null
|
|
119817
|
+
first_assigned_at?: Date | string | null
|
|
119717
119818
|
created_at?: Date | string
|
|
119718
119819
|
updated_at?: Date | string
|
|
119719
119820
|
created_by: string
|
|
@@ -119908,7 +120009,6 @@ export namespace Prisma {
|
|
|
119908
120009
|
scheduled_end_time?: Date | string | null
|
|
119909
120010
|
actual_start_time?: Date | string | null
|
|
119910
120011
|
actual_end_time?: Date | string | null
|
|
119911
|
-
attempt_expires_at?: Date | string | null
|
|
119912
120012
|
created_at?: Date | string
|
|
119913
120013
|
updated_at?: Date | string
|
|
119914
120014
|
created_by: string
|
|
@@ -120488,6 +120588,9 @@ export namespace Prisma {
|
|
|
120488
120588
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
120489
120589
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
120490
120590
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
120591
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
120592
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120593
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120491
120594
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120492
120595
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120493
120596
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -120536,6 +120639,9 @@ export namespace Prisma {
|
|
|
120536
120639
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
120537
120640
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
120538
120641
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
120642
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
120643
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120644
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120539
120645
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120540
120646
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120541
120647
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -120578,6 +120684,9 @@ export namespace Prisma {
|
|
|
120578
120684
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
120579
120685
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
120580
120686
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
120687
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
120688
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120689
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120581
120690
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120582
120691
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120583
120692
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121139,7 +121248,6 @@ export namespace Prisma {
|
|
|
121139
121248
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121140
121249
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121141
121250
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121142
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121143
121251
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121144
121252
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121145
121253
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121165,7 +121273,6 @@ export namespace Prisma {
|
|
|
121165
121273
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121166
121274
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121167
121275
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121168
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121169
121276
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121170
121277
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121171
121278
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121188,7 +121295,6 @@ export namespace Prisma {
|
|
|
121188
121295
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121189
121296
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121190
121297
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121191
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121192
121298
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121193
121299
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121194
121300
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121326,6 +121432,9 @@ export namespace Prisma {
|
|
|
121326
121432
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
121327
121433
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121328
121434
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
121435
|
+
reschedule_count?: number
|
|
121436
|
+
last_rescheduled_at?: Date | string | null
|
|
121437
|
+
first_assigned_at?: Date | string | null
|
|
121329
121438
|
created_at?: Date | string
|
|
121330
121439
|
updated_at?: Date | string
|
|
121331
121440
|
created_by: string
|
|
@@ -121519,6 +121628,9 @@ export namespace Prisma {
|
|
|
121519
121628
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
121520
121629
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121521
121630
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
121631
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
121632
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121633
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121522
121634
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121523
121635
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121524
121636
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121567,6 +121679,9 @@ export namespace Prisma {
|
|
|
121567
121679
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
121568
121680
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121569
121681
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
121682
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
121683
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121684
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121570
121685
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121571
121686
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121572
121687
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121609,6 +121724,9 @@ export namespace Prisma {
|
|
|
121609
121724
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
121610
121725
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
121611
121726
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
121727
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
121728
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121729
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121612
121730
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121613
121731
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121614
121732
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -122075,6 +122193,9 @@ export namespace Prisma {
|
|
|
122075
122193
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
122076
122194
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
122077
122195
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
122196
|
+
reschedule_count?: number
|
|
122197
|
+
last_rescheduled_at?: Date | string | null
|
|
122198
|
+
first_assigned_at?: Date | string | null
|
|
122078
122199
|
created_at?: Date | string
|
|
122079
122200
|
updated_at?: Date | string
|
|
122080
122201
|
created_by: string
|
|
@@ -122110,6 +122231,9 @@ export namespace Prisma {
|
|
|
122110
122231
|
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
122111
122232
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
122112
122233
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
122234
|
+
reschedule_count?: number
|
|
122235
|
+
last_rescheduled_at?: Date | string | null
|
|
122236
|
+
first_assigned_at?: Date | string | null
|
|
122113
122237
|
created_at?: Date | string
|
|
122114
122238
|
updated_at?: Date | string
|
|
122115
122239
|
created_by: string
|
|
@@ -122129,7 +122253,6 @@ export namespace Prisma {
|
|
|
122129
122253
|
scheduled_end_time?: Date | string | null
|
|
122130
122254
|
actual_start_time?: Date | string | null
|
|
122131
122255
|
actual_end_time?: Date | string | null
|
|
122132
|
-
attempt_expires_at?: Date | string | null
|
|
122133
122256
|
created_at?: Date | string
|
|
122134
122257
|
updated_at?: Date | string
|
|
122135
122258
|
created_by: string
|
|
@@ -122148,7 +122271,6 @@ export namespace Prisma {
|
|
|
122148
122271
|
scheduled_end_time?: Date | string | null
|
|
122149
122272
|
actual_start_time?: Date | string | null
|
|
122150
122273
|
actual_end_time?: Date | string | null
|
|
122151
|
-
attempt_expires_at?: Date | string | null
|
|
122152
122274
|
created_at?: Date | string
|
|
122153
122275
|
updated_at?: Date | string
|
|
122154
122276
|
created_by: string
|
|
@@ -122168,7 +122290,6 @@ export namespace Prisma {
|
|
|
122168
122290
|
scheduled_end_time?: Date | string | null
|
|
122169
122291
|
actual_start_time?: Date | string | null
|
|
122170
122292
|
actual_end_time?: Date | string | null
|
|
122171
|
-
attempt_expires_at?: Date | string | null
|
|
122172
122293
|
created_at?: Date | string
|
|
122173
122294
|
updated_at?: Date | string
|
|
122174
122295
|
created_by: string
|
|
@@ -122982,6 +123103,9 @@ export namespace Prisma {
|
|
|
122982
123103
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
122983
123104
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
122984
123105
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123106
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123107
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123108
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
122985
123109
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
122986
123110
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
122987
123111
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123030,6 +123154,9 @@ export namespace Prisma {
|
|
|
123030
123154
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
123031
123155
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
123032
123156
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123157
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123158
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123159
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123033
123160
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123034
123161
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123035
123162
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123072,6 +123199,9 @@ export namespace Prisma {
|
|
|
123072
123199
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
123073
123200
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
123074
123201
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123202
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123203
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123204
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123075
123205
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123076
123206
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123077
123207
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123101,6 +123231,9 @@ export namespace Prisma {
|
|
|
123101
123231
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
123102
123232
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
123103
123233
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123234
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123235
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123236
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123104
123237
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123105
123238
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123106
123239
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123149,6 +123282,9 @@ export namespace Prisma {
|
|
|
123149
123282
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
123150
123283
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
123151
123284
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123285
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123286
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123287
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123152
123288
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123153
123289
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123154
123290
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123191,6 +123327,9 @@ export namespace Prisma {
|
|
|
123191
123327
|
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
123192
123328
|
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
123193
123329
|
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
123330
|
+
reschedule_count?: IntFieldUpdateOperationsInput | number
|
|
123331
|
+
last_rescheduled_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123332
|
+
first_assigned_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123194
123333
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123195
123334
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123196
123335
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123206,7 +123345,6 @@ export namespace Prisma {
|
|
|
123206
123345
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123207
123346
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123208
123347
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123209
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123210
123348
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123211
123349
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123212
123350
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123233,7 +123371,6 @@ export namespace Prisma {
|
|
|
123233
123371
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123234
123372
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123235
123373
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123236
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123237
123374
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123238
123375
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123239
123376
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123256,7 +123393,6 @@ export namespace Prisma {
|
|
|
123256
123393
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123257
123394
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123258
123395
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123259
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123260
123396
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123261
123397
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123262
123398
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123272,7 +123408,6 @@ export namespace Prisma {
|
|
|
123272
123408
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123273
123409
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123274
123410
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123275
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123276
123411
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123277
123412
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123278
123413
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123298,7 +123433,6 @@ export namespace Prisma {
|
|
|
123298
123433
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123299
123434
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123300
123435
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123301
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123302
123436
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123303
123437
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123304
123438
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123321,7 +123455,6 @@ export namespace Prisma {
|
|
|
123321
123455
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123322
123456
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123323
123457
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123324
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123325
123458
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123326
123459
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123327
123460
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123338,7 +123471,6 @@ export namespace Prisma {
|
|
|
123338
123471
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123339
123472
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123340
123473
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123341
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123342
123474
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123343
123475
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123344
123476
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123364,7 +123496,6 @@ export namespace Prisma {
|
|
|
123364
123496
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123365
123497
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123366
123498
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123367
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123368
123499
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123369
123500
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123370
123501
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123387,7 +123518,6 @@ export namespace Prisma {
|
|
|
123387
123518
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123388
123519
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123389
123520
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123390
|
-
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123391
123521
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123392
123522
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123393
123523
|
created_by?: StringFieldUpdateOperationsInput | string
|