@adaptware/eagles-db 0.1.38 → 0.1.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/edge.js +6 -5
- package/client/index-browser.js +3 -2
- package/client/index.d.ts +839 -432
- package/client/index.js +6 -5
- package/client/package.json +1 -1
- package/client/schema.prisma +16 -13
- package/client/wasm.js +3 -2
- package/package.json +1 -1
- package/prisma/schema/activityLog.prisma +14 -12
- package/prisma/schema/applications.prisma +1 -0
- package/prisma/schema/user.prisma +16 -16
package/client/index.d.ts
CHANGED
|
@@ -4663,11 +4663,13 @@ export namespace Prisma {
|
|
|
4663
4663
|
export type ApplicationCountOutputType = {
|
|
4664
4664
|
interviews: number
|
|
4665
4665
|
ongoing_evaluations: number
|
|
4666
|
+
activity_logs: number
|
|
4666
4667
|
}
|
|
4667
4668
|
|
|
4668
4669
|
export type ApplicationCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4669
4670
|
interviews?: boolean | ApplicationCountOutputTypeCountInterviewsArgs
|
|
4670
4671
|
ongoing_evaluations?: boolean | ApplicationCountOutputTypeCountOngoing_evaluationsArgs
|
|
4672
|
+
activity_logs?: boolean | ApplicationCountOutputTypeCountActivity_logsArgs
|
|
4671
4673
|
}
|
|
4672
4674
|
|
|
4673
4675
|
// Custom InputTypes
|
|
@@ -4695,6 +4697,13 @@ export namespace Prisma {
|
|
|
4695
4697
|
where?: OngoingEvaluationWhereInput
|
|
4696
4698
|
}
|
|
4697
4699
|
|
|
4700
|
+
/**
|
|
4701
|
+
* ApplicationCountOutputType without action
|
|
4702
|
+
*/
|
|
4703
|
+
export type ApplicationCountOutputTypeCountActivity_logsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4704
|
+
where?: ActivityLogWhereInput
|
|
4705
|
+
}
|
|
4706
|
+
|
|
4698
4707
|
|
|
4699
4708
|
/**
|
|
4700
4709
|
* Count Type AssessmentCountOutputType
|
|
@@ -5506,10 +5515,10 @@ export namespace Prisma {
|
|
|
5506
5515
|
candidateResponses: number
|
|
5507
5516
|
questions: number
|
|
5508
5517
|
ongoing_evaluations: number
|
|
5509
|
-
candidate_activity_logs: number
|
|
5510
5518
|
actor_activity_logs: number
|
|
5511
5519
|
actions: number
|
|
5512
5520
|
fitChecks: number
|
|
5521
|
+
activityLogs: number
|
|
5513
5522
|
}
|
|
5514
5523
|
|
|
5515
5524
|
export type UserCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -5528,10 +5537,10 @@ export namespace Prisma {
|
|
|
5528
5537
|
candidateResponses?: boolean | UserCountOutputTypeCountCandidateResponsesArgs
|
|
5529
5538
|
questions?: boolean | UserCountOutputTypeCountQuestionsArgs
|
|
5530
5539
|
ongoing_evaluations?: boolean | UserCountOutputTypeCountOngoing_evaluationsArgs
|
|
5531
|
-
candidate_activity_logs?: boolean | UserCountOutputTypeCountCandidate_activity_logsArgs
|
|
5532
5540
|
actor_activity_logs?: boolean | UserCountOutputTypeCountActor_activity_logsArgs
|
|
5533
5541
|
actions?: boolean | UserCountOutputTypeCountActionsArgs
|
|
5534
5542
|
fitChecks?: boolean | UserCountOutputTypeCountFitChecksArgs
|
|
5543
|
+
activityLogs?: boolean | UserCountOutputTypeCountActivityLogsArgs
|
|
5535
5544
|
}
|
|
5536
5545
|
|
|
5537
5546
|
// Custom InputTypes
|
|
@@ -5650,13 +5659,6 @@ export namespace Prisma {
|
|
|
5650
5659
|
where?: OngoingEvaluationWhereInput
|
|
5651
5660
|
}
|
|
5652
5661
|
|
|
5653
|
-
/**
|
|
5654
|
-
* UserCountOutputType without action
|
|
5655
|
-
*/
|
|
5656
|
-
export type UserCountOutputTypeCountCandidate_activity_logsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5657
|
-
where?: ActivityLogWhereInput
|
|
5658
|
-
}
|
|
5659
|
-
|
|
5660
5662
|
/**
|
|
5661
5663
|
* UserCountOutputType without action
|
|
5662
5664
|
*/
|
|
@@ -5678,6 +5680,13 @@ export namespace Prisma {
|
|
|
5678
5680
|
where?: FitCheckWhereInput
|
|
5679
5681
|
}
|
|
5680
5682
|
|
|
5683
|
+
/**
|
|
5684
|
+
* UserCountOutputType without action
|
|
5685
|
+
*/
|
|
5686
|
+
export type UserCountOutputTypeCountActivityLogsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5687
|
+
where?: ActivityLogWhereInput
|
|
5688
|
+
}
|
|
5689
|
+
|
|
5681
5690
|
|
|
5682
5691
|
/**
|
|
5683
5692
|
* Models
|
|
@@ -9250,29 +9259,31 @@ export namespace Prisma {
|
|
|
9250
9259
|
|
|
9251
9260
|
export type ActivityLogMinAggregateOutputType = {
|
|
9252
9261
|
id: string | null
|
|
9253
|
-
|
|
9262
|
+
application_id: string | null
|
|
9254
9263
|
actor_id: string | null
|
|
9255
9264
|
actor_type: $Enums.ActivityActorType | null
|
|
9256
9265
|
message: string | null
|
|
9257
9266
|
timestamp: Date | null
|
|
9258
9267
|
created_at: Date | null
|
|
9259
9268
|
is_active: boolean | null
|
|
9269
|
+
userId: string | null
|
|
9260
9270
|
}
|
|
9261
9271
|
|
|
9262
9272
|
export type ActivityLogMaxAggregateOutputType = {
|
|
9263
9273
|
id: string | null
|
|
9264
|
-
|
|
9274
|
+
application_id: string | null
|
|
9265
9275
|
actor_id: string | null
|
|
9266
9276
|
actor_type: $Enums.ActivityActorType | null
|
|
9267
9277
|
message: string | null
|
|
9268
9278
|
timestamp: Date | null
|
|
9269
9279
|
created_at: Date | null
|
|
9270
9280
|
is_active: boolean | null
|
|
9281
|
+
userId: string | null
|
|
9271
9282
|
}
|
|
9272
9283
|
|
|
9273
9284
|
export type ActivityLogCountAggregateOutputType = {
|
|
9274
9285
|
id: number
|
|
9275
|
-
|
|
9286
|
+
application_id: number
|
|
9276
9287
|
actor_id: number
|
|
9277
9288
|
actor_type: number
|
|
9278
9289
|
message: number
|
|
@@ -9280,35 +9291,38 @@ export namespace Prisma {
|
|
|
9280
9291
|
metadata: number
|
|
9281
9292
|
created_at: number
|
|
9282
9293
|
is_active: number
|
|
9294
|
+
userId: number
|
|
9283
9295
|
_all: number
|
|
9284
9296
|
}
|
|
9285
9297
|
|
|
9286
9298
|
|
|
9287
9299
|
export type ActivityLogMinAggregateInputType = {
|
|
9288
9300
|
id?: true
|
|
9289
|
-
|
|
9301
|
+
application_id?: true
|
|
9290
9302
|
actor_id?: true
|
|
9291
9303
|
actor_type?: true
|
|
9292
9304
|
message?: true
|
|
9293
9305
|
timestamp?: true
|
|
9294
9306
|
created_at?: true
|
|
9295
9307
|
is_active?: true
|
|
9308
|
+
userId?: true
|
|
9296
9309
|
}
|
|
9297
9310
|
|
|
9298
9311
|
export type ActivityLogMaxAggregateInputType = {
|
|
9299
9312
|
id?: true
|
|
9300
|
-
|
|
9313
|
+
application_id?: true
|
|
9301
9314
|
actor_id?: true
|
|
9302
9315
|
actor_type?: true
|
|
9303
9316
|
message?: true
|
|
9304
9317
|
timestamp?: true
|
|
9305
9318
|
created_at?: true
|
|
9306
9319
|
is_active?: true
|
|
9320
|
+
userId?: true
|
|
9307
9321
|
}
|
|
9308
9322
|
|
|
9309
9323
|
export type ActivityLogCountAggregateInputType = {
|
|
9310
9324
|
id?: true
|
|
9311
|
-
|
|
9325
|
+
application_id?: true
|
|
9312
9326
|
actor_id?: true
|
|
9313
9327
|
actor_type?: true
|
|
9314
9328
|
message?: true
|
|
@@ -9316,6 +9330,7 @@ export namespace Prisma {
|
|
|
9316
9330
|
metadata?: true
|
|
9317
9331
|
created_at?: true
|
|
9318
9332
|
is_active?: true
|
|
9333
|
+
userId?: true
|
|
9319
9334
|
_all?: true
|
|
9320
9335
|
}
|
|
9321
9336
|
|
|
@@ -9393,7 +9408,7 @@ export namespace Prisma {
|
|
|
9393
9408
|
|
|
9394
9409
|
export type ActivityLogGroupByOutputType = {
|
|
9395
9410
|
id: string
|
|
9396
|
-
|
|
9411
|
+
application_id: string
|
|
9397
9412
|
actor_id: string | null
|
|
9398
9413
|
actor_type: $Enums.ActivityActorType
|
|
9399
9414
|
message: string
|
|
@@ -9401,6 +9416,7 @@ export namespace Prisma {
|
|
|
9401
9416
|
metadata: JsonValue | null
|
|
9402
9417
|
created_at: Date
|
|
9403
9418
|
is_active: boolean
|
|
9419
|
+
userId: string | null
|
|
9404
9420
|
_count: ActivityLogCountAggregateOutputType | null
|
|
9405
9421
|
_min: ActivityLogMinAggregateOutputType | null
|
|
9406
9422
|
_max: ActivityLogMaxAggregateOutputType | null
|
|
@@ -9422,7 +9438,7 @@ export namespace Prisma {
|
|
|
9422
9438
|
|
|
9423
9439
|
export type ActivityLogSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9424
9440
|
id?: boolean
|
|
9425
|
-
|
|
9441
|
+
application_id?: boolean
|
|
9426
9442
|
actor_id?: boolean
|
|
9427
9443
|
actor_type?: boolean
|
|
9428
9444
|
message?: boolean
|
|
@@ -9430,13 +9446,15 @@ export namespace Prisma {
|
|
|
9430
9446
|
metadata?: boolean
|
|
9431
9447
|
created_at?: boolean
|
|
9432
9448
|
is_active?: boolean
|
|
9433
|
-
|
|
9449
|
+
userId?: boolean
|
|
9434
9450
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9451
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9452
|
+
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9435
9453
|
}, ExtArgs["result"]["activityLog"]>
|
|
9436
9454
|
|
|
9437
9455
|
export type ActivityLogSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9438
9456
|
id?: boolean
|
|
9439
|
-
|
|
9457
|
+
application_id?: boolean
|
|
9440
9458
|
actor_id?: boolean
|
|
9441
9459
|
actor_type?: boolean
|
|
9442
9460
|
message?: boolean
|
|
@@ -9444,13 +9462,15 @@ export namespace Prisma {
|
|
|
9444
9462
|
metadata?: boolean
|
|
9445
9463
|
created_at?: boolean
|
|
9446
9464
|
is_active?: boolean
|
|
9447
|
-
|
|
9465
|
+
userId?: boolean
|
|
9448
9466
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9467
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9468
|
+
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9449
9469
|
}, ExtArgs["result"]["activityLog"]>
|
|
9450
9470
|
|
|
9451
9471
|
export type ActivityLogSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9452
9472
|
id?: boolean
|
|
9453
|
-
|
|
9473
|
+
application_id?: boolean
|
|
9454
9474
|
actor_id?: boolean
|
|
9455
9475
|
actor_type?: boolean
|
|
9456
9476
|
message?: boolean
|
|
@@ -9458,13 +9478,15 @@ export namespace Prisma {
|
|
|
9458
9478
|
metadata?: boolean
|
|
9459
9479
|
created_at?: boolean
|
|
9460
9480
|
is_active?: boolean
|
|
9461
|
-
|
|
9481
|
+
userId?: boolean
|
|
9462
9482
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9483
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9484
|
+
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9463
9485
|
}, ExtArgs["result"]["activityLog"]>
|
|
9464
9486
|
|
|
9465
9487
|
export type ActivityLogSelectScalar = {
|
|
9466
9488
|
id?: boolean
|
|
9467
|
-
|
|
9489
|
+
application_id?: boolean
|
|
9468
9490
|
actor_id?: boolean
|
|
9469
9491
|
actor_type?: boolean
|
|
9470
9492
|
message?: boolean
|
|
@@ -9472,31 +9494,36 @@ export namespace Prisma {
|
|
|
9472
9494
|
metadata?: boolean
|
|
9473
9495
|
created_at?: boolean
|
|
9474
9496
|
is_active?: boolean
|
|
9497
|
+
userId?: boolean
|
|
9475
9498
|
}
|
|
9476
9499
|
|
|
9477
|
-
export type ActivityLogOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "
|
|
9500
|
+
export type ActivityLogOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "application_id" | "actor_id" | "actor_type" | "message" | "timestamp" | "metadata" | "created_at" | "is_active" | "userId", ExtArgs["result"]["activityLog"]>
|
|
9478
9501
|
export type ActivityLogInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9479
|
-
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
9480
9502
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9503
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9504
|
+
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9481
9505
|
}
|
|
9482
9506
|
export type ActivityLogIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9483
|
-
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
9484
9507
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9508
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9509
|
+
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9485
9510
|
}
|
|
9486
9511
|
export type ActivityLogIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9487
|
-
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
9488
9512
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9513
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9514
|
+
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9489
9515
|
}
|
|
9490
9516
|
|
|
9491
9517
|
export type $ActivityLogPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9492
9518
|
name: "ActivityLog"
|
|
9493
9519
|
objects: {
|
|
9494
|
-
candidate: Prisma.$UserPayload<ExtArgs>
|
|
9495
9520
|
actor: Prisma.$UserPayload<ExtArgs> | null
|
|
9521
|
+
application: Prisma.$ApplicationPayload<ExtArgs>
|
|
9522
|
+
user: Prisma.$UserPayload<ExtArgs> | null
|
|
9496
9523
|
}
|
|
9497
9524
|
scalars: $Extensions.GetPayloadResult<{
|
|
9498
9525
|
id: string
|
|
9499
|
-
|
|
9526
|
+
application_id: string
|
|
9500
9527
|
actor_id: string | null
|
|
9501
9528
|
actor_type: $Enums.ActivityActorType
|
|
9502
9529
|
message: string
|
|
@@ -9504,6 +9531,7 @@ export namespace Prisma {
|
|
|
9504
9531
|
metadata: Prisma.JsonValue | null
|
|
9505
9532
|
created_at: Date
|
|
9506
9533
|
is_active: boolean
|
|
9534
|
+
userId: string | null
|
|
9507
9535
|
}, ExtArgs["result"]["activityLog"]>
|
|
9508
9536
|
composites: {}
|
|
9509
9537
|
}
|
|
@@ -9898,8 +9926,9 @@ export namespace Prisma {
|
|
|
9898
9926
|
*/
|
|
9899
9927
|
export interface Prisma__ActivityLogClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
9900
9928
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
9901
|
-
candidate<T extends UserDefaultArgs<ExtArgs> = {}>(args?: Subset<T, UserDefaultArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
9902
9929
|
actor<T extends ActivityLog$actorArgs<ExtArgs> = {}>(args?: Subset<T, ActivityLog$actorArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
9930
|
+
application<T extends ApplicationDefaultArgs<ExtArgs> = {}>(args?: Subset<T, ApplicationDefaultArgs<ExtArgs>>): Prisma__ApplicationClient<$Result.GetResult<Prisma.$ApplicationPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
9931
|
+
user<T extends ActivityLog$userArgs<ExtArgs> = {}>(args?: Subset<T, ActivityLog$userArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
9903
9932
|
/**
|
|
9904
9933
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
9905
9934
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -9930,7 +9959,7 @@ export namespace Prisma {
|
|
|
9930
9959
|
*/
|
|
9931
9960
|
interface ActivityLogFieldRefs {
|
|
9932
9961
|
readonly id: FieldRef<"ActivityLog", 'String'>
|
|
9933
|
-
readonly
|
|
9962
|
+
readonly application_id: FieldRef<"ActivityLog", 'String'>
|
|
9934
9963
|
readonly actor_id: FieldRef<"ActivityLog", 'String'>
|
|
9935
9964
|
readonly actor_type: FieldRef<"ActivityLog", 'ActivityActorType'>
|
|
9936
9965
|
readonly message: FieldRef<"ActivityLog", 'String'>
|
|
@@ -9938,6 +9967,7 @@ export namespace Prisma {
|
|
|
9938
9967
|
readonly metadata: FieldRef<"ActivityLog", 'Json'>
|
|
9939
9968
|
readonly created_at: FieldRef<"ActivityLog", 'DateTime'>
|
|
9940
9969
|
readonly is_active: FieldRef<"ActivityLog", 'Boolean'>
|
|
9970
|
+
readonly userId: FieldRef<"ActivityLog", 'String'>
|
|
9941
9971
|
}
|
|
9942
9972
|
|
|
9943
9973
|
|
|
@@ -10352,6 +10382,25 @@ export namespace Prisma {
|
|
|
10352
10382
|
where?: UserWhereInput
|
|
10353
10383
|
}
|
|
10354
10384
|
|
|
10385
|
+
/**
|
|
10386
|
+
* ActivityLog.user
|
|
10387
|
+
*/
|
|
10388
|
+
export type ActivityLog$userArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10389
|
+
/**
|
|
10390
|
+
* Select specific fields to fetch from the User
|
|
10391
|
+
*/
|
|
10392
|
+
select?: UserSelect<ExtArgs> | null
|
|
10393
|
+
/**
|
|
10394
|
+
* Omit specific fields from the User
|
|
10395
|
+
*/
|
|
10396
|
+
omit?: UserOmit<ExtArgs> | null
|
|
10397
|
+
/**
|
|
10398
|
+
* Choose, which related nodes to fetch as well
|
|
10399
|
+
*/
|
|
10400
|
+
include?: UserInclude<ExtArgs> | null
|
|
10401
|
+
where?: UserWhereInput
|
|
10402
|
+
}
|
|
10403
|
+
|
|
10355
10404
|
/**
|
|
10356
10405
|
* ActivityLog without action
|
|
10357
10406
|
*/
|
|
@@ -10677,6 +10726,7 @@ export namespace Prisma {
|
|
|
10677
10726
|
fit_check?: boolean | Application$fit_checkArgs<ExtArgs>
|
|
10678
10727
|
interviews?: boolean | Application$interviewsArgs<ExtArgs>
|
|
10679
10728
|
ongoing_evaluations?: boolean | Application$ongoing_evaluationsArgs<ExtArgs>
|
|
10729
|
+
activity_logs?: boolean | Application$activity_logsArgs<ExtArgs>
|
|
10680
10730
|
_count?: boolean | ApplicationCountOutputTypeDefaultArgs<ExtArgs>
|
|
10681
10731
|
}, ExtArgs["result"]["application"]>
|
|
10682
10732
|
|
|
@@ -10762,6 +10812,7 @@ export namespace Prisma {
|
|
|
10762
10812
|
fit_check?: boolean | Application$fit_checkArgs<ExtArgs>
|
|
10763
10813
|
interviews?: boolean | Application$interviewsArgs<ExtArgs>
|
|
10764
10814
|
ongoing_evaluations?: boolean | Application$ongoing_evaluationsArgs<ExtArgs>
|
|
10815
|
+
activity_logs?: boolean | Application$activity_logsArgs<ExtArgs>
|
|
10765
10816
|
_count?: boolean | ApplicationCountOutputTypeDefaultArgs<ExtArgs>
|
|
10766
10817
|
}
|
|
10767
10818
|
export type ApplicationIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -10792,6 +10843,7 @@ export namespace Prisma {
|
|
|
10792
10843
|
fit_check: Prisma.$FitCheckPayload<ExtArgs> | null
|
|
10793
10844
|
interviews: Prisma.$InterviewPayload<ExtArgs>[]
|
|
10794
10845
|
ongoing_evaluations: Prisma.$OngoingEvaluationPayload<ExtArgs>[]
|
|
10846
|
+
activity_logs: Prisma.$ActivityLogPayload<ExtArgs>[]
|
|
10795
10847
|
}
|
|
10796
10848
|
scalars: $Extensions.GetPayloadResult<{
|
|
10797
10849
|
id: string
|
|
@@ -11213,6 +11265,7 @@ export namespace Prisma {
|
|
|
11213
11265
|
fit_check<T extends Application$fit_checkArgs<ExtArgs> = {}>(args?: Subset<T, Application$fit_checkArgs<ExtArgs>>): Prisma__FitCheckClient<$Result.GetResult<Prisma.$FitCheckPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
11214
11266
|
interviews<T extends Application$interviewsArgs<ExtArgs> = {}>(args?: Subset<T, Application$interviewsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$InterviewPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
11215
11267
|
ongoing_evaluations<T extends Application$ongoing_evaluationsArgs<ExtArgs> = {}>(args?: Subset<T, Application$ongoing_evaluationsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$OngoingEvaluationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
11268
|
+
activity_logs<T extends Application$activity_logsArgs<ExtArgs> = {}>(args?: Subset<T, Application$activity_logsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ActivityLogPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
11216
11269
|
/**
|
|
11217
11270
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
11218
11271
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -11740,6 +11793,30 @@ export namespace Prisma {
|
|
|
11740
11793
|
distinct?: OngoingEvaluationScalarFieldEnum | OngoingEvaluationScalarFieldEnum[]
|
|
11741
11794
|
}
|
|
11742
11795
|
|
|
11796
|
+
/**
|
|
11797
|
+
* Application.activity_logs
|
|
11798
|
+
*/
|
|
11799
|
+
export type Application$activity_logsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11800
|
+
/**
|
|
11801
|
+
* Select specific fields to fetch from the ActivityLog
|
|
11802
|
+
*/
|
|
11803
|
+
select?: ActivityLogSelect<ExtArgs> | null
|
|
11804
|
+
/**
|
|
11805
|
+
* Omit specific fields from the ActivityLog
|
|
11806
|
+
*/
|
|
11807
|
+
omit?: ActivityLogOmit<ExtArgs> | null
|
|
11808
|
+
/**
|
|
11809
|
+
* Choose, which related nodes to fetch as well
|
|
11810
|
+
*/
|
|
11811
|
+
include?: ActivityLogInclude<ExtArgs> | null
|
|
11812
|
+
where?: ActivityLogWhereInput
|
|
11813
|
+
orderBy?: ActivityLogOrderByWithRelationInput | ActivityLogOrderByWithRelationInput[]
|
|
11814
|
+
cursor?: ActivityLogWhereUniqueInput
|
|
11815
|
+
take?: number
|
|
11816
|
+
skip?: number
|
|
11817
|
+
distinct?: ActivityLogScalarFieldEnum | ActivityLogScalarFieldEnum[]
|
|
11818
|
+
}
|
|
11819
|
+
|
|
11743
11820
|
/**
|
|
11744
11821
|
* Application without action
|
|
11745
11822
|
*/
|
|
@@ -51617,12 +51694,12 @@ export namespace Prisma {
|
|
|
51617
51694
|
candidateResponses?: boolean | User$candidateResponsesArgs<ExtArgs>
|
|
51618
51695
|
questions?: boolean | User$questionsArgs<ExtArgs>
|
|
51619
51696
|
ongoing_evaluations?: boolean | User$ongoing_evaluationsArgs<ExtArgs>
|
|
51620
|
-
candidate_activity_logs?: boolean | User$candidate_activity_logsArgs<ExtArgs>
|
|
51621
51697
|
actor_activity_logs?: boolean | User$actor_activity_logsArgs<ExtArgs>
|
|
51622
51698
|
actions?: boolean | User$actionsArgs<ExtArgs>
|
|
51623
51699
|
calendly?: boolean | User$calendlyArgs<ExtArgs>
|
|
51624
51700
|
google?: boolean | User$googleArgs<ExtArgs>
|
|
51625
51701
|
fitChecks?: boolean | User$fitChecksArgs<ExtArgs>
|
|
51702
|
+
activityLogs?: boolean | User$activityLogsArgs<ExtArgs>
|
|
51626
51703
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
51627
51704
|
}, ExtArgs["result"]["user"]>
|
|
51628
51705
|
|
|
@@ -51760,12 +51837,12 @@ export namespace Prisma {
|
|
|
51760
51837
|
candidateResponses?: boolean | User$candidateResponsesArgs<ExtArgs>
|
|
51761
51838
|
questions?: boolean | User$questionsArgs<ExtArgs>
|
|
51762
51839
|
ongoing_evaluations?: boolean | User$ongoing_evaluationsArgs<ExtArgs>
|
|
51763
|
-
candidate_activity_logs?: boolean | User$candidate_activity_logsArgs<ExtArgs>
|
|
51764
51840
|
actor_activity_logs?: boolean | User$actor_activity_logsArgs<ExtArgs>
|
|
51765
51841
|
actions?: boolean | User$actionsArgs<ExtArgs>
|
|
51766
51842
|
calendly?: boolean | User$calendlyArgs<ExtArgs>
|
|
51767
51843
|
google?: boolean | User$googleArgs<ExtArgs>
|
|
51768
51844
|
fitChecks?: boolean | User$fitChecksArgs<ExtArgs>
|
|
51845
|
+
activityLogs?: boolean | User$activityLogsArgs<ExtArgs>
|
|
51769
51846
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
51770
51847
|
}
|
|
51771
51848
|
export type UserIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -51803,12 +51880,12 @@ export namespace Prisma {
|
|
|
51803
51880
|
candidateResponses: Prisma.$CandidateQuestionResponsePayload<ExtArgs>[]
|
|
51804
51881
|
questions: Prisma.$QuestionPayload<ExtArgs>[]
|
|
51805
51882
|
ongoing_evaluations: Prisma.$OngoingEvaluationPayload<ExtArgs>[]
|
|
51806
|
-
candidate_activity_logs: Prisma.$ActivityLogPayload<ExtArgs>[]
|
|
51807
51883
|
actor_activity_logs: Prisma.$ActivityLogPayload<ExtArgs>[]
|
|
51808
51884
|
actions: Prisma.$ActionPayload<ExtArgs>[]
|
|
51809
51885
|
calendly: Prisma.$CalendlyPayload<ExtArgs> | null
|
|
51810
51886
|
google: Prisma.$GooglePayload<ExtArgs> | null
|
|
51811
51887
|
fitChecks: Prisma.$FitCheckPayload<ExtArgs>[]
|
|
51888
|
+
activityLogs: Prisma.$ActivityLogPayload<ExtArgs>[]
|
|
51812
51889
|
}
|
|
51813
51890
|
scalars: $Extensions.GetPayloadResult<{
|
|
51814
51891
|
id: string
|
|
@@ -52258,12 +52335,12 @@ export namespace Prisma {
|
|
|
52258
52335
|
candidateResponses<T extends User$candidateResponsesArgs<ExtArgs> = {}>(args?: Subset<T, User$candidateResponsesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CandidateQuestionResponsePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52259
52336
|
questions<T extends User$questionsArgs<ExtArgs> = {}>(args?: Subset<T, User$questionsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$QuestionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52260
52337
|
ongoing_evaluations<T extends User$ongoing_evaluationsArgs<ExtArgs> = {}>(args?: Subset<T, User$ongoing_evaluationsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$OngoingEvaluationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52261
|
-
candidate_activity_logs<T extends User$candidate_activity_logsArgs<ExtArgs> = {}>(args?: Subset<T, User$candidate_activity_logsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ActivityLogPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52262
52338
|
actor_activity_logs<T extends User$actor_activity_logsArgs<ExtArgs> = {}>(args?: Subset<T, User$actor_activity_logsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ActivityLogPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52263
52339
|
actions<T extends User$actionsArgs<ExtArgs> = {}>(args?: Subset<T, User$actionsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ActionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52264
52340
|
calendly<T extends User$calendlyArgs<ExtArgs> = {}>(args?: Subset<T, User$calendlyArgs<ExtArgs>>): Prisma__CalendlyClient<$Result.GetResult<Prisma.$CalendlyPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
52265
52341
|
google<T extends User$googleArgs<ExtArgs> = {}>(args?: Subset<T, User$googleArgs<ExtArgs>>): Prisma__GoogleClient<$Result.GetResult<Prisma.$GooglePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
52266
52342
|
fitChecks<T extends User$fitChecksArgs<ExtArgs> = {}>(args?: Subset<T, User$fitChecksArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$FitCheckPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52343
|
+
activityLogs<T extends User$activityLogsArgs<ExtArgs> = {}>(args?: Subset<T, User$activityLogsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ActivityLogPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52267
52344
|
/**
|
|
52268
52345
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
52269
52346
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -53175,30 +53252,6 @@ export namespace Prisma {
|
|
|
53175
53252
|
distinct?: OngoingEvaluationScalarFieldEnum | OngoingEvaluationScalarFieldEnum[]
|
|
53176
53253
|
}
|
|
53177
53254
|
|
|
53178
|
-
/**
|
|
53179
|
-
* User.candidate_activity_logs
|
|
53180
|
-
*/
|
|
53181
|
-
export type User$candidate_activity_logsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
53182
|
-
/**
|
|
53183
|
-
* Select specific fields to fetch from the ActivityLog
|
|
53184
|
-
*/
|
|
53185
|
-
select?: ActivityLogSelect<ExtArgs> | null
|
|
53186
|
-
/**
|
|
53187
|
-
* Omit specific fields from the ActivityLog
|
|
53188
|
-
*/
|
|
53189
|
-
omit?: ActivityLogOmit<ExtArgs> | null
|
|
53190
|
-
/**
|
|
53191
|
-
* Choose, which related nodes to fetch as well
|
|
53192
|
-
*/
|
|
53193
|
-
include?: ActivityLogInclude<ExtArgs> | null
|
|
53194
|
-
where?: ActivityLogWhereInput
|
|
53195
|
-
orderBy?: ActivityLogOrderByWithRelationInput | ActivityLogOrderByWithRelationInput[]
|
|
53196
|
-
cursor?: ActivityLogWhereUniqueInput
|
|
53197
|
-
take?: number
|
|
53198
|
-
skip?: number
|
|
53199
|
-
distinct?: ActivityLogScalarFieldEnum | ActivityLogScalarFieldEnum[]
|
|
53200
|
-
}
|
|
53201
|
-
|
|
53202
53255
|
/**
|
|
53203
53256
|
* User.actor_activity_logs
|
|
53204
53257
|
*/
|
|
@@ -53309,6 +53362,30 @@ export namespace Prisma {
|
|
|
53309
53362
|
distinct?: FitCheckScalarFieldEnum | FitCheckScalarFieldEnum[]
|
|
53310
53363
|
}
|
|
53311
53364
|
|
|
53365
|
+
/**
|
|
53366
|
+
* User.activityLogs
|
|
53367
|
+
*/
|
|
53368
|
+
export type User$activityLogsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
53369
|
+
/**
|
|
53370
|
+
* Select specific fields to fetch from the ActivityLog
|
|
53371
|
+
*/
|
|
53372
|
+
select?: ActivityLogSelect<ExtArgs> | null
|
|
53373
|
+
/**
|
|
53374
|
+
* Omit specific fields from the ActivityLog
|
|
53375
|
+
*/
|
|
53376
|
+
omit?: ActivityLogOmit<ExtArgs> | null
|
|
53377
|
+
/**
|
|
53378
|
+
* Choose, which related nodes to fetch as well
|
|
53379
|
+
*/
|
|
53380
|
+
include?: ActivityLogInclude<ExtArgs> | null
|
|
53381
|
+
where?: ActivityLogWhereInput
|
|
53382
|
+
orderBy?: ActivityLogOrderByWithRelationInput | ActivityLogOrderByWithRelationInput[]
|
|
53383
|
+
cursor?: ActivityLogWhereUniqueInput
|
|
53384
|
+
take?: number
|
|
53385
|
+
skip?: number
|
|
53386
|
+
distinct?: ActivityLogScalarFieldEnum | ActivityLogScalarFieldEnum[]
|
|
53387
|
+
}
|
|
53388
|
+
|
|
53312
53389
|
/**
|
|
53313
53390
|
* User without action
|
|
53314
53391
|
*/
|
|
@@ -54547,14 +54624,15 @@ export namespace Prisma {
|
|
|
54547
54624
|
|
|
54548
54625
|
export const ActivityLogScalarFieldEnum: {
|
|
54549
54626
|
id: 'id',
|
|
54550
|
-
|
|
54627
|
+
application_id: 'application_id',
|
|
54551
54628
|
actor_id: 'actor_id',
|
|
54552
54629
|
actor_type: 'actor_type',
|
|
54553
54630
|
message: 'message',
|
|
54554
54631
|
timestamp: 'timestamp',
|
|
54555
54632
|
metadata: 'metadata',
|
|
54556
54633
|
created_at: 'created_at',
|
|
54557
|
-
is_active: 'is_active'
|
|
54634
|
+
is_active: 'is_active',
|
|
54635
|
+
userId: 'userId'
|
|
54558
54636
|
};
|
|
54559
54637
|
|
|
54560
54638
|
export type ActivityLogScalarFieldEnum = (typeof ActivityLogScalarFieldEnum)[keyof typeof ActivityLogScalarFieldEnum]
|
|
@@ -56063,7 +56141,7 @@ export namespace Prisma {
|
|
|
56063
56141
|
OR?: ActivityLogWhereInput[]
|
|
56064
56142
|
NOT?: ActivityLogWhereInput | ActivityLogWhereInput[]
|
|
56065
56143
|
id?: StringFilter<"ActivityLog"> | string
|
|
56066
|
-
|
|
56144
|
+
application_id?: StringFilter<"ActivityLog"> | string
|
|
56067
56145
|
actor_id?: StringNullableFilter<"ActivityLog"> | string | null
|
|
56068
56146
|
actor_type?: EnumActivityActorTypeFilter<"ActivityLog"> | $Enums.ActivityActorType
|
|
56069
56147
|
message?: StringFilter<"ActivityLog"> | string
|
|
@@ -56071,13 +56149,15 @@ export namespace Prisma {
|
|
|
56071
56149
|
metadata?: JsonNullableFilter<"ActivityLog">
|
|
56072
56150
|
created_at?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
56073
56151
|
is_active?: BoolFilter<"ActivityLog"> | boolean
|
|
56074
|
-
|
|
56152
|
+
userId?: StringNullableFilter<"ActivityLog"> | string | null
|
|
56075
56153
|
actor?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
56154
|
+
application?: XOR<ApplicationScalarRelationFilter, ApplicationWhereInput>
|
|
56155
|
+
user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
56076
56156
|
}
|
|
56077
56157
|
|
|
56078
56158
|
export type ActivityLogOrderByWithRelationInput = {
|
|
56079
56159
|
id?: SortOrder
|
|
56080
|
-
|
|
56160
|
+
application_id?: SortOrder
|
|
56081
56161
|
actor_id?: SortOrderInput | SortOrder
|
|
56082
56162
|
actor_type?: SortOrder
|
|
56083
56163
|
message?: SortOrder
|
|
@@ -56085,8 +56165,10 @@ export namespace Prisma {
|
|
|
56085
56165
|
metadata?: SortOrderInput | SortOrder
|
|
56086
56166
|
created_at?: SortOrder
|
|
56087
56167
|
is_active?: SortOrder
|
|
56088
|
-
|
|
56168
|
+
userId?: SortOrderInput | SortOrder
|
|
56089
56169
|
actor?: UserOrderByWithRelationInput
|
|
56170
|
+
application?: ApplicationOrderByWithRelationInput
|
|
56171
|
+
user?: UserOrderByWithRelationInput
|
|
56090
56172
|
}
|
|
56091
56173
|
|
|
56092
56174
|
export type ActivityLogWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -56094,7 +56176,7 @@ export namespace Prisma {
|
|
|
56094
56176
|
AND?: ActivityLogWhereInput | ActivityLogWhereInput[]
|
|
56095
56177
|
OR?: ActivityLogWhereInput[]
|
|
56096
56178
|
NOT?: ActivityLogWhereInput | ActivityLogWhereInput[]
|
|
56097
|
-
|
|
56179
|
+
application_id?: StringFilter<"ActivityLog"> | string
|
|
56098
56180
|
actor_id?: StringNullableFilter<"ActivityLog"> | string | null
|
|
56099
56181
|
actor_type?: EnumActivityActorTypeFilter<"ActivityLog"> | $Enums.ActivityActorType
|
|
56100
56182
|
message?: StringFilter<"ActivityLog"> | string
|
|
@@ -56102,13 +56184,15 @@ export namespace Prisma {
|
|
|
56102
56184
|
metadata?: JsonNullableFilter<"ActivityLog">
|
|
56103
56185
|
created_at?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
56104
56186
|
is_active?: BoolFilter<"ActivityLog"> | boolean
|
|
56105
|
-
|
|
56187
|
+
userId?: StringNullableFilter<"ActivityLog"> | string | null
|
|
56106
56188
|
actor?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
56189
|
+
application?: XOR<ApplicationScalarRelationFilter, ApplicationWhereInput>
|
|
56190
|
+
user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
56107
56191
|
}, "id">
|
|
56108
56192
|
|
|
56109
56193
|
export type ActivityLogOrderByWithAggregationInput = {
|
|
56110
56194
|
id?: SortOrder
|
|
56111
|
-
|
|
56195
|
+
application_id?: SortOrder
|
|
56112
56196
|
actor_id?: SortOrderInput | SortOrder
|
|
56113
56197
|
actor_type?: SortOrder
|
|
56114
56198
|
message?: SortOrder
|
|
@@ -56116,6 +56200,7 @@ export namespace Prisma {
|
|
|
56116
56200
|
metadata?: SortOrderInput | SortOrder
|
|
56117
56201
|
created_at?: SortOrder
|
|
56118
56202
|
is_active?: SortOrder
|
|
56203
|
+
userId?: SortOrderInput | SortOrder
|
|
56119
56204
|
_count?: ActivityLogCountOrderByAggregateInput
|
|
56120
56205
|
_max?: ActivityLogMaxOrderByAggregateInput
|
|
56121
56206
|
_min?: ActivityLogMinOrderByAggregateInput
|
|
@@ -56126,7 +56211,7 @@ export namespace Prisma {
|
|
|
56126
56211
|
OR?: ActivityLogScalarWhereWithAggregatesInput[]
|
|
56127
56212
|
NOT?: ActivityLogScalarWhereWithAggregatesInput | ActivityLogScalarWhereWithAggregatesInput[]
|
|
56128
56213
|
id?: StringWithAggregatesFilter<"ActivityLog"> | string
|
|
56129
|
-
|
|
56214
|
+
application_id?: StringWithAggregatesFilter<"ActivityLog"> | string
|
|
56130
56215
|
actor_id?: StringNullableWithAggregatesFilter<"ActivityLog"> | string | null
|
|
56131
56216
|
actor_type?: EnumActivityActorTypeWithAggregatesFilter<"ActivityLog"> | $Enums.ActivityActorType
|
|
56132
56217
|
message?: StringWithAggregatesFilter<"ActivityLog"> | string
|
|
@@ -56134,6 +56219,7 @@ export namespace Prisma {
|
|
|
56134
56219
|
metadata?: JsonNullableWithAggregatesFilter<"ActivityLog">
|
|
56135
56220
|
created_at?: DateTimeWithAggregatesFilter<"ActivityLog"> | Date | string
|
|
56136
56221
|
is_active?: BoolWithAggregatesFilter<"ActivityLog"> | boolean
|
|
56222
|
+
userId?: StringNullableWithAggregatesFilter<"ActivityLog"> | string | null
|
|
56137
56223
|
}
|
|
56138
56224
|
|
|
56139
56225
|
export type ApplicationWhereInput = {
|
|
@@ -56165,6 +56251,7 @@ export namespace Prisma {
|
|
|
56165
56251
|
fit_check?: XOR<FitCheckNullableScalarRelationFilter, FitCheckWhereInput> | null
|
|
56166
56252
|
interviews?: InterviewListRelationFilter
|
|
56167
56253
|
ongoing_evaluations?: OngoingEvaluationListRelationFilter
|
|
56254
|
+
activity_logs?: ActivityLogListRelationFilter
|
|
56168
56255
|
}
|
|
56169
56256
|
|
|
56170
56257
|
export type ApplicationOrderByWithRelationInput = {
|
|
@@ -56193,6 +56280,7 @@ export namespace Prisma {
|
|
|
56193
56280
|
fit_check?: FitCheckOrderByWithRelationInput
|
|
56194
56281
|
interviews?: InterviewOrderByRelationAggregateInput
|
|
56195
56282
|
ongoing_evaluations?: OngoingEvaluationOrderByRelationAggregateInput
|
|
56283
|
+
activity_logs?: ActivityLogOrderByRelationAggregateInput
|
|
56196
56284
|
}
|
|
56197
56285
|
|
|
56198
56286
|
export type ApplicationWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -56225,6 +56313,7 @@ export namespace Prisma {
|
|
|
56225
56313
|
fit_check?: XOR<FitCheckNullableScalarRelationFilter, FitCheckWhereInput> | null
|
|
56226
56314
|
interviews?: InterviewListRelationFilter
|
|
56227
56315
|
ongoing_evaluations?: OngoingEvaluationListRelationFilter
|
|
56316
|
+
activity_logs?: ActivityLogListRelationFilter
|
|
56228
56317
|
}, "id" | "fit_check_id" | "candidate_id_job_description_id">
|
|
56229
56318
|
|
|
56230
56319
|
export type ApplicationOrderByWithAggregationInput = {
|
|
@@ -59787,12 +59876,12 @@ export namespace Prisma {
|
|
|
59787
59876
|
candidateResponses?: CandidateQuestionResponseListRelationFilter
|
|
59788
59877
|
questions?: QuestionListRelationFilter
|
|
59789
59878
|
ongoing_evaluations?: OngoingEvaluationListRelationFilter
|
|
59790
|
-
candidate_activity_logs?: ActivityLogListRelationFilter
|
|
59791
59879
|
actor_activity_logs?: ActivityLogListRelationFilter
|
|
59792
59880
|
actions?: ActionListRelationFilter
|
|
59793
59881
|
calendly?: XOR<CalendlyNullableScalarRelationFilter, CalendlyWhereInput> | null
|
|
59794
59882
|
google?: XOR<GoogleNullableScalarRelationFilter, GoogleWhereInput> | null
|
|
59795
59883
|
fitChecks?: FitCheckListRelationFilter
|
|
59884
|
+
activityLogs?: ActivityLogListRelationFilter
|
|
59796
59885
|
}
|
|
59797
59886
|
|
|
59798
59887
|
export type UserOrderByWithRelationInput = {
|
|
@@ -59849,12 +59938,12 @@ export namespace Prisma {
|
|
|
59849
59938
|
candidateResponses?: CandidateQuestionResponseOrderByRelationAggregateInput
|
|
59850
59939
|
questions?: QuestionOrderByRelationAggregateInput
|
|
59851
59940
|
ongoing_evaluations?: OngoingEvaluationOrderByRelationAggregateInput
|
|
59852
|
-
candidate_activity_logs?: ActivityLogOrderByRelationAggregateInput
|
|
59853
59941
|
actor_activity_logs?: ActivityLogOrderByRelationAggregateInput
|
|
59854
59942
|
actions?: ActionOrderByRelationAggregateInput
|
|
59855
59943
|
calendly?: CalendlyOrderByWithRelationInput
|
|
59856
59944
|
google?: GoogleOrderByWithRelationInput
|
|
59857
59945
|
fitChecks?: FitCheckOrderByRelationAggregateInput
|
|
59946
|
+
activityLogs?: ActivityLogOrderByRelationAggregateInput
|
|
59858
59947
|
}
|
|
59859
59948
|
|
|
59860
59949
|
export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -59914,12 +60003,12 @@ export namespace Prisma {
|
|
|
59914
60003
|
candidateResponses?: CandidateQuestionResponseListRelationFilter
|
|
59915
60004
|
questions?: QuestionListRelationFilter
|
|
59916
60005
|
ongoing_evaluations?: OngoingEvaluationListRelationFilter
|
|
59917
|
-
candidate_activity_logs?: ActivityLogListRelationFilter
|
|
59918
60006
|
actor_activity_logs?: ActivityLogListRelationFilter
|
|
59919
60007
|
actions?: ActionListRelationFilter
|
|
59920
60008
|
calendly?: XOR<CalendlyNullableScalarRelationFilter, CalendlyWhereInput> | null
|
|
59921
60009
|
google?: XOR<GoogleNullableScalarRelationFilter, GoogleWhereInput> | null
|
|
59922
60010
|
fitChecks?: FitCheckListRelationFilter
|
|
60011
|
+
activityLogs?: ActivityLogListRelationFilter
|
|
59923
60012
|
}, "id" | "email" | "google_id" | "permission_id">
|
|
59924
60013
|
|
|
59925
60014
|
export type UserOrderByWithAggregationInput = {
|
|
@@ -60389,13 +60478,14 @@ export namespace Prisma {
|
|
|
60389
60478
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60390
60479
|
created_at?: Date | string
|
|
60391
60480
|
is_active?: boolean
|
|
60392
|
-
candidate: UserCreateNestedOneWithoutCandidate_activity_logsInput
|
|
60393
60481
|
actor?: UserCreateNestedOneWithoutActor_activity_logsInput
|
|
60482
|
+
application: ApplicationCreateNestedOneWithoutActivity_logsInput
|
|
60483
|
+
user?: UserCreateNestedOneWithoutActivityLogsInput
|
|
60394
60484
|
}
|
|
60395
60485
|
|
|
60396
60486
|
export type ActivityLogUncheckedCreateInput = {
|
|
60397
60487
|
id?: string
|
|
60398
|
-
|
|
60488
|
+
application_id: string
|
|
60399
60489
|
actor_id?: string | null
|
|
60400
60490
|
actor_type?: $Enums.ActivityActorType
|
|
60401
60491
|
message: string
|
|
@@ -60403,6 +60493,7 @@ export namespace Prisma {
|
|
|
60403
60493
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60404
60494
|
created_at?: Date | string
|
|
60405
60495
|
is_active?: boolean
|
|
60496
|
+
userId?: string | null
|
|
60406
60497
|
}
|
|
60407
60498
|
|
|
60408
60499
|
export type ActivityLogUpdateInput = {
|
|
@@ -60413,13 +60504,14 @@ export namespace Prisma {
|
|
|
60413
60504
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60414
60505
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
60415
60506
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
60416
|
-
candidate?: UserUpdateOneRequiredWithoutCandidate_activity_logsNestedInput
|
|
60417
60507
|
actor?: UserUpdateOneWithoutActor_activity_logsNestedInput
|
|
60508
|
+
application?: ApplicationUpdateOneRequiredWithoutActivity_logsNestedInput
|
|
60509
|
+
user?: UserUpdateOneWithoutActivityLogsNestedInput
|
|
60418
60510
|
}
|
|
60419
60511
|
|
|
60420
60512
|
export type ActivityLogUncheckedUpdateInput = {
|
|
60421
60513
|
id?: StringFieldUpdateOperationsInput | string
|
|
60422
|
-
|
|
60514
|
+
application_id?: StringFieldUpdateOperationsInput | string
|
|
60423
60515
|
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60424
60516
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
60425
60517
|
message?: StringFieldUpdateOperationsInput | string
|
|
@@ -60427,11 +60519,12 @@ export namespace Prisma {
|
|
|
60427
60519
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60428
60520
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
60429
60521
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
60522
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60430
60523
|
}
|
|
60431
60524
|
|
|
60432
60525
|
export type ActivityLogCreateManyInput = {
|
|
60433
60526
|
id?: string
|
|
60434
|
-
|
|
60527
|
+
application_id: string
|
|
60435
60528
|
actor_id?: string | null
|
|
60436
60529
|
actor_type?: $Enums.ActivityActorType
|
|
60437
60530
|
message: string
|
|
@@ -60439,6 +60532,7 @@ export namespace Prisma {
|
|
|
60439
60532
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60440
60533
|
created_at?: Date | string
|
|
60441
60534
|
is_active?: boolean
|
|
60535
|
+
userId?: string | null
|
|
60442
60536
|
}
|
|
60443
60537
|
|
|
60444
60538
|
export type ActivityLogUpdateManyMutationInput = {
|
|
@@ -60453,7 +60547,7 @@ export namespace Prisma {
|
|
|
60453
60547
|
|
|
60454
60548
|
export type ActivityLogUncheckedUpdateManyInput = {
|
|
60455
60549
|
id?: StringFieldUpdateOperationsInput | string
|
|
60456
|
-
|
|
60550
|
+
application_id?: StringFieldUpdateOperationsInput | string
|
|
60457
60551
|
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60458
60552
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
60459
60553
|
message?: StringFieldUpdateOperationsInput | string
|
|
@@ -60461,6 +60555,7 @@ export namespace Prisma {
|
|
|
60461
60555
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60462
60556
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
60463
60557
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
60558
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60464
60559
|
}
|
|
60465
60560
|
|
|
60466
60561
|
export type ApplicationCreateInput = {
|
|
@@ -60483,6 +60578,7 @@ export namespace Prisma {
|
|
|
60483
60578
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
60484
60579
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
60485
60580
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
60581
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
60486
60582
|
}
|
|
60487
60583
|
|
|
60488
60584
|
export type ApplicationUncheckedCreateInput = {
|
|
@@ -60505,6 +60601,7 @@ export namespace Prisma {
|
|
|
60505
60601
|
is_active?: boolean
|
|
60506
60602
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
60507
60603
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
60604
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
60508
60605
|
}
|
|
60509
60606
|
|
|
60510
60607
|
export type ApplicationUpdateInput = {
|
|
@@ -60527,6 +60624,7 @@ export namespace Prisma {
|
|
|
60527
60624
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
60528
60625
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
60529
60626
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
60627
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
60530
60628
|
}
|
|
60531
60629
|
|
|
60532
60630
|
export type ApplicationUncheckedUpdateInput = {
|
|
@@ -60549,6 +60647,7 @@ export namespace Prisma {
|
|
|
60549
60647
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
60550
60648
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
60551
60649
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
60650
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
60552
60651
|
}
|
|
60553
60652
|
|
|
60554
60653
|
export type ApplicationCreateManyInput = {
|
|
@@ -64555,12 +64654,12 @@ export namespace Prisma {
|
|
|
64555
64654
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
64556
64655
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
64557
64656
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
64558
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
64559
64657
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
64560
64658
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
64561
64659
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
64562
64660
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
64563
64661
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
64662
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
64564
64663
|
}
|
|
64565
64664
|
|
|
64566
64665
|
export type UserUncheckedCreateInput = {
|
|
@@ -64614,12 +64713,12 @@ export namespace Prisma {
|
|
|
64614
64713
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
64615
64714
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
64616
64715
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
64617
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
64618
64716
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
64619
64717
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
64620
64718
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
64621
64719
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
64622
64720
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
64721
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
64623
64722
|
}
|
|
64624
64723
|
|
|
64625
64724
|
export type UserUpdateInput = {
|
|
@@ -64673,12 +64772,12 @@ export namespace Prisma {
|
|
|
64673
64772
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
64674
64773
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
64675
64774
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
64676
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
64677
64775
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
64678
64776
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
64679
64777
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
64680
64778
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
64681
64779
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
64780
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
64682
64781
|
}
|
|
64683
64782
|
|
|
64684
64783
|
export type UserUncheckedUpdateInput = {
|
|
@@ -64732,12 +64831,12 @@ export namespace Prisma {
|
|
|
64732
64831
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
64733
64832
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
64734
64833
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
64735
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
64736
64834
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
64737
64835
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
64738
64836
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
64739
64837
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
64740
64838
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
64839
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
64741
64840
|
}
|
|
64742
64841
|
|
|
64743
64842
|
export type UserCreateManyInput = {
|
|
@@ -65351,9 +65450,14 @@ export namespace Prisma {
|
|
|
65351
65450
|
isNot?: UserWhereInput | null
|
|
65352
65451
|
}
|
|
65353
65452
|
|
|
65453
|
+
export type ApplicationScalarRelationFilter = {
|
|
65454
|
+
is?: ApplicationWhereInput
|
|
65455
|
+
isNot?: ApplicationWhereInput
|
|
65456
|
+
}
|
|
65457
|
+
|
|
65354
65458
|
export type ActivityLogCountOrderByAggregateInput = {
|
|
65355
65459
|
id?: SortOrder
|
|
65356
|
-
|
|
65460
|
+
application_id?: SortOrder
|
|
65357
65461
|
actor_id?: SortOrder
|
|
65358
65462
|
actor_type?: SortOrder
|
|
65359
65463
|
message?: SortOrder
|
|
@@ -65361,28 +65465,31 @@ export namespace Prisma {
|
|
|
65361
65465
|
metadata?: SortOrder
|
|
65362
65466
|
created_at?: SortOrder
|
|
65363
65467
|
is_active?: SortOrder
|
|
65468
|
+
userId?: SortOrder
|
|
65364
65469
|
}
|
|
65365
65470
|
|
|
65366
65471
|
export type ActivityLogMaxOrderByAggregateInput = {
|
|
65367
65472
|
id?: SortOrder
|
|
65368
|
-
|
|
65473
|
+
application_id?: SortOrder
|
|
65369
65474
|
actor_id?: SortOrder
|
|
65370
65475
|
actor_type?: SortOrder
|
|
65371
65476
|
message?: SortOrder
|
|
65372
65477
|
timestamp?: SortOrder
|
|
65373
65478
|
created_at?: SortOrder
|
|
65374
65479
|
is_active?: SortOrder
|
|
65480
|
+
userId?: SortOrder
|
|
65375
65481
|
}
|
|
65376
65482
|
|
|
65377
65483
|
export type ActivityLogMinOrderByAggregateInput = {
|
|
65378
65484
|
id?: SortOrder
|
|
65379
|
-
|
|
65485
|
+
application_id?: SortOrder
|
|
65380
65486
|
actor_id?: SortOrder
|
|
65381
65487
|
actor_type?: SortOrder
|
|
65382
65488
|
message?: SortOrder
|
|
65383
65489
|
timestamp?: SortOrder
|
|
65384
65490
|
created_at?: SortOrder
|
|
65385
65491
|
is_active?: SortOrder
|
|
65492
|
+
userId?: SortOrder
|
|
65386
65493
|
}
|
|
65387
65494
|
|
|
65388
65495
|
export type EnumActivityActorTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -65478,6 +65585,12 @@ export namespace Prisma {
|
|
|
65478
65585
|
none?: OngoingEvaluationWhereInput
|
|
65479
65586
|
}
|
|
65480
65587
|
|
|
65588
|
+
export type ActivityLogListRelationFilter = {
|
|
65589
|
+
every?: ActivityLogWhereInput
|
|
65590
|
+
some?: ActivityLogWhereInput
|
|
65591
|
+
none?: ActivityLogWhereInput
|
|
65592
|
+
}
|
|
65593
|
+
|
|
65481
65594
|
export type InterviewOrderByRelationAggregateInput = {
|
|
65482
65595
|
_count?: SortOrder
|
|
65483
65596
|
}
|
|
@@ -65486,6 +65599,10 @@ export namespace Prisma {
|
|
|
65486
65599
|
_count?: SortOrder
|
|
65487
65600
|
}
|
|
65488
65601
|
|
|
65602
|
+
export type ActivityLogOrderByRelationAggregateInput = {
|
|
65603
|
+
_count?: SortOrder
|
|
65604
|
+
}
|
|
65605
|
+
|
|
65489
65606
|
export type ApplicationCandidate_idJob_description_idCompoundUniqueInput = {
|
|
65490
65607
|
candidate_id: string
|
|
65491
65608
|
job_description_id: string
|
|
@@ -67304,11 +67421,6 @@ export namespace Prisma {
|
|
|
67304
67421
|
isNot?: JobDescriptionWhereInput | null
|
|
67305
67422
|
}
|
|
67306
67423
|
|
|
67307
|
-
export type ApplicationScalarRelationFilter = {
|
|
67308
|
-
is?: ApplicationWhereInput
|
|
67309
|
-
isNot?: ApplicationWhereInput
|
|
67310
|
-
}
|
|
67311
|
-
|
|
67312
67424
|
export type EvaluationPlanScalarRelationFilter = {
|
|
67313
67425
|
is?: EvaluationPlanWhereInput
|
|
67314
67426
|
isNot?: EvaluationPlanWhereInput
|
|
@@ -68209,12 +68321,6 @@ export namespace Prisma {
|
|
|
68209
68321
|
none?: MessageWhereInput
|
|
68210
68322
|
}
|
|
68211
68323
|
|
|
68212
|
-
export type ActivityLogListRelationFilter = {
|
|
68213
|
-
every?: ActivityLogWhereInput
|
|
68214
|
-
some?: ActivityLogWhereInput
|
|
68215
|
-
none?: ActivityLogWhereInput
|
|
68216
|
-
}
|
|
68217
|
-
|
|
68218
68324
|
export type CalendlyNullableScalarRelationFilter = {
|
|
68219
68325
|
is?: CalendlyWhereInput | null
|
|
68220
68326
|
isNot?: CalendlyWhereInput | null
|
|
@@ -68229,46 +68335,42 @@ export namespace Prisma {
|
|
|
68229
68335
|
_count?: SortOrder
|
|
68230
68336
|
}
|
|
68231
68337
|
|
|
68232
|
-
export type
|
|
68233
|
-
|
|
68338
|
+
export type UserCountOrderByAggregateInput = {
|
|
68339
|
+
id?: SortOrder
|
|
68340
|
+
email?: SortOrder
|
|
68341
|
+
password?: SortOrder
|
|
68342
|
+
role_id?: SortOrder
|
|
68343
|
+
google_id?: SortOrder
|
|
68344
|
+
refresh_token?: SortOrder
|
|
68345
|
+
created_at?: SortOrder
|
|
68346
|
+
updated_at?: SortOrder
|
|
68347
|
+
created_by?: SortOrder
|
|
68348
|
+
updated_by?: SortOrder
|
|
68349
|
+
is_active?: SortOrder
|
|
68350
|
+
is_self_registered?: SortOrder
|
|
68351
|
+
permission_id?: SortOrder
|
|
68352
|
+
organisation_id?: SortOrder
|
|
68353
|
+
profile_created?: SortOrder
|
|
68354
|
+
first_login_status?: SortOrder
|
|
68355
|
+
name?: SortOrder
|
|
68356
|
+
phone?: SortOrder
|
|
68357
|
+
description?: SortOrder
|
|
68358
|
+
date_of_birth?: SortOrder
|
|
68359
|
+
designation?: SortOrder
|
|
68360
|
+
location?: SortOrder
|
|
68361
|
+
salary?: SortOrder
|
|
68362
|
+
work_experience?: SortOrder
|
|
68363
|
+
education?: SortOrder
|
|
68364
|
+
skills?: SortOrder
|
|
68365
|
+
notice_period?: SortOrder
|
|
68366
|
+
preferred_work_mode?: SortOrder
|
|
68367
|
+
gender?: SortOrder
|
|
68368
|
+
ethnicity?: SortOrder
|
|
68369
|
+
veteran_status?: SortOrder
|
|
68370
|
+
disability_status?: SortOrder
|
|
68234
68371
|
}
|
|
68235
68372
|
|
|
68236
|
-
export type
|
|
68237
|
-
id?: SortOrder
|
|
68238
|
-
email?: SortOrder
|
|
68239
|
-
password?: SortOrder
|
|
68240
|
-
role_id?: SortOrder
|
|
68241
|
-
google_id?: SortOrder
|
|
68242
|
-
refresh_token?: SortOrder
|
|
68243
|
-
created_at?: SortOrder
|
|
68244
|
-
updated_at?: SortOrder
|
|
68245
|
-
created_by?: SortOrder
|
|
68246
|
-
updated_by?: SortOrder
|
|
68247
|
-
is_active?: SortOrder
|
|
68248
|
-
is_self_registered?: SortOrder
|
|
68249
|
-
permission_id?: SortOrder
|
|
68250
|
-
organisation_id?: SortOrder
|
|
68251
|
-
profile_created?: SortOrder
|
|
68252
|
-
first_login_status?: SortOrder
|
|
68253
|
-
name?: SortOrder
|
|
68254
|
-
phone?: SortOrder
|
|
68255
|
-
description?: SortOrder
|
|
68256
|
-
date_of_birth?: SortOrder
|
|
68257
|
-
designation?: SortOrder
|
|
68258
|
-
location?: SortOrder
|
|
68259
|
-
salary?: SortOrder
|
|
68260
|
-
work_experience?: SortOrder
|
|
68261
|
-
education?: SortOrder
|
|
68262
|
-
skills?: SortOrder
|
|
68263
|
-
notice_period?: SortOrder
|
|
68264
|
-
preferred_work_mode?: SortOrder
|
|
68265
|
-
gender?: SortOrder
|
|
68266
|
-
ethnicity?: SortOrder
|
|
68267
|
-
veteran_status?: SortOrder
|
|
68268
|
-
disability_status?: SortOrder
|
|
68269
|
-
}
|
|
68270
|
-
|
|
68271
|
-
export type UserMaxOrderByAggregateInput = {
|
|
68373
|
+
export type UserMaxOrderByAggregateInput = {
|
|
68272
68374
|
id?: SortOrder
|
|
68273
68375
|
email?: SortOrder
|
|
68274
68376
|
password?: SortOrder
|
|
@@ -68562,28 +68664,26 @@ export namespace Prisma {
|
|
|
68562
68664
|
update?: XOR<XOR<OrganisationUpdateToOneWithWhereWithoutActionsInput, OrganisationUpdateWithoutActionsInput>, OrganisationUncheckedUpdateWithoutActionsInput>
|
|
68563
68665
|
}
|
|
68564
68666
|
|
|
68565
|
-
export type UserCreateNestedOneWithoutCandidate_activity_logsInput = {
|
|
68566
|
-
create?: XOR<UserCreateWithoutCandidate_activity_logsInput, UserUncheckedCreateWithoutCandidate_activity_logsInput>
|
|
68567
|
-
connectOrCreate?: UserCreateOrConnectWithoutCandidate_activity_logsInput
|
|
68568
|
-
connect?: UserWhereUniqueInput
|
|
68569
|
-
}
|
|
68570
|
-
|
|
68571
68667
|
export type UserCreateNestedOneWithoutActor_activity_logsInput = {
|
|
68572
68668
|
create?: XOR<UserCreateWithoutActor_activity_logsInput, UserUncheckedCreateWithoutActor_activity_logsInput>
|
|
68573
68669
|
connectOrCreate?: UserCreateOrConnectWithoutActor_activity_logsInput
|
|
68574
68670
|
connect?: UserWhereUniqueInput
|
|
68575
68671
|
}
|
|
68576
68672
|
|
|
68577
|
-
export type
|
|
68578
|
-
|
|
68673
|
+
export type ApplicationCreateNestedOneWithoutActivity_logsInput = {
|
|
68674
|
+
create?: XOR<ApplicationCreateWithoutActivity_logsInput, ApplicationUncheckedCreateWithoutActivity_logsInput>
|
|
68675
|
+
connectOrCreate?: ApplicationCreateOrConnectWithoutActivity_logsInput
|
|
68676
|
+
connect?: ApplicationWhereUniqueInput
|
|
68579
68677
|
}
|
|
68580
68678
|
|
|
68581
|
-
export type
|
|
68582
|
-
create?: XOR<
|
|
68583
|
-
connectOrCreate?:
|
|
68584
|
-
upsert?: UserUpsertWithoutCandidate_activity_logsInput
|
|
68679
|
+
export type UserCreateNestedOneWithoutActivityLogsInput = {
|
|
68680
|
+
create?: XOR<UserCreateWithoutActivityLogsInput, UserUncheckedCreateWithoutActivityLogsInput>
|
|
68681
|
+
connectOrCreate?: UserCreateOrConnectWithoutActivityLogsInput
|
|
68585
68682
|
connect?: UserWhereUniqueInput
|
|
68586
|
-
|
|
68683
|
+
}
|
|
68684
|
+
|
|
68685
|
+
export type EnumActivityActorTypeFieldUpdateOperationsInput = {
|
|
68686
|
+
set?: $Enums.ActivityActorType
|
|
68587
68687
|
}
|
|
68588
68688
|
|
|
68589
68689
|
export type UserUpdateOneWithoutActor_activity_logsNestedInput = {
|
|
@@ -68596,6 +68696,24 @@ export namespace Prisma {
|
|
|
68596
68696
|
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutActor_activity_logsInput, UserUpdateWithoutActor_activity_logsInput>, UserUncheckedUpdateWithoutActor_activity_logsInput>
|
|
68597
68697
|
}
|
|
68598
68698
|
|
|
68699
|
+
export type ApplicationUpdateOneRequiredWithoutActivity_logsNestedInput = {
|
|
68700
|
+
create?: XOR<ApplicationCreateWithoutActivity_logsInput, ApplicationUncheckedCreateWithoutActivity_logsInput>
|
|
68701
|
+
connectOrCreate?: ApplicationCreateOrConnectWithoutActivity_logsInput
|
|
68702
|
+
upsert?: ApplicationUpsertWithoutActivity_logsInput
|
|
68703
|
+
connect?: ApplicationWhereUniqueInput
|
|
68704
|
+
update?: XOR<XOR<ApplicationUpdateToOneWithWhereWithoutActivity_logsInput, ApplicationUpdateWithoutActivity_logsInput>, ApplicationUncheckedUpdateWithoutActivity_logsInput>
|
|
68705
|
+
}
|
|
68706
|
+
|
|
68707
|
+
export type UserUpdateOneWithoutActivityLogsNestedInput = {
|
|
68708
|
+
create?: XOR<UserCreateWithoutActivityLogsInput, UserUncheckedCreateWithoutActivityLogsInput>
|
|
68709
|
+
connectOrCreate?: UserCreateOrConnectWithoutActivityLogsInput
|
|
68710
|
+
upsert?: UserUpsertWithoutActivityLogsInput
|
|
68711
|
+
disconnect?: UserWhereInput | boolean
|
|
68712
|
+
delete?: UserWhereInput | boolean
|
|
68713
|
+
connect?: UserWhereUniqueInput
|
|
68714
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutActivityLogsInput, UserUpdateWithoutActivityLogsInput>, UserUncheckedUpdateWithoutActivityLogsInput>
|
|
68715
|
+
}
|
|
68716
|
+
|
|
68599
68717
|
export type EvaluationPlanCreateNestedOneWithoutApplicationsInput = {
|
|
68600
68718
|
create?: XOR<EvaluationPlanCreateWithoutApplicationsInput, EvaluationPlanUncheckedCreateWithoutApplicationsInput>
|
|
68601
68719
|
connectOrCreate?: EvaluationPlanCreateOrConnectWithoutApplicationsInput
|
|
@@ -68646,6 +68764,13 @@ export namespace Prisma {
|
|
|
68646
68764
|
connect?: OngoingEvaluationWhereUniqueInput | OngoingEvaluationWhereUniqueInput[]
|
|
68647
68765
|
}
|
|
68648
68766
|
|
|
68767
|
+
export type ActivityLogCreateNestedManyWithoutApplicationInput = {
|
|
68768
|
+
create?: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput> | ActivityLogCreateWithoutApplicationInput[] | ActivityLogUncheckedCreateWithoutApplicationInput[]
|
|
68769
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutApplicationInput | ActivityLogCreateOrConnectWithoutApplicationInput[]
|
|
68770
|
+
createMany?: ActivityLogCreateManyApplicationInputEnvelope
|
|
68771
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68772
|
+
}
|
|
68773
|
+
|
|
68649
68774
|
export type InterviewUncheckedCreateNestedManyWithoutApplicationInput = {
|
|
68650
68775
|
create?: XOR<InterviewCreateWithoutApplicationInput, InterviewUncheckedCreateWithoutApplicationInput> | InterviewCreateWithoutApplicationInput[] | InterviewUncheckedCreateWithoutApplicationInput[]
|
|
68651
68776
|
connectOrCreate?: InterviewCreateOrConnectWithoutApplicationInput | InterviewCreateOrConnectWithoutApplicationInput[]
|
|
@@ -68660,6 +68785,13 @@ export namespace Prisma {
|
|
|
68660
68785
|
connect?: OngoingEvaluationWhereUniqueInput | OngoingEvaluationWhereUniqueInput[]
|
|
68661
68786
|
}
|
|
68662
68787
|
|
|
68788
|
+
export type ActivityLogUncheckedCreateNestedManyWithoutApplicationInput = {
|
|
68789
|
+
create?: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput> | ActivityLogCreateWithoutApplicationInput[] | ActivityLogUncheckedCreateWithoutApplicationInput[]
|
|
68790
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutApplicationInput | ActivityLogCreateOrConnectWithoutApplicationInput[]
|
|
68791
|
+
createMany?: ActivityLogCreateManyApplicationInputEnvelope
|
|
68792
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68793
|
+
}
|
|
68794
|
+
|
|
68663
68795
|
export type EnumApplicationStatusFieldUpdateOperationsInput = {
|
|
68664
68796
|
set?: $Enums.ApplicationStatus
|
|
68665
68797
|
}
|
|
@@ -68756,6 +68888,20 @@ export namespace Prisma {
|
|
|
68756
68888
|
deleteMany?: OngoingEvaluationScalarWhereInput | OngoingEvaluationScalarWhereInput[]
|
|
68757
68889
|
}
|
|
68758
68890
|
|
|
68891
|
+
export type ActivityLogUpdateManyWithoutApplicationNestedInput = {
|
|
68892
|
+
create?: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput> | ActivityLogCreateWithoutApplicationInput[] | ActivityLogUncheckedCreateWithoutApplicationInput[]
|
|
68893
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutApplicationInput | ActivityLogCreateOrConnectWithoutApplicationInput[]
|
|
68894
|
+
upsert?: ActivityLogUpsertWithWhereUniqueWithoutApplicationInput | ActivityLogUpsertWithWhereUniqueWithoutApplicationInput[]
|
|
68895
|
+
createMany?: ActivityLogCreateManyApplicationInputEnvelope
|
|
68896
|
+
set?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68897
|
+
disconnect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68898
|
+
delete?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68899
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68900
|
+
update?: ActivityLogUpdateWithWhereUniqueWithoutApplicationInput | ActivityLogUpdateWithWhereUniqueWithoutApplicationInput[]
|
|
68901
|
+
updateMany?: ActivityLogUpdateManyWithWhereWithoutApplicationInput | ActivityLogUpdateManyWithWhereWithoutApplicationInput[]
|
|
68902
|
+
deleteMany?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
68903
|
+
}
|
|
68904
|
+
|
|
68759
68905
|
export type InterviewUncheckedUpdateManyWithoutApplicationNestedInput = {
|
|
68760
68906
|
create?: XOR<InterviewCreateWithoutApplicationInput, InterviewUncheckedCreateWithoutApplicationInput> | InterviewCreateWithoutApplicationInput[] | InterviewUncheckedCreateWithoutApplicationInput[]
|
|
68761
68907
|
connectOrCreate?: InterviewCreateOrConnectWithoutApplicationInput | InterviewCreateOrConnectWithoutApplicationInput[]
|
|
@@ -68784,6 +68930,20 @@ export namespace Prisma {
|
|
|
68784
68930
|
deleteMany?: OngoingEvaluationScalarWhereInput | OngoingEvaluationScalarWhereInput[]
|
|
68785
68931
|
}
|
|
68786
68932
|
|
|
68933
|
+
export type ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput = {
|
|
68934
|
+
create?: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput> | ActivityLogCreateWithoutApplicationInput[] | ActivityLogUncheckedCreateWithoutApplicationInput[]
|
|
68935
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutApplicationInput | ActivityLogCreateOrConnectWithoutApplicationInput[]
|
|
68936
|
+
upsert?: ActivityLogUpsertWithWhereUniqueWithoutApplicationInput | ActivityLogUpsertWithWhereUniqueWithoutApplicationInput[]
|
|
68937
|
+
createMany?: ActivityLogCreateManyApplicationInputEnvelope
|
|
68938
|
+
set?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68939
|
+
disconnect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68940
|
+
delete?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68941
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68942
|
+
update?: ActivityLogUpdateWithWhereUniqueWithoutApplicationInput | ActivityLogUpdateWithWhereUniqueWithoutApplicationInput[]
|
|
68943
|
+
updateMany?: ActivityLogUpdateManyWithWhereWithoutApplicationInput | ActivityLogUpdateManyWithWhereWithoutApplicationInput[]
|
|
68944
|
+
deleteMany?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
68945
|
+
}
|
|
68946
|
+
|
|
68787
68947
|
export type JobDescriptionCreateNestedOneWithoutApprovalsInput = {
|
|
68788
68948
|
create?: XOR<JobDescriptionCreateWithoutApprovalsInput, JobDescriptionUncheckedCreateWithoutApprovalsInput>
|
|
68789
68949
|
connectOrCreate?: JobDescriptionCreateOrConnectWithoutApprovalsInput
|
|
@@ -72718,13 +72878,6 @@ export namespace Prisma {
|
|
|
72718
72878
|
connect?: OngoingEvaluationWhereUniqueInput | OngoingEvaluationWhereUniqueInput[]
|
|
72719
72879
|
}
|
|
72720
72880
|
|
|
72721
|
-
export type ActivityLogCreateNestedManyWithoutCandidateInput = {
|
|
72722
|
-
create?: XOR<ActivityLogCreateWithoutCandidateInput, ActivityLogUncheckedCreateWithoutCandidateInput> | ActivityLogCreateWithoutCandidateInput[] | ActivityLogUncheckedCreateWithoutCandidateInput[]
|
|
72723
|
-
connectOrCreate?: ActivityLogCreateOrConnectWithoutCandidateInput | ActivityLogCreateOrConnectWithoutCandidateInput[]
|
|
72724
|
-
createMany?: ActivityLogCreateManyCandidateInputEnvelope
|
|
72725
|
-
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
72726
|
-
}
|
|
72727
|
-
|
|
72728
72881
|
export type ActivityLogCreateNestedManyWithoutActorInput = {
|
|
72729
72882
|
create?: XOR<ActivityLogCreateWithoutActorInput, ActivityLogUncheckedCreateWithoutActorInput> | ActivityLogCreateWithoutActorInput[] | ActivityLogUncheckedCreateWithoutActorInput[]
|
|
72730
72883
|
connectOrCreate?: ActivityLogCreateOrConnectWithoutActorInput | ActivityLogCreateOrConnectWithoutActorInput[]
|
|
@@ -72758,6 +72911,13 @@ export namespace Prisma {
|
|
|
72758
72911
|
connect?: FitCheckWhereUniqueInput | FitCheckWhereUniqueInput[]
|
|
72759
72912
|
}
|
|
72760
72913
|
|
|
72914
|
+
export type ActivityLogCreateNestedManyWithoutUserInput = {
|
|
72915
|
+
create?: XOR<ActivityLogCreateWithoutUserInput, ActivityLogUncheckedCreateWithoutUserInput> | ActivityLogCreateWithoutUserInput[] | ActivityLogUncheckedCreateWithoutUserInput[]
|
|
72916
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutUserInput | ActivityLogCreateOrConnectWithoutUserInput[]
|
|
72917
|
+
createMany?: ActivityLogCreateManyUserInputEnvelope
|
|
72918
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
72919
|
+
}
|
|
72920
|
+
|
|
72761
72921
|
export type ApplicationUncheckedCreateNestedManyWithoutCandidateInput = {
|
|
72762
72922
|
create?: XOR<ApplicationCreateWithoutCandidateInput, ApplicationUncheckedCreateWithoutCandidateInput> | ApplicationCreateWithoutCandidateInput[] | ApplicationUncheckedCreateWithoutCandidateInput[]
|
|
72763
72923
|
connectOrCreate?: ApplicationCreateOrConnectWithoutCandidateInput | ApplicationCreateOrConnectWithoutCandidateInput[]
|
|
@@ -72880,13 +73040,6 @@ export namespace Prisma {
|
|
|
72880
73040
|
connect?: OngoingEvaluationWhereUniqueInput | OngoingEvaluationWhereUniqueInput[]
|
|
72881
73041
|
}
|
|
72882
73042
|
|
|
72883
|
-
export type ActivityLogUncheckedCreateNestedManyWithoutCandidateInput = {
|
|
72884
|
-
create?: XOR<ActivityLogCreateWithoutCandidateInput, ActivityLogUncheckedCreateWithoutCandidateInput> | ActivityLogCreateWithoutCandidateInput[] | ActivityLogUncheckedCreateWithoutCandidateInput[]
|
|
72885
|
-
connectOrCreate?: ActivityLogCreateOrConnectWithoutCandidateInput | ActivityLogCreateOrConnectWithoutCandidateInput[]
|
|
72886
|
-
createMany?: ActivityLogCreateManyCandidateInputEnvelope
|
|
72887
|
-
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
72888
|
-
}
|
|
72889
|
-
|
|
72890
73043
|
export type ActivityLogUncheckedCreateNestedManyWithoutActorInput = {
|
|
72891
73044
|
create?: XOR<ActivityLogCreateWithoutActorInput, ActivityLogUncheckedCreateWithoutActorInput> | ActivityLogCreateWithoutActorInput[] | ActivityLogUncheckedCreateWithoutActorInput[]
|
|
72892
73045
|
connectOrCreate?: ActivityLogCreateOrConnectWithoutActorInput | ActivityLogCreateOrConnectWithoutActorInput[]
|
|
@@ -72920,6 +73073,13 @@ export namespace Prisma {
|
|
|
72920
73073
|
connect?: FitCheckWhereUniqueInput | FitCheckWhereUniqueInput[]
|
|
72921
73074
|
}
|
|
72922
73075
|
|
|
73076
|
+
export type ActivityLogUncheckedCreateNestedManyWithoutUserInput = {
|
|
73077
|
+
create?: XOR<ActivityLogCreateWithoutUserInput, ActivityLogUncheckedCreateWithoutUserInput> | ActivityLogCreateWithoutUserInput[] | ActivityLogUncheckedCreateWithoutUserInput[]
|
|
73078
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutUserInput | ActivityLogCreateOrConnectWithoutUserInput[]
|
|
73079
|
+
createMany?: ActivityLogCreateManyUserInputEnvelope
|
|
73080
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73081
|
+
}
|
|
73082
|
+
|
|
72923
73083
|
export type EnumFirstLoginStatusFieldUpdateOperationsInput = {
|
|
72924
73084
|
set?: $Enums.FirstLoginStatus
|
|
72925
73085
|
}
|
|
@@ -73191,20 +73351,6 @@ export namespace Prisma {
|
|
|
73191
73351
|
deleteMany?: OngoingEvaluationScalarWhereInput | OngoingEvaluationScalarWhereInput[]
|
|
73192
73352
|
}
|
|
73193
73353
|
|
|
73194
|
-
export type ActivityLogUpdateManyWithoutCandidateNestedInput = {
|
|
73195
|
-
create?: XOR<ActivityLogCreateWithoutCandidateInput, ActivityLogUncheckedCreateWithoutCandidateInput> | ActivityLogCreateWithoutCandidateInput[] | ActivityLogUncheckedCreateWithoutCandidateInput[]
|
|
73196
|
-
connectOrCreate?: ActivityLogCreateOrConnectWithoutCandidateInput | ActivityLogCreateOrConnectWithoutCandidateInput[]
|
|
73197
|
-
upsert?: ActivityLogUpsertWithWhereUniqueWithoutCandidateInput | ActivityLogUpsertWithWhereUniqueWithoutCandidateInput[]
|
|
73198
|
-
createMany?: ActivityLogCreateManyCandidateInputEnvelope
|
|
73199
|
-
set?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73200
|
-
disconnect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73201
|
-
delete?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73202
|
-
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73203
|
-
update?: ActivityLogUpdateWithWhereUniqueWithoutCandidateInput | ActivityLogUpdateWithWhereUniqueWithoutCandidateInput[]
|
|
73204
|
-
updateMany?: ActivityLogUpdateManyWithWhereWithoutCandidateInput | ActivityLogUpdateManyWithWhereWithoutCandidateInput[]
|
|
73205
|
-
deleteMany?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
73206
|
-
}
|
|
73207
|
-
|
|
73208
73354
|
export type ActivityLogUpdateManyWithoutActorNestedInput = {
|
|
73209
73355
|
create?: XOR<ActivityLogCreateWithoutActorInput, ActivityLogUncheckedCreateWithoutActorInput> | ActivityLogCreateWithoutActorInput[] | ActivityLogUncheckedCreateWithoutActorInput[]
|
|
73210
73356
|
connectOrCreate?: ActivityLogCreateOrConnectWithoutActorInput | ActivityLogCreateOrConnectWithoutActorInput[]
|
|
@@ -73267,6 +73413,20 @@ export namespace Prisma {
|
|
|
73267
73413
|
deleteMany?: FitCheckScalarWhereInput | FitCheckScalarWhereInput[]
|
|
73268
73414
|
}
|
|
73269
73415
|
|
|
73416
|
+
export type ActivityLogUpdateManyWithoutUserNestedInput = {
|
|
73417
|
+
create?: XOR<ActivityLogCreateWithoutUserInput, ActivityLogUncheckedCreateWithoutUserInput> | ActivityLogCreateWithoutUserInput[] | ActivityLogUncheckedCreateWithoutUserInput[]
|
|
73418
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutUserInput | ActivityLogCreateOrConnectWithoutUserInput[]
|
|
73419
|
+
upsert?: ActivityLogUpsertWithWhereUniqueWithoutUserInput | ActivityLogUpsertWithWhereUniqueWithoutUserInput[]
|
|
73420
|
+
createMany?: ActivityLogCreateManyUserInputEnvelope
|
|
73421
|
+
set?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73422
|
+
disconnect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73423
|
+
delete?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73424
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73425
|
+
update?: ActivityLogUpdateWithWhereUniqueWithoutUserInput | ActivityLogUpdateWithWhereUniqueWithoutUserInput[]
|
|
73426
|
+
updateMany?: ActivityLogUpdateManyWithWhereWithoutUserInput | ActivityLogUpdateManyWithWhereWithoutUserInput[]
|
|
73427
|
+
deleteMany?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
73428
|
+
}
|
|
73429
|
+
|
|
73270
73430
|
export type ApplicationUncheckedUpdateManyWithoutCandidateNestedInput = {
|
|
73271
73431
|
create?: XOR<ApplicationCreateWithoutCandidateInput, ApplicationUncheckedCreateWithoutCandidateInput> | ApplicationCreateWithoutCandidateInput[] | ApplicationUncheckedCreateWithoutCandidateInput[]
|
|
73272
73432
|
connectOrCreate?: ApplicationCreateOrConnectWithoutCandidateInput | ApplicationCreateOrConnectWithoutCandidateInput[]
|
|
@@ -73506,20 +73666,6 @@ export namespace Prisma {
|
|
|
73506
73666
|
deleteMany?: OngoingEvaluationScalarWhereInput | OngoingEvaluationScalarWhereInput[]
|
|
73507
73667
|
}
|
|
73508
73668
|
|
|
73509
|
-
export type ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput = {
|
|
73510
|
-
create?: XOR<ActivityLogCreateWithoutCandidateInput, ActivityLogUncheckedCreateWithoutCandidateInput> | ActivityLogCreateWithoutCandidateInput[] | ActivityLogUncheckedCreateWithoutCandidateInput[]
|
|
73511
|
-
connectOrCreate?: ActivityLogCreateOrConnectWithoutCandidateInput | ActivityLogCreateOrConnectWithoutCandidateInput[]
|
|
73512
|
-
upsert?: ActivityLogUpsertWithWhereUniqueWithoutCandidateInput | ActivityLogUpsertWithWhereUniqueWithoutCandidateInput[]
|
|
73513
|
-
createMany?: ActivityLogCreateManyCandidateInputEnvelope
|
|
73514
|
-
set?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73515
|
-
disconnect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73516
|
-
delete?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73517
|
-
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73518
|
-
update?: ActivityLogUpdateWithWhereUniqueWithoutCandidateInput | ActivityLogUpdateWithWhereUniqueWithoutCandidateInput[]
|
|
73519
|
-
updateMany?: ActivityLogUpdateManyWithWhereWithoutCandidateInput | ActivityLogUpdateManyWithWhereWithoutCandidateInput[]
|
|
73520
|
-
deleteMany?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
73521
|
-
}
|
|
73522
|
-
|
|
73523
73669
|
export type ActivityLogUncheckedUpdateManyWithoutActorNestedInput = {
|
|
73524
73670
|
create?: XOR<ActivityLogCreateWithoutActorInput, ActivityLogUncheckedCreateWithoutActorInput> | ActivityLogCreateWithoutActorInput[] | ActivityLogUncheckedCreateWithoutActorInput[]
|
|
73525
73671
|
connectOrCreate?: ActivityLogCreateOrConnectWithoutActorInput | ActivityLogCreateOrConnectWithoutActorInput[]
|
|
@@ -73582,6 +73728,20 @@ export namespace Prisma {
|
|
|
73582
73728
|
deleteMany?: FitCheckScalarWhereInput | FitCheckScalarWhereInput[]
|
|
73583
73729
|
}
|
|
73584
73730
|
|
|
73731
|
+
export type ActivityLogUncheckedUpdateManyWithoutUserNestedInput = {
|
|
73732
|
+
create?: XOR<ActivityLogCreateWithoutUserInput, ActivityLogUncheckedCreateWithoutUserInput> | ActivityLogCreateWithoutUserInput[] | ActivityLogUncheckedCreateWithoutUserInput[]
|
|
73733
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutUserInput | ActivityLogCreateOrConnectWithoutUserInput[]
|
|
73734
|
+
upsert?: ActivityLogUpsertWithWhereUniqueWithoutUserInput | ActivityLogUpsertWithWhereUniqueWithoutUserInput[]
|
|
73735
|
+
createMany?: ActivityLogCreateManyUserInputEnvelope
|
|
73736
|
+
set?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73737
|
+
disconnect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73738
|
+
delete?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73739
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73740
|
+
update?: ActivityLogUpdateWithWhereUniqueWithoutUserInput | ActivityLogUpdateWithWhereUniqueWithoutUserInput[]
|
|
73741
|
+
updateMany?: ActivityLogUpdateManyWithWhereWithoutUserInput | ActivityLogUpdateManyWithWhereWithoutUserInput[]
|
|
73742
|
+
deleteMany?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
73743
|
+
}
|
|
73744
|
+
|
|
73585
73745
|
export type UserCreateNestedOneWithoutUser_profileInput = {
|
|
73586
73746
|
create?: XOR<UserCreateWithoutUser_profileInput, UserUncheckedCreateWithoutUser_profileInput>
|
|
73587
73747
|
connectOrCreate?: UserCreateOrConnectWithoutUser_profileInput
|
|
@@ -74521,12 +74681,12 @@ export namespace Prisma {
|
|
|
74521
74681
|
reviewer_assessments?: AssessmentCreateNestedManyWithoutReviewerInput
|
|
74522
74682
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
74523
74683
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
74524
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
74525
74684
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
74526
74685
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
74527
74686
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
74528
74687
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
74529
74688
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
74689
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
74530
74690
|
}
|
|
74531
74691
|
|
|
74532
74692
|
export type UserUncheckedCreateWithoutCandidateResponsesInput = {
|
|
@@ -74579,12 +74739,12 @@ export namespace Prisma {
|
|
|
74579
74739
|
reviewer_assessments?: AssessmentUncheckedCreateNestedManyWithoutReviewerInput
|
|
74580
74740
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
74581
74741
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
74582
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
74583
74742
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
74584
74743
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
74585
74744
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
74586
74745
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
74587
74746
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
74747
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
74588
74748
|
}
|
|
74589
74749
|
|
|
74590
74750
|
export type UserCreateOrConnectWithoutCandidateResponsesInput = {
|
|
@@ -74753,12 +74913,12 @@ export namespace Prisma {
|
|
|
74753
74913
|
reviewer_assessments?: AssessmentUpdateManyWithoutReviewerNestedInput
|
|
74754
74914
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
74755
74915
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
74756
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
74757
74916
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
74758
74917
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
74759
74918
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
74760
74919
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
74761
74920
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
74921
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
74762
74922
|
}
|
|
74763
74923
|
|
|
74764
74924
|
export type UserUncheckedUpdateWithoutCandidateResponsesInput = {
|
|
@@ -74811,12 +74971,12 @@ export namespace Prisma {
|
|
|
74811
74971
|
reviewer_assessments?: AssessmentUncheckedUpdateManyWithoutReviewerNestedInput
|
|
74812
74972
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
74813
74973
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
74814
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
74815
74974
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
74816
74975
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
74817
74976
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
74818
74977
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
74819
74978
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
74979
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
74820
74980
|
}
|
|
74821
74981
|
|
|
74822
74982
|
export type OrganisationCreateWithoutUser_rolesInput = {
|
|
@@ -74967,12 +75127,12 @@ export namespace Prisma {
|
|
|
74967
75127
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
74968
75128
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
74969
75129
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
74970
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
74971
75130
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
74972
75131
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
74973
75132
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
74974
75133
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
74975
75134
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
75135
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
74976
75136
|
}
|
|
74977
75137
|
|
|
74978
75138
|
export type UserUncheckedCreateWithoutRoleInput = {
|
|
@@ -75025,12 +75185,12 @@ export namespace Prisma {
|
|
|
75025
75185
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
75026
75186
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
75027
75187
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
75028
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
75029
75188
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
75030
75189
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
75031
75190
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
75032
75191
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
75033
75192
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
75193
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
75034
75194
|
}
|
|
75035
75195
|
|
|
75036
75196
|
export type UserCreateOrConnectWithoutRoleInput = {
|
|
@@ -75258,11 +75418,11 @@ export namespace Prisma {
|
|
|
75258
75418
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
75259
75419
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
75260
75420
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
75261
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
75262
75421
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
75263
75422
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
75264
75423
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
75265
75424
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
75425
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
75266
75426
|
}
|
|
75267
75427
|
|
|
75268
75428
|
export type UserUncheckedCreateWithoutActionsInput = {
|
|
@@ -75316,11 +75476,11 @@ export namespace Prisma {
|
|
|
75316
75476
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
75317
75477
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
75318
75478
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
75319
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
75320
75479
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
75321
75480
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
75322
75481
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
75323
75482
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
75483
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
75324
75484
|
}
|
|
75325
75485
|
|
|
75326
75486
|
export type UserCreateOrConnectWithoutActionsInput = {
|
|
@@ -75461,11 +75621,11 @@ export namespace Prisma {
|
|
|
75461
75621
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
75462
75622
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
75463
75623
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
75464
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
75465
75624
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
75466
75625
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
75467
75626
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
75468
75627
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
75628
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
75469
75629
|
}
|
|
75470
75630
|
|
|
75471
75631
|
export type UserUncheckedUpdateWithoutActionsInput = {
|
|
@@ -75519,11 +75679,11 @@ export namespace Prisma {
|
|
|
75519
75679
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75520
75680
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75521
75681
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75522
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75523
75682
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
75524
75683
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
75525
75684
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
75526
75685
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75686
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
75527
75687
|
}
|
|
75528
75688
|
|
|
75529
75689
|
export type OrganisationUpsertWithoutActionsInput = {
|
|
@@ -75603,7 +75763,7 @@ export namespace Prisma {
|
|
|
75603
75763
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
75604
75764
|
}
|
|
75605
75765
|
|
|
75606
|
-
export type
|
|
75766
|
+
export type UserCreateWithoutActor_activity_logsInput = {
|
|
75607
75767
|
id?: string
|
|
75608
75768
|
email: string
|
|
75609
75769
|
password: string
|
|
@@ -75654,14 +75814,14 @@ export namespace Prisma {
|
|
|
75654
75814
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
75655
75815
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
75656
75816
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
75657
|
-
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
75658
75817
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
75659
75818
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
75660
75819
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
75661
75820
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
75821
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
75662
75822
|
}
|
|
75663
75823
|
|
|
75664
|
-
export type
|
|
75824
|
+
export type UserUncheckedCreateWithoutActor_activity_logsInput = {
|
|
75665
75825
|
id?: string
|
|
75666
75826
|
email: string
|
|
75667
75827
|
password: string
|
|
@@ -75712,19 +75872,68 @@ export namespace Prisma {
|
|
|
75712
75872
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
75713
75873
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
75714
75874
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
75715
|
-
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
75716
75875
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
75717
75876
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
75718
75877
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
75719
75878
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
75879
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
75720
75880
|
}
|
|
75721
75881
|
|
|
75722
|
-
export type
|
|
75882
|
+
export type UserCreateOrConnectWithoutActor_activity_logsInput = {
|
|
75723
75883
|
where: UserWhereUniqueInput
|
|
75724
|
-
create: XOR<
|
|
75884
|
+
create: XOR<UserCreateWithoutActor_activity_logsInput, UserUncheckedCreateWithoutActor_activity_logsInput>
|
|
75725
75885
|
}
|
|
75726
75886
|
|
|
75727
|
-
export type
|
|
75887
|
+
export type ApplicationCreateWithoutActivity_logsInput = {
|
|
75888
|
+
id?: string
|
|
75889
|
+
status?: $Enums.ApplicationStatus
|
|
75890
|
+
fit_check_score?: number | null
|
|
75891
|
+
fit_check_status?: $Enums.FitCheckStatus | null
|
|
75892
|
+
applied_at?: Date | string
|
|
75893
|
+
round_no?: number
|
|
75894
|
+
created_at?: Date | string
|
|
75895
|
+
updated_at?: Date | string
|
|
75896
|
+
created_by: string
|
|
75897
|
+
updated_by: string
|
|
75898
|
+
is_active?: boolean
|
|
75899
|
+
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
75900
|
+
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
75901
|
+
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
75902
|
+
resume: ResumeCreateNestedOneWithoutApplicationsInput
|
|
75903
|
+
job_description: JobDescriptionCreateNestedOneWithoutApplicationsInput
|
|
75904
|
+
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
75905
|
+
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
75906
|
+
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
75907
|
+
}
|
|
75908
|
+
|
|
75909
|
+
export type ApplicationUncheckedCreateWithoutActivity_logsInput = {
|
|
75910
|
+
id?: string
|
|
75911
|
+
candidate_id: string
|
|
75912
|
+
resume_id: string
|
|
75913
|
+
organisation_id: string
|
|
75914
|
+
job_description_id: string
|
|
75915
|
+
status?: $Enums.ApplicationStatus
|
|
75916
|
+
fit_check_score?: number | null
|
|
75917
|
+
fit_check_status?: $Enums.FitCheckStatus | null
|
|
75918
|
+
applied_at?: Date | string
|
|
75919
|
+
evaluation_plan_id?: string | null
|
|
75920
|
+
fit_check_id?: string | null
|
|
75921
|
+
round_no?: number
|
|
75922
|
+
created_at?: Date | string
|
|
75923
|
+
updated_at?: Date | string
|
|
75924
|
+
created_by: string
|
|
75925
|
+
updated_by: string
|
|
75926
|
+
is_active?: boolean
|
|
75927
|
+
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
75928
|
+
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
75929
|
+
}
|
|
75930
|
+
|
|
75931
|
+
export type ApplicationCreateOrConnectWithoutActivity_logsInput = {
|
|
75932
|
+
where: ApplicationWhereUniqueInput
|
|
75933
|
+
create: XOR<ApplicationCreateWithoutActivity_logsInput, ApplicationUncheckedCreateWithoutActivity_logsInput>
|
|
75934
|
+
}
|
|
75935
|
+
|
|
75936
|
+
export type UserCreateWithoutActivityLogsInput = {
|
|
75728
75937
|
id?: string
|
|
75729
75938
|
email: string
|
|
75730
75939
|
password: string
|
|
@@ -75775,14 +75984,14 @@ export namespace Prisma {
|
|
|
75775
75984
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
75776
75985
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
75777
75986
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
75778
|
-
|
|
75987
|
+
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
75779
75988
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
75780
75989
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
75781
75990
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
75782
75991
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
75783
75992
|
}
|
|
75784
75993
|
|
|
75785
|
-
export type
|
|
75994
|
+
export type UserUncheckedCreateWithoutActivityLogsInput = {
|
|
75786
75995
|
id?: string
|
|
75787
75996
|
email: string
|
|
75788
75997
|
password: string
|
|
@@ -75833,30 +76042,30 @@ export namespace Prisma {
|
|
|
75833
76042
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
75834
76043
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
75835
76044
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
75836
|
-
|
|
76045
|
+
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
75837
76046
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
75838
76047
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
75839
76048
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
75840
76049
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
75841
76050
|
}
|
|
75842
76051
|
|
|
75843
|
-
export type
|
|
76052
|
+
export type UserCreateOrConnectWithoutActivityLogsInput = {
|
|
75844
76053
|
where: UserWhereUniqueInput
|
|
75845
|
-
create: XOR<
|
|
76054
|
+
create: XOR<UserCreateWithoutActivityLogsInput, UserUncheckedCreateWithoutActivityLogsInput>
|
|
75846
76055
|
}
|
|
75847
76056
|
|
|
75848
|
-
export type
|
|
75849
|
-
update: XOR<
|
|
75850
|
-
create: XOR<
|
|
76057
|
+
export type UserUpsertWithoutActor_activity_logsInput = {
|
|
76058
|
+
update: XOR<UserUpdateWithoutActor_activity_logsInput, UserUncheckedUpdateWithoutActor_activity_logsInput>
|
|
76059
|
+
create: XOR<UserCreateWithoutActor_activity_logsInput, UserUncheckedCreateWithoutActor_activity_logsInput>
|
|
75851
76060
|
where?: UserWhereInput
|
|
75852
76061
|
}
|
|
75853
76062
|
|
|
75854
|
-
export type
|
|
76063
|
+
export type UserUpdateToOneWithWhereWithoutActor_activity_logsInput = {
|
|
75855
76064
|
where?: UserWhereInput
|
|
75856
|
-
data: XOR<
|
|
76065
|
+
data: XOR<UserUpdateWithoutActor_activity_logsInput, UserUncheckedUpdateWithoutActor_activity_logsInput>
|
|
75857
76066
|
}
|
|
75858
76067
|
|
|
75859
|
-
export type
|
|
76068
|
+
export type UserUpdateWithoutActor_activity_logsInput = {
|
|
75860
76069
|
id?: StringFieldUpdateOperationsInput | string
|
|
75861
76070
|
email?: StringFieldUpdateOperationsInput | string
|
|
75862
76071
|
password?: StringFieldUpdateOperationsInput | string
|
|
@@ -75907,14 +76116,14 @@ export namespace Prisma {
|
|
|
75907
76116
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
75908
76117
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
75909
76118
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
75910
|
-
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
75911
76119
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
75912
76120
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
75913
76121
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
75914
76122
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
76123
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
75915
76124
|
}
|
|
75916
76125
|
|
|
75917
|
-
export type
|
|
76126
|
+
export type UserUncheckedUpdateWithoutActor_activity_logsInput = {
|
|
75918
76127
|
id?: StringFieldUpdateOperationsInput | string
|
|
75919
76128
|
email?: StringFieldUpdateOperationsInput | string
|
|
75920
76129
|
password?: StringFieldUpdateOperationsInput | string
|
|
@@ -75965,25 +76174,80 @@ export namespace Prisma {
|
|
|
75965
76174
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75966
76175
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75967
76176
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75968
|
-
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
75969
76177
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
75970
76178
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
75971
76179
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
75972
76180
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76181
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
75973
76182
|
}
|
|
75974
76183
|
|
|
75975
|
-
export type
|
|
75976
|
-
update: XOR<
|
|
75977
|
-
create: XOR<
|
|
76184
|
+
export type ApplicationUpsertWithoutActivity_logsInput = {
|
|
76185
|
+
update: XOR<ApplicationUpdateWithoutActivity_logsInput, ApplicationUncheckedUpdateWithoutActivity_logsInput>
|
|
76186
|
+
create: XOR<ApplicationCreateWithoutActivity_logsInput, ApplicationUncheckedCreateWithoutActivity_logsInput>
|
|
76187
|
+
where?: ApplicationWhereInput
|
|
76188
|
+
}
|
|
76189
|
+
|
|
76190
|
+
export type ApplicationUpdateToOneWithWhereWithoutActivity_logsInput = {
|
|
76191
|
+
where?: ApplicationWhereInput
|
|
76192
|
+
data: XOR<ApplicationUpdateWithoutActivity_logsInput, ApplicationUncheckedUpdateWithoutActivity_logsInput>
|
|
76193
|
+
}
|
|
76194
|
+
|
|
76195
|
+
export type ApplicationUpdateWithoutActivity_logsInput = {
|
|
76196
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
76197
|
+
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
76198
|
+
fit_check_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
76199
|
+
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
76200
|
+
applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76201
|
+
round_no?: IntFieldUpdateOperationsInput | number
|
|
76202
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76203
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76204
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
76205
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
76206
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76207
|
+
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
76208
|
+
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
76209
|
+
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
76210
|
+
resume?: ResumeUpdateOneRequiredWithoutApplicationsNestedInput
|
|
76211
|
+
job_description?: JobDescriptionUpdateOneRequiredWithoutApplicationsNestedInput
|
|
76212
|
+
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
76213
|
+
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
76214
|
+
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
76215
|
+
}
|
|
76216
|
+
|
|
76217
|
+
export type ApplicationUncheckedUpdateWithoutActivity_logsInput = {
|
|
76218
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
76219
|
+
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
76220
|
+
resume_id?: StringFieldUpdateOperationsInput | string
|
|
76221
|
+
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
76222
|
+
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
76223
|
+
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
76224
|
+
fit_check_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
76225
|
+
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
76226
|
+
applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76227
|
+
evaluation_plan_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76228
|
+
fit_check_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76229
|
+
round_no?: IntFieldUpdateOperationsInput | number
|
|
76230
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76231
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76232
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
76233
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
76234
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76235
|
+
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
76236
|
+
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
76237
|
+
}
|
|
76238
|
+
|
|
76239
|
+
export type UserUpsertWithoutActivityLogsInput = {
|
|
76240
|
+
update: XOR<UserUpdateWithoutActivityLogsInput, UserUncheckedUpdateWithoutActivityLogsInput>
|
|
76241
|
+
create: XOR<UserCreateWithoutActivityLogsInput, UserUncheckedCreateWithoutActivityLogsInput>
|
|
75978
76242
|
where?: UserWhereInput
|
|
75979
76243
|
}
|
|
75980
76244
|
|
|
75981
|
-
export type
|
|
76245
|
+
export type UserUpdateToOneWithWhereWithoutActivityLogsInput = {
|
|
75982
76246
|
where?: UserWhereInput
|
|
75983
|
-
data: XOR<
|
|
76247
|
+
data: XOR<UserUpdateWithoutActivityLogsInput, UserUncheckedUpdateWithoutActivityLogsInput>
|
|
75984
76248
|
}
|
|
75985
76249
|
|
|
75986
|
-
export type
|
|
76250
|
+
export type UserUpdateWithoutActivityLogsInput = {
|
|
75987
76251
|
id?: StringFieldUpdateOperationsInput | string
|
|
75988
76252
|
email?: StringFieldUpdateOperationsInput | string
|
|
75989
76253
|
password?: StringFieldUpdateOperationsInput | string
|
|
@@ -76034,14 +76298,14 @@ export namespace Prisma {
|
|
|
76034
76298
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
76035
76299
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
76036
76300
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
76037
|
-
|
|
76301
|
+
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
76038
76302
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
76039
76303
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
76040
76304
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
76041
76305
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
76042
76306
|
}
|
|
76043
76307
|
|
|
76044
|
-
export type
|
|
76308
|
+
export type UserUncheckedUpdateWithoutActivityLogsInput = {
|
|
76045
76309
|
id?: StringFieldUpdateOperationsInput | string
|
|
76046
76310
|
email?: StringFieldUpdateOperationsInput | string
|
|
76047
76311
|
password?: StringFieldUpdateOperationsInput | string
|
|
@@ -76092,7 +76356,7 @@ export namespace Prisma {
|
|
|
76092
76356
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76093
76357
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76094
76358
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76095
|
-
|
|
76359
|
+
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
76096
76360
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
76097
76361
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
76098
76362
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -76210,12 +76474,12 @@ export namespace Prisma {
|
|
|
76210
76474
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
76211
76475
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
76212
76476
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
76213
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
76214
76477
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
76215
76478
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
76216
76479
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
76217
76480
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
76218
76481
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
76482
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
76219
76483
|
}
|
|
76220
76484
|
|
|
76221
76485
|
export type UserUncheckedCreateWithoutApplicationsInput = {
|
|
@@ -76268,12 +76532,12 @@ export namespace Prisma {
|
|
|
76268
76532
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
76269
76533
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
76270
76534
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
76271
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
76272
76535
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
76273
76536
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
76274
76537
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
76275
76538
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
76276
76539
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
76540
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
76277
76541
|
}
|
|
76278
76542
|
|
|
76279
76543
|
export type UserCreateOrConnectWithoutApplicationsInput = {
|
|
@@ -76687,6 +76951,40 @@ export namespace Prisma {
|
|
|
76687
76951
|
skipDuplicates?: boolean
|
|
76688
76952
|
}
|
|
76689
76953
|
|
|
76954
|
+
export type ActivityLogCreateWithoutApplicationInput = {
|
|
76955
|
+
id?: string
|
|
76956
|
+
actor_type?: $Enums.ActivityActorType
|
|
76957
|
+
message: string
|
|
76958
|
+
timestamp?: Date | string
|
|
76959
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
76960
|
+
created_at?: Date | string
|
|
76961
|
+
is_active?: boolean
|
|
76962
|
+
actor?: UserCreateNestedOneWithoutActor_activity_logsInput
|
|
76963
|
+
user?: UserCreateNestedOneWithoutActivityLogsInput
|
|
76964
|
+
}
|
|
76965
|
+
|
|
76966
|
+
export type ActivityLogUncheckedCreateWithoutApplicationInput = {
|
|
76967
|
+
id?: string
|
|
76968
|
+
actor_id?: string | null
|
|
76969
|
+
actor_type?: $Enums.ActivityActorType
|
|
76970
|
+
message: string
|
|
76971
|
+
timestamp?: Date | string
|
|
76972
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
76973
|
+
created_at?: Date | string
|
|
76974
|
+
is_active?: boolean
|
|
76975
|
+
userId?: string | null
|
|
76976
|
+
}
|
|
76977
|
+
|
|
76978
|
+
export type ActivityLogCreateOrConnectWithoutApplicationInput = {
|
|
76979
|
+
where: ActivityLogWhereUniqueInput
|
|
76980
|
+
create: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput>
|
|
76981
|
+
}
|
|
76982
|
+
|
|
76983
|
+
export type ActivityLogCreateManyApplicationInputEnvelope = {
|
|
76984
|
+
data: ActivityLogCreateManyApplicationInput | ActivityLogCreateManyApplicationInput[]
|
|
76985
|
+
skipDuplicates?: boolean
|
|
76986
|
+
}
|
|
76987
|
+
|
|
76690
76988
|
export type EvaluationPlanUpsertWithoutApplicationsInput = {
|
|
76691
76989
|
update: XOR<EvaluationPlanUpdateWithoutApplicationsInput, EvaluationPlanUncheckedUpdateWithoutApplicationsInput>
|
|
76692
76990
|
create: XOR<EvaluationPlanCreateWithoutApplicationsInput, EvaluationPlanUncheckedCreateWithoutApplicationsInput>
|
|
@@ -76815,12 +77113,12 @@ export namespace Prisma {
|
|
|
76815
77113
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
76816
77114
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
76817
77115
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
76818
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
76819
77116
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
76820
77117
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
76821
77118
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
76822
77119
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
76823
77120
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
77121
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
76824
77122
|
}
|
|
76825
77123
|
|
|
76826
77124
|
export type UserUncheckedUpdateWithoutApplicationsInput = {
|
|
@@ -76873,12 +77171,12 @@ export namespace Prisma {
|
|
|
76873
77171
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76874
77172
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76875
77173
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76876
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76877
77174
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
76878
77175
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
76879
77176
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
76880
77177
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
76881
77178
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
77179
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
76882
77180
|
}
|
|
76883
77181
|
|
|
76884
77182
|
export type OrganisationUpsertWithoutApplicationsInput = {
|
|
@@ -77259,6 +77557,38 @@ export namespace Prisma {
|
|
|
77259
77557
|
details?: JsonNullableFilter<"OngoingEvaluation">
|
|
77260
77558
|
}
|
|
77261
77559
|
|
|
77560
|
+
export type ActivityLogUpsertWithWhereUniqueWithoutApplicationInput = {
|
|
77561
|
+
where: ActivityLogWhereUniqueInput
|
|
77562
|
+
update: XOR<ActivityLogUpdateWithoutApplicationInput, ActivityLogUncheckedUpdateWithoutApplicationInput>
|
|
77563
|
+
create: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput>
|
|
77564
|
+
}
|
|
77565
|
+
|
|
77566
|
+
export type ActivityLogUpdateWithWhereUniqueWithoutApplicationInput = {
|
|
77567
|
+
where: ActivityLogWhereUniqueInput
|
|
77568
|
+
data: XOR<ActivityLogUpdateWithoutApplicationInput, ActivityLogUncheckedUpdateWithoutApplicationInput>
|
|
77569
|
+
}
|
|
77570
|
+
|
|
77571
|
+
export type ActivityLogUpdateManyWithWhereWithoutApplicationInput = {
|
|
77572
|
+
where: ActivityLogScalarWhereInput
|
|
77573
|
+
data: XOR<ActivityLogUpdateManyMutationInput, ActivityLogUncheckedUpdateManyWithoutApplicationInput>
|
|
77574
|
+
}
|
|
77575
|
+
|
|
77576
|
+
export type ActivityLogScalarWhereInput = {
|
|
77577
|
+
AND?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
77578
|
+
OR?: ActivityLogScalarWhereInput[]
|
|
77579
|
+
NOT?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
77580
|
+
id?: StringFilter<"ActivityLog"> | string
|
|
77581
|
+
application_id?: StringFilter<"ActivityLog"> | string
|
|
77582
|
+
actor_id?: StringNullableFilter<"ActivityLog"> | string | null
|
|
77583
|
+
actor_type?: EnumActivityActorTypeFilter<"ActivityLog"> | $Enums.ActivityActorType
|
|
77584
|
+
message?: StringFilter<"ActivityLog"> | string
|
|
77585
|
+
timestamp?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
77586
|
+
metadata?: JsonNullableFilter<"ActivityLog">
|
|
77587
|
+
created_at?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
77588
|
+
is_active?: BoolFilter<"ActivityLog"> | boolean
|
|
77589
|
+
userId?: StringNullableFilter<"ActivityLog"> | string | null
|
|
77590
|
+
}
|
|
77591
|
+
|
|
77262
77592
|
export type JobDescriptionCreateWithoutApprovalsInput = {
|
|
77263
77593
|
id?: string
|
|
77264
77594
|
status?: $Enums.JobDescriptionStatus
|
|
@@ -77376,12 +77706,12 @@ export namespace Prisma {
|
|
|
77376
77706
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
77377
77707
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
77378
77708
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
77379
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
77380
77709
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
77381
77710
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
77382
77711
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
77383
77712
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
77384
77713
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
77714
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
77385
77715
|
}
|
|
77386
77716
|
|
|
77387
77717
|
export type UserUncheckedCreateWithoutApprovalsInput = {
|
|
@@ -77434,12 +77764,12 @@ export namespace Prisma {
|
|
|
77434
77764
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
77435
77765
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
77436
77766
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
77437
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
77438
77767
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
77439
77768
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
77440
77769
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
77441
77770
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
77442
77771
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
77772
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
77443
77773
|
}
|
|
77444
77774
|
|
|
77445
77775
|
export type UserCreateOrConnectWithoutApprovalsInput = {
|
|
@@ -77652,12 +77982,12 @@ export namespace Prisma {
|
|
|
77652
77982
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
77653
77983
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
77654
77984
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
77655
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
77656
77985
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
77657
77986
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
77658
77987
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
77659
77988
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
77660
77989
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
77990
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
77661
77991
|
}
|
|
77662
77992
|
|
|
77663
77993
|
export type UserUncheckedUpdateWithoutApprovalsInput = {
|
|
@@ -77710,12 +78040,12 @@ export namespace Prisma {
|
|
|
77710
78040
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
77711
78041
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
77712
78042
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
77713
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
77714
78043
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
77715
78044
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
77716
78045
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
77717
78046
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
77718
78047
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78048
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
77719
78049
|
}
|
|
77720
78050
|
|
|
77721
78051
|
export type OrganisationUpsertWithoutApprovalsInput = {
|
|
@@ -77890,12 +78220,12 @@ export namespace Prisma {
|
|
|
77890
78220
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
77891
78221
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
77892
78222
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
77893
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
77894
78223
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
77895
78224
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
77896
78225
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
77897
78226
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
77898
78227
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
78228
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
77899
78229
|
}
|
|
77900
78230
|
|
|
77901
78231
|
export type UserUncheckedCreateWithoutCandidate_assessmentsInput = {
|
|
@@ -77948,12 +78278,12 @@ export namespace Prisma {
|
|
|
77948
78278
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
77949
78279
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
77950
78280
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
77951
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
77952
78281
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
77953
78282
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
77954
78283
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
77955
78284
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
77956
78285
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
78286
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
77957
78287
|
}
|
|
77958
78288
|
|
|
77959
78289
|
export type UserCreateOrConnectWithoutCandidate_assessmentsInput = {
|
|
@@ -78011,12 +78341,12 @@ export namespace Prisma {
|
|
|
78011
78341
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
78012
78342
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
78013
78343
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
78014
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
78015
78344
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
78016
78345
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
78017
78346
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
78018
78347
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
78019
78348
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
78349
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
78020
78350
|
}
|
|
78021
78351
|
|
|
78022
78352
|
export type UserUncheckedCreateWithoutReviewer_assessmentsInput = {
|
|
@@ -78069,12 +78399,12 @@ export namespace Prisma {
|
|
|
78069
78399
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
78070
78400
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
78071
78401
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
78072
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
78073
78402
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
78074
78403
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
78075
78404
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
78076
78405
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
78077
78406
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
78407
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
78078
78408
|
}
|
|
78079
78409
|
|
|
78080
78410
|
export type UserCreateOrConnectWithoutReviewer_assessmentsInput = {
|
|
@@ -78235,12 +78565,12 @@ export namespace Prisma {
|
|
|
78235
78565
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
78236
78566
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
78237
78567
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
78238
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
78239
78568
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
78240
78569
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
78241
78570
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
78242
78571
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
78243
78572
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
78573
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
78244
78574
|
}
|
|
78245
78575
|
|
|
78246
78576
|
export type UserUncheckedCreateWithoutAssessment_resultsInput = {
|
|
@@ -78293,12 +78623,12 @@ export namespace Prisma {
|
|
|
78293
78623
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
78294
78624
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
78295
78625
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
78296
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
78297
78626
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
78298
78627
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
78299
78628
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
78300
78629
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
78301
78630
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
78631
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
78302
78632
|
}
|
|
78303
78633
|
|
|
78304
78634
|
export type UserCreateOrConnectWithoutAssessment_resultsInput = {
|
|
@@ -78418,12 +78748,12 @@ export namespace Prisma {
|
|
|
78418
78748
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
78419
78749
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
78420
78750
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
78421
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
78422
78751
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
78423
78752
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
78424
78753
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
78425
78754
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
78426
78755
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
78756
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
78427
78757
|
}
|
|
78428
78758
|
|
|
78429
78759
|
export type UserUncheckedUpdateWithoutCandidate_assessmentsInput = {
|
|
@@ -78476,12 +78806,12 @@ export namespace Prisma {
|
|
|
78476
78806
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78477
78807
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78478
78808
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78479
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78480
78809
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
78481
78810
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
78482
78811
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
78483
78812
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
78484
78813
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78814
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
78485
78815
|
}
|
|
78486
78816
|
|
|
78487
78817
|
export type UserUpsertWithoutReviewer_assessmentsInput = {
|
|
@@ -78545,12 +78875,12 @@ export namespace Prisma {
|
|
|
78545
78875
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
78546
78876
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
78547
78877
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
78548
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
78549
78878
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
78550
78879
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
78551
78880
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
78552
78881
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
78553
78882
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
78883
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
78554
78884
|
}
|
|
78555
78885
|
|
|
78556
78886
|
export type UserUncheckedUpdateWithoutReviewer_assessmentsInput = {
|
|
@@ -78603,12 +78933,12 @@ export namespace Prisma {
|
|
|
78603
78933
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78604
78934
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78605
78935
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78606
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78607
78936
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
78608
78937
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
78609
78938
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
78610
78939
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
78611
78940
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78941
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
78612
78942
|
}
|
|
78613
78943
|
|
|
78614
78944
|
export type AssessmentQuestionUpsertWithWhereUniqueWithoutAssessmentInput = {
|
|
@@ -78782,12 +79112,12 @@ export namespace Prisma {
|
|
|
78782
79112
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
78783
79113
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
78784
79114
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
78785
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
78786
79115
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
78787
79116
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
78788
79117
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
78789
79118
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
78790
79119
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
79120
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
78791
79121
|
}
|
|
78792
79122
|
|
|
78793
79123
|
export type UserUncheckedUpdateWithoutAssessment_resultsInput = {
|
|
@@ -78840,12 +79170,12 @@ export namespace Prisma {
|
|
|
78840
79170
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78841
79171
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78842
79172
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78843
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78844
79173
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
78845
79174
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
78846
79175
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
78847
79176
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
78848
79177
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
79178
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
78849
79179
|
}
|
|
78850
79180
|
|
|
78851
79181
|
export type OrganisationCreateWithoutAssessment_libraryInput = {
|
|
@@ -80027,11 +80357,11 @@ export namespace Prisma {
|
|
|
80027
80357
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
80028
80358
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
80029
80359
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
80030
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
80031
80360
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
80032
80361
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
80033
80362
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
80034
80363
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
80364
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
80035
80365
|
}
|
|
80036
80366
|
|
|
80037
80367
|
export type UserUncheckedCreateWithoutCalendlyInput = {
|
|
@@ -80085,11 +80415,11 @@ export namespace Prisma {
|
|
|
80085
80415
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
80086
80416
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
80087
80417
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
80088
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
80089
80418
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
80090
80419
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
80091
80420
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
80092
80421
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
80422
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
80093
80423
|
}
|
|
80094
80424
|
|
|
80095
80425
|
export type UserCreateOrConnectWithoutCalendlyInput = {
|
|
@@ -80159,11 +80489,11 @@ export namespace Prisma {
|
|
|
80159
80489
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
80160
80490
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
80161
80491
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
80162
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
80163
80492
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
80164
80493
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
80165
80494
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
80166
80495
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
80496
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
80167
80497
|
}
|
|
80168
80498
|
|
|
80169
80499
|
export type UserUncheckedUpdateWithoutCalendlyInput = {
|
|
@@ -80217,11 +80547,11 @@ export namespace Prisma {
|
|
|
80217
80547
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80218
80548
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80219
80549
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80220
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80221
80550
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
80222
80551
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
80223
80552
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
80224
80553
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80554
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
80225
80555
|
}
|
|
80226
80556
|
|
|
80227
80557
|
export type UserCreateWithoutCandidate_profileInput = {
|
|
@@ -80274,12 +80604,12 @@ export namespace Prisma {
|
|
|
80274
80604
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
80275
80605
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
80276
80606
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
80277
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
80278
80607
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
80279
80608
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
80280
80609
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
80281
80610
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
80282
80611
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
80612
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
80283
80613
|
}
|
|
80284
80614
|
|
|
80285
80615
|
export type UserUncheckedCreateWithoutCandidate_profileInput = {
|
|
@@ -80332,12 +80662,12 @@ export namespace Prisma {
|
|
|
80332
80662
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
80333
80663
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
80334
80664
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
80335
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
80336
80665
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
80337
80666
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
80338
80667
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
80339
80668
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
80340
80669
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
80670
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
80341
80671
|
}
|
|
80342
80672
|
|
|
80343
80673
|
export type UserCreateOrConnectWithoutCandidate_profileInput = {
|
|
@@ -80451,12 +80781,12 @@ export namespace Prisma {
|
|
|
80451
80781
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
80452
80782
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
80453
80783
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
80454
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
80455
80784
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
80456
80785
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
80457
80786
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
80458
80787
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
80459
80788
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
80789
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
80460
80790
|
}
|
|
80461
80791
|
|
|
80462
80792
|
export type UserUncheckedUpdateWithoutCandidate_profileInput = {
|
|
@@ -80509,12 +80839,12 @@ export namespace Prisma {
|
|
|
80509
80839
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80510
80840
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80511
80841
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80512
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80513
80842
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
80514
80843
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
80515
80844
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
80516
80845
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
80517
80846
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80847
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
80518
80848
|
}
|
|
80519
80849
|
|
|
80520
80850
|
export type ResumeUpsertWithoutCandidate_profileInput = {
|
|
@@ -80827,6 +81157,7 @@ export namespace Prisma {
|
|
|
80827
81157
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
80828
81158
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
80829
81159
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
81160
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
80830
81161
|
}
|
|
80831
81162
|
|
|
80832
81163
|
export type ApplicationUncheckedCreateWithoutEvaluation_planInput = {
|
|
@@ -80848,6 +81179,7 @@ export namespace Prisma {
|
|
|
80848
81179
|
is_active?: boolean
|
|
80849
81180
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
80850
81181
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
81182
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
80851
81183
|
}
|
|
80852
81184
|
|
|
80853
81185
|
export type ApplicationCreateOrConnectWithoutEvaluation_planInput = {
|
|
@@ -81567,11 +81899,11 @@ export namespace Prisma {
|
|
|
81567
81899
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
81568
81900
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
81569
81901
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
81570
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
81571
81902
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
81572
81903
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
81573
81904
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
81574
81905
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
81906
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
81575
81907
|
}
|
|
81576
81908
|
|
|
81577
81909
|
export type UserUncheckedCreateWithoutFitChecksInput = {
|
|
@@ -81625,11 +81957,11 @@ export namespace Prisma {
|
|
|
81625
81957
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
81626
81958
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
81627
81959
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
81628
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
81629
81960
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
81630
81961
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
81631
81962
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
81632
81963
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
81964
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
81633
81965
|
}
|
|
81634
81966
|
|
|
81635
81967
|
export type UserCreateOrConnectWithoutFitChecksInput = {
|
|
@@ -81768,6 +82100,7 @@ export namespace Prisma {
|
|
|
81768
82100
|
job_description: JobDescriptionCreateNestedOneWithoutApplicationsInput
|
|
81769
82101
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
81770
82102
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
82103
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
81771
82104
|
}
|
|
81772
82105
|
|
|
81773
82106
|
export type ApplicationUncheckedCreateWithoutFit_checkInput = {
|
|
@@ -81789,6 +82122,7 @@ export namespace Prisma {
|
|
|
81789
82122
|
is_active?: boolean
|
|
81790
82123
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
81791
82124
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
82125
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
81792
82126
|
}
|
|
81793
82127
|
|
|
81794
82128
|
export type ApplicationCreateOrConnectWithoutFit_checkInput = {
|
|
@@ -81935,11 +82269,11 @@ export namespace Prisma {
|
|
|
81935
82269
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
81936
82270
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
81937
82271
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
81938
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
81939
82272
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
81940
82273
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
81941
82274
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
81942
82275
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
82276
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
81943
82277
|
}
|
|
81944
82278
|
|
|
81945
82279
|
export type UserUncheckedUpdateWithoutFitChecksInput = {
|
|
@@ -81993,11 +82327,11 @@ export namespace Prisma {
|
|
|
81993
82327
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
81994
82328
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
81995
82329
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
81996
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
81997
82330
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
81998
82331
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
81999
82332
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
82000
82333
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
82334
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
82001
82335
|
}
|
|
82002
82336
|
|
|
82003
82337
|
export type ResumeUpsertWithoutFit_checkInput = {
|
|
@@ -82154,6 +82488,7 @@ export namespace Prisma {
|
|
|
82154
82488
|
job_description?: JobDescriptionUpdateOneRequiredWithoutApplicationsNestedInput
|
|
82155
82489
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
82156
82490
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
82491
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
82157
82492
|
}
|
|
82158
82493
|
|
|
82159
82494
|
export type ApplicationUncheckedUpdateWithoutFit_checkInput = {
|
|
@@ -82175,6 +82510,7 @@ export namespace Prisma {
|
|
|
82175
82510
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
82176
82511
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
82177
82512
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
82513
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
82178
82514
|
}
|
|
82179
82515
|
|
|
82180
82516
|
export type UserCreateWithoutGoogleInput = {
|
|
@@ -82228,11 +82564,11 @@ export namespace Prisma {
|
|
|
82228
82564
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
82229
82565
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
82230
82566
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
82231
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
82232
82567
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
82233
82568
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
82234
82569
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
82235
82570
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
82571
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
82236
82572
|
}
|
|
82237
82573
|
|
|
82238
82574
|
export type UserUncheckedCreateWithoutGoogleInput = {
|
|
@@ -82286,11 +82622,11 @@ export namespace Prisma {
|
|
|
82286
82622
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
82287
82623
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
82288
82624
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
82289
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
82290
82625
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
82291
82626
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
82292
82627
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
82293
82628
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
82629
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
82294
82630
|
}
|
|
82295
82631
|
|
|
82296
82632
|
export type UserCreateOrConnectWithoutGoogleInput = {
|
|
@@ -82360,11 +82696,11 @@ export namespace Prisma {
|
|
|
82360
82696
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
82361
82697
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
82362
82698
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
82363
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
82364
82699
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
82365
82700
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
82366
82701
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
82367
82702
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
82703
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
82368
82704
|
}
|
|
82369
82705
|
|
|
82370
82706
|
export type UserUncheckedUpdateWithoutGoogleInput = {
|
|
@@ -82418,11 +82754,11 @@ export namespace Prisma {
|
|
|
82418
82754
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82419
82755
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82420
82756
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82421
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82422
82757
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
82423
82758
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
82424
82759
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
82425
82760
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82761
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
82426
82762
|
}
|
|
82427
82763
|
|
|
82428
82764
|
export type InterviewCreateWithoutIntermediateFeedbacksInput = {
|
|
@@ -82784,12 +83120,12 @@ export namespace Prisma {
|
|
|
82784
83120
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
82785
83121
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
82786
83122
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
82787
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
82788
83123
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
82789
83124
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
82790
83125
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
82791
83126
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
82792
83127
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
83128
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
82793
83129
|
}
|
|
82794
83130
|
|
|
82795
83131
|
export type UserUncheckedCreateWithoutCandidate_interviewsInput = {
|
|
@@ -82842,12 +83178,12 @@ export namespace Prisma {
|
|
|
82842
83178
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
82843
83179
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
82844
83180
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
82845
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
82846
83181
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
82847
83182
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
82848
83183
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
82849
83184
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
82850
83185
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
83186
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
82851
83187
|
}
|
|
82852
83188
|
|
|
82853
83189
|
export type UserCreateOrConnectWithoutCandidate_interviewsInput = {
|
|
@@ -82905,12 +83241,12 @@ export namespace Prisma {
|
|
|
82905
83241
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
82906
83242
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
82907
83243
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
82908
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
82909
83244
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
82910
83245
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
82911
83246
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
82912
83247
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
82913
83248
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
83249
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
82914
83250
|
}
|
|
82915
83251
|
|
|
82916
83252
|
export type UserUncheckedCreateWithoutInterviewer_interviewsInput = {
|
|
@@ -82963,12 +83299,12 @@ export namespace Prisma {
|
|
|
82963
83299
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
82964
83300
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
82965
83301
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
82966
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
82967
83302
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
82968
83303
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
82969
83304
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
82970
83305
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
82971
83306
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
83307
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
82972
83308
|
}
|
|
82973
83309
|
|
|
82974
83310
|
export type UserCreateOrConnectWithoutInterviewer_interviewsInput = {
|
|
@@ -83239,6 +83575,7 @@ export namespace Prisma {
|
|
|
83239
83575
|
job_description: JobDescriptionCreateNestedOneWithoutApplicationsInput
|
|
83240
83576
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
83241
83577
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
83578
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
83242
83579
|
}
|
|
83243
83580
|
|
|
83244
83581
|
export type ApplicationUncheckedCreateWithoutInterviewsInput = {
|
|
@@ -83260,6 +83597,7 @@ export namespace Prisma {
|
|
|
83260
83597
|
updated_by: string
|
|
83261
83598
|
is_active?: boolean
|
|
83262
83599
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
83600
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
83263
83601
|
}
|
|
83264
83602
|
|
|
83265
83603
|
export type ApplicationCreateOrConnectWithoutInterviewsInput = {
|
|
@@ -83621,12 +83959,12 @@ export namespace Prisma {
|
|
|
83621
83959
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
83622
83960
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
83623
83961
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
83624
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
83625
83962
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
83626
83963
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
83627
83964
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
83628
83965
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
83629
83966
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
83967
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
83630
83968
|
}
|
|
83631
83969
|
|
|
83632
83970
|
export type UserUncheckedUpdateWithoutCandidate_interviewsInput = {
|
|
@@ -83679,12 +84017,12 @@ export namespace Prisma {
|
|
|
83679
84017
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83680
84018
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83681
84019
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83682
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83683
84020
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
83684
84021
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
83685
84022
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
83686
84023
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
83687
84024
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
84025
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
83688
84026
|
}
|
|
83689
84027
|
|
|
83690
84028
|
export type UserUpsertWithoutInterviewer_interviewsInput = {
|
|
@@ -83748,12 +84086,12 @@ export namespace Prisma {
|
|
|
83748
84086
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
83749
84087
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
83750
84088
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
83751
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
83752
84089
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
83753
84090
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
83754
84091
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
83755
84092
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
83756
84093
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
84094
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
83757
84095
|
}
|
|
83758
84096
|
|
|
83759
84097
|
export type UserUncheckedUpdateWithoutInterviewer_interviewsInput = {
|
|
@@ -83806,12 +84144,12 @@ export namespace Prisma {
|
|
|
83806
84144
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83807
84145
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83808
84146
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83809
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83810
84147
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
83811
84148
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
83812
84149
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
83813
84150
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
83814
84151
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
84152
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
83815
84153
|
}
|
|
83816
84154
|
|
|
83817
84155
|
export type OrganisationUpsertWithoutInterviewsInput = {
|
|
@@ -84112,6 +84450,7 @@ export namespace Prisma {
|
|
|
84112
84450
|
job_description?: JobDescriptionUpdateOneRequiredWithoutApplicationsNestedInput
|
|
84113
84451
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
84114
84452
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
84453
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
84115
84454
|
}
|
|
84116
84455
|
|
|
84117
84456
|
export type ApplicationUncheckedUpdateWithoutInterviewsInput = {
|
|
@@ -84133,6 +84472,7 @@ export namespace Prisma {
|
|
|
84133
84472
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
84134
84473
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
84135
84474
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
84475
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
84136
84476
|
}
|
|
84137
84477
|
|
|
84138
84478
|
export type OngoingEvaluationUpsertWithoutInterviewInput = {
|
|
@@ -84777,6 +85117,7 @@ export namespace Prisma {
|
|
|
84777
85117
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
84778
85118
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
84779
85119
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
85120
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
84780
85121
|
}
|
|
84781
85122
|
|
|
84782
85123
|
export type ApplicationUncheckedCreateWithoutJob_descriptionInput = {
|
|
@@ -84798,6 +85139,7 @@ export namespace Prisma {
|
|
|
84798
85139
|
is_active?: boolean
|
|
84799
85140
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
84800
85141
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
85142
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
84801
85143
|
}
|
|
84802
85144
|
|
|
84803
85145
|
export type ApplicationCreateOrConnectWithoutJob_descriptionInput = {
|
|
@@ -85353,12 +85695,12 @@ export namespace Prisma {
|
|
|
85353
85695
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
85354
85696
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
85355
85697
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
85356
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
85357
85698
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
85358
85699
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
85359
85700
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
85360
85701
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
85361
85702
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
85703
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
85362
85704
|
}
|
|
85363
85705
|
|
|
85364
85706
|
export type UserUncheckedCreateWithoutHiring_manager_job_descriptionsInput = {
|
|
@@ -85411,12 +85753,12 @@ export namespace Prisma {
|
|
|
85411
85753
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
85412
85754
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
85413
85755
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
85414
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
85415
85756
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
85416
85757
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
85417
85758
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
85418
85759
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
85419
85760
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
85761
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
85420
85762
|
}
|
|
85421
85763
|
|
|
85422
85764
|
export type UserCreateOrConnectWithoutHiring_manager_job_descriptionsInput = {
|
|
@@ -85474,12 +85816,12 @@ export namespace Prisma {
|
|
|
85474
85816
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
85475
85817
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
85476
85818
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
85477
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
85478
85819
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
85479
85820
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
85480
85821
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
85481
85822
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
85482
85823
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
85824
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
85483
85825
|
}
|
|
85484
85826
|
|
|
85485
85827
|
export type UserUncheckedCreateWithoutJob_descriptionInput = {
|
|
@@ -85532,12 +85874,12 @@ export namespace Prisma {
|
|
|
85532
85874
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
85533
85875
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
85534
85876
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
85535
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
85536
85877
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
85537
85878
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
85538
85879
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
85539
85880
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
85540
85881
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
85882
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
85541
85883
|
}
|
|
85542
85884
|
|
|
85543
85885
|
export type UserCreateOrConnectWithoutJob_descriptionInput = {
|
|
@@ -86027,12 +86369,12 @@ export namespace Prisma {
|
|
|
86027
86369
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
86028
86370
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
86029
86371
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
86030
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
86031
86372
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
86032
86373
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
86033
86374
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
86034
86375
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
86035
86376
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
86377
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
86036
86378
|
}
|
|
86037
86379
|
|
|
86038
86380
|
export type UserUncheckedUpdateWithoutHiring_manager_job_descriptionsInput = {
|
|
@@ -86085,12 +86427,12 @@ export namespace Prisma {
|
|
|
86085
86427
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86086
86428
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86087
86429
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86088
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86089
86430
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
86090
86431
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
86091
86432
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
86092
86433
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
86093
86434
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86435
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
86094
86436
|
}
|
|
86095
86437
|
|
|
86096
86438
|
export type UserUpsertWithWhereUniqueWithoutJob_descriptionInput = {
|
|
@@ -86315,12 +86657,12 @@ export namespace Prisma {
|
|
|
86315
86657
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
86316
86658
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
86317
86659
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
86318
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
86319
86660
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
86320
86661
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
86321
86662
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
86322
86663
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
86323
86664
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
86665
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
86324
86666
|
}
|
|
86325
86667
|
|
|
86326
86668
|
export type UserUncheckedCreateWithoutSent_messagesInput = {
|
|
@@ -86373,12 +86715,12 @@ export namespace Prisma {
|
|
|
86373
86715
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
86374
86716
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
86375
86717
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
86376
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
86377
86718
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
86378
86719
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
86379
86720
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
86380
86721
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
86381
86722
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
86723
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
86382
86724
|
}
|
|
86383
86725
|
|
|
86384
86726
|
export type UserCreateOrConnectWithoutSent_messagesInput = {
|
|
@@ -86436,12 +86778,12 @@ export namespace Prisma {
|
|
|
86436
86778
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
86437
86779
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
86438
86780
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
86439
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
86440
86781
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
86441
86782
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
86442
86783
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
86443
86784
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
86444
86785
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
86786
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
86445
86787
|
}
|
|
86446
86788
|
|
|
86447
86789
|
export type UserUncheckedCreateWithoutReceived_messagesInput = {
|
|
@@ -86494,12 +86836,12 @@ export namespace Prisma {
|
|
|
86494
86836
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
86495
86837
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
86496
86838
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
86497
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
86498
86839
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
86499
86840
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
86500
86841
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
86501
86842
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
86502
86843
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
86844
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
86503
86845
|
}
|
|
86504
86846
|
|
|
86505
86847
|
export type UserCreateOrConnectWithoutReceived_messagesInput = {
|
|
@@ -86568,12 +86910,12 @@ export namespace Prisma {
|
|
|
86568
86910
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
86569
86911
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
86570
86912
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
86571
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
86572
86913
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
86573
86914
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
86574
86915
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
86575
86916
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
86576
86917
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
86918
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
86577
86919
|
}
|
|
86578
86920
|
|
|
86579
86921
|
export type UserUncheckedUpdateWithoutSent_messagesInput = {
|
|
@@ -86626,12 +86968,12 @@ export namespace Prisma {
|
|
|
86626
86968
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86627
86969
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86628
86970
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86629
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86630
86971
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
86631
86972
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
86632
86973
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
86633
86974
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
86634
86975
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86976
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
86635
86977
|
}
|
|
86636
86978
|
|
|
86637
86979
|
export type UserUpsertWithoutReceived_messagesInput = {
|
|
@@ -86695,12 +87037,12 @@ export namespace Prisma {
|
|
|
86695
87037
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
86696
87038
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
86697
87039
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
86698
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
86699
87040
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
86700
87041
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
86701
87042
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
86702
87043
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
86703
87044
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
87045
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
86704
87046
|
}
|
|
86705
87047
|
|
|
86706
87048
|
export type UserUncheckedUpdateWithoutReceived_messagesInput = {
|
|
@@ -86753,12 +87095,12 @@ export namespace Prisma {
|
|
|
86753
87095
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86754
87096
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86755
87097
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86756
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86757
87098
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
86758
87099
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
86759
87100
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
86760
87101
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
86761
87102
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
87103
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
86762
87104
|
}
|
|
86763
87105
|
|
|
86764
87106
|
export type JobDescriptionCreateWithoutOngoing_evaluationsInput = {
|
|
@@ -86847,6 +87189,7 @@ export namespace Prisma {
|
|
|
86847
87189
|
job_description: JobDescriptionCreateNestedOneWithoutApplicationsInput
|
|
86848
87190
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
86849
87191
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
87192
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
86850
87193
|
}
|
|
86851
87194
|
|
|
86852
87195
|
export type ApplicationUncheckedCreateWithoutOngoing_evaluationsInput = {
|
|
@@ -86868,6 +87211,7 @@ export namespace Prisma {
|
|
|
86868
87211
|
updated_by: string
|
|
86869
87212
|
is_active?: boolean
|
|
86870
87213
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
87214
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
86871
87215
|
}
|
|
86872
87216
|
|
|
86873
87217
|
export type ApplicationCreateOrConnectWithoutOngoing_evaluationsInput = {
|
|
@@ -86925,12 +87269,12 @@ export namespace Prisma {
|
|
|
86925
87269
|
reviewer_assessments?: AssessmentCreateNestedManyWithoutReviewerInput
|
|
86926
87270
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
86927
87271
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
86928
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
86929
87272
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
86930
87273
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
86931
87274
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
86932
87275
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
86933
87276
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
87277
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
86934
87278
|
}
|
|
86935
87279
|
|
|
86936
87280
|
export type UserUncheckedCreateWithoutOngoing_evaluationsInput = {
|
|
@@ -86983,12 +87327,12 @@ export namespace Prisma {
|
|
|
86983
87327
|
reviewer_assessments?: AssessmentUncheckedCreateNestedManyWithoutReviewerInput
|
|
86984
87328
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
86985
87329
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
86986
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
86987
87330
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
86988
87331
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
86989
87332
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
86990
87333
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
86991
87334
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
87335
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
86992
87336
|
}
|
|
86993
87337
|
|
|
86994
87338
|
export type UserCreateOrConnectWithoutOngoing_evaluationsInput = {
|
|
@@ -87349,6 +87693,7 @@ export namespace Prisma {
|
|
|
87349
87693
|
job_description?: JobDescriptionUpdateOneRequiredWithoutApplicationsNestedInput
|
|
87350
87694
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
87351
87695
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
87696
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
87352
87697
|
}
|
|
87353
87698
|
|
|
87354
87699
|
export type ApplicationUncheckedUpdateWithoutOngoing_evaluationsInput = {
|
|
@@ -87370,6 +87715,7 @@ export namespace Prisma {
|
|
|
87370
87715
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
87371
87716
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
87372
87717
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
87718
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
87373
87719
|
}
|
|
87374
87720
|
|
|
87375
87721
|
export type UserUpsertWithoutOngoing_evaluationsInput = {
|
|
@@ -87433,12 +87779,12 @@ export namespace Prisma {
|
|
|
87433
87779
|
reviewer_assessments?: AssessmentUpdateManyWithoutReviewerNestedInput
|
|
87434
87780
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
87435
87781
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
87436
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
87437
87782
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
87438
87783
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
87439
87784
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
87440
87785
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
87441
87786
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
87787
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
87442
87788
|
}
|
|
87443
87789
|
|
|
87444
87790
|
export type UserUncheckedUpdateWithoutOngoing_evaluationsInput = {
|
|
@@ -87491,12 +87837,12 @@ export namespace Prisma {
|
|
|
87491
87837
|
reviewer_assessments?: AssessmentUncheckedUpdateManyWithoutReviewerNestedInput
|
|
87492
87838
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
87493
87839
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
87494
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
87495
87840
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
87496
87841
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
87497
87842
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
87498
87843
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
87499
87844
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
87845
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
87500
87846
|
}
|
|
87501
87847
|
|
|
87502
87848
|
export type ResumeUpsertWithoutOngoing_evaluationsInput = {
|
|
@@ -87823,12 +88169,12 @@ export namespace Prisma {
|
|
|
87823
88169
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
87824
88170
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
87825
88171
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
87826
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
87827
88172
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
87828
88173
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
87829
88174
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
87830
88175
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
87831
88176
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
88177
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
87832
88178
|
}
|
|
87833
88179
|
|
|
87834
88180
|
export type UserUncheckedCreateWithoutOrganisationInput = {
|
|
@@ -87881,12 +88227,12 @@ export namespace Prisma {
|
|
|
87881
88227
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
87882
88228
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
87883
88229
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
87884
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
87885
88230
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
87886
88231
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
87887
88232
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
87888
88233
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
87889
88234
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
88235
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
87890
88236
|
}
|
|
87891
88237
|
|
|
87892
88238
|
export type UserCreateOrConnectWithoutOrganisationInput = {
|
|
@@ -87918,6 +88264,7 @@ export namespace Prisma {
|
|
|
87918
88264
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
87919
88265
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
87920
88266
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
88267
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
87921
88268
|
}
|
|
87922
88269
|
|
|
87923
88270
|
export type ApplicationUncheckedCreateWithoutOrganisationInput = {
|
|
@@ -87939,6 +88286,7 @@ export namespace Prisma {
|
|
|
87939
88286
|
is_active?: boolean
|
|
87940
88287
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
87941
88288
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
88289
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
87942
88290
|
}
|
|
87943
88291
|
|
|
87944
88292
|
export type ApplicationCreateOrConnectWithoutOrganisationInput = {
|
|
@@ -89311,12 +89659,12 @@ export namespace Prisma {
|
|
|
89311
89659
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
89312
89660
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
89313
89661
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
89314
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
89315
89662
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
89316
89663
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
89317
89664
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
89318
89665
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
89319
89666
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
89667
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
89320
89668
|
}
|
|
89321
89669
|
|
|
89322
89670
|
export type UserUncheckedCreateWithoutPanelistInput = {
|
|
@@ -89369,12 +89717,12 @@ export namespace Prisma {
|
|
|
89369
89717
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
89370
89718
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
89371
89719
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
89372
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
89373
89720
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
89374
89721
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
89375
89722
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
89376
89723
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
89377
89724
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
89725
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
89378
89726
|
}
|
|
89379
89727
|
|
|
89380
89728
|
export type UserCreateOrConnectWithoutPanelistInput = {
|
|
@@ -89663,12 +90011,12 @@ export namespace Prisma {
|
|
|
89663
90011
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
89664
90012
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
89665
90013
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
89666
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
89667
90014
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
89668
90015
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
89669
90016
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
89670
90017
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
89671
90018
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
90019
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
89672
90020
|
}
|
|
89673
90021
|
|
|
89674
90022
|
export type UserUncheckedUpdateWithoutPanelistInput = {
|
|
@@ -89721,12 +90069,12 @@ export namespace Prisma {
|
|
|
89721
90069
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
89722
90070
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
89723
90071
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
89724
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
89725
90072
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
89726
90073
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
89727
90074
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
89728
90075
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
89729
90076
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90077
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
89730
90078
|
}
|
|
89731
90079
|
|
|
89732
90080
|
export type OrganisationUpsertWithoutPanelistsInput = {
|
|
@@ -89904,12 +90252,12 @@ export namespace Prisma {
|
|
|
89904
90252
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
89905
90253
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
89906
90254
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
89907
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
89908
90255
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
89909
90256
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
89910
90257
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
89911
90258
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
89912
90259
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
90260
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
89913
90261
|
}
|
|
89914
90262
|
|
|
89915
90263
|
export type UserUncheckedCreateWithoutPermissionInput = {
|
|
@@ -89962,12 +90310,12 @@ export namespace Prisma {
|
|
|
89962
90310
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
89963
90311
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
89964
90312
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
89965
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
89966
90313
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
89967
90314
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
89968
90315
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
89969
90316
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
89970
90317
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
90318
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
89971
90319
|
}
|
|
89972
90320
|
|
|
89973
90321
|
export type UserCreateOrConnectWithoutPermissionInput = {
|
|
@@ -90067,12 +90415,12 @@ export namespace Prisma {
|
|
|
90067
90415
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
90068
90416
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
90069
90417
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
90070
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
90071
90418
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
90072
90419
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
90073
90420
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
90074
90421
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
90075
90422
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
90423
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
90076
90424
|
}
|
|
90077
90425
|
|
|
90078
90426
|
export type UserUncheckedUpdateWithoutPermissionInput = {
|
|
@@ -90125,12 +90473,12 @@ export namespace Prisma {
|
|
|
90125
90473
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90126
90474
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90127
90475
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90128
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90129
90476
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
90130
90477
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
90131
90478
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
90132
90479
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
90133
90480
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90481
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
90134
90482
|
}
|
|
90135
90483
|
|
|
90136
90484
|
export type UserRoleUpsertWithoutPermissionInput = {
|
|
@@ -90220,12 +90568,12 @@ export namespace Prisma {
|
|
|
90220
90568
|
reviewer_assessments?: AssessmentCreateNestedManyWithoutReviewerInput
|
|
90221
90569
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
90222
90570
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
90223
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
90224
90571
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
90225
90572
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
90226
90573
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
90227
90574
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
90228
90575
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
90576
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
90229
90577
|
}
|
|
90230
90578
|
|
|
90231
90579
|
export type UserUncheckedCreateWithoutQuestionsInput = {
|
|
@@ -90278,12 +90626,12 @@ export namespace Prisma {
|
|
|
90278
90626
|
reviewer_assessments?: AssessmentUncheckedCreateNestedManyWithoutReviewerInput
|
|
90279
90627
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
90280
90628
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
90281
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
90282
90629
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
90283
90630
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
90284
90631
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
90285
90632
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
90286
90633
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
90634
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
90287
90635
|
}
|
|
90288
90636
|
|
|
90289
90637
|
export type UserCreateOrConnectWithoutQuestionsInput = {
|
|
@@ -90516,12 +90864,12 @@ export namespace Prisma {
|
|
|
90516
90864
|
reviewer_assessments?: AssessmentUpdateManyWithoutReviewerNestedInput
|
|
90517
90865
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
90518
90866
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
90519
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
90520
90867
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
90521
90868
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
90522
90869
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
90523
90870
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
90524
90871
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
90872
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
90525
90873
|
}
|
|
90526
90874
|
|
|
90527
90875
|
export type UserUncheckedUpdateWithoutQuestionsInput = {
|
|
@@ -90574,12 +90922,12 @@ export namespace Prisma {
|
|
|
90574
90922
|
reviewer_assessments?: AssessmentUncheckedUpdateManyWithoutReviewerNestedInput
|
|
90575
90923
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90576
90924
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90577
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90578
90925
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
90579
90926
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
90580
90927
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
90581
90928
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
90582
90929
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90930
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
90583
90931
|
}
|
|
90584
90932
|
|
|
90585
90933
|
export type AssessmentQuestionUpsertWithWhereUniqueWithoutQuestionInput = {
|
|
@@ -90782,12 +91130,12 @@ export namespace Prisma {
|
|
|
90782
91130
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
90783
91131
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
90784
91132
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
90785
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
90786
91133
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
90787
91134
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
90788
91135
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
90789
91136
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
90790
91137
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
91138
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
90791
91139
|
}
|
|
90792
91140
|
|
|
90793
91141
|
export type UserUncheckedCreateWithoutResumeInput = {
|
|
@@ -90840,12 +91188,12 @@ export namespace Prisma {
|
|
|
90840
91188
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
90841
91189
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
90842
91190
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
90843
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
90844
91191
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
90845
91192
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
90846
91193
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
90847
91194
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
90848
91195
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
91196
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
90849
91197
|
}
|
|
90850
91198
|
|
|
90851
91199
|
export type UserCreateOrConnectWithoutResumeInput = {
|
|
@@ -91010,6 +91358,7 @@ export namespace Prisma {
|
|
|
91010
91358
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
91011
91359
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
91012
91360
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
91361
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
91013
91362
|
}
|
|
91014
91363
|
|
|
91015
91364
|
export type ApplicationUncheckedCreateWithoutResumeInput = {
|
|
@@ -91031,6 +91380,7 @@ export namespace Prisma {
|
|
|
91031
91380
|
is_active?: boolean
|
|
91032
91381
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
91033
91382
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
91383
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
91034
91384
|
}
|
|
91035
91385
|
|
|
91036
91386
|
export type ApplicationCreateOrConnectWithoutResumeInput = {
|
|
@@ -91411,12 +91761,12 @@ export namespace Prisma {
|
|
|
91411
91761
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
91412
91762
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
91413
91763
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
91414
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
91415
91764
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
91416
91765
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
91417
91766
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
91418
91767
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
91419
91768
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
91769
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
91420
91770
|
}
|
|
91421
91771
|
|
|
91422
91772
|
export type UserUncheckedUpdateWithoutResumeInput = {
|
|
@@ -91469,12 +91819,12 @@ export namespace Prisma {
|
|
|
91469
91819
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
91470
91820
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
91471
91821
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
91472
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
91473
91822
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
91474
91823
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
91475
91824
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
91476
91825
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
91477
91826
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
91827
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
91478
91828
|
}
|
|
91479
91829
|
|
|
91480
91830
|
export type OrganisationUpsertWithoutResumesInput = {
|
|
@@ -92811,6 +93161,7 @@ export namespace Prisma {
|
|
|
92811
93161
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
92812
93162
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
92813
93163
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
93164
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
92814
93165
|
}
|
|
92815
93166
|
|
|
92816
93167
|
export type ApplicationUncheckedCreateWithoutCandidateInput = {
|
|
@@ -92832,6 +93183,7 @@ export namespace Prisma {
|
|
|
92832
93183
|
is_active?: boolean
|
|
92833
93184
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
92834
93185
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
93186
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
92835
93187
|
}
|
|
92836
93188
|
|
|
92837
93189
|
export type ApplicationCreateOrConnectWithoutCandidateInput = {
|
|
@@ -93710,38 +94062,6 @@ export namespace Prisma {
|
|
|
93710
94062
|
skipDuplicates?: boolean
|
|
93711
94063
|
}
|
|
93712
94064
|
|
|
93713
|
-
export type ActivityLogCreateWithoutCandidateInput = {
|
|
93714
|
-
id?: string
|
|
93715
|
-
actor_type?: $Enums.ActivityActorType
|
|
93716
|
-
message: string
|
|
93717
|
-
timestamp?: Date | string
|
|
93718
|
-
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
93719
|
-
created_at?: Date | string
|
|
93720
|
-
is_active?: boolean
|
|
93721
|
-
actor?: UserCreateNestedOneWithoutActor_activity_logsInput
|
|
93722
|
-
}
|
|
93723
|
-
|
|
93724
|
-
export type ActivityLogUncheckedCreateWithoutCandidateInput = {
|
|
93725
|
-
id?: string
|
|
93726
|
-
actor_id?: string | null
|
|
93727
|
-
actor_type?: $Enums.ActivityActorType
|
|
93728
|
-
message: string
|
|
93729
|
-
timestamp?: Date | string
|
|
93730
|
-
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
93731
|
-
created_at?: Date | string
|
|
93732
|
-
is_active?: boolean
|
|
93733
|
-
}
|
|
93734
|
-
|
|
93735
|
-
export type ActivityLogCreateOrConnectWithoutCandidateInput = {
|
|
93736
|
-
where: ActivityLogWhereUniqueInput
|
|
93737
|
-
create: XOR<ActivityLogCreateWithoutCandidateInput, ActivityLogUncheckedCreateWithoutCandidateInput>
|
|
93738
|
-
}
|
|
93739
|
-
|
|
93740
|
-
export type ActivityLogCreateManyCandidateInputEnvelope = {
|
|
93741
|
-
data: ActivityLogCreateManyCandidateInput | ActivityLogCreateManyCandidateInput[]
|
|
93742
|
-
skipDuplicates?: boolean
|
|
93743
|
-
}
|
|
93744
|
-
|
|
93745
94065
|
export type ActivityLogCreateWithoutActorInput = {
|
|
93746
94066
|
id?: string
|
|
93747
94067
|
actor_type?: $Enums.ActivityActorType
|
|
@@ -93750,18 +94070,20 @@ export namespace Prisma {
|
|
|
93750
94070
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
93751
94071
|
created_at?: Date | string
|
|
93752
94072
|
is_active?: boolean
|
|
93753
|
-
|
|
94073
|
+
application: ApplicationCreateNestedOneWithoutActivity_logsInput
|
|
94074
|
+
user?: UserCreateNestedOneWithoutActivityLogsInput
|
|
93754
94075
|
}
|
|
93755
94076
|
|
|
93756
94077
|
export type ActivityLogUncheckedCreateWithoutActorInput = {
|
|
93757
94078
|
id?: string
|
|
93758
|
-
|
|
94079
|
+
application_id: string
|
|
93759
94080
|
actor_type?: $Enums.ActivityActorType
|
|
93760
94081
|
message: string
|
|
93761
94082
|
timestamp?: Date | string
|
|
93762
94083
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
93763
94084
|
created_at?: Date | string
|
|
93764
94085
|
is_active?: boolean
|
|
94086
|
+
userId?: string | null
|
|
93765
94087
|
}
|
|
93766
94088
|
|
|
93767
94089
|
export type ActivityLogCreateOrConnectWithoutActorInput = {
|
|
@@ -93954,6 +94276,40 @@ export namespace Prisma {
|
|
|
93954
94276
|
skipDuplicates?: boolean
|
|
93955
94277
|
}
|
|
93956
94278
|
|
|
94279
|
+
export type ActivityLogCreateWithoutUserInput = {
|
|
94280
|
+
id?: string
|
|
94281
|
+
actor_type?: $Enums.ActivityActorType
|
|
94282
|
+
message: string
|
|
94283
|
+
timestamp?: Date | string
|
|
94284
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
94285
|
+
created_at?: Date | string
|
|
94286
|
+
is_active?: boolean
|
|
94287
|
+
actor?: UserCreateNestedOneWithoutActor_activity_logsInput
|
|
94288
|
+
application: ApplicationCreateNestedOneWithoutActivity_logsInput
|
|
94289
|
+
}
|
|
94290
|
+
|
|
94291
|
+
export type ActivityLogUncheckedCreateWithoutUserInput = {
|
|
94292
|
+
id?: string
|
|
94293
|
+
application_id: string
|
|
94294
|
+
actor_id?: string | null
|
|
94295
|
+
actor_type?: $Enums.ActivityActorType
|
|
94296
|
+
message: string
|
|
94297
|
+
timestamp?: Date | string
|
|
94298
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
94299
|
+
created_at?: Date | string
|
|
94300
|
+
is_active?: boolean
|
|
94301
|
+
}
|
|
94302
|
+
|
|
94303
|
+
export type ActivityLogCreateOrConnectWithoutUserInput = {
|
|
94304
|
+
where: ActivityLogWhereUniqueInput
|
|
94305
|
+
create: XOR<ActivityLogCreateWithoutUserInput, ActivityLogUncheckedCreateWithoutUserInput>
|
|
94306
|
+
}
|
|
94307
|
+
|
|
94308
|
+
export type ActivityLogCreateManyUserInputEnvelope = {
|
|
94309
|
+
data: ActivityLogCreateManyUserInput | ActivityLogCreateManyUserInput[]
|
|
94310
|
+
skipDuplicates?: boolean
|
|
94311
|
+
}
|
|
94312
|
+
|
|
93957
94313
|
export type UserRoleUpsertWithoutUsersInput = {
|
|
93958
94314
|
update: XOR<UserRoleUpdateWithoutUsersInput, UserRoleUncheckedUpdateWithoutUsersInput>
|
|
93959
94315
|
create: XOR<UserRoleCreateWithoutUsersInput, UserRoleUncheckedCreateWithoutUsersInput>
|
|
@@ -94497,37 +94853,6 @@ export namespace Prisma {
|
|
|
94497
94853
|
data: XOR<OngoingEvaluationUpdateManyMutationInput, OngoingEvaluationUncheckedUpdateManyWithoutCandidateInput>
|
|
94498
94854
|
}
|
|
94499
94855
|
|
|
94500
|
-
export type ActivityLogUpsertWithWhereUniqueWithoutCandidateInput = {
|
|
94501
|
-
where: ActivityLogWhereUniqueInput
|
|
94502
|
-
update: XOR<ActivityLogUpdateWithoutCandidateInput, ActivityLogUncheckedUpdateWithoutCandidateInput>
|
|
94503
|
-
create: XOR<ActivityLogCreateWithoutCandidateInput, ActivityLogUncheckedCreateWithoutCandidateInput>
|
|
94504
|
-
}
|
|
94505
|
-
|
|
94506
|
-
export type ActivityLogUpdateWithWhereUniqueWithoutCandidateInput = {
|
|
94507
|
-
where: ActivityLogWhereUniqueInput
|
|
94508
|
-
data: XOR<ActivityLogUpdateWithoutCandidateInput, ActivityLogUncheckedUpdateWithoutCandidateInput>
|
|
94509
|
-
}
|
|
94510
|
-
|
|
94511
|
-
export type ActivityLogUpdateManyWithWhereWithoutCandidateInput = {
|
|
94512
|
-
where: ActivityLogScalarWhereInput
|
|
94513
|
-
data: XOR<ActivityLogUpdateManyMutationInput, ActivityLogUncheckedUpdateManyWithoutCandidateInput>
|
|
94514
|
-
}
|
|
94515
|
-
|
|
94516
|
-
export type ActivityLogScalarWhereInput = {
|
|
94517
|
-
AND?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
94518
|
-
OR?: ActivityLogScalarWhereInput[]
|
|
94519
|
-
NOT?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
94520
|
-
id?: StringFilter<"ActivityLog"> | string
|
|
94521
|
-
candidate_id?: StringFilter<"ActivityLog"> | string
|
|
94522
|
-
actor_id?: StringNullableFilter<"ActivityLog"> | string | null
|
|
94523
|
-
actor_type?: EnumActivityActorTypeFilter<"ActivityLog"> | $Enums.ActivityActorType
|
|
94524
|
-
message?: StringFilter<"ActivityLog"> | string
|
|
94525
|
-
timestamp?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
94526
|
-
metadata?: JsonNullableFilter<"ActivityLog">
|
|
94527
|
-
created_at?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
94528
|
-
is_active?: BoolFilter<"ActivityLog"> | boolean
|
|
94529
|
-
}
|
|
94530
|
-
|
|
94531
94856
|
export type ActivityLogUpsertWithWhereUniqueWithoutActorInput = {
|
|
94532
94857
|
where: ActivityLogWhereUniqueInput
|
|
94533
94858
|
update: XOR<ActivityLogUpdateWithoutActorInput, ActivityLogUncheckedUpdateWithoutActorInput>
|
|
@@ -94650,6 +94975,22 @@ export namespace Prisma {
|
|
|
94650
94975
|
data: XOR<FitCheckUpdateManyMutationInput, FitCheckUncheckedUpdateManyWithoutCandidateInput>
|
|
94651
94976
|
}
|
|
94652
94977
|
|
|
94978
|
+
export type ActivityLogUpsertWithWhereUniqueWithoutUserInput = {
|
|
94979
|
+
where: ActivityLogWhereUniqueInput
|
|
94980
|
+
update: XOR<ActivityLogUpdateWithoutUserInput, ActivityLogUncheckedUpdateWithoutUserInput>
|
|
94981
|
+
create: XOR<ActivityLogCreateWithoutUserInput, ActivityLogUncheckedCreateWithoutUserInput>
|
|
94982
|
+
}
|
|
94983
|
+
|
|
94984
|
+
export type ActivityLogUpdateWithWhereUniqueWithoutUserInput = {
|
|
94985
|
+
where: ActivityLogWhereUniqueInput
|
|
94986
|
+
data: XOR<ActivityLogUpdateWithoutUserInput, ActivityLogUncheckedUpdateWithoutUserInput>
|
|
94987
|
+
}
|
|
94988
|
+
|
|
94989
|
+
export type ActivityLogUpdateManyWithWhereWithoutUserInput = {
|
|
94990
|
+
where: ActivityLogScalarWhereInput
|
|
94991
|
+
data: XOR<ActivityLogUpdateManyMutationInput, ActivityLogUncheckedUpdateManyWithoutUserInput>
|
|
94992
|
+
}
|
|
94993
|
+
|
|
94653
94994
|
export type UserCreateWithoutUser_profileInput = {
|
|
94654
94995
|
id?: string
|
|
94655
94996
|
email: string
|
|
@@ -94700,12 +95041,12 @@ export namespace Prisma {
|
|
|
94700
95041
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
94701
95042
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
94702
95043
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
94703
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
94704
95044
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
94705
95045
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
94706
95046
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
94707
95047
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
94708
95048
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
95049
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
94709
95050
|
}
|
|
94710
95051
|
|
|
94711
95052
|
export type UserUncheckedCreateWithoutUser_profileInput = {
|
|
@@ -94758,12 +95099,12 @@ export namespace Prisma {
|
|
|
94758
95099
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
94759
95100
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
94760
95101
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
94761
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
94762
95102
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
94763
95103
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
94764
95104
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
94765
95105
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
94766
95106
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
95107
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
94767
95108
|
}
|
|
94768
95109
|
|
|
94769
95110
|
export type UserCreateOrConnectWithoutUser_profileInput = {
|
|
@@ -94832,12 +95173,12 @@ export namespace Prisma {
|
|
|
94832
95173
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
94833
95174
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
94834
95175
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
94835
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
94836
95176
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
94837
95177
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
94838
95178
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
94839
95179
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
94840
95180
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
95181
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
94841
95182
|
}
|
|
94842
95183
|
|
|
94843
95184
|
export type UserUncheckedUpdateWithoutUser_profileInput = {
|
|
@@ -94890,12 +95231,12 @@ export namespace Prisma {
|
|
|
94890
95231
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94891
95232
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94892
95233
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94893
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94894
95234
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
94895
95235
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
94896
95236
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
94897
95237
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
94898
95238
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95239
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
94899
95240
|
}
|
|
94900
95241
|
|
|
94901
95242
|
export type UserCreateManyRoleInput = {
|
|
@@ -94982,12 +95323,12 @@ export namespace Prisma {
|
|
|
94982
95323
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
94983
95324
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
94984
95325
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
94985
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
94986
95326
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
94987
95327
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
94988
95328
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
94989
95329
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
94990
95330
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
95331
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
94991
95332
|
}
|
|
94992
95333
|
|
|
94993
95334
|
export type UserUncheckedUpdateWithoutRoleInput = {
|
|
@@ -95040,12 +95381,12 @@ export namespace Prisma {
|
|
|
95040
95381
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95041
95382
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95042
95383
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95043
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95044
95384
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
95045
95385
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
95046
95386
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
95047
95387
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
95048
95388
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95389
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
95049
95390
|
}
|
|
95050
95391
|
|
|
95051
95392
|
export type UserUncheckedUpdateManyWithoutRoleInput = {
|
|
@@ -95140,6 +95481,18 @@ export namespace Prisma {
|
|
|
95140
95481
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
95141
95482
|
}
|
|
95142
95483
|
|
|
95484
|
+
export type ActivityLogCreateManyApplicationInput = {
|
|
95485
|
+
id?: string
|
|
95486
|
+
actor_id?: string | null
|
|
95487
|
+
actor_type?: $Enums.ActivityActorType
|
|
95488
|
+
message: string
|
|
95489
|
+
timestamp?: Date | string
|
|
95490
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
95491
|
+
created_at?: Date | string
|
|
95492
|
+
is_active?: boolean
|
|
95493
|
+
userId?: string | null
|
|
95494
|
+
}
|
|
95495
|
+
|
|
95143
95496
|
export type InterviewUpdateWithoutApplicationInput = {
|
|
95144
95497
|
id?: StringFieldUpdateOperationsInput | string
|
|
95145
95498
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -95328,6 +95681,42 @@ export namespace Prisma {
|
|
|
95328
95681
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
95329
95682
|
}
|
|
95330
95683
|
|
|
95684
|
+
export type ActivityLogUpdateWithoutApplicationInput = {
|
|
95685
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
95686
|
+
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
95687
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
95688
|
+
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95689
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
95690
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95691
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95692
|
+
actor?: UserUpdateOneWithoutActor_activity_logsNestedInput
|
|
95693
|
+
user?: UserUpdateOneWithoutActivityLogsNestedInput
|
|
95694
|
+
}
|
|
95695
|
+
|
|
95696
|
+
export type ActivityLogUncheckedUpdateWithoutApplicationInput = {
|
|
95697
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
95698
|
+
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95699
|
+
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
95700
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
95701
|
+
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95702
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
95703
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95704
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95705
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95706
|
+
}
|
|
95707
|
+
|
|
95708
|
+
export type ActivityLogUncheckedUpdateManyWithoutApplicationInput = {
|
|
95709
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
95710
|
+
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95711
|
+
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
95712
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
95713
|
+
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95714
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
95715
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95716
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95717
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95718
|
+
}
|
|
95719
|
+
|
|
95331
95720
|
export type AssessmentQuestionCreateManyAssessmentInput = {
|
|
95332
95721
|
question_id: string
|
|
95333
95722
|
created_at?: Date | string
|
|
@@ -96081,6 +96470,7 @@ export namespace Prisma {
|
|
|
96081
96470
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
96082
96471
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
96083
96472
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
96473
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
96084
96474
|
}
|
|
96085
96475
|
|
|
96086
96476
|
export type ApplicationUncheckedUpdateWithoutEvaluation_planInput = {
|
|
@@ -96102,6 +96492,7 @@ export namespace Prisma {
|
|
|
96102
96492
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
96103
96493
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
96104
96494
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
96495
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
96105
96496
|
}
|
|
96106
96497
|
|
|
96107
96498
|
export type ApplicationUncheckedUpdateManyWithoutEvaluation_planInput = {
|
|
@@ -96827,6 +97218,7 @@ export namespace Prisma {
|
|
|
96827
97218
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
96828
97219
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
96829
97220
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
97221
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
96830
97222
|
}
|
|
96831
97223
|
|
|
96832
97224
|
export type ApplicationUncheckedUpdateWithoutJob_descriptionInput = {
|
|
@@ -96848,6 +97240,7 @@ export namespace Prisma {
|
|
|
96848
97240
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
96849
97241
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
96850
97242
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
97243
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
96851
97244
|
}
|
|
96852
97245
|
|
|
96853
97246
|
export type ApplicationUncheckedUpdateManyWithoutJob_descriptionInput = {
|
|
@@ -97445,12 +97838,12 @@ export namespace Prisma {
|
|
|
97445
97838
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
97446
97839
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
97447
97840
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
97448
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
97449
97841
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
97450
97842
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
97451
97843
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
97452
97844
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
97453
97845
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
97846
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
97454
97847
|
}
|
|
97455
97848
|
|
|
97456
97849
|
export type UserUncheckedUpdateWithoutJob_descriptionInput = {
|
|
@@ -97503,12 +97896,12 @@ export namespace Prisma {
|
|
|
97503
97896
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97504
97897
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97505
97898
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97506
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97507
97899
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
97508
97900
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
97509
97901
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
97510
97902
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
97511
97903
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97904
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
97512
97905
|
}
|
|
97513
97906
|
|
|
97514
97907
|
export type UserUncheckedUpdateManyWithoutJob_descriptionInput = {
|
|
@@ -97936,12 +98329,12 @@ export namespace Prisma {
|
|
|
97936
98329
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
97937
98330
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
97938
98331
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
97939
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
97940
98332
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
97941
98333
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
97942
98334
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
97943
98335
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
97944
98336
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
98337
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
97945
98338
|
}
|
|
97946
98339
|
|
|
97947
98340
|
export type UserUncheckedUpdateWithoutOrganisationInput = {
|
|
@@ -97994,12 +98387,12 @@ export namespace Prisma {
|
|
|
97994
98387
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97995
98388
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97996
98389
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97997
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97998
98390
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
97999
98391
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
98000
98392
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
98001
98393
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
98002
98394
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
98395
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
98003
98396
|
}
|
|
98004
98397
|
|
|
98005
98398
|
export type UserUncheckedUpdateManyWithoutOrganisationInput = {
|
|
@@ -98055,6 +98448,7 @@ export namespace Prisma {
|
|
|
98055
98448
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
98056
98449
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
98057
98450
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
98451
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
98058
98452
|
}
|
|
98059
98453
|
|
|
98060
98454
|
export type ApplicationUncheckedUpdateWithoutOrganisationInput = {
|
|
@@ -98076,6 +98470,7 @@ export namespace Prisma {
|
|
|
98076
98470
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
98077
98471
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
98078
98472
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
98473
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
98079
98474
|
}
|
|
98080
98475
|
|
|
98081
98476
|
export type ApplicationUncheckedUpdateManyWithoutOrganisationInput = {
|
|
@@ -99351,6 +99746,7 @@ export namespace Prisma {
|
|
|
99351
99746
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
99352
99747
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
99353
99748
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
99749
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
99354
99750
|
}
|
|
99355
99751
|
|
|
99356
99752
|
export type ApplicationUncheckedUpdateWithoutResumeInput = {
|
|
@@ -99372,6 +99768,7 @@ export namespace Prisma {
|
|
|
99372
99768
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
99373
99769
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
99374
99770
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
99771
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
99375
99772
|
}
|
|
99376
99773
|
|
|
99377
99774
|
export type ApplicationUncheckedUpdateManyWithoutResumeInput = {
|
|
@@ -100035,26 +100432,16 @@ export namespace Prisma {
|
|
|
100035
100432
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
100036
100433
|
}
|
|
100037
100434
|
|
|
100038
|
-
export type ActivityLogCreateManyCandidateInput = {
|
|
100039
|
-
id?: string
|
|
100040
|
-
actor_id?: string | null
|
|
100041
|
-
actor_type?: $Enums.ActivityActorType
|
|
100042
|
-
message: string
|
|
100043
|
-
timestamp?: Date | string
|
|
100044
|
-
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
100045
|
-
created_at?: Date | string
|
|
100046
|
-
is_active?: boolean
|
|
100047
|
-
}
|
|
100048
|
-
|
|
100049
100435
|
export type ActivityLogCreateManyActorInput = {
|
|
100050
100436
|
id?: string
|
|
100051
|
-
|
|
100437
|
+
application_id: string
|
|
100052
100438
|
actor_type?: $Enums.ActivityActorType
|
|
100053
100439
|
message: string
|
|
100054
100440
|
timestamp?: Date | string
|
|
100055
100441
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
100056
100442
|
created_at?: Date | string
|
|
100057
100443
|
is_active?: boolean
|
|
100444
|
+
userId?: string | null
|
|
100058
100445
|
}
|
|
100059
100446
|
|
|
100060
100447
|
export type ActionCreateManyUserInput = {
|
|
@@ -100105,6 +100492,18 @@ export namespace Prisma {
|
|
|
100105
100492
|
updated_at?: Date | string
|
|
100106
100493
|
}
|
|
100107
100494
|
|
|
100495
|
+
export type ActivityLogCreateManyUserInput = {
|
|
100496
|
+
id?: string
|
|
100497
|
+
application_id: string
|
|
100498
|
+
actor_id?: string | null
|
|
100499
|
+
actor_type?: $Enums.ActivityActorType
|
|
100500
|
+
message: string
|
|
100501
|
+
timestamp?: Date | string
|
|
100502
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
100503
|
+
created_at?: Date | string
|
|
100504
|
+
is_active?: boolean
|
|
100505
|
+
}
|
|
100506
|
+
|
|
100108
100507
|
export type ApplicationUpdateWithoutCandidateInput = {
|
|
100109
100508
|
id?: StringFieldUpdateOperationsInput | string
|
|
100110
100509
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
@@ -100124,6 +100523,7 @@ export namespace Prisma {
|
|
|
100124
100523
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
100125
100524
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
100126
100525
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
100526
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
100127
100527
|
}
|
|
100128
100528
|
|
|
100129
100529
|
export type ApplicationUncheckedUpdateWithoutCandidateInput = {
|
|
@@ -100145,6 +100545,7 @@ export namespace Prisma {
|
|
|
100145
100545
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
100146
100546
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
100147
100547
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
100548
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
100148
100549
|
}
|
|
100149
100550
|
|
|
100150
100551
|
export type ApplicationUncheckedUpdateManyWithoutCandidateInput = {
|
|
@@ -101027,39 +101428,6 @@ export namespace Prisma {
|
|
|
101027
101428
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
101028
101429
|
}
|
|
101029
101430
|
|
|
101030
|
-
export type ActivityLogUpdateWithoutCandidateInput = {
|
|
101031
|
-
id?: StringFieldUpdateOperationsInput | string
|
|
101032
|
-
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101033
|
-
message?: StringFieldUpdateOperationsInput | string
|
|
101034
|
-
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101035
|
-
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101036
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101037
|
-
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101038
|
-
actor?: UserUpdateOneWithoutActor_activity_logsNestedInput
|
|
101039
|
-
}
|
|
101040
|
-
|
|
101041
|
-
export type ActivityLogUncheckedUpdateWithoutCandidateInput = {
|
|
101042
|
-
id?: StringFieldUpdateOperationsInput | string
|
|
101043
|
-
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101044
|
-
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101045
|
-
message?: StringFieldUpdateOperationsInput | string
|
|
101046
|
-
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101047
|
-
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101048
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101049
|
-
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101050
|
-
}
|
|
101051
|
-
|
|
101052
|
-
export type ActivityLogUncheckedUpdateManyWithoutCandidateInput = {
|
|
101053
|
-
id?: StringFieldUpdateOperationsInput | string
|
|
101054
|
-
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101055
|
-
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101056
|
-
message?: StringFieldUpdateOperationsInput | string
|
|
101057
|
-
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101058
|
-
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101059
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101060
|
-
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101061
|
-
}
|
|
101062
|
-
|
|
101063
101431
|
export type ActivityLogUpdateWithoutActorInput = {
|
|
101064
101432
|
id?: StringFieldUpdateOperationsInput | string
|
|
101065
101433
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
@@ -101068,29 +101436,32 @@ export namespace Prisma {
|
|
|
101068
101436
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101069
101437
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101070
101438
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101071
|
-
|
|
101439
|
+
application?: ApplicationUpdateOneRequiredWithoutActivity_logsNestedInput
|
|
101440
|
+
user?: UserUpdateOneWithoutActivityLogsNestedInput
|
|
101072
101441
|
}
|
|
101073
101442
|
|
|
101074
101443
|
export type ActivityLogUncheckedUpdateWithoutActorInput = {
|
|
101075
101444
|
id?: StringFieldUpdateOperationsInput | string
|
|
101076
|
-
|
|
101445
|
+
application_id?: StringFieldUpdateOperationsInput | string
|
|
101077
101446
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101078
101447
|
message?: StringFieldUpdateOperationsInput | string
|
|
101079
101448
|
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101080
101449
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101081
101450
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101082
101451
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101452
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101083
101453
|
}
|
|
101084
101454
|
|
|
101085
101455
|
export type ActivityLogUncheckedUpdateManyWithoutActorInput = {
|
|
101086
101456
|
id?: StringFieldUpdateOperationsInput | string
|
|
101087
|
-
|
|
101457
|
+
application_id?: StringFieldUpdateOperationsInput | string
|
|
101088
101458
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101089
101459
|
message?: StringFieldUpdateOperationsInput | string
|
|
101090
101460
|
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101091
101461
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101092
101462
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101093
101463
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101464
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101094
101465
|
}
|
|
101095
101466
|
|
|
101096
101467
|
export type ActionUpdateWithoutUserInput = {
|
|
@@ -101239,6 +101610,42 @@ export namespace Prisma {
|
|
|
101239
101610
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101240
101611
|
}
|
|
101241
101612
|
|
|
101613
|
+
export type ActivityLogUpdateWithoutUserInput = {
|
|
101614
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
101615
|
+
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101616
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
101617
|
+
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101618
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101619
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101620
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101621
|
+
actor?: UserUpdateOneWithoutActor_activity_logsNestedInput
|
|
101622
|
+
application?: ApplicationUpdateOneRequiredWithoutActivity_logsNestedInput
|
|
101623
|
+
}
|
|
101624
|
+
|
|
101625
|
+
export type ActivityLogUncheckedUpdateWithoutUserInput = {
|
|
101626
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
101627
|
+
application_id?: StringFieldUpdateOperationsInput | string
|
|
101628
|
+
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101629
|
+
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101630
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
101631
|
+
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101632
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101633
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101634
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101635
|
+
}
|
|
101636
|
+
|
|
101637
|
+
export type ActivityLogUncheckedUpdateManyWithoutUserInput = {
|
|
101638
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
101639
|
+
application_id?: StringFieldUpdateOperationsInput | string
|
|
101640
|
+
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101641
|
+
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101642
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
101643
|
+
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101644
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101645
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101646
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101647
|
+
}
|
|
101648
|
+
|
|
101242
101649
|
|
|
101243
101650
|
|
|
101244
101651
|
/**
|