@adaptware/eagles-db 0.1.88 → 0.1.91
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 +10 -7
- package/client/index-browser.js +5 -2
- package/client/index.d.ts +184 -4
- package/client/index.js +10 -7
- package/client/package.json +1 -1
- package/client/schema.prisma +6 -0
- package/client/wasm.js +5 -2
- package/dist/index.d.ts +5 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/migrations/20260415120000_remove_job_profile_current_phase/migration.sql +2 -0
- package/prisma/migrations/20260422120000_add_integration_provider_zoom/migration.sql +2 -0
- package/prisma/migrations/20260422140000_add_zoom_meeting_tables/migration.sql +57 -0
- package/prisma/migrations/20260422180000_add_zoom_webhook_event/migration.sql +18 -0
- package/prisma/migrations/20260423140000_add_interview_platform/migration.sql +6 -0
- package/prisma/migrations/20260423150000_remove_interview_zoom_topic/migration.sql +2 -0
- package/prisma/migrations/20260423160000_zoom_meeting_uuid/migration.sql +4 -0
- package/prisma/migrations/20260424120000_auth_module_user_provider_unique/migration.sql +5 -0
- package/prisma/migrations/20260424130000_zoom_meeting_zoom_host_user_id/migration.sql +6 -0
- package/prisma/migrations/20260425100000_zoom_participant_user_enum/migration.sql +22 -0
- package/prisma/migrations/20260425110000_zoom_participant_zoom_id_required/migration.sql +13 -0
- package/prisma/migrations/20260425120000_zoom_participant_id_nullable/migration.sql +4 -0
- package/prisma/migrations/20260429140000_drop_evaluation_plan_job_order_unique/migration.sql +5 -0
- package/prisma/migrations/20260429180000_eval_plan_timeline_optional_ongoing_duration/migration.sql +15 -0
- package/prisma/migrations/20260430120000_drop_assessment_library_metadata_fields/migration.sql +8 -0
- package/prisma/migrations/20260430140000_drop_question_question_type/migration.sql +5 -0
- package/prisma/migrations/migration_lock.toml +3 -0
- package/prisma/schema/assessment.prisma +4 -0
- package/prisma/schema/organisation.prisma +1 -0
- package/client/libquery_engine-darwin.dylib.node +0 -0
package/client/index.d.ts
CHANGED
|
@@ -400,7 +400,8 @@ export const IntegrationProvider: {
|
|
|
400
400
|
LINKEDIN: 'LINKEDIN',
|
|
401
401
|
GOOGLE: 'GOOGLE',
|
|
402
402
|
MICROSOFT: 'MICROSOFT',
|
|
403
|
-
ZOOM: 'ZOOM'
|
|
403
|
+
ZOOM: 'ZOOM',
|
|
404
|
+
CALENDLY: 'CALENDLY'
|
|
404
405
|
};
|
|
405
406
|
|
|
406
407
|
export type IntegrationProvider = (typeof IntegrationProvider)[keyof typeof IntegrationProvider]
|
|
@@ -13939,6 +13940,7 @@ export namespace Prisma {
|
|
|
13939
13940
|
scheduled_end_time: Date | null
|
|
13940
13941
|
actual_start_time: Date | null
|
|
13941
13942
|
actual_end_time: Date | null
|
|
13943
|
+
attempt_expires_at: Date | null
|
|
13942
13944
|
created_at: Date | null
|
|
13943
13945
|
updated_at: Date | null
|
|
13944
13946
|
created_by: string | null
|
|
@@ -13958,6 +13960,7 @@ export namespace Prisma {
|
|
|
13958
13960
|
scheduled_end_time: Date | null
|
|
13959
13961
|
actual_start_time: Date | null
|
|
13960
13962
|
actual_end_time: Date | null
|
|
13963
|
+
attempt_expires_at: Date | null
|
|
13961
13964
|
created_at: Date | null
|
|
13962
13965
|
updated_at: Date | null
|
|
13963
13966
|
created_by: string | null
|
|
@@ -13978,6 +13981,7 @@ export namespace Prisma {
|
|
|
13978
13981
|
scheduled_end_time: number
|
|
13979
13982
|
actual_start_time: number
|
|
13980
13983
|
actual_end_time: number
|
|
13984
|
+
attempt_expires_at: number
|
|
13981
13985
|
created_at: number
|
|
13982
13986
|
updated_at: number
|
|
13983
13987
|
created_by: number
|
|
@@ -14007,6 +14011,7 @@ export namespace Prisma {
|
|
|
14007
14011
|
scheduled_end_time?: true
|
|
14008
14012
|
actual_start_time?: true
|
|
14009
14013
|
actual_end_time?: true
|
|
14014
|
+
attempt_expires_at?: true
|
|
14010
14015
|
created_at?: true
|
|
14011
14016
|
updated_at?: true
|
|
14012
14017
|
created_by?: true
|
|
@@ -14026,6 +14031,7 @@ export namespace Prisma {
|
|
|
14026
14031
|
scheduled_end_time?: true
|
|
14027
14032
|
actual_start_time?: true
|
|
14028
14033
|
actual_end_time?: true
|
|
14034
|
+
attempt_expires_at?: true
|
|
14029
14035
|
created_at?: true
|
|
14030
14036
|
updated_at?: true
|
|
14031
14037
|
created_by?: true
|
|
@@ -14046,6 +14052,7 @@ export namespace Prisma {
|
|
|
14046
14052
|
scheduled_end_time?: true
|
|
14047
14053
|
actual_start_time?: true
|
|
14048
14054
|
actual_end_time?: true
|
|
14055
|
+
attempt_expires_at?: true
|
|
14049
14056
|
created_at?: true
|
|
14050
14057
|
updated_at?: true
|
|
14051
14058
|
created_by?: true
|
|
@@ -14153,6 +14160,7 @@ export namespace Prisma {
|
|
|
14153
14160
|
scheduled_end_time: Date | null
|
|
14154
14161
|
actual_start_time: Date | null
|
|
14155
14162
|
actual_end_time: Date | null
|
|
14163
|
+
attempt_expires_at: Date | null
|
|
14156
14164
|
created_at: Date
|
|
14157
14165
|
updated_at: Date
|
|
14158
14166
|
created_by: string
|
|
@@ -14192,6 +14200,7 @@ export namespace Prisma {
|
|
|
14192
14200
|
scheduled_end_time?: boolean
|
|
14193
14201
|
actual_start_time?: boolean
|
|
14194
14202
|
actual_end_time?: boolean
|
|
14203
|
+
attempt_expires_at?: boolean
|
|
14195
14204
|
created_at?: boolean
|
|
14196
14205
|
updated_at?: boolean
|
|
14197
14206
|
created_by?: boolean
|
|
@@ -14221,6 +14230,7 @@ export namespace Prisma {
|
|
|
14221
14230
|
scheduled_end_time?: boolean
|
|
14222
14231
|
actual_start_time?: boolean
|
|
14223
14232
|
actual_end_time?: boolean
|
|
14233
|
+
attempt_expires_at?: boolean
|
|
14224
14234
|
created_at?: boolean
|
|
14225
14235
|
updated_at?: boolean
|
|
14226
14236
|
created_by?: boolean
|
|
@@ -14246,6 +14256,7 @@ export namespace Prisma {
|
|
|
14246
14256
|
scheduled_end_time?: boolean
|
|
14247
14257
|
actual_start_time?: boolean
|
|
14248
14258
|
actual_end_time?: boolean
|
|
14259
|
+
attempt_expires_at?: boolean
|
|
14249
14260
|
created_at?: boolean
|
|
14250
14261
|
updated_at?: boolean
|
|
14251
14262
|
created_by?: boolean
|
|
@@ -14271,6 +14282,7 @@ export namespace Prisma {
|
|
|
14271
14282
|
scheduled_end_time?: boolean
|
|
14272
14283
|
actual_start_time?: boolean
|
|
14273
14284
|
actual_end_time?: boolean
|
|
14285
|
+
attempt_expires_at?: boolean
|
|
14274
14286
|
created_at?: boolean
|
|
14275
14287
|
updated_at?: boolean
|
|
14276
14288
|
created_by?: boolean
|
|
@@ -14279,7 +14291,7 @@ export namespace Prisma {
|
|
|
14279
14291
|
userId?: boolean
|
|
14280
14292
|
}
|
|
14281
14293
|
|
|
14282
|
-
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"]>
|
|
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" | "attempt_expires_at" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "userId", ExtArgs["result"]["assessment"]>
|
|
14283
14295
|
export type AssessmentInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14284
14296
|
assessment_library?: boolean | AssessmentLibraryDefaultArgs<ExtArgs>
|
|
14285
14297
|
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
@@ -14328,8 +14340,15 @@ export namespace Prisma {
|
|
|
14328
14340
|
feedback: Prisma.JsonValue | null
|
|
14329
14341
|
scheduled_start_time: Date | null
|
|
14330
14342
|
scheduled_end_time: Date | null
|
|
14343
|
+
/**
|
|
14344
|
+
* Actual Start and End Time
|
|
14345
|
+
*/
|
|
14331
14346
|
actual_start_time: Date | null
|
|
14332
14347
|
actual_end_time: Date | null
|
|
14348
|
+
/**
|
|
14349
|
+
* Attempt Expires At
|
|
14350
|
+
*/
|
|
14351
|
+
attempt_expires_at: Date | null
|
|
14333
14352
|
/**
|
|
14334
14353
|
* Audit fields
|
|
14335
14354
|
*/
|
|
@@ -14781,6 +14800,7 @@ export namespace Prisma {
|
|
|
14781
14800
|
readonly scheduled_end_time: FieldRef<"Assessment", 'DateTime'>
|
|
14782
14801
|
readonly actual_start_time: FieldRef<"Assessment", 'DateTime'>
|
|
14783
14802
|
readonly actual_end_time: FieldRef<"Assessment", 'DateTime'>
|
|
14803
|
+
readonly attempt_expires_at: FieldRef<"Assessment", 'DateTime'>
|
|
14784
14804
|
readonly created_at: FieldRef<"Assessment", 'DateTime'>
|
|
14785
14805
|
readonly updated_at: FieldRef<"Assessment", 'DateTime'>
|
|
14786
14806
|
readonly created_by: FieldRef<"Assessment", 'String'>
|
|
@@ -47063,6 +47083,7 @@ export namespace Prisma {
|
|
|
47063
47083
|
is_active: boolean | null
|
|
47064
47084
|
alias: string | null
|
|
47065
47085
|
logo: string | null
|
|
47086
|
+
timezone: string | null
|
|
47066
47087
|
}
|
|
47067
47088
|
|
|
47068
47089
|
export type OrganisationMaxAggregateOutputType = {
|
|
@@ -47081,6 +47102,7 @@ export namespace Prisma {
|
|
|
47081
47102
|
is_active: boolean | null
|
|
47082
47103
|
alias: string | null
|
|
47083
47104
|
logo: string | null
|
|
47105
|
+
timezone: string | null
|
|
47084
47106
|
}
|
|
47085
47107
|
|
|
47086
47108
|
export type OrganisationCountAggregateOutputType = {
|
|
@@ -47101,6 +47123,7 @@ export namespace Prisma {
|
|
|
47101
47123
|
is_active: number
|
|
47102
47124
|
alias: number
|
|
47103
47125
|
logo: number
|
|
47126
|
+
timezone: number
|
|
47104
47127
|
_all: number
|
|
47105
47128
|
}
|
|
47106
47129
|
|
|
@@ -47121,6 +47144,7 @@ export namespace Prisma {
|
|
|
47121
47144
|
is_active?: true
|
|
47122
47145
|
alias?: true
|
|
47123
47146
|
logo?: true
|
|
47147
|
+
timezone?: true
|
|
47124
47148
|
}
|
|
47125
47149
|
|
|
47126
47150
|
export type OrganisationMaxAggregateInputType = {
|
|
@@ -47139,6 +47163,7 @@ export namespace Prisma {
|
|
|
47139
47163
|
is_active?: true
|
|
47140
47164
|
alias?: true
|
|
47141
47165
|
logo?: true
|
|
47166
|
+
timezone?: true
|
|
47142
47167
|
}
|
|
47143
47168
|
|
|
47144
47169
|
export type OrganisationCountAggregateInputType = {
|
|
@@ -47159,6 +47184,7 @@ export namespace Prisma {
|
|
|
47159
47184
|
is_active?: true
|
|
47160
47185
|
alias?: true
|
|
47161
47186
|
logo?: true
|
|
47187
|
+
timezone?: true
|
|
47162
47188
|
_all?: true
|
|
47163
47189
|
}
|
|
47164
47190
|
|
|
@@ -47252,6 +47278,7 @@ export namespace Prisma {
|
|
|
47252
47278
|
is_active: boolean
|
|
47253
47279
|
alias: string | null
|
|
47254
47280
|
logo: string | null
|
|
47281
|
+
timezone: string
|
|
47255
47282
|
_count: OrganisationCountAggregateOutputType | null
|
|
47256
47283
|
_min: OrganisationMinAggregateOutputType | null
|
|
47257
47284
|
_max: OrganisationMaxAggregateOutputType | null
|
|
@@ -47289,6 +47316,7 @@ export namespace Prisma {
|
|
|
47289
47316
|
is_active?: boolean
|
|
47290
47317
|
alias?: boolean
|
|
47291
47318
|
logo?: boolean
|
|
47319
|
+
timezone?: boolean
|
|
47292
47320
|
interviewers?: boolean | Organisation$interviewersArgs<ExtArgs>
|
|
47293
47321
|
applications?: boolean | Organisation$applicationsArgs<ExtArgs>
|
|
47294
47322
|
user_roles?: boolean | Organisation$user_rolesArgs<ExtArgs>
|
|
@@ -47328,6 +47356,7 @@ export namespace Prisma {
|
|
|
47328
47356
|
is_active?: boolean
|
|
47329
47357
|
alias?: boolean
|
|
47330
47358
|
logo?: boolean
|
|
47359
|
+
timezone?: boolean
|
|
47331
47360
|
}, ExtArgs["result"]["organisation"]>
|
|
47332
47361
|
|
|
47333
47362
|
export type OrganisationSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -47348,6 +47377,7 @@ export namespace Prisma {
|
|
|
47348
47377
|
is_active?: boolean
|
|
47349
47378
|
alias?: boolean
|
|
47350
47379
|
logo?: boolean
|
|
47380
|
+
timezone?: boolean
|
|
47351
47381
|
}, ExtArgs["result"]["organisation"]>
|
|
47352
47382
|
|
|
47353
47383
|
export type OrganisationSelectScalar = {
|
|
@@ -47368,9 +47398,10 @@ export namespace Prisma {
|
|
|
47368
47398
|
is_active?: boolean
|
|
47369
47399
|
alias?: boolean
|
|
47370
47400
|
logo?: boolean
|
|
47401
|
+
timezone?: boolean
|
|
47371
47402
|
}
|
|
47372
47403
|
|
|
47373
|
-
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"]>
|
|
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" | "timezone", ExtArgs["result"]["organisation"]>
|
|
47374
47405
|
export type OrganisationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
47375
47406
|
interviewers?: boolean | Organisation$interviewersArgs<ExtArgs>
|
|
47376
47407
|
applications?: boolean | Organisation$applicationsArgs<ExtArgs>
|
|
@@ -47435,6 +47466,7 @@ export namespace Prisma {
|
|
|
47435
47466
|
is_active: boolean
|
|
47436
47467
|
alias: string | null
|
|
47437
47468
|
logo: string | null
|
|
47469
|
+
timezone: string
|
|
47438
47470
|
}, ExtArgs["result"]["organisation"]>
|
|
47439
47471
|
composites: {}
|
|
47440
47472
|
}
|
|
@@ -47893,6 +47925,7 @@ export namespace Prisma {
|
|
|
47893
47925
|
readonly is_active: FieldRef<"Organisation", 'Boolean'>
|
|
47894
47926
|
readonly alias: FieldRef<"Organisation", 'String'>
|
|
47895
47927
|
readonly logo: FieldRef<"Organisation", 'String'>
|
|
47928
|
+
readonly timezone: FieldRef<"Organisation", 'String'>
|
|
47896
47929
|
}
|
|
47897
47930
|
|
|
47898
47931
|
|
|
@@ -65458,6 +65491,7 @@ export namespace Prisma {
|
|
|
65458
65491
|
scheduled_end_time: 'scheduled_end_time',
|
|
65459
65492
|
actual_start_time: 'actual_start_time',
|
|
65460
65493
|
actual_end_time: 'actual_end_time',
|
|
65494
|
+
attempt_expires_at: 'attempt_expires_at',
|
|
65461
65495
|
created_at: 'created_at',
|
|
65462
65496
|
updated_at: 'updated_at',
|
|
65463
65497
|
created_by: 'created_by',
|
|
@@ -66024,7 +66058,8 @@ export namespace Prisma {
|
|
|
66024
66058
|
updated_by: 'updated_by',
|
|
66025
66059
|
is_active: 'is_active',
|
|
66026
66060
|
alias: 'alias',
|
|
66027
|
-
logo: 'logo'
|
|
66061
|
+
logo: 'logo',
|
|
66062
|
+
timezone: 'timezone'
|
|
66028
66063
|
};
|
|
66029
66064
|
|
|
66030
66065
|
export type OrganisationScalarFieldEnum = (typeof OrganisationScalarFieldEnum)[keyof typeof OrganisationScalarFieldEnum]
|
|
@@ -67482,6 +67517,7 @@ export namespace Prisma {
|
|
|
67482
67517
|
scheduled_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67483
67518
|
actual_start_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67484
67519
|
actual_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67520
|
+
attempt_expires_at?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67485
67521
|
created_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
67486
67522
|
updated_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
67487
67523
|
created_by?: StringFilter<"Assessment"> | string
|
|
@@ -67510,6 +67546,7 @@ export namespace Prisma {
|
|
|
67510
67546
|
scheduled_end_time?: SortOrderInput | SortOrder
|
|
67511
67547
|
actual_start_time?: SortOrderInput | SortOrder
|
|
67512
67548
|
actual_end_time?: SortOrderInput | SortOrder
|
|
67549
|
+
attempt_expires_at?: SortOrderInput | SortOrder
|
|
67513
67550
|
created_at?: SortOrder
|
|
67514
67551
|
updated_at?: SortOrder
|
|
67515
67552
|
created_by?: SortOrder
|
|
@@ -67542,6 +67579,7 @@ export namespace Prisma {
|
|
|
67542
67579
|
scheduled_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67543
67580
|
actual_start_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67544
67581
|
actual_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67582
|
+
attempt_expires_at?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
67545
67583
|
created_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
67546
67584
|
updated_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
67547
67585
|
created_by?: StringFilter<"Assessment"> | string
|
|
@@ -67570,6 +67608,7 @@ export namespace Prisma {
|
|
|
67570
67608
|
scheduled_end_time?: SortOrderInput | SortOrder
|
|
67571
67609
|
actual_start_time?: SortOrderInput | SortOrder
|
|
67572
67610
|
actual_end_time?: SortOrderInput | SortOrder
|
|
67611
|
+
attempt_expires_at?: SortOrderInput | SortOrder
|
|
67573
67612
|
created_at?: SortOrder
|
|
67574
67613
|
updated_at?: SortOrder
|
|
67575
67614
|
created_by?: SortOrder
|
|
@@ -67598,6 +67637,7 @@ export namespace Prisma {
|
|
|
67598
67637
|
scheduled_end_time?: DateTimeNullableWithAggregatesFilter<"Assessment"> | Date | string | null
|
|
67599
67638
|
actual_start_time?: DateTimeNullableWithAggregatesFilter<"Assessment"> | Date | string | null
|
|
67600
67639
|
actual_end_time?: DateTimeNullableWithAggregatesFilter<"Assessment"> | Date | string | null
|
|
67640
|
+
attempt_expires_at?: DateTimeNullableWithAggregatesFilter<"Assessment"> | Date | string | null
|
|
67601
67641
|
created_at?: DateTimeWithAggregatesFilter<"Assessment"> | Date | string
|
|
67602
67642
|
updated_at?: DateTimeWithAggregatesFilter<"Assessment"> | Date | string
|
|
67603
67643
|
created_by?: StringWithAggregatesFilter<"Assessment"> | string
|
|
@@ -70547,6 +70587,7 @@ export namespace Prisma {
|
|
|
70547
70587
|
is_active?: BoolFilter<"Organisation"> | boolean
|
|
70548
70588
|
alias?: StringNullableFilter<"Organisation"> | string | null
|
|
70549
70589
|
logo?: StringNullableFilter<"Organisation"> | string | null
|
|
70590
|
+
timezone?: StringFilter<"Organisation"> | string
|
|
70550
70591
|
interviewers?: UserListRelationFilter
|
|
70551
70592
|
applications?: ApplicationListRelationFilter
|
|
70552
70593
|
user_roles?: UserRoleListRelationFilter
|
|
@@ -70585,6 +70626,7 @@ export namespace Prisma {
|
|
|
70585
70626
|
is_active?: SortOrder
|
|
70586
70627
|
alias?: SortOrderInput | SortOrder
|
|
70587
70628
|
logo?: SortOrderInput | SortOrder
|
|
70629
|
+
timezone?: SortOrder
|
|
70588
70630
|
interviewers?: UserOrderByRelationAggregateInput
|
|
70589
70631
|
applications?: ApplicationOrderByRelationAggregateInput
|
|
70590
70632
|
user_roles?: UserRoleOrderByRelationAggregateInput
|
|
@@ -70626,6 +70668,7 @@ export namespace Prisma {
|
|
|
70626
70668
|
updated_by?: StringFilter<"Organisation"> | string
|
|
70627
70669
|
is_active?: BoolFilter<"Organisation"> | boolean
|
|
70628
70670
|
logo?: StringNullableFilter<"Organisation"> | string | null
|
|
70671
|
+
timezone?: StringFilter<"Organisation"> | string
|
|
70629
70672
|
interviewers?: UserListRelationFilter
|
|
70630
70673
|
applications?: ApplicationListRelationFilter
|
|
70631
70674
|
user_roles?: UserRoleListRelationFilter
|
|
@@ -70664,6 +70707,7 @@ export namespace Prisma {
|
|
|
70664
70707
|
is_active?: SortOrder
|
|
70665
70708
|
alias?: SortOrderInput | SortOrder
|
|
70666
70709
|
logo?: SortOrderInput | SortOrder
|
|
70710
|
+
timezone?: SortOrder
|
|
70667
70711
|
_count?: OrganisationCountOrderByAggregateInput
|
|
70668
70712
|
_max?: OrganisationMaxOrderByAggregateInput
|
|
70669
70713
|
_min?: OrganisationMinOrderByAggregateInput
|
|
@@ -70690,6 +70734,7 @@ export namespace Prisma {
|
|
|
70690
70734
|
is_active?: BoolWithAggregatesFilter<"Organisation"> | boolean
|
|
70691
70735
|
alias?: StringNullableWithAggregatesFilter<"Organisation"> | string | null
|
|
70692
70736
|
logo?: StringNullableWithAggregatesFilter<"Organisation"> | string | null
|
|
70737
|
+
timezone?: StringWithAggregatesFilter<"Organisation"> | string
|
|
70693
70738
|
}
|
|
70694
70739
|
|
|
70695
70740
|
export type PermissionWhereInput = {
|
|
@@ -72751,6 +72796,7 @@ export namespace Prisma {
|
|
|
72751
72796
|
scheduled_end_time?: Date | string | null
|
|
72752
72797
|
actual_start_time?: Date | string | null
|
|
72753
72798
|
actual_end_time?: Date | string | null
|
|
72799
|
+
attempt_expires_at?: Date | string | null
|
|
72754
72800
|
created_at?: Date | string
|
|
72755
72801
|
updated_at?: Date | string
|
|
72756
72802
|
created_by: string
|
|
@@ -72778,6 +72824,7 @@ export namespace Prisma {
|
|
|
72778
72824
|
scheduled_end_time?: Date | string | null
|
|
72779
72825
|
actual_start_time?: Date | string | null
|
|
72780
72826
|
actual_end_time?: Date | string | null
|
|
72827
|
+
attempt_expires_at?: Date | string | null
|
|
72781
72828
|
created_at?: Date | string
|
|
72782
72829
|
updated_at?: Date | string
|
|
72783
72830
|
created_by: string
|
|
@@ -72797,6 +72844,7 @@ export namespace Prisma {
|
|
|
72797
72844
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72798
72845
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72799
72846
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72847
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72800
72848
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72801
72849
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72802
72850
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -72824,6 +72872,7 @@ export namespace Prisma {
|
|
|
72824
72872
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72825
72873
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72826
72874
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72875
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72827
72876
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72828
72877
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72829
72878
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -72847,6 +72896,7 @@ export namespace Prisma {
|
|
|
72847
72896
|
scheduled_end_time?: Date | string | null
|
|
72848
72897
|
actual_start_time?: Date | string | null
|
|
72849
72898
|
actual_end_time?: Date | string | null
|
|
72899
|
+
attempt_expires_at?: Date | string | null
|
|
72850
72900
|
created_at?: Date | string
|
|
72851
72901
|
updated_at?: Date | string
|
|
72852
72902
|
created_by: string
|
|
@@ -72863,6 +72913,7 @@ export namespace Prisma {
|
|
|
72863
72913
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72864
72914
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72865
72915
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72916
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72866
72917
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72867
72918
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72868
72919
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -72882,6 +72933,7 @@ export namespace Prisma {
|
|
|
72882
72933
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72883
72934
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72884
72935
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72936
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
72885
72937
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72886
72938
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
72887
72939
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -76223,6 +76275,7 @@ export namespace Prisma {
|
|
|
76223
76275
|
is_active?: boolean
|
|
76224
76276
|
alias?: string | null
|
|
76225
76277
|
logo?: string | null
|
|
76278
|
+
timezone?: string
|
|
76226
76279
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
76227
76280
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
76228
76281
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -76261,6 +76314,7 @@ export namespace Prisma {
|
|
|
76261
76314
|
is_active?: boolean
|
|
76262
76315
|
alias?: string | null
|
|
76263
76316
|
logo?: string | null
|
|
76317
|
+
timezone?: string
|
|
76264
76318
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
76265
76319
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
76266
76320
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -76299,6 +76353,7 @@ export namespace Prisma {
|
|
|
76299
76353
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76300
76354
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76301
76355
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76356
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
76302
76357
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
76303
76358
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
76304
76359
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -76337,6 +76392,7 @@ export namespace Prisma {
|
|
|
76337
76392
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76338
76393
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76339
76394
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76395
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
76340
76396
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
76341
76397
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
76342
76398
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -76375,6 +76431,7 @@ export namespace Prisma {
|
|
|
76375
76431
|
is_active?: boolean
|
|
76376
76432
|
alias?: string | null
|
|
76377
76433
|
logo?: string | null
|
|
76434
|
+
timezone?: string
|
|
76378
76435
|
}
|
|
76379
76436
|
|
|
76380
76437
|
export type OrganisationUpdateManyMutationInput = {
|
|
@@ -76395,6 +76452,7 @@ export namespace Prisma {
|
|
|
76395
76452
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76396
76453
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76397
76454
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76455
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
76398
76456
|
}
|
|
76399
76457
|
|
|
76400
76458
|
export type OrganisationUncheckedUpdateManyInput = {
|
|
@@ -76415,6 +76473,7 @@ export namespace Prisma {
|
|
|
76415
76473
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76416
76474
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76417
76475
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76476
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
76418
76477
|
}
|
|
76419
76478
|
|
|
76420
76479
|
export type PermissionCreateInput = {
|
|
@@ -78854,6 +78913,7 @@ export namespace Prisma {
|
|
|
78854
78913
|
scheduled_end_time?: SortOrder
|
|
78855
78914
|
actual_start_time?: SortOrder
|
|
78856
78915
|
actual_end_time?: SortOrder
|
|
78916
|
+
attempt_expires_at?: SortOrder
|
|
78857
78917
|
created_at?: SortOrder
|
|
78858
78918
|
updated_at?: SortOrder
|
|
78859
78919
|
created_by?: SortOrder
|
|
@@ -78877,6 +78937,7 @@ export namespace Prisma {
|
|
|
78877
78937
|
scheduled_end_time?: SortOrder
|
|
78878
78938
|
actual_start_time?: SortOrder
|
|
78879
78939
|
actual_end_time?: SortOrder
|
|
78940
|
+
attempt_expires_at?: SortOrder
|
|
78880
78941
|
created_at?: SortOrder
|
|
78881
78942
|
updated_at?: SortOrder
|
|
78882
78943
|
created_by?: SortOrder
|
|
@@ -78896,6 +78957,7 @@ export namespace Prisma {
|
|
|
78896
78957
|
scheduled_end_time?: SortOrder
|
|
78897
78958
|
actual_start_time?: SortOrder
|
|
78898
78959
|
actual_end_time?: SortOrder
|
|
78960
|
+
attempt_expires_at?: SortOrder
|
|
78899
78961
|
created_at?: SortOrder
|
|
78900
78962
|
updated_at?: SortOrder
|
|
78901
78963
|
created_by?: SortOrder
|
|
@@ -81186,6 +81248,7 @@ export namespace Prisma {
|
|
|
81186
81248
|
is_active?: SortOrder
|
|
81187
81249
|
alias?: SortOrder
|
|
81188
81250
|
logo?: SortOrder
|
|
81251
|
+
timezone?: SortOrder
|
|
81189
81252
|
}
|
|
81190
81253
|
|
|
81191
81254
|
export type OrganisationMaxOrderByAggregateInput = {
|
|
@@ -81204,6 +81267,7 @@ export namespace Prisma {
|
|
|
81204
81267
|
is_active?: SortOrder
|
|
81205
81268
|
alias?: SortOrder
|
|
81206
81269
|
logo?: SortOrder
|
|
81270
|
+
timezone?: SortOrder
|
|
81207
81271
|
}
|
|
81208
81272
|
|
|
81209
81273
|
export type OrganisationMinOrderByAggregateInput = {
|
|
@@ -81222,6 +81286,7 @@ export namespace Prisma {
|
|
|
81222
81286
|
is_active?: SortOrder
|
|
81223
81287
|
alias?: SortOrder
|
|
81224
81288
|
logo?: SortOrder
|
|
81289
|
+
timezone?: SortOrder
|
|
81225
81290
|
}
|
|
81226
81291
|
|
|
81227
81292
|
export type EnumOrganisationSizeWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -89001,6 +89066,7 @@ export namespace Prisma {
|
|
|
89001
89066
|
scheduled_end_time?: Date | string | null
|
|
89002
89067
|
actual_start_time?: Date | string | null
|
|
89003
89068
|
actual_end_time?: Date | string | null
|
|
89069
|
+
attempt_expires_at?: Date | string | null
|
|
89004
89070
|
created_at?: Date | string
|
|
89005
89071
|
updated_at?: Date | string
|
|
89006
89072
|
created_by: string
|
|
@@ -89027,6 +89093,7 @@ export namespace Prisma {
|
|
|
89027
89093
|
scheduled_end_time?: Date | string | null
|
|
89028
89094
|
actual_start_time?: Date | string | null
|
|
89029
89095
|
actual_end_time?: Date | string | null
|
|
89096
|
+
attempt_expires_at?: Date | string | null
|
|
89030
89097
|
created_at?: Date | string
|
|
89031
89098
|
updated_at?: Date | string
|
|
89032
89099
|
created_by: string
|
|
@@ -89247,6 +89314,7 @@ export namespace Prisma {
|
|
|
89247
89314
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89248
89315
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89249
89316
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89317
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89250
89318
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89251
89319
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89252
89320
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89273,6 +89341,7 @@ export namespace Prisma {
|
|
|
89273
89341
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89274
89342
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89275
89343
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89344
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
89276
89345
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89277
89346
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89278
89347
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -89444,6 +89513,7 @@ export namespace Prisma {
|
|
|
89444
89513
|
is_active?: boolean
|
|
89445
89514
|
alias?: string | null
|
|
89446
89515
|
logo?: string | null
|
|
89516
|
+
timezone?: string
|
|
89447
89517
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
89448
89518
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
89449
89519
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutOrganisationInput
|
|
@@ -89481,6 +89551,7 @@ export namespace Prisma {
|
|
|
89481
89551
|
is_active?: boolean
|
|
89482
89552
|
alias?: string | null
|
|
89483
89553
|
logo?: string | null
|
|
89554
|
+
timezone?: string
|
|
89484
89555
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
89485
89556
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
89486
89557
|
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -89703,6 +89774,7 @@ export namespace Prisma {
|
|
|
89703
89774
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
89704
89775
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89705
89776
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89777
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
89706
89778
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
89707
89779
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
89708
89780
|
job_descriptions?: JobDescriptionUpdateManyWithoutOrganisationNestedInput
|
|
@@ -89740,6 +89812,7 @@ export namespace Prisma {
|
|
|
89740
89812
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
89741
89813
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89742
89814
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89815
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
89743
89816
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
89744
89817
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
89745
89818
|
job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -90002,6 +90075,7 @@ export namespace Prisma {
|
|
|
90002
90075
|
is_active?: boolean
|
|
90003
90076
|
alias?: string | null
|
|
90004
90077
|
logo?: string | null
|
|
90078
|
+
timezone?: string
|
|
90005
90079
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
90006
90080
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
90007
90081
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -90039,6 +90113,7 @@ export namespace Prisma {
|
|
|
90039
90113
|
is_active?: boolean
|
|
90040
90114
|
alias?: string | null
|
|
90041
90115
|
logo?: string | null
|
|
90116
|
+
timezone?: string
|
|
90042
90117
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
90043
90118
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
90044
90119
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -90235,6 +90310,7 @@ export namespace Prisma {
|
|
|
90235
90310
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
90236
90311
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90237
90312
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90313
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
90238
90314
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
90239
90315
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
90240
90316
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -90272,6 +90348,7 @@ export namespace Prisma {
|
|
|
90272
90348
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
90273
90349
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90274
90350
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90351
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
90275
90352
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
90276
90353
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
90277
90354
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -90927,6 +91004,7 @@ export namespace Prisma {
|
|
|
90927
91004
|
is_active?: boolean
|
|
90928
91005
|
alias?: string | null
|
|
90929
91006
|
logo?: string | null
|
|
91007
|
+
timezone?: string
|
|
90930
91008
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
90931
91009
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
90932
91010
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutOrganisationInput
|
|
@@ -90964,6 +91042,7 @@ export namespace Prisma {
|
|
|
90964
91042
|
is_active?: boolean
|
|
90965
91043
|
alias?: string | null
|
|
90966
91044
|
logo?: string | null
|
|
91045
|
+
timezone?: string
|
|
90967
91046
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
90968
91047
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
90969
91048
|
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -91726,6 +91805,7 @@ export namespace Prisma {
|
|
|
91726
91805
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
91727
91806
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
91728
91807
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
91808
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
91729
91809
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
91730
91810
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
91731
91811
|
job_descriptions?: JobDescriptionUpdateManyWithoutOrganisationNestedInput
|
|
@@ -91763,6 +91843,7 @@ export namespace Prisma {
|
|
|
91763
91843
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
91764
91844
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
91765
91845
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
91846
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
91766
91847
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
91767
91848
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
91768
91849
|
job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -92443,6 +92524,7 @@ export namespace Prisma {
|
|
|
92443
92524
|
is_active?: boolean
|
|
92444
92525
|
alias?: string | null
|
|
92445
92526
|
logo?: string | null
|
|
92527
|
+
timezone?: string
|
|
92446
92528
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
92447
92529
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
92448
92530
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -92480,6 +92562,7 @@ export namespace Prisma {
|
|
|
92480
92562
|
is_active?: boolean
|
|
92481
92563
|
alias?: string | null
|
|
92482
92564
|
logo?: string | null
|
|
92565
|
+
timezone?: string
|
|
92483
92566
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
92484
92567
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
92485
92568
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -92757,6 +92840,7 @@ export namespace Prisma {
|
|
|
92757
92840
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
92758
92841
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92759
92842
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92843
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
92760
92844
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
92761
92845
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
92762
92846
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -92794,6 +92878,7 @@ export namespace Prisma {
|
|
|
92794
92878
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
92795
92879
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92796
92880
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92881
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
92797
92882
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
92798
92883
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
92799
92884
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -93200,6 +93285,7 @@ export namespace Prisma {
|
|
|
93200
93285
|
is_active?: boolean
|
|
93201
93286
|
alias?: string | null
|
|
93202
93287
|
logo?: string | null
|
|
93288
|
+
timezone?: string
|
|
93203
93289
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
93204
93290
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
93205
93291
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -93237,6 +93323,7 @@ export namespace Prisma {
|
|
|
93237
93323
|
is_active?: boolean
|
|
93238
93324
|
alias?: string | null
|
|
93239
93325
|
logo?: string | null
|
|
93326
|
+
timezone?: string
|
|
93240
93327
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
93241
93328
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
93242
93329
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -93892,6 +93979,7 @@ export namespace Prisma {
|
|
|
93892
93979
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
93893
93980
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93894
93981
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93982
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
93895
93983
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
93896
93984
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
93897
93985
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -93929,6 +94017,7 @@ export namespace Prisma {
|
|
|
93929
94017
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
93930
94018
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93931
94019
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94020
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
93932
94021
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
93933
94022
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
93934
94023
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -94192,6 +94281,7 @@ export namespace Prisma {
|
|
|
94192
94281
|
is_active?: boolean
|
|
94193
94282
|
alias?: string | null
|
|
94194
94283
|
logo?: string | null
|
|
94284
|
+
timezone?: string
|
|
94195
94285
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
94196
94286
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
94197
94287
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -94229,6 +94319,7 @@ export namespace Prisma {
|
|
|
94229
94319
|
is_active?: boolean
|
|
94230
94320
|
alias?: string | null
|
|
94231
94321
|
logo?: string | null
|
|
94322
|
+
timezone?: string
|
|
94232
94323
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
94233
94324
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
94234
94325
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -94309,6 +94400,7 @@ export namespace Prisma {
|
|
|
94309
94400
|
scheduled_end_time?: Date | string | null
|
|
94310
94401
|
actual_start_time?: Date | string | null
|
|
94311
94402
|
actual_end_time?: Date | string | null
|
|
94403
|
+
attempt_expires_at?: Date | string | null
|
|
94312
94404
|
created_at?: Date | string
|
|
94313
94405
|
updated_at?: Date | string
|
|
94314
94406
|
created_by: string
|
|
@@ -94334,6 +94426,7 @@ export namespace Prisma {
|
|
|
94334
94426
|
scheduled_end_time?: Date | string | null
|
|
94335
94427
|
actual_start_time?: Date | string | null
|
|
94336
94428
|
actual_end_time?: Date | string | null
|
|
94429
|
+
attempt_expires_at?: Date | string | null
|
|
94337
94430
|
created_at?: Date | string
|
|
94338
94431
|
updated_at?: Date | string
|
|
94339
94432
|
created_by: string
|
|
@@ -94454,6 +94547,7 @@ export namespace Prisma {
|
|
|
94454
94547
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
94455
94548
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94456
94549
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94550
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
94457
94551
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
94458
94552
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
94459
94553
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -94491,6 +94585,7 @@ export namespace Prisma {
|
|
|
94491
94585
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
94492
94586
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94493
94587
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94588
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
94494
94589
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
94495
94590
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
94496
94591
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -94578,6 +94673,7 @@ export namespace Prisma {
|
|
|
94578
94673
|
scheduled_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
94579
94674
|
actual_start_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
94580
94675
|
actual_end_time?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
94676
|
+
attempt_expires_at?: DateTimeNullableFilter<"Assessment"> | Date | string | null
|
|
94581
94677
|
created_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
94582
94678
|
updated_at?: DateTimeFilter<"Assessment"> | Date | string
|
|
94583
94679
|
created_by?: StringFilter<"Assessment"> | string
|
|
@@ -94640,6 +94736,7 @@ export namespace Prisma {
|
|
|
94640
94736
|
scheduled_end_time?: Date | string | null
|
|
94641
94737
|
actual_start_time?: Date | string | null
|
|
94642
94738
|
actual_end_time?: Date | string | null
|
|
94739
|
+
attempt_expires_at?: Date | string | null
|
|
94643
94740
|
created_at?: Date | string
|
|
94644
94741
|
updated_at?: Date | string
|
|
94645
94742
|
created_by: string
|
|
@@ -94666,6 +94763,7 @@ export namespace Prisma {
|
|
|
94666
94763
|
scheduled_end_time?: Date | string | null
|
|
94667
94764
|
actual_start_time?: Date | string | null
|
|
94668
94765
|
actual_end_time?: Date | string | null
|
|
94766
|
+
attempt_expires_at?: Date | string | null
|
|
94669
94767
|
created_at?: Date | string
|
|
94670
94768
|
updated_at?: Date | string
|
|
94671
94769
|
created_by: string
|
|
@@ -94743,6 +94841,7 @@ export namespace Prisma {
|
|
|
94743
94841
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94744
94842
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94745
94843
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94844
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94746
94845
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94747
94846
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94748
94847
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -94769,6 +94868,7 @@ export namespace Prisma {
|
|
|
94769
94868
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94770
94869
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94771
94870
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94871
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
94772
94872
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94773
94873
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
94774
94874
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -95153,6 +95253,7 @@ export namespace Prisma {
|
|
|
95153
95253
|
is_active?: boolean
|
|
95154
95254
|
alias?: string | null
|
|
95155
95255
|
logo?: string | null
|
|
95256
|
+
timezone?: string
|
|
95156
95257
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
95157
95258
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
95158
95259
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -95190,6 +95291,7 @@ export namespace Prisma {
|
|
|
95190
95291
|
is_active?: boolean
|
|
95191
95292
|
alias?: string | null
|
|
95192
95293
|
logo?: string | null
|
|
95294
|
+
timezone?: string
|
|
95193
95295
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
95194
95296
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
95195
95297
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -95785,6 +95887,7 @@ export namespace Prisma {
|
|
|
95785
95887
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95786
95888
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95787
95889
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95890
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
95788
95891
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
95789
95892
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
95790
95893
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -95822,6 +95925,7 @@ export namespace Prisma {
|
|
|
95822
95925
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95823
95926
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95824
95927
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95928
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
95825
95929
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
95826
95930
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
95827
95931
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -96094,6 +96198,7 @@ export namespace Prisma {
|
|
|
96094
96198
|
is_active?: boolean
|
|
96095
96199
|
alias?: string | null
|
|
96096
96200
|
logo?: string | null
|
|
96201
|
+
timezone?: string
|
|
96097
96202
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
96098
96203
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
96099
96204
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -96131,6 +96236,7 @@ export namespace Prisma {
|
|
|
96131
96236
|
is_active?: boolean
|
|
96132
96237
|
alias?: string | null
|
|
96133
96238
|
logo?: string | null
|
|
96239
|
+
timezone?: string
|
|
96134
96240
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
96135
96241
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
96136
96242
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -96385,6 +96491,7 @@ export namespace Prisma {
|
|
|
96385
96491
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
96386
96492
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96387
96493
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96494
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
96388
96495
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
96389
96496
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
96390
96497
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -96422,6 +96529,7 @@ export namespace Prisma {
|
|
|
96422
96529
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
96423
96530
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96424
96531
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96532
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
96425
96533
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
96426
96534
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
96427
96535
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -98551,6 +98659,7 @@ export namespace Prisma {
|
|
|
98551
98659
|
is_active?: boolean
|
|
98552
98660
|
alias?: string | null
|
|
98553
98661
|
logo?: string | null
|
|
98662
|
+
timezone?: string
|
|
98554
98663
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
98555
98664
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
98556
98665
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -98588,6 +98697,7 @@ export namespace Prisma {
|
|
|
98588
98697
|
is_active?: boolean
|
|
98589
98698
|
alias?: string | null
|
|
98590
98699
|
logo?: string | null
|
|
98700
|
+
timezone?: string
|
|
98591
98701
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
98592
98702
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
98593
98703
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -98967,6 +99077,7 @@ export namespace Prisma {
|
|
|
98967
99077
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
98968
99078
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98969
99079
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99080
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
98970
99081
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
98971
99082
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
98972
99083
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -99004,6 +99115,7 @@ export namespace Prisma {
|
|
|
99004
99115
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
99005
99116
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99006
99117
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99118
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
99007
99119
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
99008
99120
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
99009
99121
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -99671,6 +99783,7 @@ export namespace Prisma {
|
|
|
99671
99783
|
is_active?: boolean
|
|
99672
99784
|
alias?: string | null
|
|
99673
99785
|
logo?: string | null
|
|
99786
|
+
timezone?: string
|
|
99674
99787
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
99675
99788
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
99676
99789
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -99708,6 +99821,7 @@ export namespace Prisma {
|
|
|
99708
99821
|
is_active?: boolean
|
|
99709
99822
|
alias?: string | null
|
|
99710
99823
|
logo?: string | null
|
|
99824
|
+
timezone?: string
|
|
99711
99825
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
99712
99826
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
99713
99827
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -99761,6 +99875,7 @@ export namespace Prisma {
|
|
|
99761
99875
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
99762
99876
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99763
99877
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99878
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
99764
99879
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
99765
99880
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
99766
99881
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -99798,6 +99913,7 @@ export namespace Prisma {
|
|
|
99798
99913
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
99799
99914
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99800
99915
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99916
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
99801
99917
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
99802
99918
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
99803
99919
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -99991,6 +100107,7 @@ export namespace Prisma {
|
|
|
99991
100107
|
is_active?: boolean
|
|
99992
100108
|
alias?: string | null
|
|
99993
100109
|
logo?: string | null
|
|
100110
|
+
timezone?: string
|
|
99994
100111
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
99995
100112
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
99996
100113
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -100028,6 +100145,7 @@ export namespace Prisma {
|
|
|
100028
100145
|
is_active?: boolean
|
|
100029
100146
|
alias?: string | null
|
|
100030
100147
|
logo?: string | null
|
|
100148
|
+
timezone?: string
|
|
100031
100149
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
100032
100150
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
100033
100151
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -100081,6 +100199,7 @@ export namespace Prisma {
|
|
|
100081
100199
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
100082
100200
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100083
100201
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100202
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
100084
100203
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
100085
100204
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
100086
100205
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -100118,6 +100237,7 @@ export namespace Prisma {
|
|
|
100118
100237
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
100119
100238
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100120
100239
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100240
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
100121
100241
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
100122
100242
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
100123
100243
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -100429,6 +100549,7 @@ export namespace Prisma {
|
|
|
100429
100549
|
is_active?: boolean
|
|
100430
100550
|
alias?: string | null
|
|
100431
100551
|
logo?: string | null
|
|
100552
|
+
timezone?: string
|
|
100432
100553
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
100433
100554
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
100434
100555
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -100466,6 +100587,7 @@ export namespace Prisma {
|
|
|
100466
100587
|
is_active?: boolean
|
|
100467
100588
|
alias?: string | null
|
|
100468
100589
|
logo?: string | null
|
|
100590
|
+
timezone?: string
|
|
100469
100591
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
100470
100592
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
100471
100593
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -101359,6 +101481,7 @@ export namespace Prisma {
|
|
|
101359
101481
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101360
101482
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101361
101483
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101484
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
101362
101485
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
101363
101486
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
101364
101487
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -101396,6 +101519,7 @@ export namespace Prisma {
|
|
|
101396
101519
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101397
101520
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101398
101521
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101522
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
101399
101523
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
101400
101524
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
101401
101525
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -102252,6 +102376,7 @@ export namespace Prisma {
|
|
|
102252
102376
|
is_active?: boolean
|
|
102253
102377
|
alias?: string | null
|
|
102254
102378
|
logo?: string | null
|
|
102379
|
+
timezone?: string
|
|
102255
102380
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
102256
102381
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
102257
102382
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -102289,6 +102414,7 @@ export namespace Prisma {
|
|
|
102289
102414
|
is_active?: boolean
|
|
102290
102415
|
alias?: string | null
|
|
102291
102416
|
logo?: string | null
|
|
102417
|
+
timezone?: string
|
|
102292
102418
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
102293
102419
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
102294
102420
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -103416,6 +103542,7 @@ export namespace Prisma {
|
|
|
103416
103542
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
103417
103543
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103418
103544
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103545
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
103419
103546
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
103420
103547
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
103421
103548
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -103453,6 +103580,7 @@ export namespace Prisma {
|
|
|
103453
103580
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
103454
103581
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103455
103582
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103583
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
103456
103584
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
103457
103585
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
103458
103586
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -104171,6 +104299,7 @@ export namespace Prisma {
|
|
|
104171
104299
|
is_active?: boolean
|
|
104172
104300
|
alias?: string | null
|
|
104173
104301
|
logo?: string | null
|
|
104302
|
+
timezone?: string
|
|
104174
104303
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
104175
104304
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
104176
104305
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -104208,6 +104337,7 @@ export namespace Prisma {
|
|
|
104208
104337
|
is_active?: boolean
|
|
104209
104338
|
alias?: string | null
|
|
104210
104339
|
logo?: string | null
|
|
104340
|
+
timezone?: string
|
|
104211
104341
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
104212
104342
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
104213
104343
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -104752,6 +104882,7 @@ export namespace Prisma {
|
|
|
104752
104882
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
104753
104883
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104754
104884
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104885
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
104755
104886
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
104756
104887
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
104757
104888
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -104789,6 +104920,7 @@ export namespace Prisma {
|
|
|
104789
104920
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
104790
104921
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104791
104922
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104923
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
104792
104924
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
104793
104925
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
104794
104926
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -106782,6 +106914,7 @@ export namespace Prisma {
|
|
|
106782
106914
|
is_active?: boolean
|
|
106783
106915
|
alias?: string | null
|
|
106784
106916
|
logo?: string | null
|
|
106917
|
+
timezone?: string
|
|
106785
106918
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
106786
106919
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
106787
106920
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -106819,6 +106952,7 @@ export namespace Prisma {
|
|
|
106819
106952
|
is_active?: boolean
|
|
106820
106953
|
alias?: string | null
|
|
106821
106954
|
logo?: string | null
|
|
106955
|
+
timezone?: string
|
|
106822
106956
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
106823
106957
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
106824
106958
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -107056,6 +107190,7 @@ export namespace Prisma {
|
|
|
107056
107190
|
scheduled_end_time?: Date | string | null
|
|
107057
107191
|
actual_start_time?: Date | string | null
|
|
107058
107192
|
actual_end_time?: Date | string | null
|
|
107193
|
+
attempt_expires_at?: Date | string | null
|
|
107059
107194
|
created_at?: Date | string
|
|
107060
107195
|
updated_at?: Date | string
|
|
107061
107196
|
created_by: string
|
|
@@ -107082,6 +107217,7 @@ export namespace Prisma {
|
|
|
107082
107217
|
scheduled_end_time?: Date | string | null
|
|
107083
107218
|
actual_start_time?: Date | string | null
|
|
107084
107219
|
actual_end_time?: Date | string | null
|
|
107220
|
+
attempt_expires_at?: Date | string | null
|
|
107085
107221
|
created_at?: Date | string
|
|
107086
107222
|
updated_at?: Date | string
|
|
107087
107223
|
created_by: string
|
|
@@ -107476,6 +107612,7 @@ export namespace Prisma {
|
|
|
107476
107612
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
107477
107613
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107478
107614
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107615
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
107479
107616
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
107480
107617
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
107481
107618
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -107513,6 +107650,7 @@ export namespace Prisma {
|
|
|
107513
107650
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
107514
107651
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107515
107652
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107653
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
107516
107654
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
107517
107655
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
107518
107656
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -107774,6 +107912,7 @@ export namespace Prisma {
|
|
|
107774
107912
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107775
107913
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107776
107914
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107915
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107777
107916
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107778
107917
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107779
107918
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -107800,6 +107939,7 @@ export namespace Prisma {
|
|
|
107800
107939
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107801
107940
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107802
107941
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107942
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107803
107943
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107804
107944
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
107805
107945
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -108846,6 +108986,7 @@ export namespace Prisma {
|
|
|
108846
108986
|
scheduled_end_time?: Date | string | null
|
|
108847
108987
|
actual_start_time?: Date | string | null
|
|
108848
108988
|
actual_end_time?: Date | string | null
|
|
108989
|
+
attempt_expires_at?: Date | string | null
|
|
108849
108990
|
created_at?: Date | string
|
|
108850
108991
|
updated_at?: Date | string
|
|
108851
108992
|
created_by: string
|
|
@@ -108871,6 +109012,7 @@ export namespace Prisma {
|
|
|
108871
109012
|
scheduled_end_time?: Date | string | null
|
|
108872
109013
|
actual_start_time?: Date | string | null
|
|
108873
109014
|
actual_end_time?: Date | string | null
|
|
109015
|
+
attempt_expires_at?: Date | string | null
|
|
108874
109016
|
created_at?: Date | string
|
|
108875
109017
|
updated_at?: Date | string
|
|
108876
109018
|
created_by: string
|
|
@@ -110670,6 +110812,7 @@ export namespace Prisma {
|
|
|
110670
110812
|
is_active?: boolean
|
|
110671
110813
|
alias?: string | null
|
|
110672
110814
|
logo?: string | null
|
|
110815
|
+
timezone?: string
|
|
110673
110816
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
110674
110817
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
110675
110818
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -110707,6 +110850,7 @@ export namespace Prisma {
|
|
|
110707
110850
|
is_active?: boolean
|
|
110708
110851
|
alias?: string | null
|
|
110709
110852
|
logo?: string | null
|
|
110853
|
+
timezone?: string
|
|
110710
110854
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
110711
110855
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
110712
110856
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -111381,6 +111525,7 @@ export namespace Prisma {
|
|
|
111381
111525
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
111382
111526
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111383
111527
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111528
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
111384
111529
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
111385
111530
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
111386
111531
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -111418,6 +111563,7 @@ export namespace Prisma {
|
|
|
111418
111563
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
111419
111564
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111420
111565
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111566
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
111421
111567
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
111422
111568
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
111423
111569
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -111921,6 +112067,7 @@ export namespace Prisma {
|
|
|
111921
112067
|
is_active?: boolean
|
|
111922
112068
|
alias?: string | null
|
|
111923
112069
|
logo?: string | null
|
|
112070
|
+
timezone?: string
|
|
111924
112071
|
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
111925
112072
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
111926
112073
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
@@ -111958,6 +112105,7 @@ export namespace Prisma {
|
|
|
111958
112105
|
is_active?: boolean
|
|
111959
112106
|
alias?: string | null
|
|
111960
112107
|
logo?: string | null
|
|
112108
|
+
timezone?: string
|
|
111961
112109
|
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
111962
112110
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
111963
112111
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -112122,6 +112270,7 @@ export namespace Prisma {
|
|
|
112122
112270
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
112123
112271
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112124
112272
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112273
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
112125
112274
|
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
112126
112275
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
112127
112276
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
@@ -112159,6 +112308,7 @@ export namespace Prisma {
|
|
|
112159
112308
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
112160
112309
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112161
112310
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112311
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
112162
112312
|
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
112163
112313
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
112164
112314
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -112666,6 +112816,7 @@ export namespace Prisma {
|
|
|
112666
112816
|
is_active?: boolean
|
|
112667
112817
|
alias?: string | null
|
|
112668
112818
|
logo?: string | null
|
|
112819
|
+
timezone?: string
|
|
112669
112820
|
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
112670
112821
|
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
112671
112822
|
job_descriptions?: JobDescriptionCreateNestedManyWithoutOrganisationInput
|
|
@@ -112703,6 +112854,7 @@ export namespace Prisma {
|
|
|
112703
112854
|
is_active?: boolean
|
|
112704
112855
|
alias?: string | null
|
|
112705
112856
|
logo?: string | null
|
|
112857
|
+
timezone?: string
|
|
112706
112858
|
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
112707
112859
|
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
112708
112860
|
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutOrganisationInput
|
|
@@ -113442,6 +113594,7 @@ export namespace Prisma {
|
|
|
113442
113594
|
scheduled_end_time?: Date | string | null
|
|
113443
113595
|
actual_start_time?: Date | string | null
|
|
113444
113596
|
actual_end_time?: Date | string | null
|
|
113597
|
+
attempt_expires_at?: Date | string | null
|
|
113445
113598
|
created_at?: Date | string
|
|
113446
113599
|
updated_at?: Date | string
|
|
113447
113600
|
created_by: string
|
|
@@ -113468,6 +113621,7 @@ export namespace Prisma {
|
|
|
113468
113621
|
scheduled_end_time?: Date | string | null
|
|
113469
113622
|
actual_start_time?: Date | string | null
|
|
113470
113623
|
actual_end_time?: Date | string | null
|
|
113624
|
+
attempt_expires_at?: Date | string | null
|
|
113471
113625
|
created_at?: Date | string
|
|
113472
113626
|
updated_at?: Date | string
|
|
113473
113627
|
created_by: string
|
|
@@ -113496,6 +113650,7 @@ export namespace Prisma {
|
|
|
113496
113650
|
scheduled_end_time?: Date | string | null
|
|
113497
113651
|
actual_start_time?: Date | string | null
|
|
113498
113652
|
actual_end_time?: Date | string | null
|
|
113653
|
+
attempt_expires_at?: Date | string | null
|
|
113499
113654
|
created_at?: Date | string
|
|
113500
113655
|
updated_at?: Date | string
|
|
113501
113656
|
created_by: string
|
|
@@ -113521,6 +113676,7 @@ export namespace Prisma {
|
|
|
113521
113676
|
scheduled_end_time?: Date | string | null
|
|
113522
113677
|
actual_start_time?: Date | string | null
|
|
113523
113678
|
actual_end_time?: Date | string | null
|
|
113679
|
+
attempt_expires_at?: Date | string | null
|
|
113524
113680
|
created_at?: Date | string
|
|
113525
113681
|
updated_at?: Date | string
|
|
113526
113682
|
created_by: string
|
|
@@ -113550,6 +113706,7 @@ export namespace Prisma {
|
|
|
113550
113706
|
scheduled_end_time?: Date | string | null
|
|
113551
113707
|
actual_start_time?: Date | string | null
|
|
113552
113708
|
actual_end_time?: Date | string | null
|
|
113709
|
+
attempt_expires_at?: Date | string | null
|
|
113553
113710
|
created_at?: Date | string
|
|
113554
113711
|
updated_at?: Date | string
|
|
113555
113712
|
created_by: string
|
|
@@ -113575,6 +113732,7 @@ export namespace Prisma {
|
|
|
113575
113732
|
scheduled_end_time?: Date | string | null
|
|
113576
113733
|
actual_start_time?: Date | string | null
|
|
113577
113734
|
actual_end_time?: Date | string | null
|
|
113735
|
+
attempt_expires_at?: Date | string | null
|
|
113578
113736
|
created_at?: Date | string
|
|
113579
113737
|
updated_at?: Date | string
|
|
113580
113738
|
created_by: string
|
|
@@ -114455,6 +114613,7 @@ export namespace Prisma {
|
|
|
114455
114613
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
114456
114614
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114457
114615
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114616
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
114458
114617
|
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
114459
114618
|
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
114460
114619
|
job_descriptions?: JobDescriptionUpdateManyWithoutOrganisationNestedInput
|
|
@@ -114492,6 +114651,7 @@ export namespace Prisma {
|
|
|
114492
114651
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
114493
114652
|
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114494
114653
|
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
114654
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
114495
114655
|
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
114496
114656
|
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
114497
114657
|
job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
@@ -116843,6 +117003,7 @@ export namespace Prisma {
|
|
|
116843
117003
|
scheduled_end_time?: Date | string | null
|
|
116844
117004
|
actual_start_time?: Date | string | null
|
|
116845
117005
|
actual_end_time?: Date | string | null
|
|
117006
|
+
attempt_expires_at?: Date | string | null
|
|
116846
117007
|
created_at?: Date | string
|
|
116847
117008
|
updated_at?: Date | string
|
|
116848
117009
|
created_by: string
|
|
@@ -116940,6 +117101,7 @@ export namespace Prisma {
|
|
|
116940
117101
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116941
117102
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116942
117103
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117104
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116943
117105
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116944
117106
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116945
117107
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -116965,6 +117127,7 @@ export namespace Prisma {
|
|
|
116965
117127
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116966
117128
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116967
117129
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117130
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116968
117131
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116969
117132
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116970
117133
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -116987,6 +117150,7 @@ export namespace Prisma {
|
|
|
116987
117150
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116988
117151
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116989
117152
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
117153
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
116990
117154
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116991
117155
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116992
117156
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -119744,6 +119908,7 @@ export namespace Prisma {
|
|
|
119744
119908
|
scheduled_end_time?: Date | string | null
|
|
119745
119909
|
actual_start_time?: Date | string | null
|
|
119746
119910
|
actual_end_time?: Date | string | null
|
|
119911
|
+
attempt_expires_at?: Date | string | null
|
|
119747
119912
|
created_at?: Date | string
|
|
119748
119913
|
updated_at?: Date | string
|
|
119749
119914
|
created_by: string
|
|
@@ -120974,6 +121139,7 @@ export namespace Prisma {
|
|
|
120974
121139
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120975
121140
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120976
121141
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121142
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
120977
121143
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120978
121144
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120979
121145
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -120999,6 +121165,7 @@ export namespace Prisma {
|
|
|
120999
121165
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121000
121166
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121001
121167
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121168
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121002
121169
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121003
121170
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121004
121171
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121021,6 +121188,7 @@ export namespace Prisma {
|
|
|
121021
121188
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121022
121189
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121023
121190
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121191
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
121024
121192
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121025
121193
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
121026
121194
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -121961,6 +122129,7 @@ export namespace Prisma {
|
|
|
121961
122129
|
scheduled_end_time?: Date | string | null
|
|
121962
122130
|
actual_start_time?: Date | string | null
|
|
121963
122131
|
actual_end_time?: Date | string | null
|
|
122132
|
+
attempt_expires_at?: Date | string | null
|
|
121964
122133
|
created_at?: Date | string
|
|
121965
122134
|
updated_at?: Date | string
|
|
121966
122135
|
created_by: string
|
|
@@ -121979,6 +122148,7 @@ export namespace Prisma {
|
|
|
121979
122148
|
scheduled_end_time?: Date | string | null
|
|
121980
122149
|
actual_start_time?: Date | string | null
|
|
121981
122150
|
actual_end_time?: Date | string | null
|
|
122151
|
+
attempt_expires_at?: Date | string | null
|
|
121982
122152
|
created_at?: Date | string
|
|
121983
122153
|
updated_at?: Date | string
|
|
121984
122154
|
created_by: string
|
|
@@ -121998,6 +122168,7 @@ export namespace Prisma {
|
|
|
121998
122168
|
scheduled_end_time?: Date | string | null
|
|
121999
122169
|
actual_start_time?: Date | string | null
|
|
122000
122170
|
actual_end_time?: Date | string | null
|
|
122171
|
+
attempt_expires_at?: Date | string | null
|
|
122001
122172
|
created_at?: Date | string
|
|
122002
122173
|
updated_at?: Date | string
|
|
122003
122174
|
created_by: string
|
|
@@ -123035,6 +123206,7 @@ export namespace Prisma {
|
|
|
123035
123206
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123036
123207
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123037
123208
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123209
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123038
123210
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123039
123211
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123040
123212
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123061,6 +123233,7 @@ export namespace Prisma {
|
|
|
123061
123233
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123062
123234
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123063
123235
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123236
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123064
123237
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123065
123238
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123066
123239
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123083,6 +123256,7 @@ export namespace Prisma {
|
|
|
123083
123256
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123084
123257
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123085
123258
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123259
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123086
123260
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123087
123261
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123088
123262
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123098,6 +123272,7 @@ export namespace Prisma {
|
|
|
123098
123272
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123099
123273
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123100
123274
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123275
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123101
123276
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123102
123277
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123103
123278
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123123,6 +123298,7 @@ export namespace Prisma {
|
|
|
123123
123298
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123124
123299
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123125
123300
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123301
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123126
123302
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123127
123303
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123128
123304
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123145,6 +123321,7 @@ export namespace Prisma {
|
|
|
123145
123321
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123146
123322
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123147
123323
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123324
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123148
123325
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123149
123326
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123150
123327
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123161,6 +123338,7 @@ export namespace Prisma {
|
|
|
123161
123338
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123162
123339
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123163
123340
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123341
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123164
123342
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123165
123343
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123166
123344
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123186,6 +123364,7 @@ export namespace Prisma {
|
|
|
123186
123364
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123187
123365
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123188
123366
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123367
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123189
123368
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123190
123369
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123191
123370
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -123208,6 +123387,7 @@ export namespace Prisma {
|
|
|
123208
123387
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123209
123388
|
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123210
123389
|
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123390
|
+
attempt_expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
123211
123391
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123212
123392
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
123213
123393
|
created_by?: StringFieldUpdateOperationsInput | string
|