@adaptware/eagles-db 0.1.38 → 0.1.40
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 +4 -4
- package/client/index-browser.js +1 -1
- package/client/index.d.ts +377 -593
- package/client/index.js +4 -4
- package/client/package.json +1 -1
- package/client/schema.prisma +13 -13
- package/client/wasm.js +1 -1
- package/package.json +1 -1
- package/prisma/schema/activityLog.prisma +12 -12
- package/prisma/schema/applications.prisma +1 -0
- package/prisma/schema/user.prisma +15 -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,7 +5515,6 @@ 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
|
|
@@ -5528,7 +5536,6 @@ export namespace Prisma {
|
|
|
5528
5536
|
candidateResponses?: boolean | UserCountOutputTypeCountCandidateResponsesArgs
|
|
5529
5537
|
questions?: boolean | UserCountOutputTypeCountQuestionsArgs
|
|
5530
5538
|
ongoing_evaluations?: boolean | UserCountOutputTypeCountOngoing_evaluationsArgs
|
|
5531
|
-
candidate_activity_logs?: boolean | UserCountOutputTypeCountCandidate_activity_logsArgs
|
|
5532
5539
|
actor_activity_logs?: boolean | UserCountOutputTypeCountActor_activity_logsArgs
|
|
5533
5540
|
actions?: boolean | UserCountOutputTypeCountActionsArgs
|
|
5534
5541
|
fitChecks?: boolean | UserCountOutputTypeCountFitChecksArgs
|
|
@@ -5650,13 +5657,6 @@ export namespace Prisma {
|
|
|
5650
5657
|
where?: OngoingEvaluationWhereInput
|
|
5651
5658
|
}
|
|
5652
5659
|
|
|
5653
|
-
/**
|
|
5654
|
-
* UserCountOutputType without action
|
|
5655
|
-
*/
|
|
5656
|
-
export type UserCountOutputTypeCountCandidate_activity_logsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5657
|
-
where?: ActivityLogWhereInput
|
|
5658
|
-
}
|
|
5659
|
-
|
|
5660
5660
|
/**
|
|
5661
5661
|
* UserCountOutputType without action
|
|
5662
5662
|
*/
|
|
@@ -9250,7 +9250,7 @@ export namespace Prisma {
|
|
|
9250
9250
|
|
|
9251
9251
|
export type ActivityLogMinAggregateOutputType = {
|
|
9252
9252
|
id: string | null
|
|
9253
|
-
|
|
9253
|
+
application_id: string | null
|
|
9254
9254
|
actor_id: string | null
|
|
9255
9255
|
actor_type: $Enums.ActivityActorType | null
|
|
9256
9256
|
message: string | null
|
|
@@ -9261,7 +9261,7 @@ export namespace Prisma {
|
|
|
9261
9261
|
|
|
9262
9262
|
export type ActivityLogMaxAggregateOutputType = {
|
|
9263
9263
|
id: string | null
|
|
9264
|
-
|
|
9264
|
+
application_id: string | null
|
|
9265
9265
|
actor_id: string | null
|
|
9266
9266
|
actor_type: $Enums.ActivityActorType | null
|
|
9267
9267
|
message: string | null
|
|
@@ -9272,7 +9272,7 @@ export namespace Prisma {
|
|
|
9272
9272
|
|
|
9273
9273
|
export type ActivityLogCountAggregateOutputType = {
|
|
9274
9274
|
id: number
|
|
9275
|
-
|
|
9275
|
+
application_id: number
|
|
9276
9276
|
actor_id: number
|
|
9277
9277
|
actor_type: number
|
|
9278
9278
|
message: number
|
|
@@ -9286,7 +9286,7 @@ export namespace Prisma {
|
|
|
9286
9286
|
|
|
9287
9287
|
export type ActivityLogMinAggregateInputType = {
|
|
9288
9288
|
id?: true
|
|
9289
|
-
|
|
9289
|
+
application_id?: true
|
|
9290
9290
|
actor_id?: true
|
|
9291
9291
|
actor_type?: true
|
|
9292
9292
|
message?: true
|
|
@@ -9297,7 +9297,7 @@ export namespace Prisma {
|
|
|
9297
9297
|
|
|
9298
9298
|
export type ActivityLogMaxAggregateInputType = {
|
|
9299
9299
|
id?: true
|
|
9300
|
-
|
|
9300
|
+
application_id?: true
|
|
9301
9301
|
actor_id?: true
|
|
9302
9302
|
actor_type?: true
|
|
9303
9303
|
message?: true
|
|
@@ -9308,7 +9308,7 @@ export namespace Prisma {
|
|
|
9308
9308
|
|
|
9309
9309
|
export type ActivityLogCountAggregateInputType = {
|
|
9310
9310
|
id?: true
|
|
9311
|
-
|
|
9311
|
+
application_id?: true
|
|
9312
9312
|
actor_id?: true
|
|
9313
9313
|
actor_type?: true
|
|
9314
9314
|
message?: true
|
|
@@ -9393,7 +9393,7 @@ export namespace Prisma {
|
|
|
9393
9393
|
|
|
9394
9394
|
export type ActivityLogGroupByOutputType = {
|
|
9395
9395
|
id: string
|
|
9396
|
-
|
|
9396
|
+
application_id: string
|
|
9397
9397
|
actor_id: string | null
|
|
9398
9398
|
actor_type: $Enums.ActivityActorType
|
|
9399
9399
|
message: string
|
|
@@ -9422,7 +9422,7 @@ export namespace Prisma {
|
|
|
9422
9422
|
|
|
9423
9423
|
export type ActivityLogSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9424
9424
|
id?: boolean
|
|
9425
|
-
|
|
9425
|
+
application_id?: boolean
|
|
9426
9426
|
actor_id?: boolean
|
|
9427
9427
|
actor_type?: boolean
|
|
9428
9428
|
message?: boolean
|
|
@@ -9430,13 +9430,13 @@ export namespace Prisma {
|
|
|
9430
9430
|
metadata?: boolean
|
|
9431
9431
|
created_at?: boolean
|
|
9432
9432
|
is_active?: boolean
|
|
9433
|
-
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
9434
9433
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9434
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9435
9435
|
}, ExtArgs["result"]["activityLog"]>
|
|
9436
9436
|
|
|
9437
9437
|
export type ActivityLogSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9438
9438
|
id?: boolean
|
|
9439
|
-
|
|
9439
|
+
application_id?: boolean
|
|
9440
9440
|
actor_id?: boolean
|
|
9441
9441
|
actor_type?: boolean
|
|
9442
9442
|
message?: boolean
|
|
@@ -9444,13 +9444,13 @@ export namespace Prisma {
|
|
|
9444
9444
|
metadata?: boolean
|
|
9445
9445
|
created_at?: boolean
|
|
9446
9446
|
is_active?: boolean
|
|
9447
|
-
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
9448
9447
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9448
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9449
9449
|
}, ExtArgs["result"]["activityLog"]>
|
|
9450
9450
|
|
|
9451
9451
|
export type ActivityLogSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9452
9452
|
id?: boolean
|
|
9453
|
-
|
|
9453
|
+
application_id?: boolean
|
|
9454
9454
|
actor_id?: boolean
|
|
9455
9455
|
actor_type?: boolean
|
|
9456
9456
|
message?: boolean
|
|
@@ -9458,13 +9458,13 @@ export namespace Prisma {
|
|
|
9458
9458
|
metadata?: boolean
|
|
9459
9459
|
created_at?: boolean
|
|
9460
9460
|
is_active?: boolean
|
|
9461
|
-
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
9462
9461
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9462
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9463
9463
|
}, ExtArgs["result"]["activityLog"]>
|
|
9464
9464
|
|
|
9465
9465
|
export type ActivityLogSelectScalar = {
|
|
9466
9466
|
id?: boolean
|
|
9467
|
-
|
|
9467
|
+
application_id?: boolean
|
|
9468
9468
|
actor_id?: boolean
|
|
9469
9469
|
actor_type?: boolean
|
|
9470
9470
|
message?: boolean
|
|
@@ -9474,29 +9474,29 @@ export namespace Prisma {
|
|
|
9474
9474
|
is_active?: boolean
|
|
9475
9475
|
}
|
|
9476
9476
|
|
|
9477
|
-
export type ActivityLogOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "
|
|
9477
|
+
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", ExtArgs["result"]["activityLog"]>
|
|
9478
9478
|
export type ActivityLogInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9479
|
-
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
9480
9479
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9480
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9481
9481
|
}
|
|
9482
9482
|
export type ActivityLogIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9483
|
-
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
9484
9483
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9484
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9485
9485
|
}
|
|
9486
9486
|
export type ActivityLogIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9487
|
-
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
9488
9487
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9488
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9489
9489
|
}
|
|
9490
9490
|
|
|
9491
9491
|
export type $ActivityLogPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9492
9492
|
name: "ActivityLog"
|
|
9493
9493
|
objects: {
|
|
9494
|
-
candidate: Prisma.$UserPayload<ExtArgs>
|
|
9495
9494
|
actor: Prisma.$UserPayload<ExtArgs> | null
|
|
9495
|
+
application: Prisma.$ApplicationPayload<ExtArgs>
|
|
9496
9496
|
}
|
|
9497
9497
|
scalars: $Extensions.GetPayloadResult<{
|
|
9498
9498
|
id: string
|
|
9499
|
-
|
|
9499
|
+
application_id: string
|
|
9500
9500
|
actor_id: string | null
|
|
9501
9501
|
actor_type: $Enums.ActivityActorType
|
|
9502
9502
|
message: string
|
|
@@ -9898,8 +9898,8 @@ export namespace Prisma {
|
|
|
9898
9898
|
*/
|
|
9899
9899
|
export interface Prisma__ActivityLogClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
9900
9900
|
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
9901
|
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>
|
|
9902
|
+
application<T extends ApplicationDefaultArgs<ExtArgs> = {}>(args?: Subset<T, ApplicationDefaultArgs<ExtArgs>>): Prisma__ApplicationClient<$Result.GetResult<Prisma.$ApplicationPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
9903
9903
|
/**
|
|
9904
9904
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
9905
9905
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -9930,7 +9930,7 @@ export namespace Prisma {
|
|
|
9930
9930
|
*/
|
|
9931
9931
|
interface ActivityLogFieldRefs {
|
|
9932
9932
|
readonly id: FieldRef<"ActivityLog", 'String'>
|
|
9933
|
-
readonly
|
|
9933
|
+
readonly application_id: FieldRef<"ActivityLog", 'String'>
|
|
9934
9934
|
readonly actor_id: FieldRef<"ActivityLog", 'String'>
|
|
9935
9935
|
readonly actor_type: FieldRef<"ActivityLog", 'ActivityActorType'>
|
|
9936
9936
|
readonly message: FieldRef<"ActivityLog", 'String'>
|
|
@@ -10677,6 +10677,7 @@ export namespace Prisma {
|
|
|
10677
10677
|
fit_check?: boolean | Application$fit_checkArgs<ExtArgs>
|
|
10678
10678
|
interviews?: boolean | Application$interviewsArgs<ExtArgs>
|
|
10679
10679
|
ongoing_evaluations?: boolean | Application$ongoing_evaluationsArgs<ExtArgs>
|
|
10680
|
+
activity_logs?: boolean | Application$activity_logsArgs<ExtArgs>
|
|
10680
10681
|
_count?: boolean | ApplicationCountOutputTypeDefaultArgs<ExtArgs>
|
|
10681
10682
|
}, ExtArgs["result"]["application"]>
|
|
10682
10683
|
|
|
@@ -10762,6 +10763,7 @@ export namespace Prisma {
|
|
|
10762
10763
|
fit_check?: boolean | Application$fit_checkArgs<ExtArgs>
|
|
10763
10764
|
interviews?: boolean | Application$interviewsArgs<ExtArgs>
|
|
10764
10765
|
ongoing_evaluations?: boolean | Application$ongoing_evaluationsArgs<ExtArgs>
|
|
10766
|
+
activity_logs?: boolean | Application$activity_logsArgs<ExtArgs>
|
|
10765
10767
|
_count?: boolean | ApplicationCountOutputTypeDefaultArgs<ExtArgs>
|
|
10766
10768
|
}
|
|
10767
10769
|
export type ApplicationIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -10792,6 +10794,7 @@ export namespace Prisma {
|
|
|
10792
10794
|
fit_check: Prisma.$FitCheckPayload<ExtArgs> | null
|
|
10793
10795
|
interviews: Prisma.$InterviewPayload<ExtArgs>[]
|
|
10794
10796
|
ongoing_evaluations: Prisma.$OngoingEvaluationPayload<ExtArgs>[]
|
|
10797
|
+
activity_logs: Prisma.$ActivityLogPayload<ExtArgs>[]
|
|
10795
10798
|
}
|
|
10796
10799
|
scalars: $Extensions.GetPayloadResult<{
|
|
10797
10800
|
id: string
|
|
@@ -11213,6 +11216,7 @@ export namespace Prisma {
|
|
|
11213
11216
|
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
11217
|
interviews<T extends Application$interviewsArgs<ExtArgs> = {}>(args?: Subset<T, Application$interviewsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$InterviewPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
11215
11218
|
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>
|
|
11219
|
+
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
11220
|
/**
|
|
11217
11221
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
11218
11222
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -11740,6 +11744,30 @@ export namespace Prisma {
|
|
|
11740
11744
|
distinct?: OngoingEvaluationScalarFieldEnum | OngoingEvaluationScalarFieldEnum[]
|
|
11741
11745
|
}
|
|
11742
11746
|
|
|
11747
|
+
/**
|
|
11748
|
+
* Application.activity_logs
|
|
11749
|
+
*/
|
|
11750
|
+
export type Application$activity_logsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11751
|
+
/**
|
|
11752
|
+
* Select specific fields to fetch from the ActivityLog
|
|
11753
|
+
*/
|
|
11754
|
+
select?: ActivityLogSelect<ExtArgs> | null
|
|
11755
|
+
/**
|
|
11756
|
+
* Omit specific fields from the ActivityLog
|
|
11757
|
+
*/
|
|
11758
|
+
omit?: ActivityLogOmit<ExtArgs> | null
|
|
11759
|
+
/**
|
|
11760
|
+
* Choose, which related nodes to fetch as well
|
|
11761
|
+
*/
|
|
11762
|
+
include?: ActivityLogInclude<ExtArgs> | null
|
|
11763
|
+
where?: ActivityLogWhereInput
|
|
11764
|
+
orderBy?: ActivityLogOrderByWithRelationInput | ActivityLogOrderByWithRelationInput[]
|
|
11765
|
+
cursor?: ActivityLogWhereUniqueInput
|
|
11766
|
+
take?: number
|
|
11767
|
+
skip?: number
|
|
11768
|
+
distinct?: ActivityLogScalarFieldEnum | ActivityLogScalarFieldEnum[]
|
|
11769
|
+
}
|
|
11770
|
+
|
|
11743
11771
|
/**
|
|
11744
11772
|
* Application without action
|
|
11745
11773
|
*/
|
|
@@ -51617,7 +51645,6 @@ export namespace Prisma {
|
|
|
51617
51645
|
candidateResponses?: boolean | User$candidateResponsesArgs<ExtArgs>
|
|
51618
51646
|
questions?: boolean | User$questionsArgs<ExtArgs>
|
|
51619
51647
|
ongoing_evaluations?: boolean | User$ongoing_evaluationsArgs<ExtArgs>
|
|
51620
|
-
candidate_activity_logs?: boolean | User$candidate_activity_logsArgs<ExtArgs>
|
|
51621
51648
|
actor_activity_logs?: boolean | User$actor_activity_logsArgs<ExtArgs>
|
|
51622
51649
|
actions?: boolean | User$actionsArgs<ExtArgs>
|
|
51623
51650
|
calendly?: boolean | User$calendlyArgs<ExtArgs>
|
|
@@ -51760,7 +51787,6 @@ export namespace Prisma {
|
|
|
51760
51787
|
candidateResponses?: boolean | User$candidateResponsesArgs<ExtArgs>
|
|
51761
51788
|
questions?: boolean | User$questionsArgs<ExtArgs>
|
|
51762
51789
|
ongoing_evaluations?: boolean | User$ongoing_evaluationsArgs<ExtArgs>
|
|
51763
|
-
candidate_activity_logs?: boolean | User$candidate_activity_logsArgs<ExtArgs>
|
|
51764
51790
|
actor_activity_logs?: boolean | User$actor_activity_logsArgs<ExtArgs>
|
|
51765
51791
|
actions?: boolean | User$actionsArgs<ExtArgs>
|
|
51766
51792
|
calendly?: boolean | User$calendlyArgs<ExtArgs>
|
|
@@ -51803,7 +51829,6 @@ export namespace Prisma {
|
|
|
51803
51829
|
candidateResponses: Prisma.$CandidateQuestionResponsePayload<ExtArgs>[]
|
|
51804
51830
|
questions: Prisma.$QuestionPayload<ExtArgs>[]
|
|
51805
51831
|
ongoing_evaluations: Prisma.$OngoingEvaluationPayload<ExtArgs>[]
|
|
51806
|
-
candidate_activity_logs: Prisma.$ActivityLogPayload<ExtArgs>[]
|
|
51807
51832
|
actor_activity_logs: Prisma.$ActivityLogPayload<ExtArgs>[]
|
|
51808
51833
|
actions: Prisma.$ActionPayload<ExtArgs>[]
|
|
51809
51834
|
calendly: Prisma.$CalendlyPayload<ExtArgs> | null
|
|
@@ -52258,7 +52283,6 @@ export namespace Prisma {
|
|
|
52258
52283
|
candidateResponses<T extends User$candidateResponsesArgs<ExtArgs> = {}>(args?: Subset<T, User$candidateResponsesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CandidateQuestionResponsePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52259
52284
|
questions<T extends User$questionsArgs<ExtArgs> = {}>(args?: Subset<T, User$questionsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$QuestionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52260
52285
|
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
52286
|
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
52287
|
actions<T extends User$actionsArgs<ExtArgs> = {}>(args?: Subset<T, User$actionsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ActionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52264
52288
|
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>
|
|
@@ -53175,30 +53199,6 @@ export namespace Prisma {
|
|
|
53175
53199
|
distinct?: OngoingEvaluationScalarFieldEnum | OngoingEvaluationScalarFieldEnum[]
|
|
53176
53200
|
}
|
|
53177
53201
|
|
|
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
53202
|
/**
|
|
53203
53203
|
* User.actor_activity_logs
|
|
53204
53204
|
*/
|
|
@@ -54547,7 +54547,7 @@ export namespace Prisma {
|
|
|
54547
54547
|
|
|
54548
54548
|
export const ActivityLogScalarFieldEnum: {
|
|
54549
54549
|
id: 'id',
|
|
54550
|
-
|
|
54550
|
+
application_id: 'application_id',
|
|
54551
54551
|
actor_id: 'actor_id',
|
|
54552
54552
|
actor_type: 'actor_type',
|
|
54553
54553
|
message: 'message',
|
|
@@ -56063,7 +56063,7 @@ export namespace Prisma {
|
|
|
56063
56063
|
OR?: ActivityLogWhereInput[]
|
|
56064
56064
|
NOT?: ActivityLogWhereInput | ActivityLogWhereInput[]
|
|
56065
56065
|
id?: StringFilter<"ActivityLog"> | string
|
|
56066
|
-
|
|
56066
|
+
application_id?: StringFilter<"ActivityLog"> | string
|
|
56067
56067
|
actor_id?: StringNullableFilter<"ActivityLog"> | string | null
|
|
56068
56068
|
actor_type?: EnumActivityActorTypeFilter<"ActivityLog"> | $Enums.ActivityActorType
|
|
56069
56069
|
message?: StringFilter<"ActivityLog"> | string
|
|
@@ -56071,13 +56071,13 @@ export namespace Prisma {
|
|
|
56071
56071
|
metadata?: JsonNullableFilter<"ActivityLog">
|
|
56072
56072
|
created_at?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
56073
56073
|
is_active?: BoolFilter<"ActivityLog"> | boolean
|
|
56074
|
-
candidate?: XOR<UserScalarRelationFilter, UserWhereInput>
|
|
56075
56074
|
actor?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
56075
|
+
application?: XOR<ApplicationScalarRelationFilter, ApplicationWhereInput>
|
|
56076
56076
|
}
|
|
56077
56077
|
|
|
56078
56078
|
export type ActivityLogOrderByWithRelationInput = {
|
|
56079
56079
|
id?: SortOrder
|
|
56080
|
-
|
|
56080
|
+
application_id?: SortOrder
|
|
56081
56081
|
actor_id?: SortOrderInput | SortOrder
|
|
56082
56082
|
actor_type?: SortOrder
|
|
56083
56083
|
message?: SortOrder
|
|
@@ -56085,8 +56085,8 @@ export namespace Prisma {
|
|
|
56085
56085
|
metadata?: SortOrderInput | SortOrder
|
|
56086
56086
|
created_at?: SortOrder
|
|
56087
56087
|
is_active?: SortOrder
|
|
56088
|
-
candidate?: UserOrderByWithRelationInput
|
|
56089
56088
|
actor?: UserOrderByWithRelationInput
|
|
56089
|
+
application?: ApplicationOrderByWithRelationInput
|
|
56090
56090
|
}
|
|
56091
56091
|
|
|
56092
56092
|
export type ActivityLogWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -56094,7 +56094,7 @@ export namespace Prisma {
|
|
|
56094
56094
|
AND?: ActivityLogWhereInput | ActivityLogWhereInput[]
|
|
56095
56095
|
OR?: ActivityLogWhereInput[]
|
|
56096
56096
|
NOT?: ActivityLogWhereInput | ActivityLogWhereInput[]
|
|
56097
|
-
|
|
56097
|
+
application_id?: StringFilter<"ActivityLog"> | string
|
|
56098
56098
|
actor_id?: StringNullableFilter<"ActivityLog"> | string | null
|
|
56099
56099
|
actor_type?: EnumActivityActorTypeFilter<"ActivityLog"> | $Enums.ActivityActorType
|
|
56100
56100
|
message?: StringFilter<"ActivityLog"> | string
|
|
@@ -56102,13 +56102,13 @@ export namespace Prisma {
|
|
|
56102
56102
|
metadata?: JsonNullableFilter<"ActivityLog">
|
|
56103
56103
|
created_at?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
56104
56104
|
is_active?: BoolFilter<"ActivityLog"> | boolean
|
|
56105
|
-
candidate?: XOR<UserScalarRelationFilter, UserWhereInput>
|
|
56106
56105
|
actor?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
56106
|
+
application?: XOR<ApplicationScalarRelationFilter, ApplicationWhereInput>
|
|
56107
56107
|
}, "id">
|
|
56108
56108
|
|
|
56109
56109
|
export type ActivityLogOrderByWithAggregationInput = {
|
|
56110
56110
|
id?: SortOrder
|
|
56111
|
-
|
|
56111
|
+
application_id?: SortOrder
|
|
56112
56112
|
actor_id?: SortOrderInput | SortOrder
|
|
56113
56113
|
actor_type?: SortOrder
|
|
56114
56114
|
message?: SortOrder
|
|
@@ -56126,7 +56126,7 @@ export namespace Prisma {
|
|
|
56126
56126
|
OR?: ActivityLogScalarWhereWithAggregatesInput[]
|
|
56127
56127
|
NOT?: ActivityLogScalarWhereWithAggregatesInput | ActivityLogScalarWhereWithAggregatesInput[]
|
|
56128
56128
|
id?: StringWithAggregatesFilter<"ActivityLog"> | string
|
|
56129
|
-
|
|
56129
|
+
application_id?: StringWithAggregatesFilter<"ActivityLog"> | string
|
|
56130
56130
|
actor_id?: StringNullableWithAggregatesFilter<"ActivityLog"> | string | null
|
|
56131
56131
|
actor_type?: EnumActivityActorTypeWithAggregatesFilter<"ActivityLog"> | $Enums.ActivityActorType
|
|
56132
56132
|
message?: StringWithAggregatesFilter<"ActivityLog"> | string
|
|
@@ -56165,6 +56165,7 @@ export namespace Prisma {
|
|
|
56165
56165
|
fit_check?: XOR<FitCheckNullableScalarRelationFilter, FitCheckWhereInput> | null
|
|
56166
56166
|
interviews?: InterviewListRelationFilter
|
|
56167
56167
|
ongoing_evaluations?: OngoingEvaluationListRelationFilter
|
|
56168
|
+
activity_logs?: ActivityLogListRelationFilter
|
|
56168
56169
|
}
|
|
56169
56170
|
|
|
56170
56171
|
export type ApplicationOrderByWithRelationInput = {
|
|
@@ -56193,6 +56194,7 @@ export namespace Prisma {
|
|
|
56193
56194
|
fit_check?: FitCheckOrderByWithRelationInput
|
|
56194
56195
|
interviews?: InterviewOrderByRelationAggregateInput
|
|
56195
56196
|
ongoing_evaluations?: OngoingEvaluationOrderByRelationAggregateInput
|
|
56197
|
+
activity_logs?: ActivityLogOrderByRelationAggregateInput
|
|
56196
56198
|
}
|
|
56197
56199
|
|
|
56198
56200
|
export type ApplicationWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -56225,6 +56227,7 @@ export namespace Prisma {
|
|
|
56225
56227
|
fit_check?: XOR<FitCheckNullableScalarRelationFilter, FitCheckWhereInput> | null
|
|
56226
56228
|
interviews?: InterviewListRelationFilter
|
|
56227
56229
|
ongoing_evaluations?: OngoingEvaluationListRelationFilter
|
|
56230
|
+
activity_logs?: ActivityLogListRelationFilter
|
|
56228
56231
|
}, "id" | "fit_check_id" | "candidate_id_job_description_id">
|
|
56229
56232
|
|
|
56230
56233
|
export type ApplicationOrderByWithAggregationInput = {
|
|
@@ -59787,7 +59790,6 @@ export namespace Prisma {
|
|
|
59787
59790
|
candidateResponses?: CandidateQuestionResponseListRelationFilter
|
|
59788
59791
|
questions?: QuestionListRelationFilter
|
|
59789
59792
|
ongoing_evaluations?: OngoingEvaluationListRelationFilter
|
|
59790
|
-
candidate_activity_logs?: ActivityLogListRelationFilter
|
|
59791
59793
|
actor_activity_logs?: ActivityLogListRelationFilter
|
|
59792
59794
|
actions?: ActionListRelationFilter
|
|
59793
59795
|
calendly?: XOR<CalendlyNullableScalarRelationFilter, CalendlyWhereInput> | null
|
|
@@ -59849,7 +59851,6 @@ export namespace Prisma {
|
|
|
59849
59851
|
candidateResponses?: CandidateQuestionResponseOrderByRelationAggregateInput
|
|
59850
59852
|
questions?: QuestionOrderByRelationAggregateInput
|
|
59851
59853
|
ongoing_evaluations?: OngoingEvaluationOrderByRelationAggregateInput
|
|
59852
|
-
candidate_activity_logs?: ActivityLogOrderByRelationAggregateInput
|
|
59853
59854
|
actor_activity_logs?: ActivityLogOrderByRelationAggregateInput
|
|
59854
59855
|
actions?: ActionOrderByRelationAggregateInput
|
|
59855
59856
|
calendly?: CalendlyOrderByWithRelationInput
|
|
@@ -59914,7 +59915,6 @@ export namespace Prisma {
|
|
|
59914
59915
|
candidateResponses?: CandidateQuestionResponseListRelationFilter
|
|
59915
59916
|
questions?: QuestionListRelationFilter
|
|
59916
59917
|
ongoing_evaluations?: OngoingEvaluationListRelationFilter
|
|
59917
|
-
candidate_activity_logs?: ActivityLogListRelationFilter
|
|
59918
59918
|
actor_activity_logs?: ActivityLogListRelationFilter
|
|
59919
59919
|
actions?: ActionListRelationFilter
|
|
59920
59920
|
calendly?: XOR<CalendlyNullableScalarRelationFilter, CalendlyWhereInput> | null
|
|
@@ -60389,13 +60389,13 @@ export namespace Prisma {
|
|
|
60389
60389
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60390
60390
|
created_at?: Date | string
|
|
60391
60391
|
is_active?: boolean
|
|
60392
|
-
candidate: UserCreateNestedOneWithoutCandidate_activity_logsInput
|
|
60393
60392
|
actor?: UserCreateNestedOneWithoutActor_activity_logsInput
|
|
60393
|
+
application: ApplicationCreateNestedOneWithoutActivity_logsInput
|
|
60394
60394
|
}
|
|
60395
60395
|
|
|
60396
60396
|
export type ActivityLogUncheckedCreateInput = {
|
|
60397
60397
|
id?: string
|
|
60398
|
-
|
|
60398
|
+
application_id: string
|
|
60399
60399
|
actor_id?: string | null
|
|
60400
60400
|
actor_type?: $Enums.ActivityActorType
|
|
60401
60401
|
message: string
|
|
@@ -60413,13 +60413,13 @@ export namespace Prisma {
|
|
|
60413
60413
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60414
60414
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
60415
60415
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
60416
|
-
candidate?: UserUpdateOneRequiredWithoutCandidate_activity_logsNestedInput
|
|
60417
60416
|
actor?: UserUpdateOneWithoutActor_activity_logsNestedInput
|
|
60417
|
+
application?: ApplicationUpdateOneRequiredWithoutActivity_logsNestedInput
|
|
60418
60418
|
}
|
|
60419
60419
|
|
|
60420
60420
|
export type ActivityLogUncheckedUpdateInput = {
|
|
60421
60421
|
id?: StringFieldUpdateOperationsInput | string
|
|
60422
|
-
|
|
60422
|
+
application_id?: StringFieldUpdateOperationsInput | string
|
|
60423
60423
|
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60424
60424
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
60425
60425
|
message?: StringFieldUpdateOperationsInput | string
|
|
@@ -60431,7 +60431,7 @@ export namespace Prisma {
|
|
|
60431
60431
|
|
|
60432
60432
|
export type ActivityLogCreateManyInput = {
|
|
60433
60433
|
id?: string
|
|
60434
|
-
|
|
60434
|
+
application_id: string
|
|
60435
60435
|
actor_id?: string | null
|
|
60436
60436
|
actor_type?: $Enums.ActivityActorType
|
|
60437
60437
|
message: string
|
|
@@ -60453,7 +60453,7 @@ export namespace Prisma {
|
|
|
60453
60453
|
|
|
60454
60454
|
export type ActivityLogUncheckedUpdateManyInput = {
|
|
60455
60455
|
id?: StringFieldUpdateOperationsInput | string
|
|
60456
|
-
|
|
60456
|
+
application_id?: StringFieldUpdateOperationsInput | string
|
|
60457
60457
|
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60458
60458
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
60459
60459
|
message?: StringFieldUpdateOperationsInput | string
|
|
@@ -60483,6 +60483,7 @@ export namespace Prisma {
|
|
|
60483
60483
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
60484
60484
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
60485
60485
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
60486
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
60486
60487
|
}
|
|
60487
60488
|
|
|
60488
60489
|
export type ApplicationUncheckedCreateInput = {
|
|
@@ -60505,6 +60506,7 @@ export namespace Prisma {
|
|
|
60505
60506
|
is_active?: boolean
|
|
60506
60507
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
60507
60508
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
60509
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
60508
60510
|
}
|
|
60509
60511
|
|
|
60510
60512
|
export type ApplicationUpdateInput = {
|
|
@@ -60527,6 +60529,7 @@ export namespace Prisma {
|
|
|
60527
60529
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
60528
60530
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
60529
60531
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
60532
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
60530
60533
|
}
|
|
60531
60534
|
|
|
60532
60535
|
export type ApplicationUncheckedUpdateInput = {
|
|
@@ -60549,6 +60552,7 @@ export namespace Prisma {
|
|
|
60549
60552
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
60550
60553
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
60551
60554
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
60555
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
60552
60556
|
}
|
|
60553
60557
|
|
|
60554
60558
|
export type ApplicationCreateManyInput = {
|
|
@@ -64555,7 +64559,6 @@ export namespace Prisma {
|
|
|
64555
64559
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
64556
64560
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
64557
64561
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
64558
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
64559
64562
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
64560
64563
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
64561
64564
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -64614,7 +64617,6 @@ export namespace Prisma {
|
|
|
64614
64617
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
64615
64618
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
64616
64619
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
64617
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
64618
64620
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
64619
64621
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
64620
64622
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -64673,7 +64675,6 @@ export namespace Prisma {
|
|
|
64673
64675
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
64674
64676
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
64675
64677
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
64676
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
64677
64678
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
64678
64679
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
64679
64680
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -64732,7 +64733,6 @@ export namespace Prisma {
|
|
|
64732
64733
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
64733
64734
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
64734
64735
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
64735
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
64736
64736
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
64737
64737
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
64738
64738
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -65351,9 +65351,14 @@ export namespace Prisma {
|
|
|
65351
65351
|
isNot?: UserWhereInput | null
|
|
65352
65352
|
}
|
|
65353
65353
|
|
|
65354
|
+
export type ApplicationScalarRelationFilter = {
|
|
65355
|
+
is?: ApplicationWhereInput
|
|
65356
|
+
isNot?: ApplicationWhereInput
|
|
65357
|
+
}
|
|
65358
|
+
|
|
65354
65359
|
export type ActivityLogCountOrderByAggregateInput = {
|
|
65355
65360
|
id?: SortOrder
|
|
65356
|
-
|
|
65361
|
+
application_id?: SortOrder
|
|
65357
65362
|
actor_id?: SortOrder
|
|
65358
65363
|
actor_type?: SortOrder
|
|
65359
65364
|
message?: SortOrder
|
|
@@ -65365,7 +65370,7 @@ export namespace Prisma {
|
|
|
65365
65370
|
|
|
65366
65371
|
export type ActivityLogMaxOrderByAggregateInput = {
|
|
65367
65372
|
id?: SortOrder
|
|
65368
|
-
|
|
65373
|
+
application_id?: SortOrder
|
|
65369
65374
|
actor_id?: SortOrder
|
|
65370
65375
|
actor_type?: SortOrder
|
|
65371
65376
|
message?: SortOrder
|
|
@@ -65376,7 +65381,7 @@ export namespace Prisma {
|
|
|
65376
65381
|
|
|
65377
65382
|
export type ActivityLogMinOrderByAggregateInput = {
|
|
65378
65383
|
id?: SortOrder
|
|
65379
|
-
|
|
65384
|
+
application_id?: SortOrder
|
|
65380
65385
|
actor_id?: SortOrder
|
|
65381
65386
|
actor_type?: SortOrder
|
|
65382
65387
|
message?: SortOrder
|
|
@@ -65478,6 +65483,12 @@ export namespace Prisma {
|
|
|
65478
65483
|
none?: OngoingEvaluationWhereInput
|
|
65479
65484
|
}
|
|
65480
65485
|
|
|
65486
|
+
export type ActivityLogListRelationFilter = {
|
|
65487
|
+
every?: ActivityLogWhereInput
|
|
65488
|
+
some?: ActivityLogWhereInput
|
|
65489
|
+
none?: ActivityLogWhereInput
|
|
65490
|
+
}
|
|
65491
|
+
|
|
65481
65492
|
export type InterviewOrderByRelationAggregateInput = {
|
|
65482
65493
|
_count?: SortOrder
|
|
65483
65494
|
}
|
|
@@ -65486,6 +65497,10 @@ export namespace Prisma {
|
|
|
65486
65497
|
_count?: SortOrder
|
|
65487
65498
|
}
|
|
65488
65499
|
|
|
65500
|
+
export type ActivityLogOrderByRelationAggregateInput = {
|
|
65501
|
+
_count?: SortOrder
|
|
65502
|
+
}
|
|
65503
|
+
|
|
65489
65504
|
export type ApplicationCandidate_idJob_description_idCompoundUniqueInput = {
|
|
65490
65505
|
candidate_id: string
|
|
65491
65506
|
job_description_id: string
|
|
@@ -67304,11 +67319,6 @@ export namespace Prisma {
|
|
|
67304
67319
|
isNot?: JobDescriptionWhereInput | null
|
|
67305
67320
|
}
|
|
67306
67321
|
|
|
67307
|
-
export type ApplicationScalarRelationFilter = {
|
|
67308
|
-
is?: ApplicationWhereInput
|
|
67309
|
-
isNot?: ApplicationWhereInput
|
|
67310
|
-
}
|
|
67311
|
-
|
|
67312
67322
|
export type EvaluationPlanScalarRelationFilter = {
|
|
67313
67323
|
is?: EvaluationPlanWhereInput
|
|
67314
67324
|
isNot?: EvaluationPlanWhereInput
|
|
@@ -68209,12 +68219,6 @@ export namespace Prisma {
|
|
|
68209
68219
|
none?: MessageWhereInput
|
|
68210
68220
|
}
|
|
68211
68221
|
|
|
68212
|
-
export type ActivityLogListRelationFilter = {
|
|
68213
|
-
every?: ActivityLogWhereInput
|
|
68214
|
-
some?: ActivityLogWhereInput
|
|
68215
|
-
none?: ActivityLogWhereInput
|
|
68216
|
-
}
|
|
68217
|
-
|
|
68218
68222
|
export type CalendlyNullableScalarRelationFilter = {
|
|
68219
68223
|
is?: CalendlyWhereInput | null
|
|
68220
68224
|
isNot?: CalendlyWhereInput | null
|
|
@@ -68229,10 +68233,6 @@ export namespace Prisma {
|
|
|
68229
68233
|
_count?: SortOrder
|
|
68230
68234
|
}
|
|
68231
68235
|
|
|
68232
|
-
export type ActivityLogOrderByRelationAggregateInput = {
|
|
68233
|
-
_count?: SortOrder
|
|
68234
|
-
}
|
|
68235
|
-
|
|
68236
68236
|
export type UserCountOrderByAggregateInput = {
|
|
68237
68237
|
id?: SortOrder
|
|
68238
68238
|
email?: SortOrder
|
|
@@ -68562,28 +68562,20 @@ export namespace Prisma {
|
|
|
68562
68562
|
update?: XOR<XOR<OrganisationUpdateToOneWithWhereWithoutActionsInput, OrganisationUpdateWithoutActionsInput>, OrganisationUncheckedUpdateWithoutActionsInput>
|
|
68563
68563
|
}
|
|
68564
68564
|
|
|
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
68565
|
export type UserCreateNestedOneWithoutActor_activity_logsInput = {
|
|
68572
68566
|
create?: XOR<UserCreateWithoutActor_activity_logsInput, UserUncheckedCreateWithoutActor_activity_logsInput>
|
|
68573
68567
|
connectOrCreate?: UserCreateOrConnectWithoutActor_activity_logsInput
|
|
68574
68568
|
connect?: UserWhereUniqueInput
|
|
68575
68569
|
}
|
|
68576
68570
|
|
|
68577
|
-
export type
|
|
68578
|
-
|
|
68571
|
+
export type ApplicationCreateNestedOneWithoutActivity_logsInput = {
|
|
68572
|
+
create?: XOR<ApplicationCreateWithoutActivity_logsInput, ApplicationUncheckedCreateWithoutActivity_logsInput>
|
|
68573
|
+
connectOrCreate?: ApplicationCreateOrConnectWithoutActivity_logsInput
|
|
68574
|
+
connect?: ApplicationWhereUniqueInput
|
|
68579
68575
|
}
|
|
68580
68576
|
|
|
68581
|
-
export type
|
|
68582
|
-
|
|
68583
|
-
connectOrCreate?: UserCreateOrConnectWithoutCandidate_activity_logsInput
|
|
68584
|
-
upsert?: UserUpsertWithoutCandidate_activity_logsInput
|
|
68585
|
-
connect?: UserWhereUniqueInput
|
|
68586
|
-
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutCandidate_activity_logsInput, UserUpdateWithoutCandidate_activity_logsInput>, UserUncheckedUpdateWithoutCandidate_activity_logsInput>
|
|
68577
|
+
export type EnumActivityActorTypeFieldUpdateOperationsInput = {
|
|
68578
|
+
set?: $Enums.ActivityActorType
|
|
68587
68579
|
}
|
|
68588
68580
|
|
|
68589
68581
|
export type UserUpdateOneWithoutActor_activity_logsNestedInput = {
|
|
@@ -68596,6 +68588,14 @@ export namespace Prisma {
|
|
|
68596
68588
|
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutActor_activity_logsInput, UserUpdateWithoutActor_activity_logsInput>, UserUncheckedUpdateWithoutActor_activity_logsInput>
|
|
68597
68589
|
}
|
|
68598
68590
|
|
|
68591
|
+
export type ApplicationUpdateOneRequiredWithoutActivity_logsNestedInput = {
|
|
68592
|
+
create?: XOR<ApplicationCreateWithoutActivity_logsInput, ApplicationUncheckedCreateWithoutActivity_logsInput>
|
|
68593
|
+
connectOrCreate?: ApplicationCreateOrConnectWithoutActivity_logsInput
|
|
68594
|
+
upsert?: ApplicationUpsertWithoutActivity_logsInput
|
|
68595
|
+
connect?: ApplicationWhereUniqueInput
|
|
68596
|
+
update?: XOR<XOR<ApplicationUpdateToOneWithWhereWithoutActivity_logsInput, ApplicationUpdateWithoutActivity_logsInput>, ApplicationUncheckedUpdateWithoutActivity_logsInput>
|
|
68597
|
+
}
|
|
68598
|
+
|
|
68599
68599
|
export type EvaluationPlanCreateNestedOneWithoutApplicationsInput = {
|
|
68600
68600
|
create?: XOR<EvaluationPlanCreateWithoutApplicationsInput, EvaluationPlanUncheckedCreateWithoutApplicationsInput>
|
|
68601
68601
|
connectOrCreate?: EvaluationPlanCreateOrConnectWithoutApplicationsInput
|
|
@@ -68646,6 +68646,13 @@ export namespace Prisma {
|
|
|
68646
68646
|
connect?: OngoingEvaluationWhereUniqueInput | OngoingEvaluationWhereUniqueInput[]
|
|
68647
68647
|
}
|
|
68648
68648
|
|
|
68649
|
+
export type ActivityLogCreateNestedManyWithoutApplicationInput = {
|
|
68650
|
+
create?: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput> | ActivityLogCreateWithoutApplicationInput[] | ActivityLogUncheckedCreateWithoutApplicationInput[]
|
|
68651
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutApplicationInput | ActivityLogCreateOrConnectWithoutApplicationInput[]
|
|
68652
|
+
createMany?: ActivityLogCreateManyApplicationInputEnvelope
|
|
68653
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68654
|
+
}
|
|
68655
|
+
|
|
68649
68656
|
export type InterviewUncheckedCreateNestedManyWithoutApplicationInput = {
|
|
68650
68657
|
create?: XOR<InterviewCreateWithoutApplicationInput, InterviewUncheckedCreateWithoutApplicationInput> | InterviewCreateWithoutApplicationInput[] | InterviewUncheckedCreateWithoutApplicationInput[]
|
|
68651
68658
|
connectOrCreate?: InterviewCreateOrConnectWithoutApplicationInput | InterviewCreateOrConnectWithoutApplicationInput[]
|
|
@@ -68660,6 +68667,13 @@ export namespace Prisma {
|
|
|
68660
68667
|
connect?: OngoingEvaluationWhereUniqueInput | OngoingEvaluationWhereUniqueInput[]
|
|
68661
68668
|
}
|
|
68662
68669
|
|
|
68670
|
+
export type ActivityLogUncheckedCreateNestedManyWithoutApplicationInput = {
|
|
68671
|
+
create?: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput> | ActivityLogCreateWithoutApplicationInput[] | ActivityLogUncheckedCreateWithoutApplicationInput[]
|
|
68672
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutApplicationInput | ActivityLogCreateOrConnectWithoutApplicationInput[]
|
|
68673
|
+
createMany?: ActivityLogCreateManyApplicationInputEnvelope
|
|
68674
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68675
|
+
}
|
|
68676
|
+
|
|
68663
68677
|
export type EnumApplicationStatusFieldUpdateOperationsInput = {
|
|
68664
68678
|
set?: $Enums.ApplicationStatus
|
|
68665
68679
|
}
|
|
@@ -68756,6 +68770,20 @@ export namespace Prisma {
|
|
|
68756
68770
|
deleteMany?: OngoingEvaluationScalarWhereInput | OngoingEvaluationScalarWhereInput[]
|
|
68757
68771
|
}
|
|
68758
68772
|
|
|
68773
|
+
export type ActivityLogUpdateManyWithoutApplicationNestedInput = {
|
|
68774
|
+
create?: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput> | ActivityLogCreateWithoutApplicationInput[] | ActivityLogUncheckedCreateWithoutApplicationInput[]
|
|
68775
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutApplicationInput | ActivityLogCreateOrConnectWithoutApplicationInput[]
|
|
68776
|
+
upsert?: ActivityLogUpsertWithWhereUniqueWithoutApplicationInput | ActivityLogUpsertWithWhereUniqueWithoutApplicationInput[]
|
|
68777
|
+
createMany?: ActivityLogCreateManyApplicationInputEnvelope
|
|
68778
|
+
set?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68779
|
+
disconnect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68780
|
+
delete?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68781
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68782
|
+
update?: ActivityLogUpdateWithWhereUniqueWithoutApplicationInput | ActivityLogUpdateWithWhereUniqueWithoutApplicationInput[]
|
|
68783
|
+
updateMany?: ActivityLogUpdateManyWithWhereWithoutApplicationInput | ActivityLogUpdateManyWithWhereWithoutApplicationInput[]
|
|
68784
|
+
deleteMany?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
68785
|
+
}
|
|
68786
|
+
|
|
68759
68787
|
export type InterviewUncheckedUpdateManyWithoutApplicationNestedInput = {
|
|
68760
68788
|
create?: XOR<InterviewCreateWithoutApplicationInput, InterviewUncheckedCreateWithoutApplicationInput> | InterviewCreateWithoutApplicationInput[] | InterviewUncheckedCreateWithoutApplicationInput[]
|
|
68761
68789
|
connectOrCreate?: InterviewCreateOrConnectWithoutApplicationInput | InterviewCreateOrConnectWithoutApplicationInput[]
|
|
@@ -68784,6 +68812,20 @@ export namespace Prisma {
|
|
|
68784
68812
|
deleteMany?: OngoingEvaluationScalarWhereInput | OngoingEvaluationScalarWhereInput[]
|
|
68785
68813
|
}
|
|
68786
68814
|
|
|
68815
|
+
export type ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput = {
|
|
68816
|
+
create?: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput> | ActivityLogCreateWithoutApplicationInput[] | ActivityLogUncheckedCreateWithoutApplicationInput[]
|
|
68817
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutApplicationInput | ActivityLogCreateOrConnectWithoutApplicationInput[]
|
|
68818
|
+
upsert?: ActivityLogUpsertWithWhereUniqueWithoutApplicationInput | ActivityLogUpsertWithWhereUniqueWithoutApplicationInput[]
|
|
68819
|
+
createMany?: ActivityLogCreateManyApplicationInputEnvelope
|
|
68820
|
+
set?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68821
|
+
disconnect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68822
|
+
delete?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68823
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68824
|
+
update?: ActivityLogUpdateWithWhereUniqueWithoutApplicationInput | ActivityLogUpdateWithWhereUniqueWithoutApplicationInput[]
|
|
68825
|
+
updateMany?: ActivityLogUpdateManyWithWhereWithoutApplicationInput | ActivityLogUpdateManyWithWhereWithoutApplicationInput[]
|
|
68826
|
+
deleteMany?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
68827
|
+
}
|
|
68828
|
+
|
|
68787
68829
|
export type JobDescriptionCreateNestedOneWithoutApprovalsInput = {
|
|
68788
68830
|
create?: XOR<JobDescriptionCreateWithoutApprovalsInput, JobDescriptionUncheckedCreateWithoutApprovalsInput>
|
|
68789
68831
|
connectOrCreate?: JobDescriptionCreateOrConnectWithoutApprovalsInput
|
|
@@ -72718,13 +72760,6 @@ export namespace Prisma {
|
|
|
72718
72760
|
connect?: OngoingEvaluationWhereUniqueInput | OngoingEvaluationWhereUniqueInput[]
|
|
72719
72761
|
}
|
|
72720
72762
|
|
|
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
72763
|
export type ActivityLogCreateNestedManyWithoutActorInput = {
|
|
72729
72764
|
create?: XOR<ActivityLogCreateWithoutActorInput, ActivityLogUncheckedCreateWithoutActorInput> | ActivityLogCreateWithoutActorInput[] | ActivityLogUncheckedCreateWithoutActorInput[]
|
|
72730
72765
|
connectOrCreate?: ActivityLogCreateOrConnectWithoutActorInput | ActivityLogCreateOrConnectWithoutActorInput[]
|
|
@@ -72880,13 +72915,6 @@ export namespace Prisma {
|
|
|
72880
72915
|
connect?: OngoingEvaluationWhereUniqueInput | OngoingEvaluationWhereUniqueInput[]
|
|
72881
72916
|
}
|
|
72882
72917
|
|
|
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
72918
|
export type ActivityLogUncheckedCreateNestedManyWithoutActorInput = {
|
|
72891
72919
|
create?: XOR<ActivityLogCreateWithoutActorInput, ActivityLogUncheckedCreateWithoutActorInput> | ActivityLogCreateWithoutActorInput[] | ActivityLogUncheckedCreateWithoutActorInput[]
|
|
72892
72920
|
connectOrCreate?: ActivityLogCreateOrConnectWithoutActorInput | ActivityLogCreateOrConnectWithoutActorInput[]
|
|
@@ -73191,20 +73219,6 @@ export namespace Prisma {
|
|
|
73191
73219
|
deleteMany?: OngoingEvaluationScalarWhereInput | OngoingEvaluationScalarWhereInput[]
|
|
73192
73220
|
}
|
|
73193
73221
|
|
|
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
73222
|
export type ActivityLogUpdateManyWithoutActorNestedInput = {
|
|
73209
73223
|
create?: XOR<ActivityLogCreateWithoutActorInput, ActivityLogUncheckedCreateWithoutActorInput> | ActivityLogCreateWithoutActorInput[] | ActivityLogUncheckedCreateWithoutActorInput[]
|
|
73210
73224
|
connectOrCreate?: ActivityLogCreateOrConnectWithoutActorInput | ActivityLogCreateOrConnectWithoutActorInput[]
|
|
@@ -73506,20 +73520,6 @@ export namespace Prisma {
|
|
|
73506
73520
|
deleteMany?: OngoingEvaluationScalarWhereInput | OngoingEvaluationScalarWhereInput[]
|
|
73507
73521
|
}
|
|
73508
73522
|
|
|
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
73523
|
export type ActivityLogUncheckedUpdateManyWithoutActorNestedInput = {
|
|
73524
73524
|
create?: XOR<ActivityLogCreateWithoutActorInput, ActivityLogUncheckedCreateWithoutActorInput> | ActivityLogCreateWithoutActorInput[] | ActivityLogUncheckedCreateWithoutActorInput[]
|
|
73525
73525
|
connectOrCreate?: ActivityLogCreateOrConnectWithoutActorInput | ActivityLogCreateOrConnectWithoutActorInput[]
|
|
@@ -74521,7 +74521,6 @@ export namespace Prisma {
|
|
|
74521
74521
|
reviewer_assessments?: AssessmentCreateNestedManyWithoutReviewerInput
|
|
74522
74522
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
74523
74523
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
74524
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
74525
74524
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
74526
74525
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
74527
74526
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -74579,7 +74578,6 @@ export namespace Prisma {
|
|
|
74579
74578
|
reviewer_assessments?: AssessmentUncheckedCreateNestedManyWithoutReviewerInput
|
|
74580
74579
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
74581
74580
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
74582
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
74583
74581
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
74584
74582
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
74585
74583
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -74753,7 +74751,6 @@ export namespace Prisma {
|
|
|
74753
74751
|
reviewer_assessments?: AssessmentUpdateManyWithoutReviewerNestedInput
|
|
74754
74752
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
74755
74753
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
74756
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
74757
74754
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
74758
74755
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
74759
74756
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -74811,7 +74808,6 @@ export namespace Prisma {
|
|
|
74811
74808
|
reviewer_assessments?: AssessmentUncheckedUpdateManyWithoutReviewerNestedInput
|
|
74812
74809
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
74813
74810
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
74814
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
74815
74811
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
74816
74812
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
74817
74813
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -74967,7 +74963,6 @@ export namespace Prisma {
|
|
|
74967
74963
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
74968
74964
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
74969
74965
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
74970
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
74971
74966
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
74972
74967
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
74973
74968
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -75025,7 +75020,6 @@ export namespace Prisma {
|
|
|
75025
75020
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
75026
75021
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
75027
75022
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
75028
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
75029
75023
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
75030
75024
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
75031
75025
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -75258,7 +75252,6 @@ export namespace Prisma {
|
|
|
75258
75252
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
75259
75253
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
75260
75254
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
75261
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
75262
75255
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
75263
75256
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
75264
75257
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
@@ -75316,7 +75309,6 @@ export namespace Prisma {
|
|
|
75316
75309
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
75317
75310
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
75318
75311
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
75319
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
75320
75312
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
75321
75313
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
75322
75314
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -75461,7 +75453,6 @@ export namespace Prisma {
|
|
|
75461
75453
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
75462
75454
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
75463
75455
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
75464
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
75465
75456
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
75466
75457
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
75467
75458
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
@@ -75519,7 +75510,6 @@ export namespace Prisma {
|
|
|
75519
75510
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75520
75511
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75521
75512
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75522
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75523
75513
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
75524
75514
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
75525
75515
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -75603,7 +75593,7 @@ export namespace Prisma {
|
|
|
75603
75593
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
75604
75594
|
}
|
|
75605
75595
|
|
|
75606
|
-
export type
|
|
75596
|
+
export type UserCreateWithoutActor_activity_logsInput = {
|
|
75607
75597
|
id?: string
|
|
75608
75598
|
email: string
|
|
75609
75599
|
password: string
|
|
@@ -75654,14 +75644,13 @@ export namespace Prisma {
|
|
|
75654
75644
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
75655
75645
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
75656
75646
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
75657
|
-
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
75658
75647
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
75659
75648
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
75660
75649
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
75661
75650
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
75662
75651
|
}
|
|
75663
75652
|
|
|
75664
|
-
export type
|
|
75653
|
+
export type UserUncheckedCreateWithoutActor_activity_logsInput = {
|
|
75665
75654
|
id?: string
|
|
75666
75655
|
email: string
|
|
75667
75656
|
password: string
|
|
@@ -75712,151 +75701,78 @@ export namespace Prisma {
|
|
|
75712
75701
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
75713
75702
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
75714
75703
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
75715
|
-
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
75716
75704
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
75717
75705
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
75718
75706
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
75719
75707
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
75720
75708
|
}
|
|
75721
75709
|
|
|
75722
|
-
export type
|
|
75710
|
+
export type UserCreateOrConnectWithoutActor_activity_logsInput = {
|
|
75723
75711
|
where: UserWhereUniqueInput
|
|
75724
|
-
create: XOR<
|
|
75712
|
+
create: XOR<UserCreateWithoutActor_activity_logsInput, UserUncheckedCreateWithoutActor_activity_logsInput>
|
|
75725
75713
|
}
|
|
75726
75714
|
|
|
75727
|
-
export type
|
|
75715
|
+
export type ApplicationCreateWithoutActivity_logsInput = {
|
|
75728
75716
|
id?: string
|
|
75729
|
-
|
|
75730
|
-
|
|
75731
|
-
|
|
75732
|
-
|
|
75717
|
+
status?: $Enums.ApplicationStatus
|
|
75718
|
+
fit_check_score?: number | null
|
|
75719
|
+
fit_check_status?: $Enums.FitCheckStatus | null
|
|
75720
|
+
applied_at?: Date | string
|
|
75721
|
+
round_no?: number
|
|
75733
75722
|
created_at?: Date | string
|
|
75734
75723
|
updated_at?: Date | string
|
|
75735
75724
|
created_by: string
|
|
75736
75725
|
updated_by: string
|
|
75737
75726
|
is_active?: boolean
|
|
75738
|
-
|
|
75739
|
-
|
|
75740
|
-
|
|
75741
|
-
|
|
75742
|
-
|
|
75743
|
-
|
|
75744
|
-
|
|
75745
|
-
|
|
75746
|
-
location?: string | null
|
|
75747
|
-
salary?: string | null
|
|
75748
|
-
work_experience?: NullableJsonNullValueInput | InputJsonValue
|
|
75749
|
-
education?: NullableJsonNullValueInput | InputJsonValue
|
|
75750
|
-
skills?: NullableJsonNullValueInput | InputJsonValue
|
|
75751
|
-
notice_period?: string | null
|
|
75752
|
-
preferred_work_mode?: string | null
|
|
75753
|
-
gender?: string | null
|
|
75754
|
-
ethnicity?: string | null
|
|
75755
|
-
veteran_status?: string | null
|
|
75756
|
-
disability_status?: string | null
|
|
75757
|
-
role: UserRoleCreateNestedOneWithoutUsersInput
|
|
75758
|
-
permission?: PermissionCreateNestedOneWithoutUserInput
|
|
75759
|
-
organisation?: OrganisationCreateNestedOneWithoutInterviewersInput
|
|
75760
|
-
applications?: ApplicationCreateNestedManyWithoutCandidateInput
|
|
75761
|
-
resume?: ResumeCreateNestedManyWithoutUserInput
|
|
75762
|
-
candidate_profile?: CandidateProfileCreateNestedOneWithoutUserInput
|
|
75763
|
-
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
75764
|
-
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
75765
|
-
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
75766
|
-
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
75767
|
-
panelist?: PanelistCreateNestedOneWithoutUserInput
|
|
75768
|
-
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
75769
|
-
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
75770
|
-
candidate_interviews?: InterviewCreateNestedManyWithoutCandidateInput
|
|
75771
|
-
interviewer_interviews?: InterviewCreateNestedManyWithoutInterviewerInput
|
|
75772
|
-
assessment_results?: AssessmentCreateNestedManyWithoutUserInput
|
|
75773
|
-
candidate_assessments?: AssessmentCreateNestedManyWithoutCandidateInput
|
|
75774
|
-
reviewer_assessments?: AssessmentCreateNestedManyWithoutReviewerInput
|
|
75775
|
-
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
75776
|
-
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
75777
|
-
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
75778
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
75779
|
-
actions?: ActionCreateNestedManyWithoutUserInput
|
|
75780
|
-
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
75781
|
-
google?: GoogleCreateNestedOneWithoutUserInput
|
|
75782
|
-
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
75727
|
+
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
75728
|
+
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
75729
|
+
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
75730
|
+
resume: ResumeCreateNestedOneWithoutApplicationsInput
|
|
75731
|
+
job_description: JobDescriptionCreateNestedOneWithoutApplicationsInput
|
|
75732
|
+
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
75733
|
+
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
75734
|
+
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
75783
75735
|
}
|
|
75784
75736
|
|
|
75785
|
-
export type
|
|
75737
|
+
export type ApplicationUncheckedCreateWithoutActivity_logsInput = {
|
|
75786
75738
|
id?: string
|
|
75787
|
-
|
|
75788
|
-
|
|
75789
|
-
|
|
75790
|
-
|
|
75791
|
-
|
|
75739
|
+
candidate_id: string
|
|
75740
|
+
resume_id: string
|
|
75741
|
+
organisation_id: string
|
|
75742
|
+
job_description_id: string
|
|
75743
|
+
status?: $Enums.ApplicationStatus
|
|
75744
|
+
fit_check_score?: number | null
|
|
75745
|
+
fit_check_status?: $Enums.FitCheckStatus | null
|
|
75746
|
+
applied_at?: Date | string
|
|
75747
|
+
evaluation_plan_id?: string | null
|
|
75748
|
+
fit_check_id?: string | null
|
|
75749
|
+
round_no?: number
|
|
75792
75750
|
created_at?: Date | string
|
|
75793
75751
|
updated_at?: Date | string
|
|
75794
75752
|
created_by: string
|
|
75795
75753
|
updated_by: string
|
|
75796
75754
|
is_active?: boolean
|
|
75797
|
-
|
|
75798
|
-
|
|
75799
|
-
organisation_id?: string | null
|
|
75800
|
-
profile_created: boolean
|
|
75801
|
-
first_login_status?: $Enums.FirstLoginStatus
|
|
75802
|
-
name?: string | null
|
|
75803
|
-
phone?: string | null
|
|
75804
|
-
description?: string | null
|
|
75805
|
-
date_of_birth?: Date | string | null
|
|
75806
|
-
designation?: string | null
|
|
75807
|
-
location?: string | null
|
|
75808
|
-
salary?: string | null
|
|
75809
|
-
work_experience?: NullableJsonNullValueInput | InputJsonValue
|
|
75810
|
-
education?: NullableJsonNullValueInput | InputJsonValue
|
|
75811
|
-
skills?: NullableJsonNullValueInput | InputJsonValue
|
|
75812
|
-
notice_period?: string | null
|
|
75813
|
-
preferred_work_mode?: string | null
|
|
75814
|
-
gender?: string | null
|
|
75815
|
-
ethnicity?: string | null
|
|
75816
|
-
veteran_status?: string | null
|
|
75817
|
-
disability_status?: string | null
|
|
75818
|
-
applications?: ApplicationUncheckedCreateNestedManyWithoutCandidateInput
|
|
75819
|
-
resume?: ResumeUncheckedCreateNestedManyWithoutUserInput
|
|
75820
|
-
candidate_profile?: CandidateProfileUncheckedCreateNestedOneWithoutUserInput
|
|
75821
|
-
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
75822
|
-
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
75823
|
-
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
75824
|
-
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
75825
|
-
panelist?: PanelistUncheckedCreateNestedOneWithoutUserInput
|
|
75826
|
-
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
75827
|
-
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
75828
|
-
candidate_interviews?: InterviewUncheckedCreateNestedManyWithoutCandidateInput
|
|
75829
|
-
interviewer_interviews?: InterviewUncheckedCreateNestedManyWithoutInterviewerInput
|
|
75830
|
-
assessment_results?: AssessmentUncheckedCreateNestedManyWithoutUserInput
|
|
75831
|
-
candidate_assessments?: AssessmentUncheckedCreateNestedManyWithoutCandidateInput
|
|
75832
|
-
reviewer_assessments?: AssessmentUncheckedCreateNestedManyWithoutReviewerInput
|
|
75833
|
-
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
75834
|
-
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
75835
|
-
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
75836
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
75837
|
-
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
75838
|
-
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
75839
|
-
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
75840
|
-
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
75755
|
+
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
75756
|
+
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
75841
75757
|
}
|
|
75842
75758
|
|
|
75843
|
-
export type
|
|
75844
|
-
where:
|
|
75845
|
-
create: XOR<
|
|
75759
|
+
export type ApplicationCreateOrConnectWithoutActivity_logsInput = {
|
|
75760
|
+
where: ApplicationWhereUniqueInput
|
|
75761
|
+
create: XOR<ApplicationCreateWithoutActivity_logsInput, ApplicationUncheckedCreateWithoutActivity_logsInput>
|
|
75846
75762
|
}
|
|
75847
75763
|
|
|
75848
|
-
export type
|
|
75849
|
-
update: XOR<
|
|
75850
|
-
create: XOR<
|
|
75764
|
+
export type UserUpsertWithoutActor_activity_logsInput = {
|
|
75765
|
+
update: XOR<UserUpdateWithoutActor_activity_logsInput, UserUncheckedUpdateWithoutActor_activity_logsInput>
|
|
75766
|
+
create: XOR<UserCreateWithoutActor_activity_logsInput, UserUncheckedCreateWithoutActor_activity_logsInput>
|
|
75851
75767
|
where?: UserWhereInput
|
|
75852
75768
|
}
|
|
75853
75769
|
|
|
75854
|
-
export type
|
|
75770
|
+
export type UserUpdateToOneWithWhereWithoutActor_activity_logsInput = {
|
|
75855
75771
|
where?: UserWhereInput
|
|
75856
|
-
data: XOR<
|
|
75772
|
+
data: XOR<UserUpdateWithoutActor_activity_logsInput, UserUncheckedUpdateWithoutActor_activity_logsInput>
|
|
75857
75773
|
}
|
|
75858
75774
|
|
|
75859
|
-
export type
|
|
75775
|
+
export type UserUpdateWithoutActor_activity_logsInput = {
|
|
75860
75776
|
id?: StringFieldUpdateOperationsInput | string
|
|
75861
75777
|
email?: StringFieldUpdateOperationsInput | string
|
|
75862
75778
|
password?: StringFieldUpdateOperationsInput | string
|
|
@@ -75907,14 +75823,13 @@ export namespace Prisma {
|
|
|
75907
75823
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
75908
75824
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
75909
75825
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
75910
|
-
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
75911
75826
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
75912
75827
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
75913
75828
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
75914
75829
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
75915
75830
|
}
|
|
75916
75831
|
|
|
75917
|
-
export type
|
|
75832
|
+
export type UserUncheckedUpdateWithoutActor_activity_logsInput = {
|
|
75918
75833
|
id?: StringFieldUpdateOperationsInput | string
|
|
75919
75834
|
email?: StringFieldUpdateOperationsInput | string
|
|
75920
75835
|
password?: StringFieldUpdateOperationsInput | string
|
|
@@ -75965,138 +75880,65 @@ export namespace Prisma {
|
|
|
75965
75880
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75966
75881
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75967
75882
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75968
|
-
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
75969
75883
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
75970
75884
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
75971
75885
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
75972
75886
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75973
75887
|
}
|
|
75974
75888
|
|
|
75975
|
-
export type
|
|
75976
|
-
update: XOR<
|
|
75977
|
-
create: XOR<
|
|
75978
|
-
where?:
|
|
75889
|
+
export type ApplicationUpsertWithoutActivity_logsInput = {
|
|
75890
|
+
update: XOR<ApplicationUpdateWithoutActivity_logsInput, ApplicationUncheckedUpdateWithoutActivity_logsInput>
|
|
75891
|
+
create: XOR<ApplicationCreateWithoutActivity_logsInput, ApplicationUncheckedCreateWithoutActivity_logsInput>
|
|
75892
|
+
where?: ApplicationWhereInput
|
|
75979
75893
|
}
|
|
75980
75894
|
|
|
75981
|
-
export type
|
|
75982
|
-
where?:
|
|
75983
|
-
data: XOR<
|
|
75895
|
+
export type ApplicationUpdateToOneWithWhereWithoutActivity_logsInput = {
|
|
75896
|
+
where?: ApplicationWhereInput
|
|
75897
|
+
data: XOR<ApplicationUpdateWithoutActivity_logsInput, ApplicationUncheckedUpdateWithoutActivity_logsInput>
|
|
75984
75898
|
}
|
|
75985
75899
|
|
|
75986
|
-
export type
|
|
75900
|
+
export type ApplicationUpdateWithoutActivity_logsInput = {
|
|
75987
75901
|
id?: StringFieldUpdateOperationsInput | string
|
|
75988
|
-
|
|
75989
|
-
|
|
75990
|
-
|
|
75991
|
-
|
|
75902
|
+
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
75903
|
+
fit_check_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
75904
|
+
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
75905
|
+
applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75906
|
+
round_no?: IntFieldUpdateOperationsInput | number
|
|
75992
75907
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75993
75908
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75994
75909
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
75995
75910
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
75996
75911
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
75997
|
-
|
|
75998
|
-
|
|
75999
|
-
|
|
76000
|
-
|
|
76001
|
-
|
|
76002
|
-
|
|
76003
|
-
|
|
76004
|
-
|
|
76005
|
-
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76006
|
-
salary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76007
|
-
work_experience?: NullableJsonNullValueInput | InputJsonValue
|
|
76008
|
-
education?: NullableJsonNullValueInput | InputJsonValue
|
|
76009
|
-
skills?: NullableJsonNullValueInput | InputJsonValue
|
|
76010
|
-
notice_period?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76011
|
-
preferred_work_mode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76012
|
-
gender?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76013
|
-
ethnicity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76014
|
-
veteran_status?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76015
|
-
disability_status?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76016
|
-
role?: UserRoleUpdateOneRequiredWithoutUsersNestedInput
|
|
76017
|
-
permission?: PermissionUpdateOneWithoutUserNestedInput
|
|
76018
|
-
organisation?: OrganisationUpdateOneWithoutInterviewersNestedInput
|
|
76019
|
-
applications?: ApplicationUpdateManyWithoutCandidateNestedInput
|
|
76020
|
-
resume?: ResumeUpdateManyWithoutUserNestedInput
|
|
76021
|
-
candidate_profile?: CandidateProfileUpdateOneWithoutUserNestedInput
|
|
76022
|
-
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
76023
|
-
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
76024
|
-
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
76025
|
-
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
76026
|
-
panelist?: PanelistUpdateOneWithoutUserNestedInput
|
|
76027
|
-
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
76028
|
-
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
76029
|
-
candidate_interviews?: InterviewUpdateManyWithoutCandidateNestedInput
|
|
76030
|
-
interviewer_interviews?: InterviewUpdateManyWithoutInterviewerNestedInput
|
|
76031
|
-
assessment_results?: AssessmentUpdateManyWithoutUserNestedInput
|
|
76032
|
-
candidate_assessments?: AssessmentUpdateManyWithoutCandidateNestedInput
|
|
76033
|
-
reviewer_assessments?: AssessmentUpdateManyWithoutReviewerNestedInput
|
|
76034
|
-
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
76035
|
-
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
76036
|
-
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
76037
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
76038
|
-
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
76039
|
-
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
76040
|
-
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
76041
|
-
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
75912
|
+
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
75913
|
+
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
75914
|
+
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
75915
|
+
resume?: ResumeUpdateOneRequiredWithoutApplicationsNestedInput
|
|
75916
|
+
job_description?: JobDescriptionUpdateOneRequiredWithoutApplicationsNestedInput
|
|
75917
|
+
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
75918
|
+
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
75919
|
+
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
76042
75920
|
}
|
|
76043
75921
|
|
|
76044
|
-
export type
|
|
75922
|
+
export type ApplicationUncheckedUpdateWithoutActivity_logsInput = {
|
|
76045
75923
|
id?: StringFieldUpdateOperationsInput | string
|
|
76046
|
-
|
|
76047
|
-
|
|
76048
|
-
|
|
76049
|
-
|
|
76050
|
-
|
|
75924
|
+
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
75925
|
+
resume_id?: StringFieldUpdateOperationsInput | string
|
|
75926
|
+
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
75927
|
+
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
75928
|
+
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
75929
|
+
fit_check_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
75930
|
+
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
75931
|
+
applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
75932
|
+
evaluation_plan_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
75933
|
+
fit_check_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
75934
|
+
round_no?: IntFieldUpdateOperationsInput | number
|
|
76051
75935
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76052
75936
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76053
75937
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
76054
75938
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
76055
75939
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76056
|
-
|
|
76057
|
-
|
|
76058
|
-
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76059
|
-
profile_created?: BoolFieldUpdateOperationsInput | boolean
|
|
76060
|
-
first_login_status?: EnumFirstLoginStatusFieldUpdateOperationsInput | $Enums.FirstLoginStatus
|
|
76061
|
-
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76062
|
-
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76063
|
-
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76064
|
-
date_of_birth?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
76065
|
-
designation?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76066
|
-
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76067
|
-
salary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76068
|
-
work_experience?: NullableJsonNullValueInput | InputJsonValue
|
|
76069
|
-
education?: NullableJsonNullValueInput | InputJsonValue
|
|
76070
|
-
skills?: NullableJsonNullValueInput | InputJsonValue
|
|
76071
|
-
notice_period?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76072
|
-
preferred_work_mode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76073
|
-
gender?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76074
|
-
ethnicity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76075
|
-
veteran_status?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76076
|
-
disability_status?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76077
|
-
applications?: ApplicationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76078
|
-
resume?: ResumeUncheckedUpdateManyWithoutUserNestedInput
|
|
76079
|
-
candidate_profile?: CandidateProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
76080
|
-
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
76081
|
-
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
76082
|
-
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
76083
|
-
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
76084
|
-
panelist?: PanelistUncheckedUpdateOneWithoutUserNestedInput
|
|
76085
|
-
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
76086
|
-
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
76087
|
-
candidate_interviews?: InterviewUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76088
|
-
interviewer_interviews?: InterviewUncheckedUpdateManyWithoutInterviewerNestedInput
|
|
76089
|
-
assessment_results?: AssessmentUncheckedUpdateManyWithoutUserNestedInput
|
|
76090
|
-
candidate_assessments?: AssessmentUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76091
|
-
reviewer_assessments?: AssessmentUncheckedUpdateManyWithoutReviewerNestedInput
|
|
76092
|
-
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76093
|
-
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76094
|
-
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76095
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76096
|
-
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
76097
|
-
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
76098
|
-
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
76099
|
-
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75940
|
+
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
75941
|
+
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
76100
75942
|
}
|
|
76101
75943
|
|
|
76102
75944
|
export type EvaluationPlanCreateWithoutApplicationsInput = {
|
|
@@ -76210,7 +76052,6 @@ export namespace Prisma {
|
|
|
76210
76052
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
76211
76053
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
76212
76054
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
76213
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
76214
76055
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
76215
76056
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
76216
76057
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -76268,7 +76109,6 @@ export namespace Prisma {
|
|
|
76268
76109
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
76269
76110
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
76270
76111
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
76271
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
76272
76112
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
76273
76113
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
76274
76114
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -76687,6 +76527,38 @@ export namespace Prisma {
|
|
|
76687
76527
|
skipDuplicates?: boolean
|
|
76688
76528
|
}
|
|
76689
76529
|
|
|
76530
|
+
export type ActivityLogCreateWithoutApplicationInput = {
|
|
76531
|
+
id?: string
|
|
76532
|
+
actor_type?: $Enums.ActivityActorType
|
|
76533
|
+
message: string
|
|
76534
|
+
timestamp?: Date | string
|
|
76535
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
76536
|
+
created_at?: Date | string
|
|
76537
|
+
is_active?: boolean
|
|
76538
|
+
actor?: UserCreateNestedOneWithoutActor_activity_logsInput
|
|
76539
|
+
}
|
|
76540
|
+
|
|
76541
|
+
export type ActivityLogUncheckedCreateWithoutApplicationInput = {
|
|
76542
|
+
id?: string
|
|
76543
|
+
actor_id?: string | null
|
|
76544
|
+
actor_type?: $Enums.ActivityActorType
|
|
76545
|
+
message: string
|
|
76546
|
+
timestamp?: Date | string
|
|
76547
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
76548
|
+
created_at?: Date | string
|
|
76549
|
+
is_active?: boolean
|
|
76550
|
+
}
|
|
76551
|
+
|
|
76552
|
+
export type ActivityLogCreateOrConnectWithoutApplicationInput = {
|
|
76553
|
+
where: ActivityLogWhereUniqueInput
|
|
76554
|
+
create: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput>
|
|
76555
|
+
}
|
|
76556
|
+
|
|
76557
|
+
export type ActivityLogCreateManyApplicationInputEnvelope = {
|
|
76558
|
+
data: ActivityLogCreateManyApplicationInput | ActivityLogCreateManyApplicationInput[]
|
|
76559
|
+
skipDuplicates?: boolean
|
|
76560
|
+
}
|
|
76561
|
+
|
|
76690
76562
|
export type EvaluationPlanUpsertWithoutApplicationsInput = {
|
|
76691
76563
|
update: XOR<EvaluationPlanUpdateWithoutApplicationsInput, EvaluationPlanUncheckedUpdateWithoutApplicationsInput>
|
|
76692
76564
|
create: XOR<EvaluationPlanCreateWithoutApplicationsInput, EvaluationPlanUncheckedCreateWithoutApplicationsInput>
|
|
@@ -76815,7 +76687,6 @@ export namespace Prisma {
|
|
|
76815
76687
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
76816
76688
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
76817
76689
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
76818
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
76819
76690
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
76820
76691
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
76821
76692
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -76873,7 +76744,6 @@ export namespace Prisma {
|
|
|
76873
76744
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76874
76745
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76875
76746
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76876
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76877
76747
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
76878
76748
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
76879
76749
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -77259,6 +77129,37 @@ export namespace Prisma {
|
|
|
77259
77129
|
details?: JsonNullableFilter<"OngoingEvaluation">
|
|
77260
77130
|
}
|
|
77261
77131
|
|
|
77132
|
+
export type ActivityLogUpsertWithWhereUniqueWithoutApplicationInput = {
|
|
77133
|
+
where: ActivityLogWhereUniqueInput
|
|
77134
|
+
update: XOR<ActivityLogUpdateWithoutApplicationInput, ActivityLogUncheckedUpdateWithoutApplicationInput>
|
|
77135
|
+
create: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput>
|
|
77136
|
+
}
|
|
77137
|
+
|
|
77138
|
+
export type ActivityLogUpdateWithWhereUniqueWithoutApplicationInput = {
|
|
77139
|
+
where: ActivityLogWhereUniqueInput
|
|
77140
|
+
data: XOR<ActivityLogUpdateWithoutApplicationInput, ActivityLogUncheckedUpdateWithoutApplicationInput>
|
|
77141
|
+
}
|
|
77142
|
+
|
|
77143
|
+
export type ActivityLogUpdateManyWithWhereWithoutApplicationInput = {
|
|
77144
|
+
where: ActivityLogScalarWhereInput
|
|
77145
|
+
data: XOR<ActivityLogUpdateManyMutationInput, ActivityLogUncheckedUpdateManyWithoutApplicationInput>
|
|
77146
|
+
}
|
|
77147
|
+
|
|
77148
|
+
export type ActivityLogScalarWhereInput = {
|
|
77149
|
+
AND?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
77150
|
+
OR?: ActivityLogScalarWhereInput[]
|
|
77151
|
+
NOT?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
77152
|
+
id?: StringFilter<"ActivityLog"> | string
|
|
77153
|
+
application_id?: StringFilter<"ActivityLog"> | string
|
|
77154
|
+
actor_id?: StringNullableFilter<"ActivityLog"> | string | null
|
|
77155
|
+
actor_type?: EnumActivityActorTypeFilter<"ActivityLog"> | $Enums.ActivityActorType
|
|
77156
|
+
message?: StringFilter<"ActivityLog"> | string
|
|
77157
|
+
timestamp?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
77158
|
+
metadata?: JsonNullableFilter<"ActivityLog">
|
|
77159
|
+
created_at?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
77160
|
+
is_active?: BoolFilter<"ActivityLog"> | boolean
|
|
77161
|
+
}
|
|
77162
|
+
|
|
77262
77163
|
export type JobDescriptionCreateWithoutApprovalsInput = {
|
|
77263
77164
|
id?: string
|
|
77264
77165
|
status?: $Enums.JobDescriptionStatus
|
|
@@ -77376,7 +77277,6 @@ export namespace Prisma {
|
|
|
77376
77277
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
77377
77278
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
77378
77279
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
77379
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
77380
77280
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
77381
77281
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
77382
77282
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -77434,7 +77334,6 @@ export namespace Prisma {
|
|
|
77434
77334
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
77435
77335
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
77436
77336
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
77437
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
77438
77337
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
77439
77338
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
77440
77339
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -77652,7 +77551,6 @@ export namespace Prisma {
|
|
|
77652
77551
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
77653
77552
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
77654
77553
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
77655
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
77656
77554
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
77657
77555
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
77658
77556
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -77710,7 +77608,6 @@ export namespace Prisma {
|
|
|
77710
77608
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
77711
77609
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
77712
77610
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
77713
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
77714
77611
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
77715
77612
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
77716
77613
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -77890,7 +77787,6 @@ export namespace Prisma {
|
|
|
77890
77787
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
77891
77788
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
77892
77789
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
77893
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
77894
77790
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
77895
77791
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
77896
77792
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -77948,7 +77844,6 @@ export namespace Prisma {
|
|
|
77948
77844
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
77949
77845
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
77950
77846
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
77951
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
77952
77847
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
77953
77848
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
77954
77849
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -78011,7 +77906,6 @@ export namespace Prisma {
|
|
|
78011
77906
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
78012
77907
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
78013
77908
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
78014
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
78015
77909
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
78016
77910
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
78017
77911
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -78069,7 +77963,6 @@ export namespace Prisma {
|
|
|
78069
77963
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
78070
77964
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
78071
77965
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
78072
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
78073
77966
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
78074
77967
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
78075
77968
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -78235,7 +78128,6 @@ export namespace Prisma {
|
|
|
78235
78128
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
78236
78129
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
78237
78130
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
78238
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
78239
78131
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
78240
78132
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
78241
78133
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -78293,7 +78185,6 @@ export namespace Prisma {
|
|
|
78293
78185
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
78294
78186
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
78295
78187
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
78296
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
78297
78188
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
78298
78189
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
78299
78190
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -78418,7 +78309,6 @@ export namespace Prisma {
|
|
|
78418
78309
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
78419
78310
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
78420
78311
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
78421
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
78422
78312
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
78423
78313
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
78424
78314
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -78476,7 +78366,6 @@ export namespace Prisma {
|
|
|
78476
78366
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78477
78367
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78478
78368
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78479
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78480
78369
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
78481
78370
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
78482
78371
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -78545,7 +78434,6 @@ export namespace Prisma {
|
|
|
78545
78434
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
78546
78435
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
78547
78436
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
78548
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
78549
78437
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
78550
78438
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
78551
78439
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -78603,7 +78491,6 @@ export namespace Prisma {
|
|
|
78603
78491
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78604
78492
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78605
78493
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78606
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78607
78494
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
78608
78495
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
78609
78496
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -78782,7 +78669,6 @@ export namespace Prisma {
|
|
|
78782
78669
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
78783
78670
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
78784
78671
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
78785
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
78786
78672
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
78787
78673
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
78788
78674
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -78840,7 +78726,6 @@ export namespace Prisma {
|
|
|
78840
78726
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78841
78727
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78842
78728
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78843
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78844
78729
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
78845
78730
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
78846
78731
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -80027,7 +79912,6 @@ export namespace Prisma {
|
|
|
80027
79912
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
80028
79913
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
80029
79914
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
80030
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
80031
79915
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
80032
79916
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
80033
79917
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
@@ -80085,7 +79969,6 @@ export namespace Prisma {
|
|
|
80085
79969
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
80086
79970
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
80087
79971
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
80088
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
80089
79972
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
80090
79973
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
80091
79974
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -80159,7 +80042,6 @@ export namespace Prisma {
|
|
|
80159
80042
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
80160
80043
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
80161
80044
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
80162
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
80163
80045
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
80164
80046
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
80165
80047
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
@@ -80217,7 +80099,6 @@ export namespace Prisma {
|
|
|
80217
80099
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80218
80100
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80219
80101
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80220
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80221
80102
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
80222
80103
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
80223
80104
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -80274,7 +80155,6 @@ export namespace Prisma {
|
|
|
80274
80155
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
80275
80156
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
80276
80157
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
80277
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
80278
80158
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
80279
80159
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
80280
80160
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -80332,7 +80212,6 @@ export namespace Prisma {
|
|
|
80332
80212
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
80333
80213
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
80334
80214
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
80335
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
80336
80215
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
80337
80216
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
80338
80217
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -80451,7 +80330,6 @@ export namespace Prisma {
|
|
|
80451
80330
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
80452
80331
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
80453
80332
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
80454
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
80455
80333
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
80456
80334
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
80457
80335
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -80509,7 +80387,6 @@ export namespace Prisma {
|
|
|
80509
80387
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80510
80388
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80511
80389
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80512
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80513
80390
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
80514
80391
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
80515
80392
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -80827,6 +80704,7 @@ export namespace Prisma {
|
|
|
80827
80704
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
80828
80705
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
80829
80706
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
80707
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
80830
80708
|
}
|
|
80831
80709
|
|
|
80832
80710
|
export type ApplicationUncheckedCreateWithoutEvaluation_planInput = {
|
|
@@ -80848,6 +80726,7 @@ export namespace Prisma {
|
|
|
80848
80726
|
is_active?: boolean
|
|
80849
80727
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
80850
80728
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
80729
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
80851
80730
|
}
|
|
80852
80731
|
|
|
80853
80732
|
export type ApplicationCreateOrConnectWithoutEvaluation_planInput = {
|
|
@@ -81567,7 +81446,6 @@ export namespace Prisma {
|
|
|
81567
81446
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
81568
81447
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
81569
81448
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
81570
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
81571
81449
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
81572
81450
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
81573
81451
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -81625,7 +81503,6 @@ export namespace Prisma {
|
|
|
81625
81503
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
81626
81504
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
81627
81505
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
81628
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
81629
81506
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
81630
81507
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
81631
81508
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -81768,6 +81645,7 @@ export namespace Prisma {
|
|
|
81768
81645
|
job_description: JobDescriptionCreateNestedOneWithoutApplicationsInput
|
|
81769
81646
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
81770
81647
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
81648
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
81771
81649
|
}
|
|
81772
81650
|
|
|
81773
81651
|
export type ApplicationUncheckedCreateWithoutFit_checkInput = {
|
|
@@ -81789,6 +81667,7 @@ export namespace Prisma {
|
|
|
81789
81667
|
is_active?: boolean
|
|
81790
81668
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
81791
81669
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
81670
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
81792
81671
|
}
|
|
81793
81672
|
|
|
81794
81673
|
export type ApplicationCreateOrConnectWithoutFit_checkInput = {
|
|
@@ -81935,7 +81814,6 @@ export namespace Prisma {
|
|
|
81935
81814
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
81936
81815
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
81937
81816
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
81938
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
81939
81817
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
81940
81818
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
81941
81819
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -81993,7 +81871,6 @@ export namespace Prisma {
|
|
|
81993
81871
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
81994
81872
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
81995
81873
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
81996
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
81997
81874
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
81998
81875
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
81999
81876
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -82154,6 +82031,7 @@ export namespace Prisma {
|
|
|
82154
82031
|
job_description?: JobDescriptionUpdateOneRequiredWithoutApplicationsNestedInput
|
|
82155
82032
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
82156
82033
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
82034
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
82157
82035
|
}
|
|
82158
82036
|
|
|
82159
82037
|
export type ApplicationUncheckedUpdateWithoutFit_checkInput = {
|
|
@@ -82175,6 +82053,7 @@ export namespace Prisma {
|
|
|
82175
82053
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
82176
82054
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
82177
82055
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
82056
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
82178
82057
|
}
|
|
82179
82058
|
|
|
82180
82059
|
export type UserCreateWithoutGoogleInput = {
|
|
@@ -82228,7 +82107,6 @@ export namespace Prisma {
|
|
|
82228
82107
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
82229
82108
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
82230
82109
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
82231
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
82232
82110
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
82233
82111
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
82234
82112
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -82286,7 +82164,6 @@ export namespace Prisma {
|
|
|
82286
82164
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
82287
82165
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
82288
82166
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
82289
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
82290
82167
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
82291
82168
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
82292
82169
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -82360,7 +82237,6 @@ export namespace Prisma {
|
|
|
82360
82237
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
82361
82238
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
82362
82239
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
82363
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
82364
82240
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
82365
82241
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
82366
82242
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -82418,7 +82294,6 @@ export namespace Prisma {
|
|
|
82418
82294
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82419
82295
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82420
82296
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82421
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82422
82297
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
82423
82298
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
82424
82299
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -82784,7 +82659,6 @@ export namespace Prisma {
|
|
|
82784
82659
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
82785
82660
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
82786
82661
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
82787
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
82788
82662
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
82789
82663
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
82790
82664
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -82842,7 +82716,6 @@ export namespace Prisma {
|
|
|
82842
82716
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
82843
82717
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
82844
82718
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
82845
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
82846
82719
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
82847
82720
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
82848
82721
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -82905,7 +82778,6 @@ export namespace Prisma {
|
|
|
82905
82778
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
82906
82779
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
82907
82780
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
82908
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
82909
82781
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
82910
82782
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
82911
82783
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -82963,7 +82835,6 @@ export namespace Prisma {
|
|
|
82963
82835
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
82964
82836
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
82965
82837
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
82966
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
82967
82838
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
82968
82839
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
82969
82840
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -83239,6 +83110,7 @@ export namespace Prisma {
|
|
|
83239
83110
|
job_description: JobDescriptionCreateNestedOneWithoutApplicationsInput
|
|
83240
83111
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
83241
83112
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
83113
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
83242
83114
|
}
|
|
83243
83115
|
|
|
83244
83116
|
export type ApplicationUncheckedCreateWithoutInterviewsInput = {
|
|
@@ -83260,6 +83132,7 @@ export namespace Prisma {
|
|
|
83260
83132
|
updated_by: string
|
|
83261
83133
|
is_active?: boolean
|
|
83262
83134
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
83135
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
83263
83136
|
}
|
|
83264
83137
|
|
|
83265
83138
|
export type ApplicationCreateOrConnectWithoutInterviewsInput = {
|
|
@@ -83621,7 +83494,6 @@ export namespace Prisma {
|
|
|
83621
83494
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
83622
83495
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
83623
83496
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
83624
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
83625
83497
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
83626
83498
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
83627
83499
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -83679,7 +83551,6 @@ export namespace Prisma {
|
|
|
83679
83551
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83680
83552
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83681
83553
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83682
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83683
83554
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
83684
83555
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
83685
83556
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -83748,7 +83619,6 @@ export namespace Prisma {
|
|
|
83748
83619
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
83749
83620
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
83750
83621
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
83751
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
83752
83622
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
83753
83623
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
83754
83624
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -83806,7 +83676,6 @@ export namespace Prisma {
|
|
|
83806
83676
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83807
83677
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83808
83678
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83809
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83810
83679
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
83811
83680
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
83812
83681
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -84112,6 +83981,7 @@ export namespace Prisma {
|
|
|
84112
83981
|
job_description?: JobDescriptionUpdateOneRequiredWithoutApplicationsNestedInput
|
|
84113
83982
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
84114
83983
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
83984
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
84115
83985
|
}
|
|
84116
83986
|
|
|
84117
83987
|
export type ApplicationUncheckedUpdateWithoutInterviewsInput = {
|
|
@@ -84133,6 +84003,7 @@ export namespace Prisma {
|
|
|
84133
84003
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
84134
84004
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
84135
84005
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
84006
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
84136
84007
|
}
|
|
84137
84008
|
|
|
84138
84009
|
export type OngoingEvaluationUpsertWithoutInterviewInput = {
|
|
@@ -84777,6 +84648,7 @@ export namespace Prisma {
|
|
|
84777
84648
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
84778
84649
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
84779
84650
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
84651
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
84780
84652
|
}
|
|
84781
84653
|
|
|
84782
84654
|
export type ApplicationUncheckedCreateWithoutJob_descriptionInput = {
|
|
@@ -84798,6 +84670,7 @@ export namespace Prisma {
|
|
|
84798
84670
|
is_active?: boolean
|
|
84799
84671
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
84800
84672
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
84673
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
84801
84674
|
}
|
|
84802
84675
|
|
|
84803
84676
|
export type ApplicationCreateOrConnectWithoutJob_descriptionInput = {
|
|
@@ -85353,7 +85226,6 @@ export namespace Prisma {
|
|
|
85353
85226
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
85354
85227
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
85355
85228
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
85356
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
85357
85229
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
85358
85230
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
85359
85231
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -85411,7 +85283,6 @@ export namespace Prisma {
|
|
|
85411
85283
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
85412
85284
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
85413
85285
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
85414
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
85415
85286
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
85416
85287
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
85417
85288
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -85474,7 +85345,6 @@ export namespace Prisma {
|
|
|
85474
85345
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
85475
85346
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
85476
85347
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
85477
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
85478
85348
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
85479
85349
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
85480
85350
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -85532,7 +85402,6 @@ export namespace Prisma {
|
|
|
85532
85402
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
85533
85403
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
85534
85404
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
85535
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
85536
85405
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
85537
85406
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
85538
85407
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -86027,7 +85896,6 @@ export namespace Prisma {
|
|
|
86027
85896
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
86028
85897
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
86029
85898
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
86030
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
86031
85899
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
86032
85900
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
86033
85901
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -86085,7 +85953,6 @@ export namespace Prisma {
|
|
|
86085
85953
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86086
85954
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86087
85955
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86088
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86089
85956
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
86090
85957
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
86091
85958
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -86315,7 +86182,6 @@ export namespace Prisma {
|
|
|
86315
86182
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
86316
86183
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
86317
86184
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
86318
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
86319
86185
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
86320
86186
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
86321
86187
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -86373,7 +86239,6 @@ export namespace Prisma {
|
|
|
86373
86239
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
86374
86240
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
86375
86241
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
86376
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
86377
86242
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
86378
86243
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
86379
86244
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -86436,7 +86301,6 @@ export namespace Prisma {
|
|
|
86436
86301
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
86437
86302
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
86438
86303
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
86439
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
86440
86304
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
86441
86305
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
86442
86306
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -86494,7 +86358,6 @@ export namespace Prisma {
|
|
|
86494
86358
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
86495
86359
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
86496
86360
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
86497
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
86498
86361
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
86499
86362
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
86500
86363
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -86568,7 +86431,6 @@ export namespace Prisma {
|
|
|
86568
86431
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
86569
86432
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
86570
86433
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
86571
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
86572
86434
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
86573
86435
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
86574
86436
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -86626,7 +86488,6 @@ export namespace Prisma {
|
|
|
86626
86488
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86627
86489
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86628
86490
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86629
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86630
86491
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
86631
86492
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
86632
86493
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -86695,7 +86556,6 @@ export namespace Prisma {
|
|
|
86695
86556
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
86696
86557
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
86697
86558
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
86698
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
86699
86559
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
86700
86560
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
86701
86561
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -86753,7 +86613,6 @@ export namespace Prisma {
|
|
|
86753
86613
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86754
86614
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86755
86615
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86756
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86757
86616
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
86758
86617
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
86759
86618
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -86847,6 +86706,7 @@ export namespace Prisma {
|
|
|
86847
86706
|
job_description: JobDescriptionCreateNestedOneWithoutApplicationsInput
|
|
86848
86707
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
86849
86708
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
86709
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
86850
86710
|
}
|
|
86851
86711
|
|
|
86852
86712
|
export type ApplicationUncheckedCreateWithoutOngoing_evaluationsInput = {
|
|
@@ -86868,6 +86728,7 @@ export namespace Prisma {
|
|
|
86868
86728
|
updated_by: string
|
|
86869
86729
|
is_active?: boolean
|
|
86870
86730
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
86731
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
86871
86732
|
}
|
|
86872
86733
|
|
|
86873
86734
|
export type ApplicationCreateOrConnectWithoutOngoing_evaluationsInput = {
|
|
@@ -86925,7 +86786,6 @@ export namespace Prisma {
|
|
|
86925
86786
|
reviewer_assessments?: AssessmentCreateNestedManyWithoutReviewerInput
|
|
86926
86787
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
86927
86788
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
86928
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
86929
86789
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
86930
86790
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
86931
86791
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -86983,7 +86843,6 @@ export namespace Prisma {
|
|
|
86983
86843
|
reviewer_assessments?: AssessmentUncheckedCreateNestedManyWithoutReviewerInput
|
|
86984
86844
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
86985
86845
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
86986
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
86987
86846
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
86988
86847
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
86989
86848
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -87349,6 +87208,7 @@ export namespace Prisma {
|
|
|
87349
87208
|
job_description?: JobDescriptionUpdateOneRequiredWithoutApplicationsNestedInput
|
|
87350
87209
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
87351
87210
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
87211
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
87352
87212
|
}
|
|
87353
87213
|
|
|
87354
87214
|
export type ApplicationUncheckedUpdateWithoutOngoing_evaluationsInput = {
|
|
@@ -87370,6 +87230,7 @@ export namespace Prisma {
|
|
|
87370
87230
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
87371
87231
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
87372
87232
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
87233
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
87373
87234
|
}
|
|
87374
87235
|
|
|
87375
87236
|
export type UserUpsertWithoutOngoing_evaluationsInput = {
|
|
@@ -87433,7 +87294,6 @@ export namespace Prisma {
|
|
|
87433
87294
|
reviewer_assessments?: AssessmentUpdateManyWithoutReviewerNestedInput
|
|
87434
87295
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
87435
87296
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
87436
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
87437
87297
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
87438
87298
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
87439
87299
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -87491,7 +87351,6 @@ export namespace Prisma {
|
|
|
87491
87351
|
reviewer_assessments?: AssessmentUncheckedUpdateManyWithoutReviewerNestedInput
|
|
87492
87352
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
87493
87353
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
87494
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
87495
87354
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
87496
87355
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
87497
87356
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -87823,7 +87682,6 @@ export namespace Prisma {
|
|
|
87823
87682
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
87824
87683
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
87825
87684
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
87826
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
87827
87685
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
87828
87686
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
87829
87687
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -87881,7 +87739,6 @@ export namespace Prisma {
|
|
|
87881
87739
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
87882
87740
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
87883
87741
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
87884
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
87885
87742
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
87886
87743
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
87887
87744
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -87918,6 +87775,7 @@ export namespace Prisma {
|
|
|
87918
87775
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
87919
87776
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
87920
87777
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
87778
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
87921
87779
|
}
|
|
87922
87780
|
|
|
87923
87781
|
export type ApplicationUncheckedCreateWithoutOrganisationInput = {
|
|
@@ -87939,6 +87797,7 @@ export namespace Prisma {
|
|
|
87939
87797
|
is_active?: boolean
|
|
87940
87798
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
87941
87799
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
87800
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
87942
87801
|
}
|
|
87943
87802
|
|
|
87944
87803
|
export type ApplicationCreateOrConnectWithoutOrganisationInput = {
|
|
@@ -89311,7 +89170,6 @@ export namespace Prisma {
|
|
|
89311
89170
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
89312
89171
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
89313
89172
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
89314
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
89315
89173
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
89316
89174
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
89317
89175
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -89369,7 +89227,6 @@ export namespace Prisma {
|
|
|
89369
89227
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
89370
89228
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
89371
89229
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
89372
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
89373
89230
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
89374
89231
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
89375
89232
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -89663,7 +89520,6 @@ export namespace Prisma {
|
|
|
89663
89520
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
89664
89521
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
89665
89522
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
89666
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
89667
89523
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
89668
89524
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
89669
89525
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -89721,7 +89577,6 @@ export namespace Prisma {
|
|
|
89721
89577
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
89722
89578
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
89723
89579
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
89724
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
89725
89580
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
89726
89581
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
89727
89582
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -89904,7 +89759,6 @@ export namespace Prisma {
|
|
|
89904
89759
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
89905
89760
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
89906
89761
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
89907
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
89908
89762
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
89909
89763
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
89910
89764
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -89962,7 +89816,6 @@ export namespace Prisma {
|
|
|
89962
89816
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
89963
89817
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
89964
89818
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
89965
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
89966
89819
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
89967
89820
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
89968
89821
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -90067,7 +89920,6 @@ export namespace Prisma {
|
|
|
90067
89920
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
90068
89921
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
90069
89922
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
90070
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
90071
89923
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
90072
89924
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
90073
89925
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -90125,7 +89977,6 @@ export namespace Prisma {
|
|
|
90125
89977
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90126
89978
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90127
89979
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90128
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90129
89980
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
90130
89981
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
90131
89982
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -90220,7 +90071,6 @@ export namespace Prisma {
|
|
|
90220
90071
|
reviewer_assessments?: AssessmentCreateNestedManyWithoutReviewerInput
|
|
90221
90072
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
90222
90073
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
90223
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
90224
90074
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
90225
90075
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
90226
90076
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -90278,7 +90128,6 @@ export namespace Prisma {
|
|
|
90278
90128
|
reviewer_assessments?: AssessmentUncheckedCreateNestedManyWithoutReviewerInput
|
|
90279
90129
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
90280
90130
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
90281
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
90282
90131
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
90283
90132
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
90284
90133
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -90516,7 +90365,6 @@ export namespace Prisma {
|
|
|
90516
90365
|
reviewer_assessments?: AssessmentUpdateManyWithoutReviewerNestedInput
|
|
90517
90366
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
90518
90367
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
90519
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
90520
90368
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
90521
90369
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
90522
90370
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -90574,7 +90422,6 @@ export namespace Prisma {
|
|
|
90574
90422
|
reviewer_assessments?: AssessmentUncheckedUpdateManyWithoutReviewerNestedInput
|
|
90575
90423
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90576
90424
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90577
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90578
90425
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
90579
90426
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
90580
90427
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -90782,7 +90629,6 @@ export namespace Prisma {
|
|
|
90782
90629
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
90783
90630
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
90784
90631
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
90785
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
90786
90632
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
90787
90633
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
90788
90634
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -90840,7 +90686,6 @@ export namespace Prisma {
|
|
|
90840
90686
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
90841
90687
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
90842
90688
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
90843
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
90844
90689
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
90845
90690
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
90846
90691
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -91010,6 +90855,7 @@ export namespace Prisma {
|
|
|
91010
90855
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
91011
90856
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
91012
90857
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
90858
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
91013
90859
|
}
|
|
91014
90860
|
|
|
91015
90861
|
export type ApplicationUncheckedCreateWithoutResumeInput = {
|
|
@@ -91031,6 +90877,7 @@ export namespace Prisma {
|
|
|
91031
90877
|
is_active?: boolean
|
|
91032
90878
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
91033
90879
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
90880
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
91034
90881
|
}
|
|
91035
90882
|
|
|
91036
90883
|
export type ApplicationCreateOrConnectWithoutResumeInput = {
|
|
@@ -91411,7 +91258,6 @@ export namespace Prisma {
|
|
|
91411
91258
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
91412
91259
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
91413
91260
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
91414
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
91415
91261
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
91416
91262
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
91417
91263
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -91469,7 +91315,6 @@ export namespace Prisma {
|
|
|
91469
91315
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
91470
91316
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
91471
91317
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
91472
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
91473
91318
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
91474
91319
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
91475
91320
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -92811,6 +92656,7 @@ export namespace Prisma {
|
|
|
92811
92656
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
92812
92657
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
92813
92658
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
92659
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
92814
92660
|
}
|
|
92815
92661
|
|
|
92816
92662
|
export type ApplicationUncheckedCreateWithoutCandidateInput = {
|
|
@@ -92832,6 +92678,7 @@ export namespace Prisma {
|
|
|
92832
92678
|
is_active?: boolean
|
|
92833
92679
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
92834
92680
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
92681
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
92835
92682
|
}
|
|
92836
92683
|
|
|
92837
92684
|
export type ApplicationCreateOrConnectWithoutCandidateInput = {
|
|
@@ -93710,38 +93557,6 @@ export namespace Prisma {
|
|
|
93710
93557
|
skipDuplicates?: boolean
|
|
93711
93558
|
}
|
|
93712
93559
|
|
|
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
93560
|
export type ActivityLogCreateWithoutActorInput = {
|
|
93746
93561
|
id?: string
|
|
93747
93562
|
actor_type?: $Enums.ActivityActorType
|
|
@@ -93750,12 +93565,12 @@ export namespace Prisma {
|
|
|
93750
93565
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
93751
93566
|
created_at?: Date | string
|
|
93752
93567
|
is_active?: boolean
|
|
93753
|
-
|
|
93568
|
+
application: ApplicationCreateNestedOneWithoutActivity_logsInput
|
|
93754
93569
|
}
|
|
93755
93570
|
|
|
93756
93571
|
export type ActivityLogUncheckedCreateWithoutActorInput = {
|
|
93757
93572
|
id?: string
|
|
93758
|
-
|
|
93573
|
+
application_id: string
|
|
93759
93574
|
actor_type?: $Enums.ActivityActorType
|
|
93760
93575
|
message: string
|
|
93761
93576
|
timestamp?: Date | string
|
|
@@ -94497,37 +94312,6 @@ export namespace Prisma {
|
|
|
94497
94312
|
data: XOR<OngoingEvaluationUpdateManyMutationInput, OngoingEvaluationUncheckedUpdateManyWithoutCandidateInput>
|
|
94498
94313
|
}
|
|
94499
94314
|
|
|
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
94315
|
export type ActivityLogUpsertWithWhereUniqueWithoutActorInput = {
|
|
94532
94316
|
where: ActivityLogWhereUniqueInput
|
|
94533
94317
|
update: XOR<ActivityLogUpdateWithoutActorInput, ActivityLogUncheckedUpdateWithoutActorInput>
|
|
@@ -94700,7 +94484,6 @@ export namespace Prisma {
|
|
|
94700
94484
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
94701
94485
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
94702
94486
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
94703
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
94704
94487
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
94705
94488
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
94706
94489
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
@@ -94758,7 +94541,6 @@ export namespace Prisma {
|
|
|
94758
94541
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
94759
94542
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
94760
94543
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
94761
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
94762
94544
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
94763
94545
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
94764
94546
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
@@ -94832,7 +94614,6 @@ export namespace Prisma {
|
|
|
94832
94614
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
94833
94615
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
94834
94616
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
94835
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
94836
94617
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
94837
94618
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
94838
94619
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -94890,7 +94671,6 @@ export namespace Prisma {
|
|
|
94890
94671
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94891
94672
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94892
94673
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94893
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94894
94674
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
94895
94675
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
94896
94676
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -94982,7 +94762,6 @@ export namespace Prisma {
|
|
|
94982
94762
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
94983
94763
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
94984
94764
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
94985
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
94986
94765
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
94987
94766
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
94988
94767
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -95040,7 +94819,6 @@ export namespace Prisma {
|
|
|
95040
94819
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95041
94820
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95042
94821
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95043
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95044
94822
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
95045
94823
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
95046
94824
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -95140,6 +94918,17 @@ export namespace Prisma {
|
|
|
95140
94918
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
95141
94919
|
}
|
|
95142
94920
|
|
|
94921
|
+
export type ActivityLogCreateManyApplicationInput = {
|
|
94922
|
+
id?: string
|
|
94923
|
+
actor_id?: string | null
|
|
94924
|
+
actor_type?: $Enums.ActivityActorType
|
|
94925
|
+
message: string
|
|
94926
|
+
timestamp?: Date | string
|
|
94927
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
94928
|
+
created_at?: Date | string
|
|
94929
|
+
is_active?: boolean
|
|
94930
|
+
}
|
|
94931
|
+
|
|
95143
94932
|
export type InterviewUpdateWithoutApplicationInput = {
|
|
95144
94933
|
id?: StringFieldUpdateOperationsInput | string
|
|
95145
94934
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -95328,6 +95117,39 @@ export namespace Prisma {
|
|
|
95328
95117
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
95329
95118
|
}
|
|
95330
95119
|
|
|
95120
|
+
export type ActivityLogUpdateWithoutApplicationInput = {
|
|
95121
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
95122
|
+
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
95123
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
95124
|
+
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95125
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
95126
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95127
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95128
|
+
actor?: UserUpdateOneWithoutActor_activity_logsNestedInput
|
|
95129
|
+
}
|
|
95130
|
+
|
|
95131
|
+
export type ActivityLogUncheckedUpdateWithoutApplicationInput = {
|
|
95132
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
95133
|
+
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95134
|
+
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
95135
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
95136
|
+
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95137
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
95138
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95139
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95140
|
+
}
|
|
95141
|
+
|
|
95142
|
+
export type ActivityLogUncheckedUpdateManyWithoutApplicationInput = {
|
|
95143
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
95144
|
+
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95145
|
+
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
95146
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
95147
|
+
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95148
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
95149
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95150
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95151
|
+
}
|
|
95152
|
+
|
|
95331
95153
|
export type AssessmentQuestionCreateManyAssessmentInput = {
|
|
95332
95154
|
question_id: string
|
|
95333
95155
|
created_at?: Date | string
|
|
@@ -96081,6 +95903,7 @@ export namespace Prisma {
|
|
|
96081
95903
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
96082
95904
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
96083
95905
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
95906
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
96084
95907
|
}
|
|
96085
95908
|
|
|
96086
95909
|
export type ApplicationUncheckedUpdateWithoutEvaluation_planInput = {
|
|
@@ -96102,6 +95925,7 @@ export namespace Prisma {
|
|
|
96102
95925
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
96103
95926
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
96104
95927
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
95928
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
96105
95929
|
}
|
|
96106
95930
|
|
|
96107
95931
|
export type ApplicationUncheckedUpdateManyWithoutEvaluation_planInput = {
|
|
@@ -96827,6 +96651,7 @@ export namespace Prisma {
|
|
|
96827
96651
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
96828
96652
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
96829
96653
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
96654
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
96830
96655
|
}
|
|
96831
96656
|
|
|
96832
96657
|
export type ApplicationUncheckedUpdateWithoutJob_descriptionInput = {
|
|
@@ -96848,6 +96673,7 @@ export namespace Prisma {
|
|
|
96848
96673
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
96849
96674
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
96850
96675
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
96676
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
96851
96677
|
}
|
|
96852
96678
|
|
|
96853
96679
|
export type ApplicationUncheckedUpdateManyWithoutJob_descriptionInput = {
|
|
@@ -97445,7 +97271,6 @@ export namespace Prisma {
|
|
|
97445
97271
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
97446
97272
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
97447
97273
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
97448
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
97449
97274
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
97450
97275
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
97451
97276
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -97503,7 +97328,6 @@ export namespace Prisma {
|
|
|
97503
97328
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97504
97329
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97505
97330
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97506
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97507
97331
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
97508
97332
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
97509
97333
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -97936,7 +97760,6 @@ export namespace Prisma {
|
|
|
97936
97760
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
97937
97761
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
97938
97762
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
97939
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
97940
97763
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
97941
97764
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
97942
97765
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
@@ -97994,7 +97817,6 @@ export namespace Prisma {
|
|
|
97994
97817
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97995
97818
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97996
97819
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97997
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97998
97820
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
97999
97821
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
98000
97822
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -98055,6 +97877,7 @@ export namespace Prisma {
|
|
|
98055
97877
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
98056
97878
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
98057
97879
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
97880
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
98058
97881
|
}
|
|
98059
97882
|
|
|
98060
97883
|
export type ApplicationUncheckedUpdateWithoutOrganisationInput = {
|
|
@@ -98076,6 +97899,7 @@ export namespace Prisma {
|
|
|
98076
97899
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
98077
97900
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
98078
97901
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
97902
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
98079
97903
|
}
|
|
98080
97904
|
|
|
98081
97905
|
export type ApplicationUncheckedUpdateManyWithoutOrganisationInput = {
|
|
@@ -99351,6 +99175,7 @@ export namespace Prisma {
|
|
|
99351
99175
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
99352
99176
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
99353
99177
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
99178
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
99354
99179
|
}
|
|
99355
99180
|
|
|
99356
99181
|
export type ApplicationUncheckedUpdateWithoutResumeInput = {
|
|
@@ -99372,6 +99197,7 @@ export namespace Prisma {
|
|
|
99372
99197
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
99373
99198
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
99374
99199
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
99200
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
99375
99201
|
}
|
|
99376
99202
|
|
|
99377
99203
|
export type ApplicationUncheckedUpdateManyWithoutResumeInput = {
|
|
@@ -100035,20 +99861,9 @@ export namespace Prisma {
|
|
|
100035
99861
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
100036
99862
|
}
|
|
100037
99863
|
|
|
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
99864
|
export type ActivityLogCreateManyActorInput = {
|
|
100050
99865
|
id?: string
|
|
100051
|
-
|
|
99866
|
+
application_id: string
|
|
100052
99867
|
actor_type?: $Enums.ActivityActorType
|
|
100053
99868
|
message: string
|
|
100054
99869
|
timestamp?: Date | string
|
|
@@ -100124,6 +99939,7 @@ export namespace Prisma {
|
|
|
100124
99939
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
100125
99940
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
100126
99941
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
99942
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
100127
99943
|
}
|
|
100128
99944
|
|
|
100129
99945
|
export type ApplicationUncheckedUpdateWithoutCandidateInput = {
|
|
@@ -100145,6 +99961,7 @@ export namespace Prisma {
|
|
|
100145
99961
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
100146
99962
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
100147
99963
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
99964
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
100148
99965
|
}
|
|
100149
99966
|
|
|
100150
99967
|
export type ApplicationUncheckedUpdateManyWithoutCandidateInput = {
|
|
@@ -101027,39 +100844,6 @@ export namespace Prisma {
|
|
|
101027
100844
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
101028
100845
|
}
|
|
101029
100846
|
|
|
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
100847
|
export type ActivityLogUpdateWithoutActorInput = {
|
|
101064
100848
|
id?: StringFieldUpdateOperationsInput | string
|
|
101065
100849
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
@@ -101068,12 +100852,12 @@ export namespace Prisma {
|
|
|
101068
100852
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101069
100853
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101070
100854
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101071
|
-
|
|
100855
|
+
application?: ApplicationUpdateOneRequiredWithoutActivity_logsNestedInput
|
|
101072
100856
|
}
|
|
101073
100857
|
|
|
101074
100858
|
export type ActivityLogUncheckedUpdateWithoutActorInput = {
|
|
101075
100859
|
id?: StringFieldUpdateOperationsInput | string
|
|
101076
|
-
|
|
100860
|
+
application_id?: StringFieldUpdateOperationsInput | string
|
|
101077
100861
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101078
100862
|
message?: StringFieldUpdateOperationsInput | string
|
|
101079
100863
|
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -101084,7 +100868,7 @@ export namespace Prisma {
|
|
|
101084
100868
|
|
|
101085
100869
|
export type ActivityLogUncheckedUpdateManyWithoutActorInput = {
|
|
101086
100870
|
id?: StringFieldUpdateOperationsInput | string
|
|
101087
|
-
|
|
100871
|
+
application_id?: StringFieldUpdateOperationsInput | string
|
|
101088
100872
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101089
100873
|
message?: StringFieldUpdateOperationsInput | string
|
|
101090
100874
|
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|