@adaptware/eagles-db 0.1.37 → 0.1.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/edge.js +8 -26
- package/client/index-browser.js +5 -15
- package/client/index.d.ts +918 -525
- package/client/index.js +8 -26
- package/client/package.json +1 -1
- package/client/schema.prisma +36 -67
- package/client/wasm.js +5 -15
- package/package.json +1 -1
- package/prisma/schema/activityLog.prisma +14 -36
- package/prisma/schema/applications.prisma +20 -22
- package/prisma/schema/assessmentLibrary.prisma +0 -1
- package/prisma/schema/assignmentLibrary.prisma +14 -15
- package/prisma/schema/interview.prisma +0 -1
- package/prisma/schema/interviewLibrary.prisma +0 -2
- package/prisma/schema/jobDescriptionData.prisma +0 -1
- package/prisma/schema/overallFeedback.prisma +0 -1
- package/prisma/schema/suggestion.prisma +0 -1
- package/prisma/schema/user.prisma +16 -16
package/client/index.d.ts
CHANGED
|
@@ -240,32 +240,6 @@ export const ActivityActorType: {
|
|
|
240
240
|
export type ActivityActorType = (typeof ActivityActorType)[keyof typeof ActivityActorType]
|
|
241
241
|
|
|
242
242
|
|
|
243
|
-
export const ActivityActionType: {
|
|
244
|
-
ROUND_COMPLETED: 'ROUND_COMPLETED',
|
|
245
|
-
STAGE_CHANGED: 'STAGE_CHANGED',
|
|
246
|
-
AI_ANALYSIS_REFRESHED: 'AI_ANALYSIS_REFRESHED',
|
|
247
|
-
FEEDBACK_ADDED: 'FEEDBACK_ADDED',
|
|
248
|
-
NOTE_ADDED: 'NOTE_ADDED',
|
|
249
|
-
INTERVIEW_SCHEDULED: 'INTERVIEW_SCHEDULED',
|
|
250
|
-
INTERVIEW_COMPLETED: 'INTERVIEW_COMPLETED',
|
|
251
|
-
STATUS_UPDATED: 'STATUS_UPDATED',
|
|
252
|
-
OTHER: 'OTHER'
|
|
253
|
-
};
|
|
254
|
-
|
|
255
|
-
export type ActivityActionType = (typeof ActivityActionType)[keyof typeof ActivityActionType]
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
export const ActivitySource: {
|
|
259
|
-
SYSTEM_TRIGGER: 'SYSTEM_TRIGGER',
|
|
260
|
-
MANUAL_ACTION: 'MANUAL_ACTION',
|
|
261
|
-
API: 'API',
|
|
262
|
-
SCHEDULER: 'SCHEDULER',
|
|
263
|
-
WEBHOOK: 'WEBHOOK'
|
|
264
|
-
};
|
|
265
|
-
|
|
266
|
-
export type ActivitySource = (typeof ActivitySource)[keyof typeof ActivitySource]
|
|
267
|
-
|
|
268
|
-
|
|
269
243
|
export const ApplicationStatus: {
|
|
270
244
|
PENDING: 'PENDING',
|
|
271
245
|
IN_PROGRESS: 'IN_PROGRESS',
|
|
@@ -541,14 +515,6 @@ export type ActivityActorType = $Enums.ActivityActorType
|
|
|
541
515
|
|
|
542
516
|
export const ActivityActorType: typeof $Enums.ActivityActorType
|
|
543
517
|
|
|
544
|
-
export type ActivityActionType = $Enums.ActivityActionType
|
|
545
|
-
|
|
546
|
-
export const ActivityActionType: typeof $Enums.ActivityActionType
|
|
547
|
-
|
|
548
|
-
export type ActivitySource = $Enums.ActivitySource
|
|
549
|
-
|
|
550
|
-
export const ActivitySource: typeof $Enums.ActivitySource
|
|
551
|
-
|
|
552
518
|
export type ApplicationStatus = $Enums.ApplicationStatus
|
|
553
519
|
|
|
554
520
|
export const ApplicationStatus: typeof $Enums.ApplicationStatus
|
|
@@ -4697,11 +4663,13 @@ export namespace Prisma {
|
|
|
4697
4663
|
export type ApplicationCountOutputType = {
|
|
4698
4664
|
interviews: number
|
|
4699
4665
|
ongoing_evaluations: number
|
|
4666
|
+
activity_logs: number
|
|
4700
4667
|
}
|
|
4701
4668
|
|
|
4702
4669
|
export type ApplicationCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4703
4670
|
interviews?: boolean | ApplicationCountOutputTypeCountInterviewsArgs
|
|
4704
4671
|
ongoing_evaluations?: boolean | ApplicationCountOutputTypeCountOngoing_evaluationsArgs
|
|
4672
|
+
activity_logs?: boolean | ApplicationCountOutputTypeCountActivity_logsArgs
|
|
4705
4673
|
}
|
|
4706
4674
|
|
|
4707
4675
|
// Custom InputTypes
|
|
@@ -4729,6 +4697,13 @@ export namespace Prisma {
|
|
|
4729
4697
|
where?: OngoingEvaluationWhereInput
|
|
4730
4698
|
}
|
|
4731
4699
|
|
|
4700
|
+
/**
|
|
4701
|
+
* ApplicationCountOutputType without action
|
|
4702
|
+
*/
|
|
4703
|
+
export type ApplicationCountOutputTypeCountActivity_logsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4704
|
+
where?: ActivityLogWhereInput
|
|
4705
|
+
}
|
|
4706
|
+
|
|
4732
4707
|
|
|
4733
4708
|
/**
|
|
4734
4709
|
* Count Type AssessmentCountOutputType
|
|
@@ -5540,10 +5515,10 @@ export namespace Prisma {
|
|
|
5540
5515
|
candidateResponses: number
|
|
5541
5516
|
questions: number
|
|
5542
5517
|
ongoing_evaluations: number
|
|
5543
|
-
candidate_activity_logs: number
|
|
5544
5518
|
actor_activity_logs: number
|
|
5545
5519
|
actions: number
|
|
5546
5520
|
fitChecks: number
|
|
5521
|
+
activityLogs: number
|
|
5547
5522
|
}
|
|
5548
5523
|
|
|
5549
5524
|
export type UserCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -5562,10 +5537,10 @@ export namespace Prisma {
|
|
|
5562
5537
|
candidateResponses?: boolean | UserCountOutputTypeCountCandidateResponsesArgs
|
|
5563
5538
|
questions?: boolean | UserCountOutputTypeCountQuestionsArgs
|
|
5564
5539
|
ongoing_evaluations?: boolean | UserCountOutputTypeCountOngoing_evaluationsArgs
|
|
5565
|
-
candidate_activity_logs?: boolean | UserCountOutputTypeCountCandidate_activity_logsArgs
|
|
5566
5540
|
actor_activity_logs?: boolean | UserCountOutputTypeCountActor_activity_logsArgs
|
|
5567
5541
|
actions?: boolean | UserCountOutputTypeCountActionsArgs
|
|
5568
5542
|
fitChecks?: boolean | UserCountOutputTypeCountFitChecksArgs
|
|
5543
|
+
activityLogs?: boolean | UserCountOutputTypeCountActivityLogsArgs
|
|
5569
5544
|
}
|
|
5570
5545
|
|
|
5571
5546
|
// Custom InputTypes
|
|
@@ -5684,13 +5659,6 @@ export namespace Prisma {
|
|
|
5684
5659
|
where?: OngoingEvaluationWhereInput
|
|
5685
5660
|
}
|
|
5686
5661
|
|
|
5687
|
-
/**
|
|
5688
|
-
* UserCountOutputType without action
|
|
5689
|
-
*/
|
|
5690
|
-
export type UserCountOutputTypeCountCandidate_activity_logsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5691
|
-
where?: ActivityLogWhereInput
|
|
5692
|
-
}
|
|
5693
|
-
|
|
5694
5662
|
/**
|
|
5695
5663
|
* UserCountOutputType without action
|
|
5696
5664
|
*/
|
|
@@ -5712,6 +5680,13 @@ export namespace Prisma {
|
|
|
5712
5680
|
where?: FitCheckWhereInput
|
|
5713
5681
|
}
|
|
5714
5682
|
|
|
5683
|
+
/**
|
|
5684
|
+
* UserCountOutputType without action
|
|
5685
|
+
*/
|
|
5686
|
+
export type UserCountOutputTypeCountActivityLogsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5687
|
+
where?: ActivityLogWhereInput
|
|
5688
|
+
}
|
|
5689
|
+
|
|
5715
5690
|
|
|
5716
5691
|
/**
|
|
5717
5692
|
* Models
|
|
@@ -9284,72 +9259,78 @@ export namespace Prisma {
|
|
|
9284
9259
|
|
|
9285
9260
|
export type ActivityLogMinAggregateOutputType = {
|
|
9286
9261
|
id: string | null
|
|
9287
|
-
|
|
9262
|
+
application_id: string | null
|
|
9288
9263
|
actor_id: string | null
|
|
9289
9264
|
actor_type: $Enums.ActivityActorType | null
|
|
9290
|
-
action_type: $Enums.ActivityActionType | null
|
|
9291
9265
|
message: string | null
|
|
9292
9266
|
timestamp: Date | null
|
|
9293
9267
|
created_at: Date | null
|
|
9268
|
+
is_active: boolean | null
|
|
9269
|
+
userId: string | null
|
|
9294
9270
|
}
|
|
9295
9271
|
|
|
9296
9272
|
export type ActivityLogMaxAggregateOutputType = {
|
|
9297
9273
|
id: string | null
|
|
9298
|
-
|
|
9274
|
+
application_id: string | null
|
|
9299
9275
|
actor_id: string | null
|
|
9300
9276
|
actor_type: $Enums.ActivityActorType | null
|
|
9301
|
-
action_type: $Enums.ActivityActionType | null
|
|
9302
9277
|
message: string | null
|
|
9303
9278
|
timestamp: Date | null
|
|
9304
9279
|
created_at: Date | null
|
|
9280
|
+
is_active: boolean | null
|
|
9281
|
+
userId: string | null
|
|
9305
9282
|
}
|
|
9306
9283
|
|
|
9307
9284
|
export type ActivityLogCountAggregateOutputType = {
|
|
9308
9285
|
id: number
|
|
9309
|
-
|
|
9286
|
+
application_id: number
|
|
9310
9287
|
actor_id: number
|
|
9311
9288
|
actor_type: number
|
|
9312
|
-
action_type: number
|
|
9313
9289
|
message: number
|
|
9314
9290
|
timestamp: number
|
|
9315
9291
|
metadata: number
|
|
9316
9292
|
created_at: number
|
|
9293
|
+
is_active: number
|
|
9294
|
+
userId: number
|
|
9317
9295
|
_all: number
|
|
9318
9296
|
}
|
|
9319
9297
|
|
|
9320
9298
|
|
|
9321
9299
|
export type ActivityLogMinAggregateInputType = {
|
|
9322
9300
|
id?: true
|
|
9323
|
-
|
|
9301
|
+
application_id?: true
|
|
9324
9302
|
actor_id?: true
|
|
9325
9303
|
actor_type?: true
|
|
9326
|
-
action_type?: true
|
|
9327
9304
|
message?: true
|
|
9328
9305
|
timestamp?: true
|
|
9329
9306
|
created_at?: true
|
|
9307
|
+
is_active?: true
|
|
9308
|
+
userId?: true
|
|
9330
9309
|
}
|
|
9331
9310
|
|
|
9332
9311
|
export type ActivityLogMaxAggregateInputType = {
|
|
9333
9312
|
id?: true
|
|
9334
|
-
|
|
9313
|
+
application_id?: true
|
|
9335
9314
|
actor_id?: true
|
|
9336
9315
|
actor_type?: true
|
|
9337
|
-
action_type?: true
|
|
9338
9316
|
message?: true
|
|
9339
9317
|
timestamp?: true
|
|
9340
9318
|
created_at?: true
|
|
9319
|
+
is_active?: true
|
|
9320
|
+
userId?: true
|
|
9341
9321
|
}
|
|
9342
9322
|
|
|
9343
9323
|
export type ActivityLogCountAggregateInputType = {
|
|
9344
9324
|
id?: true
|
|
9345
|
-
|
|
9325
|
+
application_id?: true
|
|
9346
9326
|
actor_id?: true
|
|
9347
9327
|
actor_type?: true
|
|
9348
|
-
action_type?: true
|
|
9349
9328
|
message?: true
|
|
9350
9329
|
timestamp?: true
|
|
9351
9330
|
metadata?: true
|
|
9352
9331
|
created_at?: true
|
|
9332
|
+
is_active?: true
|
|
9333
|
+
userId?: true
|
|
9353
9334
|
_all?: true
|
|
9354
9335
|
}
|
|
9355
9336
|
|
|
@@ -9427,14 +9408,15 @@ export namespace Prisma {
|
|
|
9427
9408
|
|
|
9428
9409
|
export type ActivityLogGroupByOutputType = {
|
|
9429
9410
|
id: string
|
|
9430
|
-
|
|
9411
|
+
application_id: string
|
|
9431
9412
|
actor_id: string | null
|
|
9432
9413
|
actor_type: $Enums.ActivityActorType
|
|
9433
|
-
action_type: $Enums.ActivityActionType
|
|
9434
9414
|
message: string
|
|
9435
9415
|
timestamp: Date
|
|
9436
9416
|
metadata: JsonValue | null
|
|
9437
9417
|
created_at: Date
|
|
9418
|
+
is_active: boolean
|
|
9419
|
+
userId: string | null
|
|
9438
9420
|
_count: ActivityLogCountAggregateOutputType | null
|
|
9439
9421
|
_min: ActivityLogMinAggregateOutputType | null
|
|
9440
9422
|
_max: ActivityLogMaxAggregateOutputType | null
|
|
@@ -9456,88 +9438,100 @@ export namespace Prisma {
|
|
|
9456
9438
|
|
|
9457
9439
|
export type ActivityLogSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9458
9440
|
id?: boolean
|
|
9459
|
-
|
|
9441
|
+
application_id?: boolean
|
|
9460
9442
|
actor_id?: boolean
|
|
9461
9443
|
actor_type?: boolean
|
|
9462
|
-
action_type?: boolean
|
|
9463
9444
|
message?: boolean
|
|
9464
9445
|
timestamp?: boolean
|
|
9465
9446
|
metadata?: boolean
|
|
9466
9447
|
created_at?: boolean
|
|
9467
|
-
|
|
9448
|
+
is_active?: boolean
|
|
9449
|
+
userId?: boolean
|
|
9468
9450
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9451
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9452
|
+
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9469
9453
|
}, ExtArgs["result"]["activityLog"]>
|
|
9470
9454
|
|
|
9471
9455
|
export type ActivityLogSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9472
9456
|
id?: boolean
|
|
9473
|
-
|
|
9457
|
+
application_id?: boolean
|
|
9474
9458
|
actor_id?: boolean
|
|
9475
9459
|
actor_type?: boolean
|
|
9476
|
-
action_type?: boolean
|
|
9477
9460
|
message?: boolean
|
|
9478
9461
|
timestamp?: boolean
|
|
9479
9462
|
metadata?: boolean
|
|
9480
9463
|
created_at?: boolean
|
|
9481
|
-
|
|
9464
|
+
is_active?: boolean
|
|
9465
|
+
userId?: boolean
|
|
9482
9466
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9467
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9468
|
+
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9483
9469
|
}, ExtArgs["result"]["activityLog"]>
|
|
9484
9470
|
|
|
9485
9471
|
export type ActivityLogSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9486
9472
|
id?: boolean
|
|
9487
|
-
|
|
9473
|
+
application_id?: boolean
|
|
9488
9474
|
actor_id?: boolean
|
|
9489
9475
|
actor_type?: boolean
|
|
9490
|
-
action_type?: boolean
|
|
9491
9476
|
message?: boolean
|
|
9492
9477
|
timestamp?: boolean
|
|
9493
9478
|
metadata?: boolean
|
|
9494
9479
|
created_at?: boolean
|
|
9495
|
-
|
|
9480
|
+
is_active?: boolean
|
|
9481
|
+
userId?: boolean
|
|
9496
9482
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9483
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9484
|
+
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9497
9485
|
}, ExtArgs["result"]["activityLog"]>
|
|
9498
9486
|
|
|
9499
9487
|
export type ActivityLogSelectScalar = {
|
|
9500
9488
|
id?: boolean
|
|
9501
|
-
|
|
9489
|
+
application_id?: boolean
|
|
9502
9490
|
actor_id?: boolean
|
|
9503
9491
|
actor_type?: boolean
|
|
9504
|
-
action_type?: boolean
|
|
9505
9492
|
message?: boolean
|
|
9506
9493
|
timestamp?: boolean
|
|
9507
9494
|
metadata?: boolean
|
|
9508
9495
|
created_at?: boolean
|
|
9496
|
+
is_active?: boolean
|
|
9497
|
+
userId?: boolean
|
|
9509
9498
|
}
|
|
9510
9499
|
|
|
9511
|
-
export type ActivityLogOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "
|
|
9500
|
+
export type ActivityLogOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "application_id" | "actor_id" | "actor_type" | "message" | "timestamp" | "metadata" | "created_at" | "is_active" | "userId", ExtArgs["result"]["activityLog"]>
|
|
9512
9501
|
export type ActivityLogInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9513
|
-
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
9514
9502
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9503
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9504
|
+
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9515
9505
|
}
|
|
9516
9506
|
export type ActivityLogIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9517
|
-
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
9518
9507
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9508
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9509
|
+
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9519
9510
|
}
|
|
9520
9511
|
export type ActivityLogIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9521
|
-
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
9522
9512
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9513
|
+
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9514
|
+
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9523
9515
|
}
|
|
9524
9516
|
|
|
9525
9517
|
export type $ActivityLogPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9526
9518
|
name: "ActivityLog"
|
|
9527
9519
|
objects: {
|
|
9528
|
-
candidate: Prisma.$UserPayload<ExtArgs>
|
|
9529
9520
|
actor: Prisma.$UserPayload<ExtArgs> | null
|
|
9521
|
+
application: Prisma.$ApplicationPayload<ExtArgs>
|
|
9522
|
+
user: Prisma.$UserPayload<ExtArgs> | null
|
|
9530
9523
|
}
|
|
9531
9524
|
scalars: $Extensions.GetPayloadResult<{
|
|
9532
9525
|
id: string
|
|
9533
|
-
|
|
9526
|
+
application_id: string
|
|
9534
9527
|
actor_id: string | null
|
|
9535
9528
|
actor_type: $Enums.ActivityActorType
|
|
9536
|
-
action_type: $Enums.ActivityActionType
|
|
9537
9529
|
message: string
|
|
9538
9530
|
timestamp: Date
|
|
9539
9531
|
metadata: Prisma.JsonValue | null
|
|
9540
9532
|
created_at: Date
|
|
9533
|
+
is_active: boolean
|
|
9534
|
+
userId: string | null
|
|
9541
9535
|
}, ExtArgs["result"]["activityLog"]>
|
|
9542
9536
|
composites: {}
|
|
9543
9537
|
}
|
|
@@ -9932,8 +9926,9 @@ export namespace Prisma {
|
|
|
9932
9926
|
*/
|
|
9933
9927
|
export interface Prisma__ActivityLogClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
9934
9928
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
9935
|
-
candidate<T extends UserDefaultArgs<ExtArgs> = {}>(args?: Subset<T, UserDefaultArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
9936
9929
|
actor<T extends ActivityLog$actorArgs<ExtArgs> = {}>(args?: Subset<T, ActivityLog$actorArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
9930
|
+
application<T extends ApplicationDefaultArgs<ExtArgs> = {}>(args?: Subset<T, ApplicationDefaultArgs<ExtArgs>>): Prisma__ApplicationClient<$Result.GetResult<Prisma.$ApplicationPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
9931
|
+
user<T extends ActivityLog$userArgs<ExtArgs> = {}>(args?: Subset<T, ActivityLog$userArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
9937
9932
|
/**
|
|
9938
9933
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
9939
9934
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -9964,14 +9959,15 @@ export namespace Prisma {
|
|
|
9964
9959
|
*/
|
|
9965
9960
|
interface ActivityLogFieldRefs {
|
|
9966
9961
|
readonly id: FieldRef<"ActivityLog", 'String'>
|
|
9967
|
-
readonly
|
|
9962
|
+
readonly application_id: FieldRef<"ActivityLog", 'String'>
|
|
9968
9963
|
readonly actor_id: FieldRef<"ActivityLog", 'String'>
|
|
9969
9964
|
readonly actor_type: FieldRef<"ActivityLog", 'ActivityActorType'>
|
|
9970
|
-
readonly action_type: FieldRef<"ActivityLog", 'ActivityActionType'>
|
|
9971
9965
|
readonly message: FieldRef<"ActivityLog", 'String'>
|
|
9972
9966
|
readonly timestamp: FieldRef<"ActivityLog", 'DateTime'>
|
|
9973
9967
|
readonly metadata: FieldRef<"ActivityLog", 'Json'>
|
|
9974
9968
|
readonly created_at: FieldRef<"ActivityLog", 'DateTime'>
|
|
9969
|
+
readonly is_active: FieldRef<"ActivityLog", 'Boolean'>
|
|
9970
|
+
readonly userId: FieldRef<"ActivityLog", 'String'>
|
|
9975
9971
|
}
|
|
9976
9972
|
|
|
9977
9973
|
|
|
@@ -10386,6 +10382,25 @@ export namespace Prisma {
|
|
|
10386
10382
|
where?: UserWhereInput
|
|
10387
10383
|
}
|
|
10388
10384
|
|
|
10385
|
+
/**
|
|
10386
|
+
* ActivityLog.user
|
|
10387
|
+
*/
|
|
10388
|
+
export type ActivityLog$userArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
10389
|
+
/**
|
|
10390
|
+
* Select specific fields to fetch from the User
|
|
10391
|
+
*/
|
|
10392
|
+
select?: UserSelect<ExtArgs> | null
|
|
10393
|
+
/**
|
|
10394
|
+
* Omit specific fields from the User
|
|
10395
|
+
*/
|
|
10396
|
+
omit?: UserOmit<ExtArgs> | null
|
|
10397
|
+
/**
|
|
10398
|
+
* Choose, which related nodes to fetch as well
|
|
10399
|
+
*/
|
|
10400
|
+
include?: UserInclude<ExtArgs> | null
|
|
10401
|
+
where?: UserWhereInput
|
|
10402
|
+
}
|
|
10403
|
+
|
|
10389
10404
|
/**
|
|
10390
10405
|
* ActivityLog without action
|
|
10391
10406
|
*/
|
|
@@ -10711,6 +10726,7 @@ export namespace Prisma {
|
|
|
10711
10726
|
fit_check?: boolean | Application$fit_checkArgs<ExtArgs>
|
|
10712
10727
|
interviews?: boolean | Application$interviewsArgs<ExtArgs>
|
|
10713
10728
|
ongoing_evaluations?: boolean | Application$ongoing_evaluationsArgs<ExtArgs>
|
|
10729
|
+
activity_logs?: boolean | Application$activity_logsArgs<ExtArgs>
|
|
10714
10730
|
_count?: boolean | ApplicationCountOutputTypeDefaultArgs<ExtArgs>
|
|
10715
10731
|
}, ExtArgs["result"]["application"]>
|
|
10716
10732
|
|
|
@@ -10796,6 +10812,7 @@ export namespace Prisma {
|
|
|
10796
10812
|
fit_check?: boolean | Application$fit_checkArgs<ExtArgs>
|
|
10797
10813
|
interviews?: boolean | Application$interviewsArgs<ExtArgs>
|
|
10798
10814
|
ongoing_evaluations?: boolean | Application$ongoing_evaluationsArgs<ExtArgs>
|
|
10815
|
+
activity_logs?: boolean | Application$activity_logsArgs<ExtArgs>
|
|
10799
10816
|
_count?: boolean | ApplicationCountOutputTypeDefaultArgs<ExtArgs>
|
|
10800
10817
|
}
|
|
10801
10818
|
export type ApplicationIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -10826,6 +10843,7 @@ export namespace Prisma {
|
|
|
10826
10843
|
fit_check: Prisma.$FitCheckPayload<ExtArgs> | null
|
|
10827
10844
|
interviews: Prisma.$InterviewPayload<ExtArgs>[]
|
|
10828
10845
|
ongoing_evaluations: Prisma.$OngoingEvaluationPayload<ExtArgs>[]
|
|
10846
|
+
activity_logs: Prisma.$ActivityLogPayload<ExtArgs>[]
|
|
10829
10847
|
}
|
|
10830
10848
|
scalars: $Extensions.GetPayloadResult<{
|
|
10831
10849
|
id: string
|
|
@@ -11247,6 +11265,7 @@ export namespace Prisma {
|
|
|
11247
11265
|
fit_check<T extends Application$fit_checkArgs<ExtArgs> = {}>(args?: Subset<T, Application$fit_checkArgs<ExtArgs>>): Prisma__FitCheckClient<$Result.GetResult<Prisma.$FitCheckPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
11248
11266
|
interviews<T extends Application$interviewsArgs<ExtArgs> = {}>(args?: Subset<T, Application$interviewsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$InterviewPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
11249
11267
|
ongoing_evaluations<T extends Application$ongoing_evaluationsArgs<ExtArgs> = {}>(args?: Subset<T, Application$ongoing_evaluationsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$OngoingEvaluationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
11268
|
+
activity_logs<T extends Application$activity_logsArgs<ExtArgs> = {}>(args?: Subset<T, Application$activity_logsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ActivityLogPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
11250
11269
|
/**
|
|
11251
11270
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
11252
11271
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -11774,6 +11793,30 @@ export namespace Prisma {
|
|
|
11774
11793
|
distinct?: OngoingEvaluationScalarFieldEnum | OngoingEvaluationScalarFieldEnum[]
|
|
11775
11794
|
}
|
|
11776
11795
|
|
|
11796
|
+
/**
|
|
11797
|
+
* Application.activity_logs
|
|
11798
|
+
*/
|
|
11799
|
+
export type Application$activity_logsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11800
|
+
/**
|
|
11801
|
+
* Select specific fields to fetch from the ActivityLog
|
|
11802
|
+
*/
|
|
11803
|
+
select?: ActivityLogSelect<ExtArgs> | null
|
|
11804
|
+
/**
|
|
11805
|
+
* Omit specific fields from the ActivityLog
|
|
11806
|
+
*/
|
|
11807
|
+
omit?: ActivityLogOmit<ExtArgs> | null
|
|
11808
|
+
/**
|
|
11809
|
+
* Choose, which related nodes to fetch as well
|
|
11810
|
+
*/
|
|
11811
|
+
include?: ActivityLogInclude<ExtArgs> | null
|
|
11812
|
+
where?: ActivityLogWhereInput
|
|
11813
|
+
orderBy?: ActivityLogOrderByWithRelationInput | ActivityLogOrderByWithRelationInput[]
|
|
11814
|
+
cursor?: ActivityLogWhereUniqueInput
|
|
11815
|
+
take?: number
|
|
11816
|
+
skip?: number
|
|
11817
|
+
distinct?: ActivityLogScalarFieldEnum | ActivityLogScalarFieldEnum[]
|
|
11818
|
+
}
|
|
11819
|
+
|
|
11777
11820
|
/**
|
|
11778
11821
|
* Application without action
|
|
11779
11822
|
*/
|
|
@@ -46247,6 +46290,7 @@ export namespace Prisma {
|
|
|
46247
46290
|
created_by: string | null
|
|
46248
46291
|
updated_by: string | null
|
|
46249
46292
|
is_active: boolean | null
|
|
46293
|
+
name: string | null
|
|
46250
46294
|
yearsOfExperience: number | null
|
|
46251
46295
|
}
|
|
46252
46296
|
|
|
@@ -46261,6 +46305,7 @@ export namespace Prisma {
|
|
|
46261
46305
|
created_by: string | null
|
|
46262
46306
|
updated_by: string | null
|
|
46263
46307
|
is_active: boolean | null
|
|
46308
|
+
name: string | null
|
|
46264
46309
|
yearsOfExperience: number | null
|
|
46265
46310
|
}
|
|
46266
46311
|
|
|
@@ -46275,6 +46320,7 @@ export namespace Prisma {
|
|
|
46275
46320
|
created_by: number
|
|
46276
46321
|
updated_by: number
|
|
46277
46322
|
is_active: number
|
|
46323
|
+
name: number
|
|
46278
46324
|
yearsOfExperience: number
|
|
46279
46325
|
_all: number
|
|
46280
46326
|
}
|
|
@@ -46299,6 +46345,7 @@ export namespace Prisma {
|
|
|
46299
46345
|
created_by?: true
|
|
46300
46346
|
updated_by?: true
|
|
46301
46347
|
is_active?: true
|
|
46348
|
+
name?: true
|
|
46302
46349
|
yearsOfExperience?: true
|
|
46303
46350
|
}
|
|
46304
46351
|
|
|
@@ -46313,6 +46360,7 @@ export namespace Prisma {
|
|
|
46313
46360
|
created_by?: true
|
|
46314
46361
|
updated_by?: true
|
|
46315
46362
|
is_active?: true
|
|
46363
|
+
name?: true
|
|
46316
46364
|
yearsOfExperience?: true
|
|
46317
46365
|
}
|
|
46318
46366
|
|
|
@@ -46327,6 +46375,7 @@ export namespace Prisma {
|
|
|
46327
46375
|
created_by?: true
|
|
46328
46376
|
updated_by?: true
|
|
46329
46377
|
is_active?: true
|
|
46378
|
+
name?: true
|
|
46330
46379
|
yearsOfExperience?: true
|
|
46331
46380
|
_all?: true
|
|
46332
46381
|
}
|
|
@@ -46428,6 +46477,7 @@ export namespace Prisma {
|
|
|
46428
46477
|
created_by: string
|
|
46429
46478
|
updated_by: string
|
|
46430
46479
|
is_active: boolean
|
|
46480
|
+
name: string | null
|
|
46431
46481
|
yearsOfExperience: number | null
|
|
46432
46482
|
_count: ResumeCountAggregateOutputType | null
|
|
46433
46483
|
_avg: ResumeAvgAggregateOutputType | null
|
|
@@ -46461,6 +46511,7 @@ export namespace Prisma {
|
|
|
46461
46511
|
created_by?: boolean
|
|
46462
46512
|
updated_by?: boolean
|
|
46463
46513
|
is_active?: boolean
|
|
46514
|
+
name?: boolean
|
|
46464
46515
|
yearsOfExperience?: boolean
|
|
46465
46516
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
46466
46517
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
@@ -46485,6 +46536,7 @@ export namespace Prisma {
|
|
|
46485
46536
|
created_by?: boolean
|
|
46486
46537
|
updated_by?: boolean
|
|
46487
46538
|
is_active?: boolean
|
|
46539
|
+
name?: boolean
|
|
46488
46540
|
yearsOfExperience?: boolean
|
|
46489
46541
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
46490
46542
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
@@ -46502,6 +46554,7 @@ export namespace Prisma {
|
|
|
46502
46554
|
created_by?: boolean
|
|
46503
46555
|
updated_by?: boolean
|
|
46504
46556
|
is_active?: boolean
|
|
46557
|
+
name?: boolean
|
|
46505
46558
|
yearsOfExperience?: boolean
|
|
46506
46559
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
46507
46560
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
@@ -46519,10 +46572,11 @@ export namespace Prisma {
|
|
|
46519
46572
|
created_by?: boolean
|
|
46520
46573
|
updated_by?: boolean
|
|
46521
46574
|
is_active?: boolean
|
|
46575
|
+
name?: boolean
|
|
46522
46576
|
yearsOfExperience?: boolean
|
|
46523
46577
|
}
|
|
46524
46578
|
|
|
46525
|
-
export type ResumeOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "organisation_id" | "job_description_id" | "uploaded_resume_path" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "yearsOfExperience", ExtArgs["result"]["resume"]>
|
|
46579
|
+
export type ResumeOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "organisation_id" | "job_description_id" | "uploaded_resume_path" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "name" | "yearsOfExperience", ExtArgs["result"]["resume"]>
|
|
46526
46580
|
export type ResumeInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46527
46581
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
46528
46582
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
@@ -46570,6 +46624,7 @@ export namespace Prisma {
|
|
|
46570
46624
|
created_by: string
|
|
46571
46625
|
updated_by: string
|
|
46572
46626
|
is_active: boolean
|
|
46627
|
+
name: string | null
|
|
46573
46628
|
yearsOfExperience: number | null
|
|
46574
46629
|
}, ExtArgs["result"]["resume"]>
|
|
46575
46630
|
composites: {}
|
|
@@ -47013,6 +47068,7 @@ export namespace Prisma {
|
|
|
47013
47068
|
readonly created_by: FieldRef<"Resume", 'String'>
|
|
47014
47069
|
readonly updated_by: FieldRef<"Resume", 'String'>
|
|
47015
47070
|
readonly is_active: FieldRef<"Resume", 'Boolean'>
|
|
47071
|
+
readonly name: FieldRef<"Resume", 'String'>
|
|
47016
47072
|
readonly yearsOfExperience: FieldRef<"Resume", 'Int'>
|
|
47017
47073
|
}
|
|
47018
47074
|
|
|
@@ -51638,12 +51694,12 @@ export namespace Prisma {
|
|
|
51638
51694
|
candidateResponses?: boolean | User$candidateResponsesArgs<ExtArgs>
|
|
51639
51695
|
questions?: boolean | User$questionsArgs<ExtArgs>
|
|
51640
51696
|
ongoing_evaluations?: boolean | User$ongoing_evaluationsArgs<ExtArgs>
|
|
51641
|
-
candidate_activity_logs?: boolean | User$candidate_activity_logsArgs<ExtArgs>
|
|
51642
51697
|
actor_activity_logs?: boolean | User$actor_activity_logsArgs<ExtArgs>
|
|
51643
51698
|
actions?: boolean | User$actionsArgs<ExtArgs>
|
|
51644
51699
|
calendly?: boolean | User$calendlyArgs<ExtArgs>
|
|
51645
51700
|
google?: boolean | User$googleArgs<ExtArgs>
|
|
51646
51701
|
fitChecks?: boolean | User$fitChecksArgs<ExtArgs>
|
|
51702
|
+
activityLogs?: boolean | User$activityLogsArgs<ExtArgs>
|
|
51647
51703
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
51648
51704
|
}, ExtArgs["result"]["user"]>
|
|
51649
51705
|
|
|
@@ -51781,12 +51837,12 @@ export namespace Prisma {
|
|
|
51781
51837
|
candidateResponses?: boolean | User$candidateResponsesArgs<ExtArgs>
|
|
51782
51838
|
questions?: boolean | User$questionsArgs<ExtArgs>
|
|
51783
51839
|
ongoing_evaluations?: boolean | User$ongoing_evaluationsArgs<ExtArgs>
|
|
51784
|
-
candidate_activity_logs?: boolean | User$candidate_activity_logsArgs<ExtArgs>
|
|
51785
51840
|
actor_activity_logs?: boolean | User$actor_activity_logsArgs<ExtArgs>
|
|
51786
51841
|
actions?: boolean | User$actionsArgs<ExtArgs>
|
|
51787
51842
|
calendly?: boolean | User$calendlyArgs<ExtArgs>
|
|
51788
51843
|
google?: boolean | User$googleArgs<ExtArgs>
|
|
51789
51844
|
fitChecks?: boolean | User$fitChecksArgs<ExtArgs>
|
|
51845
|
+
activityLogs?: boolean | User$activityLogsArgs<ExtArgs>
|
|
51790
51846
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
51791
51847
|
}
|
|
51792
51848
|
export type UserIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -51824,12 +51880,12 @@ export namespace Prisma {
|
|
|
51824
51880
|
candidateResponses: Prisma.$CandidateQuestionResponsePayload<ExtArgs>[]
|
|
51825
51881
|
questions: Prisma.$QuestionPayload<ExtArgs>[]
|
|
51826
51882
|
ongoing_evaluations: Prisma.$OngoingEvaluationPayload<ExtArgs>[]
|
|
51827
|
-
candidate_activity_logs: Prisma.$ActivityLogPayload<ExtArgs>[]
|
|
51828
51883
|
actor_activity_logs: Prisma.$ActivityLogPayload<ExtArgs>[]
|
|
51829
51884
|
actions: Prisma.$ActionPayload<ExtArgs>[]
|
|
51830
51885
|
calendly: Prisma.$CalendlyPayload<ExtArgs> | null
|
|
51831
51886
|
google: Prisma.$GooglePayload<ExtArgs> | null
|
|
51832
51887
|
fitChecks: Prisma.$FitCheckPayload<ExtArgs>[]
|
|
51888
|
+
activityLogs: Prisma.$ActivityLogPayload<ExtArgs>[]
|
|
51833
51889
|
}
|
|
51834
51890
|
scalars: $Extensions.GetPayloadResult<{
|
|
51835
51891
|
id: string
|
|
@@ -52279,12 +52335,12 @@ export namespace Prisma {
|
|
|
52279
52335
|
candidateResponses<T extends User$candidateResponsesArgs<ExtArgs> = {}>(args?: Subset<T, User$candidateResponsesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CandidateQuestionResponsePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52280
52336
|
questions<T extends User$questionsArgs<ExtArgs> = {}>(args?: Subset<T, User$questionsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$QuestionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52281
52337
|
ongoing_evaluations<T extends User$ongoing_evaluationsArgs<ExtArgs> = {}>(args?: Subset<T, User$ongoing_evaluationsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$OngoingEvaluationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52282
|
-
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>
|
|
52283
52338
|
actor_activity_logs<T extends User$actor_activity_logsArgs<ExtArgs> = {}>(args?: Subset<T, User$actor_activity_logsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ActivityLogPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52284
52339
|
actions<T extends User$actionsArgs<ExtArgs> = {}>(args?: Subset<T, User$actionsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ActionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52285
52340
|
calendly<T extends User$calendlyArgs<ExtArgs> = {}>(args?: Subset<T, User$calendlyArgs<ExtArgs>>): Prisma__CalendlyClient<$Result.GetResult<Prisma.$CalendlyPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
52286
52341
|
google<T extends User$googleArgs<ExtArgs> = {}>(args?: Subset<T, User$googleArgs<ExtArgs>>): Prisma__GoogleClient<$Result.GetResult<Prisma.$GooglePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
52287
52342
|
fitChecks<T extends User$fitChecksArgs<ExtArgs> = {}>(args?: Subset<T, User$fitChecksArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$FitCheckPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52343
|
+
activityLogs<T extends User$activityLogsArgs<ExtArgs> = {}>(args?: Subset<T, User$activityLogsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ActivityLogPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
52288
52344
|
/**
|
|
52289
52345
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
52290
52346
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -53196,30 +53252,6 @@ export namespace Prisma {
|
|
|
53196
53252
|
distinct?: OngoingEvaluationScalarFieldEnum | OngoingEvaluationScalarFieldEnum[]
|
|
53197
53253
|
}
|
|
53198
53254
|
|
|
53199
|
-
/**
|
|
53200
|
-
* User.candidate_activity_logs
|
|
53201
|
-
*/
|
|
53202
|
-
export type User$candidate_activity_logsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
53203
|
-
/**
|
|
53204
|
-
* Select specific fields to fetch from the ActivityLog
|
|
53205
|
-
*/
|
|
53206
|
-
select?: ActivityLogSelect<ExtArgs> | null
|
|
53207
|
-
/**
|
|
53208
|
-
* Omit specific fields from the ActivityLog
|
|
53209
|
-
*/
|
|
53210
|
-
omit?: ActivityLogOmit<ExtArgs> | null
|
|
53211
|
-
/**
|
|
53212
|
-
* Choose, which related nodes to fetch as well
|
|
53213
|
-
*/
|
|
53214
|
-
include?: ActivityLogInclude<ExtArgs> | null
|
|
53215
|
-
where?: ActivityLogWhereInput
|
|
53216
|
-
orderBy?: ActivityLogOrderByWithRelationInput | ActivityLogOrderByWithRelationInput[]
|
|
53217
|
-
cursor?: ActivityLogWhereUniqueInput
|
|
53218
|
-
take?: number
|
|
53219
|
-
skip?: number
|
|
53220
|
-
distinct?: ActivityLogScalarFieldEnum | ActivityLogScalarFieldEnum[]
|
|
53221
|
-
}
|
|
53222
|
-
|
|
53223
53255
|
/**
|
|
53224
53256
|
* User.actor_activity_logs
|
|
53225
53257
|
*/
|
|
@@ -53330,6 +53362,30 @@ export namespace Prisma {
|
|
|
53330
53362
|
distinct?: FitCheckScalarFieldEnum | FitCheckScalarFieldEnum[]
|
|
53331
53363
|
}
|
|
53332
53364
|
|
|
53365
|
+
/**
|
|
53366
|
+
* User.activityLogs
|
|
53367
|
+
*/
|
|
53368
|
+
export type User$activityLogsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
53369
|
+
/**
|
|
53370
|
+
* Select specific fields to fetch from the ActivityLog
|
|
53371
|
+
*/
|
|
53372
|
+
select?: ActivityLogSelect<ExtArgs> | null
|
|
53373
|
+
/**
|
|
53374
|
+
* Omit specific fields from the ActivityLog
|
|
53375
|
+
*/
|
|
53376
|
+
omit?: ActivityLogOmit<ExtArgs> | null
|
|
53377
|
+
/**
|
|
53378
|
+
* Choose, which related nodes to fetch as well
|
|
53379
|
+
*/
|
|
53380
|
+
include?: ActivityLogInclude<ExtArgs> | null
|
|
53381
|
+
where?: ActivityLogWhereInput
|
|
53382
|
+
orderBy?: ActivityLogOrderByWithRelationInput | ActivityLogOrderByWithRelationInput[]
|
|
53383
|
+
cursor?: ActivityLogWhereUniqueInput
|
|
53384
|
+
take?: number
|
|
53385
|
+
skip?: number
|
|
53386
|
+
distinct?: ActivityLogScalarFieldEnum | ActivityLogScalarFieldEnum[]
|
|
53387
|
+
}
|
|
53388
|
+
|
|
53333
53389
|
/**
|
|
53334
53390
|
* User without action
|
|
53335
53391
|
*/
|
|
@@ -54568,14 +54624,15 @@ export namespace Prisma {
|
|
|
54568
54624
|
|
|
54569
54625
|
export const ActivityLogScalarFieldEnum: {
|
|
54570
54626
|
id: 'id',
|
|
54571
|
-
|
|
54627
|
+
application_id: 'application_id',
|
|
54572
54628
|
actor_id: 'actor_id',
|
|
54573
54629
|
actor_type: 'actor_type',
|
|
54574
|
-
action_type: 'action_type',
|
|
54575
54630
|
message: 'message',
|
|
54576
54631
|
timestamp: 'timestamp',
|
|
54577
54632
|
metadata: 'metadata',
|
|
54578
|
-
created_at: 'created_at'
|
|
54633
|
+
created_at: 'created_at',
|
|
54634
|
+
is_active: 'is_active',
|
|
54635
|
+
userId: 'userId'
|
|
54579
54636
|
};
|
|
54580
54637
|
|
|
54581
54638
|
export type ActivityLogScalarFieldEnum = (typeof ActivityLogScalarFieldEnum)[keyof typeof ActivityLogScalarFieldEnum]
|
|
@@ -55168,6 +55225,7 @@ export namespace Prisma {
|
|
|
55168
55225
|
created_by: 'created_by',
|
|
55169
55226
|
updated_by: 'updated_by',
|
|
55170
55227
|
is_active: 'is_active',
|
|
55228
|
+
name: 'name',
|
|
55171
55229
|
yearsOfExperience: 'yearsOfExperience'
|
|
55172
55230
|
};
|
|
55173
55231
|
|
|
@@ -55426,20 +55484,6 @@ export namespace Prisma {
|
|
|
55426
55484
|
|
|
55427
55485
|
|
|
55428
55486
|
|
|
55429
|
-
/**
|
|
55430
|
-
* Reference to a field of type 'ActivityActionType'
|
|
55431
|
-
*/
|
|
55432
|
-
export type EnumActivityActionTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ActivityActionType'>
|
|
55433
|
-
|
|
55434
|
-
|
|
55435
|
-
|
|
55436
|
-
/**
|
|
55437
|
-
* Reference to a field of type 'ActivityActionType[]'
|
|
55438
|
-
*/
|
|
55439
|
-
export type ListEnumActivityActionTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ActivityActionType[]'>
|
|
55440
|
-
|
|
55441
|
-
|
|
55442
|
-
|
|
55443
55487
|
/**
|
|
55444
55488
|
* Reference to a field of type 'Json'
|
|
55445
55489
|
*/
|
|
@@ -56097,30 +56141,34 @@ export namespace Prisma {
|
|
|
56097
56141
|
OR?: ActivityLogWhereInput[]
|
|
56098
56142
|
NOT?: ActivityLogWhereInput | ActivityLogWhereInput[]
|
|
56099
56143
|
id?: StringFilter<"ActivityLog"> | string
|
|
56100
|
-
|
|
56144
|
+
application_id?: StringFilter<"ActivityLog"> | string
|
|
56101
56145
|
actor_id?: StringNullableFilter<"ActivityLog"> | string | null
|
|
56102
56146
|
actor_type?: EnumActivityActorTypeFilter<"ActivityLog"> | $Enums.ActivityActorType
|
|
56103
|
-
action_type?: EnumActivityActionTypeFilter<"ActivityLog"> | $Enums.ActivityActionType
|
|
56104
56147
|
message?: StringFilter<"ActivityLog"> | string
|
|
56105
56148
|
timestamp?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
56106
56149
|
metadata?: JsonNullableFilter<"ActivityLog">
|
|
56107
56150
|
created_at?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
56108
|
-
|
|
56151
|
+
is_active?: BoolFilter<"ActivityLog"> | boolean
|
|
56152
|
+
userId?: StringNullableFilter<"ActivityLog"> | string | null
|
|
56109
56153
|
actor?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
56154
|
+
application?: XOR<ApplicationScalarRelationFilter, ApplicationWhereInput>
|
|
56155
|
+
user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
56110
56156
|
}
|
|
56111
56157
|
|
|
56112
56158
|
export type ActivityLogOrderByWithRelationInput = {
|
|
56113
56159
|
id?: SortOrder
|
|
56114
|
-
|
|
56160
|
+
application_id?: SortOrder
|
|
56115
56161
|
actor_id?: SortOrderInput | SortOrder
|
|
56116
56162
|
actor_type?: SortOrder
|
|
56117
|
-
action_type?: SortOrder
|
|
56118
56163
|
message?: SortOrder
|
|
56119
56164
|
timestamp?: SortOrder
|
|
56120
56165
|
metadata?: SortOrderInput | SortOrder
|
|
56121
56166
|
created_at?: SortOrder
|
|
56122
|
-
|
|
56167
|
+
is_active?: SortOrder
|
|
56168
|
+
userId?: SortOrderInput | SortOrder
|
|
56123
56169
|
actor?: UserOrderByWithRelationInput
|
|
56170
|
+
application?: ApplicationOrderByWithRelationInput
|
|
56171
|
+
user?: UserOrderByWithRelationInput
|
|
56124
56172
|
}
|
|
56125
56173
|
|
|
56126
56174
|
export type ActivityLogWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -56128,28 +56176,31 @@ export namespace Prisma {
|
|
|
56128
56176
|
AND?: ActivityLogWhereInput | ActivityLogWhereInput[]
|
|
56129
56177
|
OR?: ActivityLogWhereInput[]
|
|
56130
56178
|
NOT?: ActivityLogWhereInput | ActivityLogWhereInput[]
|
|
56131
|
-
|
|
56179
|
+
application_id?: StringFilter<"ActivityLog"> | string
|
|
56132
56180
|
actor_id?: StringNullableFilter<"ActivityLog"> | string | null
|
|
56133
56181
|
actor_type?: EnumActivityActorTypeFilter<"ActivityLog"> | $Enums.ActivityActorType
|
|
56134
|
-
action_type?: EnumActivityActionTypeFilter<"ActivityLog"> | $Enums.ActivityActionType
|
|
56135
56182
|
message?: StringFilter<"ActivityLog"> | string
|
|
56136
56183
|
timestamp?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
56137
56184
|
metadata?: JsonNullableFilter<"ActivityLog">
|
|
56138
56185
|
created_at?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
56139
|
-
|
|
56186
|
+
is_active?: BoolFilter<"ActivityLog"> | boolean
|
|
56187
|
+
userId?: StringNullableFilter<"ActivityLog"> | string | null
|
|
56140
56188
|
actor?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
56189
|
+
application?: XOR<ApplicationScalarRelationFilter, ApplicationWhereInput>
|
|
56190
|
+
user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
56141
56191
|
}, "id">
|
|
56142
56192
|
|
|
56143
56193
|
export type ActivityLogOrderByWithAggregationInput = {
|
|
56144
56194
|
id?: SortOrder
|
|
56145
|
-
|
|
56195
|
+
application_id?: SortOrder
|
|
56146
56196
|
actor_id?: SortOrderInput | SortOrder
|
|
56147
56197
|
actor_type?: SortOrder
|
|
56148
|
-
action_type?: SortOrder
|
|
56149
56198
|
message?: SortOrder
|
|
56150
56199
|
timestamp?: SortOrder
|
|
56151
56200
|
metadata?: SortOrderInput | SortOrder
|
|
56152
56201
|
created_at?: SortOrder
|
|
56202
|
+
is_active?: SortOrder
|
|
56203
|
+
userId?: SortOrderInput | SortOrder
|
|
56153
56204
|
_count?: ActivityLogCountOrderByAggregateInput
|
|
56154
56205
|
_max?: ActivityLogMaxOrderByAggregateInput
|
|
56155
56206
|
_min?: ActivityLogMinOrderByAggregateInput
|
|
@@ -56160,14 +56211,15 @@ export namespace Prisma {
|
|
|
56160
56211
|
OR?: ActivityLogScalarWhereWithAggregatesInput[]
|
|
56161
56212
|
NOT?: ActivityLogScalarWhereWithAggregatesInput | ActivityLogScalarWhereWithAggregatesInput[]
|
|
56162
56213
|
id?: StringWithAggregatesFilter<"ActivityLog"> | string
|
|
56163
|
-
|
|
56214
|
+
application_id?: StringWithAggregatesFilter<"ActivityLog"> | string
|
|
56164
56215
|
actor_id?: StringNullableWithAggregatesFilter<"ActivityLog"> | string | null
|
|
56165
56216
|
actor_type?: EnumActivityActorTypeWithAggregatesFilter<"ActivityLog"> | $Enums.ActivityActorType
|
|
56166
|
-
action_type?: EnumActivityActionTypeWithAggregatesFilter<"ActivityLog"> | $Enums.ActivityActionType
|
|
56167
56217
|
message?: StringWithAggregatesFilter<"ActivityLog"> | string
|
|
56168
56218
|
timestamp?: DateTimeWithAggregatesFilter<"ActivityLog"> | Date | string
|
|
56169
56219
|
metadata?: JsonNullableWithAggregatesFilter<"ActivityLog">
|
|
56170
56220
|
created_at?: DateTimeWithAggregatesFilter<"ActivityLog"> | Date | string
|
|
56221
|
+
is_active?: BoolWithAggregatesFilter<"ActivityLog"> | boolean
|
|
56222
|
+
userId?: StringNullableWithAggregatesFilter<"ActivityLog"> | string | null
|
|
56171
56223
|
}
|
|
56172
56224
|
|
|
56173
56225
|
export type ApplicationWhereInput = {
|
|
@@ -56199,6 +56251,7 @@ export namespace Prisma {
|
|
|
56199
56251
|
fit_check?: XOR<FitCheckNullableScalarRelationFilter, FitCheckWhereInput> | null
|
|
56200
56252
|
interviews?: InterviewListRelationFilter
|
|
56201
56253
|
ongoing_evaluations?: OngoingEvaluationListRelationFilter
|
|
56254
|
+
activity_logs?: ActivityLogListRelationFilter
|
|
56202
56255
|
}
|
|
56203
56256
|
|
|
56204
56257
|
export type ApplicationOrderByWithRelationInput = {
|
|
@@ -56227,6 +56280,7 @@ export namespace Prisma {
|
|
|
56227
56280
|
fit_check?: FitCheckOrderByWithRelationInput
|
|
56228
56281
|
interviews?: InterviewOrderByRelationAggregateInput
|
|
56229
56282
|
ongoing_evaluations?: OngoingEvaluationOrderByRelationAggregateInput
|
|
56283
|
+
activity_logs?: ActivityLogOrderByRelationAggregateInput
|
|
56230
56284
|
}
|
|
56231
56285
|
|
|
56232
56286
|
export type ApplicationWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -56259,6 +56313,7 @@ export namespace Prisma {
|
|
|
56259
56313
|
fit_check?: XOR<FitCheckNullableScalarRelationFilter, FitCheckWhereInput> | null
|
|
56260
56314
|
interviews?: InterviewListRelationFilter
|
|
56261
56315
|
ongoing_evaluations?: OngoingEvaluationListRelationFilter
|
|
56316
|
+
activity_logs?: ActivityLogListRelationFilter
|
|
56262
56317
|
}, "id" | "fit_check_id" | "candidate_id_job_description_id">
|
|
56263
56318
|
|
|
56264
56319
|
export type ApplicationOrderByWithAggregationInput = {
|
|
@@ -59379,6 +59434,7 @@ export namespace Prisma {
|
|
|
59379
59434
|
created_by?: StringFilter<"Resume"> | string
|
|
59380
59435
|
updated_by?: StringFilter<"Resume"> | string
|
|
59381
59436
|
is_active?: BoolFilter<"Resume"> | boolean
|
|
59437
|
+
name?: StringNullableFilter<"Resume"> | string | null
|
|
59382
59438
|
yearsOfExperience?: IntNullableFilter<"Resume"> | number | null
|
|
59383
59439
|
user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
59384
59440
|
organisation?: XOR<OrganisationNullableScalarRelationFilter, OrganisationWhereInput> | null
|
|
@@ -59402,6 +59458,7 @@ export namespace Prisma {
|
|
|
59402
59458
|
created_by?: SortOrder
|
|
59403
59459
|
updated_by?: SortOrder
|
|
59404
59460
|
is_active?: SortOrder
|
|
59461
|
+
name?: SortOrderInput | SortOrder
|
|
59405
59462
|
yearsOfExperience?: SortOrderInput | SortOrder
|
|
59406
59463
|
user?: UserOrderByWithRelationInput
|
|
59407
59464
|
organisation?: OrganisationOrderByWithRelationInput
|
|
@@ -59428,6 +59485,7 @@ export namespace Prisma {
|
|
|
59428
59485
|
created_by?: StringFilter<"Resume"> | string
|
|
59429
59486
|
updated_by?: StringFilter<"Resume"> | string
|
|
59430
59487
|
is_active?: BoolFilter<"Resume"> | boolean
|
|
59488
|
+
name?: StringNullableFilter<"Resume"> | string | null
|
|
59431
59489
|
yearsOfExperience?: IntNullableFilter<"Resume"> | number | null
|
|
59432
59490
|
user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
59433
59491
|
organisation?: XOR<OrganisationNullableScalarRelationFilter, OrganisationWhereInput> | null
|
|
@@ -59451,6 +59509,7 @@ export namespace Prisma {
|
|
|
59451
59509
|
created_by?: SortOrder
|
|
59452
59510
|
updated_by?: SortOrder
|
|
59453
59511
|
is_active?: SortOrder
|
|
59512
|
+
name?: SortOrderInput | SortOrder
|
|
59454
59513
|
yearsOfExperience?: SortOrderInput | SortOrder
|
|
59455
59514
|
_count?: ResumeCountOrderByAggregateInput
|
|
59456
59515
|
_avg?: ResumeAvgOrderByAggregateInput
|
|
@@ -59473,6 +59532,7 @@ export namespace Prisma {
|
|
|
59473
59532
|
created_by?: StringWithAggregatesFilter<"Resume"> | string
|
|
59474
59533
|
updated_by?: StringWithAggregatesFilter<"Resume"> | string
|
|
59475
59534
|
is_active?: BoolWithAggregatesFilter<"Resume"> | boolean
|
|
59535
|
+
name?: StringNullableWithAggregatesFilter<"Resume"> | string | null
|
|
59476
59536
|
yearsOfExperience?: IntNullableWithAggregatesFilter<"Resume"> | number | null
|
|
59477
59537
|
}
|
|
59478
59538
|
|
|
@@ -59816,12 +59876,12 @@ export namespace Prisma {
|
|
|
59816
59876
|
candidateResponses?: CandidateQuestionResponseListRelationFilter
|
|
59817
59877
|
questions?: QuestionListRelationFilter
|
|
59818
59878
|
ongoing_evaluations?: OngoingEvaluationListRelationFilter
|
|
59819
|
-
candidate_activity_logs?: ActivityLogListRelationFilter
|
|
59820
59879
|
actor_activity_logs?: ActivityLogListRelationFilter
|
|
59821
59880
|
actions?: ActionListRelationFilter
|
|
59822
59881
|
calendly?: XOR<CalendlyNullableScalarRelationFilter, CalendlyWhereInput> | null
|
|
59823
59882
|
google?: XOR<GoogleNullableScalarRelationFilter, GoogleWhereInput> | null
|
|
59824
59883
|
fitChecks?: FitCheckListRelationFilter
|
|
59884
|
+
activityLogs?: ActivityLogListRelationFilter
|
|
59825
59885
|
}
|
|
59826
59886
|
|
|
59827
59887
|
export type UserOrderByWithRelationInput = {
|
|
@@ -59878,12 +59938,12 @@ export namespace Prisma {
|
|
|
59878
59938
|
candidateResponses?: CandidateQuestionResponseOrderByRelationAggregateInput
|
|
59879
59939
|
questions?: QuestionOrderByRelationAggregateInput
|
|
59880
59940
|
ongoing_evaluations?: OngoingEvaluationOrderByRelationAggregateInput
|
|
59881
|
-
candidate_activity_logs?: ActivityLogOrderByRelationAggregateInput
|
|
59882
59941
|
actor_activity_logs?: ActivityLogOrderByRelationAggregateInput
|
|
59883
59942
|
actions?: ActionOrderByRelationAggregateInput
|
|
59884
59943
|
calendly?: CalendlyOrderByWithRelationInput
|
|
59885
59944
|
google?: GoogleOrderByWithRelationInput
|
|
59886
59945
|
fitChecks?: FitCheckOrderByRelationAggregateInput
|
|
59946
|
+
activityLogs?: ActivityLogOrderByRelationAggregateInput
|
|
59887
59947
|
}
|
|
59888
59948
|
|
|
59889
59949
|
export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -59943,12 +60003,12 @@ export namespace Prisma {
|
|
|
59943
60003
|
candidateResponses?: CandidateQuestionResponseListRelationFilter
|
|
59944
60004
|
questions?: QuestionListRelationFilter
|
|
59945
60005
|
ongoing_evaluations?: OngoingEvaluationListRelationFilter
|
|
59946
|
-
candidate_activity_logs?: ActivityLogListRelationFilter
|
|
59947
60006
|
actor_activity_logs?: ActivityLogListRelationFilter
|
|
59948
60007
|
actions?: ActionListRelationFilter
|
|
59949
60008
|
calendly?: XOR<CalendlyNullableScalarRelationFilter, CalendlyWhereInput> | null
|
|
59950
60009
|
google?: XOR<GoogleNullableScalarRelationFilter, GoogleWhereInput> | null
|
|
59951
60010
|
fitChecks?: FitCheckListRelationFilter
|
|
60011
|
+
activityLogs?: ActivityLogListRelationFilter
|
|
59952
60012
|
}, "id" | "email" | "google_id" | "permission_id">
|
|
59953
60013
|
|
|
59954
60014
|
export type UserOrderByWithAggregationInput = {
|
|
@@ -60412,84 +60472,90 @@ export namespace Prisma {
|
|
|
60412
60472
|
|
|
60413
60473
|
export type ActivityLogCreateInput = {
|
|
60414
60474
|
id?: string
|
|
60415
|
-
actor_type
|
|
60416
|
-
action_type: $Enums.ActivityActionType
|
|
60475
|
+
actor_type?: $Enums.ActivityActorType
|
|
60417
60476
|
message: string
|
|
60418
60477
|
timestamp?: Date | string
|
|
60419
60478
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60420
60479
|
created_at?: Date | string
|
|
60421
|
-
|
|
60480
|
+
is_active?: boolean
|
|
60422
60481
|
actor?: UserCreateNestedOneWithoutActor_activity_logsInput
|
|
60482
|
+
application: ApplicationCreateNestedOneWithoutActivity_logsInput
|
|
60483
|
+
user?: UserCreateNestedOneWithoutActivityLogsInput
|
|
60423
60484
|
}
|
|
60424
60485
|
|
|
60425
60486
|
export type ActivityLogUncheckedCreateInput = {
|
|
60426
60487
|
id?: string
|
|
60427
|
-
|
|
60488
|
+
application_id: string
|
|
60428
60489
|
actor_id?: string | null
|
|
60429
|
-
actor_type
|
|
60430
|
-
action_type: $Enums.ActivityActionType
|
|
60490
|
+
actor_type?: $Enums.ActivityActorType
|
|
60431
60491
|
message: string
|
|
60432
60492
|
timestamp?: Date | string
|
|
60433
60493
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60434
60494
|
created_at?: Date | string
|
|
60495
|
+
is_active?: boolean
|
|
60496
|
+
userId?: string | null
|
|
60435
60497
|
}
|
|
60436
60498
|
|
|
60437
60499
|
export type ActivityLogUpdateInput = {
|
|
60438
60500
|
id?: StringFieldUpdateOperationsInput | string
|
|
60439
60501
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
60440
|
-
action_type?: EnumActivityActionTypeFieldUpdateOperationsInput | $Enums.ActivityActionType
|
|
60441
60502
|
message?: StringFieldUpdateOperationsInput | string
|
|
60442
60503
|
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
60443
60504
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60444
60505
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
60445
|
-
|
|
60506
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
60446
60507
|
actor?: UserUpdateOneWithoutActor_activity_logsNestedInput
|
|
60508
|
+
application?: ApplicationUpdateOneRequiredWithoutActivity_logsNestedInput
|
|
60509
|
+
user?: UserUpdateOneWithoutActivityLogsNestedInput
|
|
60447
60510
|
}
|
|
60448
60511
|
|
|
60449
60512
|
export type ActivityLogUncheckedUpdateInput = {
|
|
60450
60513
|
id?: StringFieldUpdateOperationsInput | string
|
|
60451
|
-
|
|
60514
|
+
application_id?: StringFieldUpdateOperationsInput | string
|
|
60452
60515
|
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60453
60516
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
60454
|
-
action_type?: EnumActivityActionTypeFieldUpdateOperationsInput | $Enums.ActivityActionType
|
|
60455
60517
|
message?: StringFieldUpdateOperationsInput | string
|
|
60456
60518
|
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
60457
60519
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60458
60520
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
60521
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
60522
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60459
60523
|
}
|
|
60460
60524
|
|
|
60461
60525
|
export type ActivityLogCreateManyInput = {
|
|
60462
60526
|
id?: string
|
|
60463
|
-
|
|
60527
|
+
application_id: string
|
|
60464
60528
|
actor_id?: string | null
|
|
60465
|
-
actor_type
|
|
60466
|
-
action_type: $Enums.ActivityActionType
|
|
60529
|
+
actor_type?: $Enums.ActivityActorType
|
|
60467
60530
|
message: string
|
|
60468
60531
|
timestamp?: Date | string
|
|
60469
60532
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60470
60533
|
created_at?: Date | string
|
|
60534
|
+
is_active?: boolean
|
|
60535
|
+
userId?: string | null
|
|
60471
60536
|
}
|
|
60472
60537
|
|
|
60473
60538
|
export type ActivityLogUpdateManyMutationInput = {
|
|
60474
60539
|
id?: StringFieldUpdateOperationsInput | string
|
|
60475
60540
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
60476
|
-
action_type?: EnumActivityActionTypeFieldUpdateOperationsInput | $Enums.ActivityActionType
|
|
60477
60541
|
message?: StringFieldUpdateOperationsInput | string
|
|
60478
60542
|
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
60479
60543
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60480
60544
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
60545
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
60481
60546
|
}
|
|
60482
60547
|
|
|
60483
60548
|
export type ActivityLogUncheckedUpdateManyInput = {
|
|
60484
60549
|
id?: StringFieldUpdateOperationsInput | string
|
|
60485
|
-
|
|
60550
|
+
application_id?: StringFieldUpdateOperationsInput | string
|
|
60486
60551
|
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60487
60552
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
60488
|
-
action_type?: EnumActivityActionTypeFieldUpdateOperationsInput | $Enums.ActivityActionType
|
|
60489
60553
|
message?: StringFieldUpdateOperationsInput | string
|
|
60490
60554
|
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
60491
60555
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60492
60556
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
60557
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
60558
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60493
60559
|
}
|
|
60494
60560
|
|
|
60495
60561
|
export type ApplicationCreateInput = {
|
|
@@ -60512,6 +60578,7 @@ export namespace Prisma {
|
|
|
60512
60578
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
60513
60579
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
60514
60580
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
60581
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
60515
60582
|
}
|
|
60516
60583
|
|
|
60517
60584
|
export type ApplicationUncheckedCreateInput = {
|
|
@@ -60534,6 +60601,7 @@ export namespace Prisma {
|
|
|
60534
60601
|
is_active?: boolean
|
|
60535
60602
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
60536
60603
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
60604
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
60537
60605
|
}
|
|
60538
60606
|
|
|
60539
60607
|
export type ApplicationUpdateInput = {
|
|
@@ -60556,6 +60624,7 @@ export namespace Prisma {
|
|
|
60556
60624
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
60557
60625
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
60558
60626
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
60627
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
60559
60628
|
}
|
|
60560
60629
|
|
|
60561
60630
|
export type ApplicationUncheckedUpdateInput = {
|
|
@@ -60578,6 +60647,7 @@ export namespace Prisma {
|
|
|
60578
60647
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
60579
60648
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
60580
60649
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
60650
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
60581
60651
|
}
|
|
60582
60652
|
|
|
60583
60653
|
export type ApplicationCreateManyInput = {
|
|
@@ -64110,6 +64180,7 @@ export namespace Prisma {
|
|
|
64110
64180
|
created_by: string
|
|
64111
64181
|
updated_by: string
|
|
64112
64182
|
is_active?: boolean
|
|
64183
|
+
name?: string | null
|
|
64113
64184
|
yearsOfExperience?: number | null
|
|
64114
64185
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
64115
64186
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
@@ -64133,6 +64204,7 @@ export namespace Prisma {
|
|
|
64133
64204
|
created_by: string
|
|
64134
64205
|
updated_by: string
|
|
64135
64206
|
is_active?: boolean
|
|
64207
|
+
name?: string | null
|
|
64136
64208
|
yearsOfExperience?: number | null
|
|
64137
64209
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
64138
64210
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -64150,6 +64222,7 @@ export namespace Prisma {
|
|
|
64150
64222
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
64151
64223
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
64152
64224
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
64225
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64153
64226
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
64154
64227
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
64155
64228
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
@@ -64173,6 +64246,7 @@ export namespace Prisma {
|
|
|
64173
64246
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
64174
64247
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
64175
64248
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
64249
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64176
64250
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
64177
64251
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
64178
64252
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -64193,6 +64267,7 @@ export namespace Prisma {
|
|
|
64193
64267
|
created_by: string
|
|
64194
64268
|
updated_by: string
|
|
64195
64269
|
is_active?: boolean
|
|
64270
|
+
name?: string | null
|
|
64196
64271
|
yearsOfExperience?: number | null
|
|
64197
64272
|
}
|
|
64198
64273
|
|
|
@@ -64204,6 +64279,7 @@ export namespace Prisma {
|
|
|
64204
64279
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
64205
64280
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
64206
64281
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
64282
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64207
64283
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
64208
64284
|
}
|
|
64209
64285
|
|
|
@@ -64218,6 +64294,7 @@ export namespace Prisma {
|
|
|
64218
64294
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
64219
64295
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
64220
64296
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
64297
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64221
64298
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
64222
64299
|
}
|
|
64223
64300
|
|
|
@@ -64577,12 +64654,12 @@ export namespace Prisma {
|
|
|
64577
64654
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
64578
64655
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
64579
64656
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
64580
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
64581
64657
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
64582
64658
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
64583
64659
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
64584
64660
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
64585
64661
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
64662
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
64586
64663
|
}
|
|
64587
64664
|
|
|
64588
64665
|
export type UserUncheckedCreateInput = {
|
|
@@ -64636,12 +64713,12 @@ export namespace Prisma {
|
|
|
64636
64713
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
64637
64714
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
64638
64715
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
64639
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
64640
64716
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
64641
64717
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
64642
64718
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
64643
64719
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
64644
64720
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
64721
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
64645
64722
|
}
|
|
64646
64723
|
|
|
64647
64724
|
export type UserUpdateInput = {
|
|
@@ -64695,12 +64772,12 @@ export namespace Prisma {
|
|
|
64695
64772
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
64696
64773
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
64697
64774
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
64698
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
64699
64775
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
64700
64776
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
64701
64777
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
64702
64778
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
64703
64779
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
64780
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
64704
64781
|
}
|
|
64705
64782
|
|
|
64706
64783
|
export type UserUncheckedUpdateInput = {
|
|
@@ -64754,12 +64831,12 @@ export namespace Prisma {
|
|
|
64754
64831
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
64755
64832
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
64756
64833
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
64757
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
64758
64834
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
64759
64835
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
64760
64836
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
64761
64837
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
64762
64838
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
64839
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
64763
64840
|
}
|
|
64764
64841
|
|
|
64765
64842
|
export type UserCreateManyInput = {
|
|
@@ -65344,13 +65421,6 @@ export namespace Prisma {
|
|
|
65344
65421
|
notIn?: $Enums.ActivityActorType[] | ListEnumActivityActorTypeFieldRefInput<$PrismaModel>
|
|
65345
65422
|
not?: NestedEnumActivityActorTypeFilter<$PrismaModel> | $Enums.ActivityActorType
|
|
65346
65423
|
}
|
|
65347
|
-
|
|
65348
|
-
export type EnumActivityActionTypeFilter<$PrismaModel = never> = {
|
|
65349
|
-
equals?: $Enums.ActivityActionType | EnumActivityActionTypeFieldRefInput<$PrismaModel>
|
|
65350
|
-
in?: $Enums.ActivityActionType[] | ListEnumActivityActionTypeFieldRefInput<$PrismaModel>
|
|
65351
|
-
notIn?: $Enums.ActivityActionType[] | ListEnumActivityActionTypeFieldRefInput<$PrismaModel>
|
|
65352
|
-
not?: NestedEnumActivityActionTypeFilter<$PrismaModel> | $Enums.ActivityActionType
|
|
65353
|
-
}
|
|
65354
65424
|
export type JsonNullableFilter<$PrismaModel = never> =
|
|
65355
65425
|
| PatchUndefined<
|
|
65356
65426
|
Either<Required<JsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableFilterBase<$PrismaModel>>, 'path'>>,
|
|
@@ -65380,38 +65450,46 @@ export namespace Prisma {
|
|
|
65380
65450
|
isNot?: UserWhereInput | null
|
|
65381
65451
|
}
|
|
65382
65452
|
|
|
65453
|
+
export type ApplicationScalarRelationFilter = {
|
|
65454
|
+
is?: ApplicationWhereInput
|
|
65455
|
+
isNot?: ApplicationWhereInput
|
|
65456
|
+
}
|
|
65457
|
+
|
|
65383
65458
|
export type ActivityLogCountOrderByAggregateInput = {
|
|
65384
65459
|
id?: SortOrder
|
|
65385
|
-
|
|
65460
|
+
application_id?: SortOrder
|
|
65386
65461
|
actor_id?: SortOrder
|
|
65387
65462
|
actor_type?: SortOrder
|
|
65388
|
-
action_type?: SortOrder
|
|
65389
65463
|
message?: SortOrder
|
|
65390
65464
|
timestamp?: SortOrder
|
|
65391
65465
|
metadata?: SortOrder
|
|
65392
65466
|
created_at?: SortOrder
|
|
65467
|
+
is_active?: SortOrder
|
|
65468
|
+
userId?: SortOrder
|
|
65393
65469
|
}
|
|
65394
65470
|
|
|
65395
65471
|
export type ActivityLogMaxOrderByAggregateInput = {
|
|
65396
65472
|
id?: SortOrder
|
|
65397
|
-
|
|
65473
|
+
application_id?: SortOrder
|
|
65398
65474
|
actor_id?: SortOrder
|
|
65399
65475
|
actor_type?: SortOrder
|
|
65400
|
-
action_type?: SortOrder
|
|
65401
65476
|
message?: SortOrder
|
|
65402
65477
|
timestamp?: SortOrder
|
|
65403
65478
|
created_at?: SortOrder
|
|
65479
|
+
is_active?: SortOrder
|
|
65480
|
+
userId?: SortOrder
|
|
65404
65481
|
}
|
|
65405
65482
|
|
|
65406
65483
|
export type ActivityLogMinOrderByAggregateInput = {
|
|
65407
65484
|
id?: SortOrder
|
|
65408
|
-
|
|
65485
|
+
application_id?: SortOrder
|
|
65409
65486
|
actor_id?: SortOrder
|
|
65410
65487
|
actor_type?: SortOrder
|
|
65411
|
-
action_type?: SortOrder
|
|
65412
65488
|
message?: SortOrder
|
|
65413
65489
|
timestamp?: SortOrder
|
|
65414
65490
|
created_at?: SortOrder
|
|
65491
|
+
is_active?: SortOrder
|
|
65492
|
+
userId?: SortOrder
|
|
65415
65493
|
}
|
|
65416
65494
|
|
|
65417
65495
|
export type EnumActivityActorTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -65423,16 +65501,6 @@ export namespace Prisma {
|
|
|
65423
65501
|
_min?: NestedEnumActivityActorTypeFilter<$PrismaModel>
|
|
65424
65502
|
_max?: NestedEnumActivityActorTypeFilter<$PrismaModel>
|
|
65425
65503
|
}
|
|
65426
|
-
|
|
65427
|
-
export type EnumActivityActionTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
65428
|
-
equals?: $Enums.ActivityActionType | EnumActivityActionTypeFieldRefInput<$PrismaModel>
|
|
65429
|
-
in?: $Enums.ActivityActionType[] | ListEnumActivityActionTypeFieldRefInput<$PrismaModel>
|
|
65430
|
-
notIn?: $Enums.ActivityActionType[] | ListEnumActivityActionTypeFieldRefInput<$PrismaModel>
|
|
65431
|
-
not?: NestedEnumActivityActionTypeWithAggregatesFilter<$PrismaModel> | $Enums.ActivityActionType
|
|
65432
|
-
_count?: NestedIntFilter<$PrismaModel>
|
|
65433
|
-
_min?: NestedEnumActivityActionTypeFilter<$PrismaModel>
|
|
65434
|
-
_max?: NestedEnumActivityActionTypeFilter<$PrismaModel>
|
|
65435
|
-
}
|
|
65436
65504
|
export type JsonNullableWithAggregatesFilter<$PrismaModel = never> =
|
|
65437
65505
|
| PatchUndefined<
|
|
65438
65506
|
Either<Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, Exclude<keyof Required<JsonNullableWithAggregatesFilterBase<$PrismaModel>>, 'path'>>,
|
|
@@ -65517,6 +65585,12 @@ export namespace Prisma {
|
|
|
65517
65585
|
none?: OngoingEvaluationWhereInput
|
|
65518
65586
|
}
|
|
65519
65587
|
|
|
65588
|
+
export type ActivityLogListRelationFilter = {
|
|
65589
|
+
every?: ActivityLogWhereInput
|
|
65590
|
+
some?: ActivityLogWhereInput
|
|
65591
|
+
none?: ActivityLogWhereInput
|
|
65592
|
+
}
|
|
65593
|
+
|
|
65520
65594
|
export type InterviewOrderByRelationAggregateInput = {
|
|
65521
65595
|
_count?: SortOrder
|
|
65522
65596
|
}
|
|
@@ -65525,6 +65599,10 @@ export namespace Prisma {
|
|
|
65525
65599
|
_count?: SortOrder
|
|
65526
65600
|
}
|
|
65527
65601
|
|
|
65602
|
+
export type ActivityLogOrderByRelationAggregateInput = {
|
|
65603
|
+
_count?: SortOrder
|
|
65604
|
+
}
|
|
65605
|
+
|
|
65528
65606
|
export type ApplicationCandidate_idJob_description_idCompoundUniqueInput = {
|
|
65529
65607
|
candidate_id: string
|
|
65530
65608
|
job_description_id: string
|
|
@@ -67343,11 +67421,6 @@ export namespace Prisma {
|
|
|
67343
67421
|
isNot?: JobDescriptionWhereInput | null
|
|
67344
67422
|
}
|
|
67345
67423
|
|
|
67346
|
-
export type ApplicationScalarRelationFilter = {
|
|
67347
|
-
is?: ApplicationWhereInput
|
|
67348
|
-
isNot?: ApplicationWhereInput
|
|
67349
|
-
}
|
|
67350
|
-
|
|
67351
67424
|
export type EvaluationPlanScalarRelationFilter = {
|
|
67352
67425
|
is?: EvaluationPlanWhereInput
|
|
67353
67426
|
isNot?: EvaluationPlanWhereInput
|
|
@@ -68028,6 +68101,7 @@ export namespace Prisma {
|
|
|
68028
68101
|
created_by?: SortOrder
|
|
68029
68102
|
updated_by?: SortOrder
|
|
68030
68103
|
is_active?: SortOrder
|
|
68104
|
+
name?: SortOrder
|
|
68031
68105
|
yearsOfExperience?: SortOrder
|
|
68032
68106
|
}
|
|
68033
68107
|
|
|
@@ -68046,6 +68120,7 @@ export namespace Prisma {
|
|
|
68046
68120
|
created_by?: SortOrder
|
|
68047
68121
|
updated_by?: SortOrder
|
|
68048
68122
|
is_active?: SortOrder
|
|
68123
|
+
name?: SortOrder
|
|
68049
68124
|
yearsOfExperience?: SortOrder
|
|
68050
68125
|
}
|
|
68051
68126
|
|
|
@@ -68060,6 +68135,7 @@ export namespace Prisma {
|
|
|
68060
68135
|
created_by?: SortOrder
|
|
68061
68136
|
updated_by?: SortOrder
|
|
68062
68137
|
is_active?: SortOrder
|
|
68138
|
+
name?: SortOrder
|
|
68063
68139
|
yearsOfExperience?: SortOrder
|
|
68064
68140
|
}
|
|
68065
68141
|
|
|
@@ -68245,12 +68321,6 @@ export namespace Prisma {
|
|
|
68245
68321
|
none?: MessageWhereInput
|
|
68246
68322
|
}
|
|
68247
68323
|
|
|
68248
|
-
export type ActivityLogListRelationFilter = {
|
|
68249
|
-
every?: ActivityLogWhereInput
|
|
68250
|
-
some?: ActivityLogWhereInput
|
|
68251
|
-
none?: ActivityLogWhereInput
|
|
68252
|
-
}
|
|
68253
|
-
|
|
68254
68324
|
export type CalendlyNullableScalarRelationFilter = {
|
|
68255
68325
|
is?: CalendlyWhereInput | null
|
|
68256
68326
|
isNot?: CalendlyWhereInput | null
|
|
@@ -68265,10 +68335,6 @@ export namespace Prisma {
|
|
|
68265
68335
|
_count?: SortOrder
|
|
68266
68336
|
}
|
|
68267
68337
|
|
|
68268
|
-
export type ActivityLogOrderByRelationAggregateInput = {
|
|
68269
|
-
_count?: SortOrder
|
|
68270
|
-
}
|
|
68271
|
-
|
|
68272
68338
|
export type UserCountOrderByAggregateInput = {
|
|
68273
68339
|
id?: SortOrder
|
|
68274
68340
|
email?: SortOrder
|
|
@@ -68598,32 +68664,26 @@ export namespace Prisma {
|
|
|
68598
68664
|
update?: XOR<XOR<OrganisationUpdateToOneWithWhereWithoutActionsInput, OrganisationUpdateWithoutActionsInput>, OrganisationUncheckedUpdateWithoutActionsInput>
|
|
68599
68665
|
}
|
|
68600
68666
|
|
|
68601
|
-
export type UserCreateNestedOneWithoutCandidate_activity_logsInput = {
|
|
68602
|
-
create?: XOR<UserCreateWithoutCandidate_activity_logsInput, UserUncheckedCreateWithoutCandidate_activity_logsInput>
|
|
68603
|
-
connectOrCreate?: UserCreateOrConnectWithoutCandidate_activity_logsInput
|
|
68604
|
-
connect?: UserWhereUniqueInput
|
|
68605
|
-
}
|
|
68606
|
-
|
|
68607
68667
|
export type UserCreateNestedOneWithoutActor_activity_logsInput = {
|
|
68608
68668
|
create?: XOR<UserCreateWithoutActor_activity_logsInput, UserUncheckedCreateWithoutActor_activity_logsInput>
|
|
68609
68669
|
connectOrCreate?: UserCreateOrConnectWithoutActor_activity_logsInput
|
|
68610
68670
|
connect?: UserWhereUniqueInput
|
|
68611
68671
|
}
|
|
68612
68672
|
|
|
68613
|
-
export type
|
|
68614
|
-
|
|
68673
|
+
export type ApplicationCreateNestedOneWithoutActivity_logsInput = {
|
|
68674
|
+
create?: XOR<ApplicationCreateWithoutActivity_logsInput, ApplicationUncheckedCreateWithoutActivity_logsInput>
|
|
68675
|
+
connectOrCreate?: ApplicationCreateOrConnectWithoutActivity_logsInput
|
|
68676
|
+
connect?: ApplicationWhereUniqueInput
|
|
68615
68677
|
}
|
|
68616
68678
|
|
|
68617
|
-
export type
|
|
68618
|
-
|
|
68679
|
+
export type UserCreateNestedOneWithoutActivityLogsInput = {
|
|
68680
|
+
create?: XOR<UserCreateWithoutActivityLogsInput, UserUncheckedCreateWithoutActivityLogsInput>
|
|
68681
|
+
connectOrCreate?: UserCreateOrConnectWithoutActivityLogsInput
|
|
68682
|
+
connect?: UserWhereUniqueInput
|
|
68619
68683
|
}
|
|
68620
68684
|
|
|
68621
|
-
export type
|
|
68622
|
-
|
|
68623
|
-
connectOrCreate?: UserCreateOrConnectWithoutCandidate_activity_logsInput
|
|
68624
|
-
upsert?: UserUpsertWithoutCandidate_activity_logsInput
|
|
68625
|
-
connect?: UserWhereUniqueInput
|
|
68626
|
-
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutCandidate_activity_logsInput, UserUpdateWithoutCandidate_activity_logsInput>, UserUncheckedUpdateWithoutCandidate_activity_logsInput>
|
|
68685
|
+
export type EnumActivityActorTypeFieldUpdateOperationsInput = {
|
|
68686
|
+
set?: $Enums.ActivityActorType
|
|
68627
68687
|
}
|
|
68628
68688
|
|
|
68629
68689
|
export type UserUpdateOneWithoutActor_activity_logsNestedInput = {
|
|
@@ -68636,6 +68696,24 @@ export namespace Prisma {
|
|
|
68636
68696
|
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutActor_activity_logsInput, UserUpdateWithoutActor_activity_logsInput>, UserUncheckedUpdateWithoutActor_activity_logsInput>
|
|
68637
68697
|
}
|
|
68638
68698
|
|
|
68699
|
+
export type ApplicationUpdateOneRequiredWithoutActivity_logsNestedInput = {
|
|
68700
|
+
create?: XOR<ApplicationCreateWithoutActivity_logsInput, ApplicationUncheckedCreateWithoutActivity_logsInput>
|
|
68701
|
+
connectOrCreate?: ApplicationCreateOrConnectWithoutActivity_logsInput
|
|
68702
|
+
upsert?: ApplicationUpsertWithoutActivity_logsInput
|
|
68703
|
+
connect?: ApplicationWhereUniqueInput
|
|
68704
|
+
update?: XOR<XOR<ApplicationUpdateToOneWithWhereWithoutActivity_logsInput, ApplicationUpdateWithoutActivity_logsInput>, ApplicationUncheckedUpdateWithoutActivity_logsInput>
|
|
68705
|
+
}
|
|
68706
|
+
|
|
68707
|
+
export type UserUpdateOneWithoutActivityLogsNestedInput = {
|
|
68708
|
+
create?: XOR<UserCreateWithoutActivityLogsInput, UserUncheckedCreateWithoutActivityLogsInput>
|
|
68709
|
+
connectOrCreate?: UserCreateOrConnectWithoutActivityLogsInput
|
|
68710
|
+
upsert?: UserUpsertWithoutActivityLogsInput
|
|
68711
|
+
disconnect?: UserWhereInput | boolean
|
|
68712
|
+
delete?: UserWhereInput | boolean
|
|
68713
|
+
connect?: UserWhereUniqueInput
|
|
68714
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutActivityLogsInput, UserUpdateWithoutActivityLogsInput>, UserUncheckedUpdateWithoutActivityLogsInput>
|
|
68715
|
+
}
|
|
68716
|
+
|
|
68639
68717
|
export type EvaluationPlanCreateNestedOneWithoutApplicationsInput = {
|
|
68640
68718
|
create?: XOR<EvaluationPlanCreateWithoutApplicationsInput, EvaluationPlanUncheckedCreateWithoutApplicationsInput>
|
|
68641
68719
|
connectOrCreate?: EvaluationPlanCreateOrConnectWithoutApplicationsInput
|
|
@@ -68686,6 +68764,13 @@ export namespace Prisma {
|
|
|
68686
68764
|
connect?: OngoingEvaluationWhereUniqueInput | OngoingEvaluationWhereUniqueInput[]
|
|
68687
68765
|
}
|
|
68688
68766
|
|
|
68767
|
+
export type ActivityLogCreateNestedManyWithoutApplicationInput = {
|
|
68768
|
+
create?: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput> | ActivityLogCreateWithoutApplicationInput[] | ActivityLogUncheckedCreateWithoutApplicationInput[]
|
|
68769
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutApplicationInput | ActivityLogCreateOrConnectWithoutApplicationInput[]
|
|
68770
|
+
createMany?: ActivityLogCreateManyApplicationInputEnvelope
|
|
68771
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68772
|
+
}
|
|
68773
|
+
|
|
68689
68774
|
export type InterviewUncheckedCreateNestedManyWithoutApplicationInput = {
|
|
68690
68775
|
create?: XOR<InterviewCreateWithoutApplicationInput, InterviewUncheckedCreateWithoutApplicationInput> | InterviewCreateWithoutApplicationInput[] | InterviewUncheckedCreateWithoutApplicationInput[]
|
|
68691
68776
|
connectOrCreate?: InterviewCreateOrConnectWithoutApplicationInput | InterviewCreateOrConnectWithoutApplicationInput[]
|
|
@@ -68700,6 +68785,13 @@ export namespace Prisma {
|
|
|
68700
68785
|
connect?: OngoingEvaluationWhereUniqueInput | OngoingEvaluationWhereUniqueInput[]
|
|
68701
68786
|
}
|
|
68702
68787
|
|
|
68788
|
+
export type ActivityLogUncheckedCreateNestedManyWithoutApplicationInput = {
|
|
68789
|
+
create?: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput> | ActivityLogCreateWithoutApplicationInput[] | ActivityLogUncheckedCreateWithoutApplicationInput[]
|
|
68790
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutApplicationInput | ActivityLogCreateOrConnectWithoutApplicationInput[]
|
|
68791
|
+
createMany?: ActivityLogCreateManyApplicationInputEnvelope
|
|
68792
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68793
|
+
}
|
|
68794
|
+
|
|
68703
68795
|
export type EnumApplicationStatusFieldUpdateOperationsInput = {
|
|
68704
68796
|
set?: $Enums.ApplicationStatus
|
|
68705
68797
|
}
|
|
@@ -68796,6 +68888,20 @@ export namespace Prisma {
|
|
|
68796
68888
|
deleteMany?: OngoingEvaluationScalarWhereInput | OngoingEvaluationScalarWhereInput[]
|
|
68797
68889
|
}
|
|
68798
68890
|
|
|
68891
|
+
export type ActivityLogUpdateManyWithoutApplicationNestedInput = {
|
|
68892
|
+
create?: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput> | ActivityLogCreateWithoutApplicationInput[] | ActivityLogUncheckedCreateWithoutApplicationInput[]
|
|
68893
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutApplicationInput | ActivityLogCreateOrConnectWithoutApplicationInput[]
|
|
68894
|
+
upsert?: ActivityLogUpsertWithWhereUniqueWithoutApplicationInput | ActivityLogUpsertWithWhereUniqueWithoutApplicationInput[]
|
|
68895
|
+
createMany?: ActivityLogCreateManyApplicationInputEnvelope
|
|
68896
|
+
set?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68897
|
+
disconnect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68898
|
+
delete?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68899
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68900
|
+
update?: ActivityLogUpdateWithWhereUniqueWithoutApplicationInput | ActivityLogUpdateWithWhereUniqueWithoutApplicationInput[]
|
|
68901
|
+
updateMany?: ActivityLogUpdateManyWithWhereWithoutApplicationInput | ActivityLogUpdateManyWithWhereWithoutApplicationInput[]
|
|
68902
|
+
deleteMany?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
68903
|
+
}
|
|
68904
|
+
|
|
68799
68905
|
export type InterviewUncheckedUpdateManyWithoutApplicationNestedInput = {
|
|
68800
68906
|
create?: XOR<InterviewCreateWithoutApplicationInput, InterviewUncheckedCreateWithoutApplicationInput> | InterviewCreateWithoutApplicationInput[] | InterviewUncheckedCreateWithoutApplicationInput[]
|
|
68801
68907
|
connectOrCreate?: InterviewCreateOrConnectWithoutApplicationInput | InterviewCreateOrConnectWithoutApplicationInput[]
|
|
@@ -68824,6 +68930,20 @@ export namespace Prisma {
|
|
|
68824
68930
|
deleteMany?: OngoingEvaluationScalarWhereInput | OngoingEvaluationScalarWhereInput[]
|
|
68825
68931
|
}
|
|
68826
68932
|
|
|
68933
|
+
export type ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput = {
|
|
68934
|
+
create?: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput> | ActivityLogCreateWithoutApplicationInput[] | ActivityLogUncheckedCreateWithoutApplicationInput[]
|
|
68935
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutApplicationInput | ActivityLogCreateOrConnectWithoutApplicationInput[]
|
|
68936
|
+
upsert?: ActivityLogUpsertWithWhereUniqueWithoutApplicationInput | ActivityLogUpsertWithWhereUniqueWithoutApplicationInput[]
|
|
68937
|
+
createMany?: ActivityLogCreateManyApplicationInputEnvelope
|
|
68938
|
+
set?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68939
|
+
disconnect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68940
|
+
delete?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68941
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
68942
|
+
update?: ActivityLogUpdateWithWhereUniqueWithoutApplicationInput | ActivityLogUpdateWithWhereUniqueWithoutApplicationInput[]
|
|
68943
|
+
updateMany?: ActivityLogUpdateManyWithWhereWithoutApplicationInput | ActivityLogUpdateManyWithWhereWithoutApplicationInput[]
|
|
68944
|
+
deleteMany?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
68945
|
+
}
|
|
68946
|
+
|
|
68827
68947
|
export type JobDescriptionCreateNestedOneWithoutApprovalsInput = {
|
|
68828
68948
|
create?: XOR<JobDescriptionCreateWithoutApprovalsInput, JobDescriptionUncheckedCreateWithoutApprovalsInput>
|
|
68829
68949
|
connectOrCreate?: JobDescriptionCreateOrConnectWithoutApprovalsInput
|
|
@@ -72758,13 +72878,6 @@ export namespace Prisma {
|
|
|
72758
72878
|
connect?: OngoingEvaluationWhereUniqueInput | OngoingEvaluationWhereUniqueInput[]
|
|
72759
72879
|
}
|
|
72760
72880
|
|
|
72761
|
-
export type ActivityLogCreateNestedManyWithoutCandidateInput = {
|
|
72762
|
-
create?: XOR<ActivityLogCreateWithoutCandidateInput, ActivityLogUncheckedCreateWithoutCandidateInput> | ActivityLogCreateWithoutCandidateInput[] | ActivityLogUncheckedCreateWithoutCandidateInput[]
|
|
72763
|
-
connectOrCreate?: ActivityLogCreateOrConnectWithoutCandidateInput | ActivityLogCreateOrConnectWithoutCandidateInput[]
|
|
72764
|
-
createMany?: ActivityLogCreateManyCandidateInputEnvelope
|
|
72765
|
-
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
72766
|
-
}
|
|
72767
|
-
|
|
72768
72881
|
export type ActivityLogCreateNestedManyWithoutActorInput = {
|
|
72769
72882
|
create?: XOR<ActivityLogCreateWithoutActorInput, ActivityLogUncheckedCreateWithoutActorInput> | ActivityLogCreateWithoutActorInput[] | ActivityLogUncheckedCreateWithoutActorInput[]
|
|
72770
72883
|
connectOrCreate?: ActivityLogCreateOrConnectWithoutActorInput | ActivityLogCreateOrConnectWithoutActorInput[]
|
|
@@ -72798,6 +72911,13 @@ export namespace Prisma {
|
|
|
72798
72911
|
connect?: FitCheckWhereUniqueInput | FitCheckWhereUniqueInput[]
|
|
72799
72912
|
}
|
|
72800
72913
|
|
|
72914
|
+
export type ActivityLogCreateNestedManyWithoutUserInput = {
|
|
72915
|
+
create?: XOR<ActivityLogCreateWithoutUserInput, ActivityLogUncheckedCreateWithoutUserInput> | ActivityLogCreateWithoutUserInput[] | ActivityLogUncheckedCreateWithoutUserInput[]
|
|
72916
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutUserInput | ActivityLogCreateOrConnectWithoutUserInput[]
|
|
72917
|
+
createMany?: ActivityLogCreateManyUserInputEnvelope
|
|
72918
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
72919
|
+
}
|
|
72920
|
+
|
|
72801
72921
|
export type ApplicationUncheckedCreateNestedManyWithoutCandidateInput = {
|
|
72802
72922
|
create?: XOR<ApplicationCreateWithoutCandidateInput, ApplicationUncheckedCreateWithoutCandidateInput> | ApplicationCreateWithoutCandidateInput[] | ApplicationUncheckedCreateWithoutCandidateInput[]
|
|
72803
72923
|
connectOrCreate?: ApplicationCreateOrConnectWithoutCandidateInput | ApplicationCreateOrConnectWithoutCandidateInput[]
|
|
@@ -72920,13 +73040,6 @@ export namespace Prisma {
|
|
|
72920
73040
|
connect?: OngoingEvaluationWhereUniqueInput | OngoingEvaluationWhereUniqueInput[]
|
|
72921
73041
|
}
|
|
72922
73042
|
|
|
72923
|
-
export type ActivityLogUncheckedCreateNestedManyWithoutCandidateInput = {
|
|
72924
|
-
create?: XOR<ActivityLogCreateWithoutCandidateInput, ActivityLogUncheckedCreateWithoutCandidateInput> | ActivityLogCreateWithoutCandidateInput[] | ActivityLogUncheckedCreateWithoutCandidateInput[]
|
|
72925
|
-
connectOrCreate?: ActivityLogCreateOrConnectWithoutCandidateInput | ActivityLogCreateOrConnectWithoutCandidateInput[]
|
|
72926
|
-
createMany?: ActivityLogCreateManyCandidateInputEnvelope
|
|
72927
|
-
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
72928
|
-
}
|
|
72929
|
-
|
|
72930
73043
|
export type ActivityLogUncheckedCreateNestedManyWithoutActorInput = {
|
|
72931
73044
|
create?: XOR<ActivityLogCreateWithoutActorInput, ActivityLogUncheckedCreateWithoutActorInput> | ActivityLogCreateWithoutActorInput[] | ActivityLogUncheckedCreateWithoutActorInput[]
|
|
72932
73045
|
connectOrCreate?: ActivityLogCreateOrConnectWithoutActorInput | ActivityLogCreateOrConnectWithoutActorInput[]
|
|
@@ -72960,6 +73073,13 @@ export namespace Prisma {
|
|
|
72960
73073
|
connect?: FitCheckWhereUniqueInput | FitCheckWhereUniqueInput[]
|
|
72961
73074
|
}
|
|
72962
73075
|
|
|
73076
|
+
export type ActivityLogUncheckedCreateNestedManyWithoutUserInput = {
|
|
73077
|
+
create?: XOR<ActivityLogCreateWithoutUserInput, ActivityLogUncheckedCreateWithoutUserInput> | ActivityLogCreateWithoutUserInput[] | ActivityLogUncheckedCreateWithoutUserInput[]
|
|
73078
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutUserInput | ActivityLogCreateOrConnectWithoutUserInput[]
|
|
73079
|
+
createMany?: ActivityLogCreateManyUserInputEnvelope
|
|
73080
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73081
|
+
}
|
|
73082
|
+
|
|
72963
73083
|
export type EnumFirstLoginStatusFieldUpdateOperationsInput = {
|
|
72964
73084
|
set?: $Enums.FirstLoginStatus
|
|
72965
73085
|
}
|
|
@@ -73231,20 +73351,6 @@ export namespace Prisma {
|
|
|
73231
73351
|
deleteMany?: OngoingEvaluationScalarWhereInput | OngoingEvaluationScalarWhereInput[]
|
|
73232
73352
|
}
|
|
73233
73353
|
|
|
73234
|
-
export type ActivityLogUpdateManyWithoutCandidateNestedInput = {
|
|
73235
|
-
create?: XOR<ActivityLogCreateWithoutCandidateInput, ActivityLogUncheckedCreateWithoutCandidateInput> | ActivityLogCreateWithoutCandidateInput[] | ActivityLogUncheckedCreateWithoutCandidateInput[]
|
|
73236
|
-
connectOrCreate?: ActivityLogCreateOrConnectWithoutCandidateInput | ActivityLogCreateOrConnectWithoutCandidateInput[]
|
|
73237
|
-
upsert?: ActivityLogUpsertWithWhereUniqueWithoutCandidateInput | ActivityLogUpsertWithWhereUniqueWithoutCandidateInput[]
|
|
73238
|
-
createMany?: ActivityLogCreateManyCandidateInputEnvelope
|
|
73239
|
-
set?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73240
|
-
disconnect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73241
|
-
delete?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73242
|
-
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73243
|
-
update?: ActivityLogUpdateWithWhereUniqueWithoutCandidateInput | ActivityLogUpdateWithWhereUniqueWithoutCandidateInput[]
|
|
73244
|
-
updateMany?: ActivityLogUpdateManyWithWhereWithoutCandidateInput | ActivityLogUpdateManyWithWhereWithoutCandidateInput[]
|
|
73245
|
-
deleteMany?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
73246
|
-
}
|
|
73247
|
-
|
|
73248
73354
|
export type ActivityLogUpdateManyWithoutActorNestedInput = {
|
|
73249
73355
|
create?: XOR<ActivityLogCreateWithoutActorInput, ActivityLogUncheckedCreateWithoutActorInput> | ActivityLogCreateWithoutActorInput[] | ActivityLogUncheckedCreateWithoutActorInput[]
|
|
73250
73356
|
connectOrCreate?: ActivityLogCreateOrConnectWithoutActorInput | ActivityLogCreateOrConnectWithoutActorInput[]
|
|
@@ -73307,6 +73413,20 @@ export namespace Prisma {
|
|
|
73307
73413
|
deleteMany?: FitCheckScalarWhereInput | FitCheckScalarWhereInput[]
|
|
73308
73414
|
}
|
|
73309
73415
|
|
|
73416
|
+
export type ActivityLogUpdateManyWithoutUserNestedInput = {
|
|
73417
|
+
create?: XOR<ActivityLogCreateWithoutUserInput, ActivityLogUncheckedCreateWithoutUserInput> | ActivityLogCreateWithoutUserInput[] | ActivityLogUncheckedCreateWithoutUserInput[]
|
|
73418
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutUserInput | ActivityLogCreateOrConnectWithoutUserInput[]
|
|
73419
|
+
upsert?: ActivityLogUpsertWithWhereUniqueWithoutUserInput | ActivityLogUpsertWithWhereUniqueWithoutUserInput[]
|
|
73420
|
+
createMany?: ActivityLogCreateManyUserInputEnvelope
|
|
73421
|
+
set?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73422
|
+
disconnect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73423
|
+
delete?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73424
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73425
|
+
update?: ActivityLogUpdateWithWhereUniqueWithoutUserInput | ActivityLogUpdateWithWhereUniqueWithoutUserInput[]
|
|
73426
|
+
updateMany?: ActivityLogUpdateManyWithWhereWithoutUserInput | ActivityLogUpdateManyWithWhereWithoutUserInput[]
|
|
73427
|
+
deleteMany?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
73428
|
+
}
|
|
73429
|
+
|
|
73310
73430
|
export type ApplicationUncheckedUpdateManyWithoutCandidateNestedInput = {
|
|
73311
73431
|
create?: XOR<ApplicationCreateWithoutCandidateInput, ApplicationUncheckedCreateWithoutCandidateInput> | ApplicationCreateWithoutCandidateInput[] | ApplicationUncheckedCreateWithoutCandidateInput[]
|
|
73312
73432
|
connectOrCreate?: ApplicationCreateOrConnectWithoutCandidateInput | ApplicationCreateOrConnectWithoutCandidateInput[]
|
|
@@ -73546,20 +73666,6 @@ export namespace Prisma {
|
|
|
73546
73666
|
deleteMany?: OngoingEvaluationScalarWhereInput | OngoingEvaluationScalarWhereInput[]
|
|
73547
73667
|
}
|
|
73548
73668
|
|
|
73549
|
-
export type ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput = {
|
|
73550
|
-
create?: XOR<ActivityLogCreateWithoutCandidateInput, ActivityLogUncheckedCreateWithoutCandidateInput> | ActivityLogCreateWithoutCandidateInput[] | ActivityLogUncheckedCreateWithoutCandidateInput[]
|
|
73551
|
-
connectOrCreate?: ActivityLogCreateOrConnectWithoutCandidateInput | ActivityLogCreateOrConnectWithoutCandidateInput[]
|
|
73552
|
-
upsert?: ActivityLogUpsertWithWhereUniqueWithoutCandidateInput | ActivityLogUpsertWithWhereUniqueWithoutCandidateInput[]
|
|
73553
|
-
createMany?: ActivityLogCreateManyCandidateInputEnvelope
|
|
73554
|
-
set?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73555
|
-
disconnect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73556
|
-
delete?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73557
|
-
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73558
|
-
update?: ActivityLogUpdateWithWhereUniqueWithoutCandidateInput | ActivityLogUpdateWithWhereUniqueWithoutCandidateInput[]
|
|
73559
|
-
updateMany?: ActivityLogUpdateManyWithWhereWithoutCandidateInput | ActivityLogUpdateManyWithWhereWithoutCandidateInput[]
|
|
73560
|
-
deleteMany?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
73561
|
-
}
|
|
73562
|
-
|
|
73563
73669
|
export type ActivityLogUncheckedUpdateManyWithoutActorNestedInput = {
|
|
73564
73670
|
create?: XOR<ActivityLogCreateWithoutActorInput, ActivityLogUncheckedCreateWithoutActorInput> | ActivityLogCreateWithoutActorInput[] | ActivityLogUncheckedCreateWithoutActorInput[]
|
|
73565
73671
|
connectOrCreate?: ActivityLogCreateOrConnectWithoutActorInput | ActivityLogCreateOrConnectWithoutActorInput[]
|
|
@@ -73622,6 +73728,20 @@ export namespace Prisma {
|
|
|
73622
73728
|
deleteMany?: FitCheckScalarWhereInput | FitCheckScalarWhereInput[]
|
|
73623
73729
|
}
|
|
73624
73730
|
|
|
73731
|
+
export type ActivityLogUncheckedUpdateManyWithoutUserNestedInput = {
|
|
73732
|
+
create?: XOR<ActivityLogCreateWithoutUserInput, ActivityLogUncheckedCreateWithoutUserInput> | ActivityLogCreateWithoutUserInput[] | ActivityLogUncheckedCreateWithoutUserInput[]
|
|
73733
|
+
connectOrCreate?: ActivityLogCreateOrConnectWithoutUserInput | ActivityLogCreateOrConnectWithoutUserInput[]
|
|
73734
|
+
upsert?: ActivityLogUpsertWithWhereUniqueWithoutUserInput | ActivityLogUpsertWithWhereUniqueWithoutUserInput[]
|
|
73735
|
+
createMany?: ActivityLogCreateManyUserInputEnvelope
|
|
73736
|
+
set?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73737
|
+
disconnect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73738
|
+
delete?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73739
|
+
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73740
|
+
update?: ActivityLogUpdateWithWhereUniqueWithoutUserInput | ActivityLogUpdateWithWhereUniqueWithoutUserInput[]
|
|
73741
|
+
updateMany?: ActivityLogUpdateManyWithWhereWithoutUserInput | ActivityLogUpdateManyWithWhereWithoutUserInput[]
|
|
73742
|
+
deleteMany?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
73743
|
+
}
|
|
73744
|
+
|
|
73625
73745
|
export type UserCreateNestedOneWithoutUser_profileInput = {
|
|
73626
73746
|
create?: XOR<UserCreateWithoutUser_profileInput, UserUncheckedCreateWithoutUser_profileInput>
|
|
73627
73747
|
connectOrCreate?: UserCreateOrConnectWithoutUser_profileInput
|
|
@@ -73853,13 +73973,6 @@ export namespace Prisma {
|
|
|
73853
73973
|
not?: NestedEnumActivityActorTypeFilter<$PrismaModel> | $Enums.ActivityActorType
|
|
73854
73974
|
}
|
|
73855
73975
|
|
|
73856
|
-
export type NestedEnumActivityActionTypeFilter<$PrismaModel = never> = {
|
|
73857
|
-
equals?: $Enums.ActivityActionType | EnumActivityActionTypeFieldRefInput<$PrismaModel>
|
|
73858
|
-
in?: $Enums.ActivityActionType[] | ListEnumActivityActionTypeFieldRefInput<$PrismaModel>
|
|
73859
|
-
notIn?: $Enums.ActivityActionType[] | ListEnumActivityActionTypeFieldRefInput<$PrismaModel>
|
|
73860
|
-
not?: NestedEnumActivityActionTypeFilter<$PrismaModel> | $Enums.ActivityActionType
|
|
73861
|
-
}
|
|
73862
|
-
|
|
73863
73976
|
export type NestedEnumActivityActorTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
73864
73977
|
equals?: $Enums.ActivityActorType | EnumActivityActorTypeFieldRefInput<$PrismaModel>
|
|
73865
73978
|
in?: $Enums.ActivityActorType[] | ListEnumActivityActorTypeFieldRefInput<$PrismaModel>
|
|
@@ -73869,16 +73982,6 @@ export namespace Prisma {
|
|
|
73869
73982
|
_min?: NestedEnumActivityActorTypeFilter<$PrismaModel>
|
|
73870
73983
|
_max?: NestedEnumActivityActorTypeFilter<$PrismaModel>
|
|
73871
73984
|
}
|
|
73872
|
-
|
|
73873
|
-
export type NestedEnumActivityActionTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
73874
|
-
equals?: $Enums.ActivityActionType | EnumActivityActionTypeFieldRefInput<$PrismaModel>
|
|
73875
|
-
in?: $Enums.ActivityActionType[] | ListEnumActivityActionTypeFieldRefInput<$PrismaModel>
|
|
73876
|
-
notIn?: $Enums.ActivityActionType[] | ListEnumActivityActionTypeFieldRefInput<$PrismaModel>
|
|
73877
|
-
not?: NestedEnumActivityActionTypeWithAggregatesFilter<$PrismaModel> | $Enums.ActivityActionType
|
|
73878
|
-
_count?: NestedIntFilter<$PrismaModel>
|
|
73879
|
-
_min?: NestedEnumActivityActionTypeFilter<$PrismaModel>
|
|
73880
|
-
_max?: NestedEnumActivityActionTypeFilter<$PrismaModel>
|
|
73881
|
-
}
|
|
73882
73985
|
export type NestedJsonNullableFilter<$PrismaModel = never> =
|
|
73883
73986
|
| PatchUndefined<
|
|
73884
73987
|
Either<Required<NestedJsonNullableFilterBase<$PrismaModel>>, Exclude<keyof Required<NestedJsonNullableFilterBase<$PrismaModel>>, 'path'>>,
|
|
@@ -74578,12 +74681,12 @@ export namespace Prisma {
|
|
|
74578
74681
|
reviewer_assessments?: AssessmentCreateNestedManyWithoutReviewerInput
|
|
74579
74682
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
74580
74683
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
74581
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
74582
74684
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
74583
74685
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
74584
74686
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
74585
74687
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
74586
74688
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
74689
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
74587
74690
|
}
|
|
74588
74691
|
|
|
74589
74692
|
export type UserUncheckedCreateWithoutCandidateResponsesInput = {
|
|
@@ -74636,12 +74739,12 @@ export namespace Prisma {
|
|
|
74636
74739
|
reviewer_assessments?: AssessmentUncheckedCreateNestedManyWithoutReviewerInput
|
|
74637
74740
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
74638
74741
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
74639
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
74640
74742
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
74641
74743
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
74642
74744
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
74643
74745
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
74644
74746
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
74747
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
74645
74748
|
}
|
|
74646
74749
|
|
|
74647
74750
|
export type UserCreateOrConnectWithoutCandidateResponsesInput = {
|
|
@@ -74810,12 +74913,12 @@ export namespace Prisma {
|
|
|
74810
74913
|
reviewer_assessments?: AssessmentUpdateManyWithoutReviewerNestedInput
|
|
74811
74914
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
74812
74915
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
74813
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
74814
74916
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
74815
74917
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
74816
74918
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
74817
74919
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
74818
74920
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
74921
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
74819
74922
|
}
|
|
74820
74923
|
|
|
74821
74924
|
export type UserUncheckedUpdateWithoutCandidateResponsesInput = {
|
|
@@ -74868,12 +74971,12 @@ export namespace Prisma {
|
|
|
74868
74971
|
reviewer_assessments?: AssessmentUncheckedUpdateManyWithoutReviewerNestedInput
|
|
74869
74972
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
74870
74973
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
74871
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
74872
74974
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
74873
74975
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
74874
74976
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
74875
74977
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
74876
74978
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
74979
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
74877
74980
|
}
|
|
74878
74981
|
|
|
74879
74982
|
export type OrganisationCreateWithoutUser_rolesInput = {
|
|
@@ -75024,12 +75127,12 @@ export namespace Prisma {
|
|
|
75024
75127
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
75025
75128
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
75026
75129
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
75027
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
75028
75130
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
75029
75131
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
75030
75132
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
75031
75133
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
75032
75134
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
75135
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
75033
75136
|
}
|
|
75034
75137
|
|
|
75035
75138
|
export type UserUncheckedCreateWithoutRoleInput = {
|
|
@@ -75082,12 +75185,12 @@ export namespace Prisma {
|
|
|
75082
75185
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
75083
75186
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
75084
75187
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
75085
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
75086
75188
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
75087
75189
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
75088
75190
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
75089
75191
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
75090
75192
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
75193
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
75091
75194
|
}
|
|
75092
75195
|
|
|
75093
75196
|
export type UserCreateOrConnectWithoutRoleInput = {
|
|
@@ -75315,11 +75418,11 @@ export namespace Prisma {
|
|
|
75315
75418
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
75316
75419
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
75317
75420
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
75318
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
75319
75421
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
75320
75422
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
75321
75423
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
75322
75424
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
75425
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
75323
75426
|
}
|
|
75324
75427
|
|
|
75325
75428
|
export type UserUncheckedCreateWithoutActionsInput = {
|
|
@@ -75373,11 +75476,11 @@ export namespace Prisma {
|
|
|
75373
75476
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
75374
75477
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
75375
75478
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
75376
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
75377
75479
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
75378
75480
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
75379
75481
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
75380
75482
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
75483
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
75381
75484
|
}
|
|
75382
75485
|
|
|
75383
75486
|
export type UserCreateOrConnectWithoutActionsInput = {
|
|
@@ -75518,11 +75621,11 @@ export namespace Prisma {
|
|
|
75518
75621
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
75519
75622
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
75520
75623
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
75521
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
75522
75624
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
75523
75625
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
75524
75626
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
75525
75627
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
75628
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
75526
75629
|
}
|
|
75527
75630
|
|
|
75528
75631
|
export type UserUncheckedUpdateWithoutActionsInput = {
|
|
@@ -75576,11 +75679,11 @@ export namespace Prisma {
|
|
|
75576
75679
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75577
75680
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75578
75681
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75579
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75580
75682
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
75581
75683
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
75582
75684
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
75583
75685
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75686
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
75584
75687
|
}
|
|
75585
75688
|
|
|
75586
75689
|
export type OrganisationUpsertWithoutActionsInput = {
|
|
@@ -75660,7 +75763,7 @@ export namespace Prisma {
|
|
|
75660
75763
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
75661
75764
|
}
|
|
75662
75765
|
|
|
75663
|
-
export type
|
|
75766
|
+
export type UserCreateWithoutActor_activity_logsInput = {
|
|
75664
75767
|
id?: string
|
|
75665
75768
|
email: string
|
|
75666
75769
|
password: string
|
|
@@ -75711,14 +75814,14 @@ export namespace Prisma {
|
|
|
75711
75814
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
75712
75815
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
75713
75816
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
75714
|
-
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
75715
75817
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
75716
75818
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
75717
75819
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
75718
75820
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
75821
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
75719
75822
|
}
|
|
75720
75823
|
|
|
75721
|
-
export type
|
|
75824
|
+
export type UserUncheckedCreateWithoutActor_activity_logsInput = {
|
|
75722
75825
|
id?: string
|
|
75723
75826
|
email: string
|
|
75724
75827
|
password: string
|
|
@@ -75769,19 +75872,68 @@ export namespace Prisma {
|
|
|
75769
75872
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
75770
75873
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
75771
75874
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
75772
|
-
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
75773
75875
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
75774
75876
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
75775
75877
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
75776
75878
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
75879
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
75777
75880
|
}
|
|
75778
75881
|
|
|
75779
|
-
export type
|
|
75882
|
+
export type UserCreateOrConnectWithoutActor_activity_logsInput = {
|
|
75780
75883
|
where: UserWhereUniqueInput
|
|
75781
|
-
create: XOR<
|
|
75884
|
+
create: XOR<UserCreateWithoutActor_activity_logsInput, UserUncheckedCreateWithoutActor_activity_logsInput>
|
|
75782
75885
|
}
|
|
75783
75886
|
|
|
75784
|
-
export type
|
|
75887
|
+
export type ApplicationCreateWithoutActivity_logsInput = {
|
|
75888
|
+
id?: string
|
|
75889
|
+
status?: $Enums.ApplicationStatus
|
|
75890
|
+
fit_check_score?: number | null
|
|
75891
|
+
fit_check_status?: $Enums.FitCheckStatus | null
|
|
75892
|
+
applied_at?: Date | string
|
|
75893
|
+
round_no?: number
|
|
75894
|
+
created_at?: Date | string
|
|
75895
|
+
updated_at?: Date | string
|
|
75896
|
+
created_by: string
|
|
75897
|
+
updated_by: string
|
|
75898
|
+
is_active?: boolean
|
|
75899
|
+
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
75900
|
+
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
75901
|
+
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
75902
|
+
resume: ResumeCreateNestedOneWithoutApplicationsInput
|
|
75903
|
+
job_description: JobDescriptionCreateNestedOneWithoutApplicationsInput
|
|
75904
|
+
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
75905
|
+
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
75906
|
+
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
75907
|
+
}
|
|
75908
|
+
|
|
75909
|
+
export type ApplicationUncheckedCreateWithoutActivity_logsInput = {
|
|
75910
|
+
id?: string
|
|
75911
|
+
candidate_id: string
|
|
75912
|
+
resume_id: string
|
|
75913
|
+
organisation_id: string
|
|
75914
|
+
job_description_id: string
|
|
75915
|
+
status?: $Enums.ApplicationStatus
|
|
75916
|
+
fit_check_score?: number | null
|
|
75917
|
+
fit_check_status?: $Enums.FitCheckStatus | null
|
|
75918
|
+
applied_at?: Date | string
|
|
75919
|
+
evaluation_plan_id?: string | null
|
|
75920
|
+
fit_check_id?: string | null
|
|
75921
|
+
round_no?: number
|
|
75922
|
+
created_at?: Date | string
|
|
75923
|
+
updated_at?: Date | string
|
|
75924
|
+
created_by: string
|
|
75925
|
+
updated_by: string
|
|
75926
|
+
is_active?: boolean
|
|
75927
|
+
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
75928
|
+
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
75929
|
+
}
|
|
75930
|
+
|
|
75931
|
+
export type ApplicationCreateOrConnectWithoutActivity_logsInput = {
|
|
75932
|
+
where: ApplicationWhereUniqueInput
|
|
75933
|
+
create: XOR<ApplicationCreateWithoutActivity_logsInput, ApplicationUncheckedCreateWithoutActivity_logsInput>
|
|
75934
|
+
}
|
|
75935
|
+
|
|
75936
|
+
export type UserCreateWithoutActivityLogsInput = {
|
|
75785
75937
|
id?: string
|
|
75786
75938
|
email: string
|
|
75787
75939
|
password: string
|
|
@@ -75832,14 +75984,14 @@ export namespace Prisma {
|
|
|
75832
75984
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
75833
75985
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
75834
75986
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
75835
|
-
|
|
75987
|
+
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
75836
75988
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
75837
75989
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
75838
75990
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
75839
75991
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
75840
75992
|
}
|
|
75841
75993
|
|
|
75842
|
-
export type
|
|
75994
|
+
export type UserUncheckedCreateWithoutActivityLogsInput = {
|
|
75843
75995
|
id?: string
|
|
75844
75996
|
email: string
|
|
75845
75997
|
password: string
|
|
@@ -75890,30 +76042,30 @@ export namespace Prisma {
|
|
|
75890
76042
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
75891
76043
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
75892
76044
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
75893
|
-
|
|
76045
|
+
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
75894
76046
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
75895
76047
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
75896
76048
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
75897
76049
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
75898
76050
|
}
|
|
75899
76051
|
|
|
75900
|
-
export type
|
|
76052
|
+
export type UserCreateOrConnectWithoutActivityLogsInput = {
|
|
75901
76053
|
where: UserWhereUniqueInput
|
|
75902
|
-
create: XOR<
|
|
76054
|
+
create: XOR<UserCreateWithoutActivityLogsInput, UserUncheckedCreateWithoutActivityLogsInput>
|
|
75903
76055
|
}
|
|
75904
76056
|
|
|
75905
|
-
export type
|
|
75906
|
-
update: XOR<
|
|
75907
|
-
create: XOR<
|
|
76057
|
+
export type UserUpsertWithoutActor_activity_logsInput = {
|
|
76058
|
+
update: XOR<UserUpdateWithoutActor_activity_logsInput, UserUncheckedUpdateWithoutActor_activity_logsInput>
|
|
76059
|
+
create: XOR<UserCreateWithoutActor_activity_logsInput, UserUncheckedCreateWithoutActor_activity_logsInput>
|
|
75908
76060
|
where?: UserWhereInput
|
|
75909
76061
|
}
|
|
75910
76062
|
|
|
75911
|
-
export type
|
|
76063
|
+
export type UserUpdateToOneWithWhereWithoutActor_activity_logsInput = {
|
|
75912
76064
|
where?: UserWhereInput
|
|
75913
|
-
data: XOR<
|
|
76065
|
+
data: XOR<UserUpdateWithoutActor_activity_logsInput, UserUncheckedUpdateWithoutActor_activity_logsInput>
|
|
75914
76066
|
}
|
|
75915
76067
|
|
|
75916
|
-
export type
|
|
76068
|
+
export type UserUpdateWithoutActor_activity_logsInput = {
|
|
75917
76069
|
id?: StringFieldUpdateOperationsInput | string
|
|
75918
76070
|
email?: StringFieldUpdateOperationsInput | string
|
|
75919
76071
|
password?: StringFieldUpdateOperationsInput | string
|
|
@@ -75964,14 +76116,14 @@ export namespace Prisma {
|
|
|
75964
76116
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
75965
76117
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
75966
76118
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
75967
|
-
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
75968
76119
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
75969
76120
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
75970
76121
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
75971
76122
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
76123
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
75972
76124
|
}
|
|
75973
76125
|
|
|
75974
|
-
export type
|
|
76126
|
+
export type UserUncheckedUpdateWithoutActor_activity_logsInput = {
|
|
75975
76127
|
id?: StringFieldUpdateOperationsInput | string
|
|
75976
76128
|
email?: StringFieldUpdateOperationsInput | string
|
|
75977
76129
|
password?: StringFieldUpdateOperationsInput | string
|
|
@@ -76022,25 +76174,80 @@ export namespace Prisma {
|
|
|
76022
76174
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76023
76175
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76024
76176
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76025
|
-
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
76026
76177
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
76027
76178
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
76028
76179
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
76029
76180
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76181
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
76030
76182
|
}
|
|
76031
76183
|
|
|
76032
|
-
export type
|
|
76033
|
-
update: XOR<
|
|
76034
|
-
create: XOR<
|
|
76184
|
+
export type ApplicationUpsertWithoutActivity_logsInput = {
|
|
76185
|
+
update: XOR<ApplicationUpdateWithoutActivity_logsInput, ApplicationUncheckedUpdateWithoutActivity_logsInput>
|
|
76186
|
+
create: XOR<ApplicationCreateWithoutActivity_logsInput, ApplicationUncheckedCreateWithoutActivity_logsInput>
|
|
76187
|
+
where?: ApplicationWhereInput
|
|
76188
|
+
}
|
|
76189
|
+
|
|
76190
|
+
export type ApplicationUpdateToOneWithWhereWithoutActivity_logsInput = {
|
|
76191
|
+
where?: ApplicationWhereInput
|
|
76192
|
+
data: XOR<ApplicationUpdateWithoutActivity_logsInput, ApplicationUncheckedUpdateWithoutActivity_logsInput>
|
|
76193
|
+
}
|
|
76194
|
+
|
|
76195
|
+
export type ApplicationUpdateWithoutActivity_logsInput = {
|
|
76196
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
76197
|
+
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
76198
|
+
fit_check_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
76199
|
+
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
76200
|
+
applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76201
|
+
round_no?: IntFieldUpdateOperationsInput | number
|
|
76202
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76203
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76204
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
76205
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
76206
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76207
|
+
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
76208
|
+
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
76209
|
+
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
76210
|
+
resume?: ResumeUpdateOneRequiredWithoutApplicationsNestedInput
|
|
76211
|
+
job_description?: JobDescriptionUpdateOneRequiredWithoutApplicationsNestedInput
|
|
76212
|
+
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
76213
|
+
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
76214
|
+
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
76215
|
+
}
|
|
76216
|
+
|
|
76217
|
+
export type ApplicationUncheckedUpdateWithoutActivity_logsInput = {
|
|
76218
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
76219
|
+
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
76220
|
+
resume_id?: StringFieldUpdateOperationsInput | string
|
|
76221
|
+
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
76222
|
+
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
76223
|
+
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
76224
|
+
fit_check_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
76225
|
+
fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
|
|
76226
|
+
applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76227
|
+
evaluation_plan_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76228
|
+
fit_check_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76229
|
+
round_no?: IntFieldUpdateOperationsInput | number
|
|
76230
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76231
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76232
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
76233
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
76234
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76235
|
+
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
76236
|
+
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
76237
|
+
}
|
|
76238
|
+
|
|
76239
|
+
export type UserUpsertWithoutActivityLogsInput = {
|
|
76240
|
+
update: XOR<UserUpdateWithoutActivityLogsInput, UserUncheckedUpdateWithoutActivityLogsInput>
|
|
76241
|
+
create: XOR<UserCreateWithoutActivityLogsInput, UserUncheckedCreateWithoutActivityLogsInput>
|
|
76035
76242
|
where?: UserWhereInput
|
|
76036
76243
|
}
|
|
76037
76244
|
|
|
76038
|
-
export type
|
|
76245
|
+
export type UserUpdateToOneWithWhereWithoutActivityLogsInput = {
|
|
76039
76246
|
where?: UserWhereInput
|
|
76040
|
-
data: XOR<
|
|
76247
|
+
data: XOR<UserUpdateWithoutActivityLogsInput, UserUncheckedUpdateWithoutActivityLogsInput>
|
|
76041
76248
|
}
|
|
76042
76249
|
|
|
76043
|
-
export type
|
|
76250
|
+
export type UserUpdateWithoutActivityLogsInput = {
|
|
76044
76251
|
id?: StringFieldUpdateOperationsInput | string
|
|
76045
76252
|
email?: StringFieldUpdateOperationsInput | string
|
|
76046
76253
|
password?: StringFieldUpdateOperationsInput | string
|
|
@@ -76091,14 +76298,14 @@ export namespace Prisma {
|
|
|
76091
76298
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
76092
76299
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
76093
76300
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
76094
|
-
|
|
76301
|
+
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
76095
76302
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
76096
76303
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
76097
76304
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
76098
76305
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
76099
76306
|
}
|
|
76100
76307
|
|
|
76101
|
-
export type
|
|
76308
|
+
export type UserUncheckedUpdateWithoutActivityLogsInput = {
|
|
76102
76309
|
id?: StringFieldUpdateOperationsInput | string
|
|
76103
76310
|
email?: StringFieldUpdateOperationsInput | string
|
|
76104
76311
|
password?: StringFieldUpdateOperationsInput | string
|
|
@@ -76149,7 +76356,7 @@ export namespace Prisma {
|
|
|
76149
76356
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76150
76357
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76151
76358
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76152
|
-
|
|
76359
|
+
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
76153
76360
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
76154
76361
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
76155
76362
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
@@ -76267,12 +76474,12 @@ export namespace Prisma {
|
|
|
76267
76474
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
76268
76475
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
76269
76476
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
76270
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
76271
76477
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
76272
76478
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
76273
76479
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
76274
76480
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
76275
76481
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
76482
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
76276
76483
|
}
|
|
76277
76484
|
|
|
76278
76485
|
export type UserUncheckedCreateWithoutApplicationsInput = {
|
|
@@ -76325,12 +76532,12 @@ export namespace Prisma {
|
|
|
76325
76532
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
76326
76533
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
76327
76534
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
76328
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
76329
76535
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
76330
76536
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
76331
76537
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
76332
76538
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
76333
76539
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
76540
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
76334
76541
|
}
|
|
76335
76542
|
|
|
76336
76543
|
export type UserCreateOrConnectWithoutApplicationsInput = {
|
|
@@ -76417,6 +76624,7 @@ export namespace Prisma {
|
|
|
76417
76624
|
created_by: string
|
|
76418
76625
|
updated_by: string
|
|
76419
76626
|
is_active?: boolean
|
|
76627
|
+
name?: string | null
|
|
76420
76628
|
yearsOfExperience?: number | null
|
|
76421
76629
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
76422
76630
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
@@ -76439,6 +76647,7 @@ export namespace Prisma {
|
|
|
76439
76647
|
created_by: string
|
|
76440
76648
|
updated_by: string
|
|
76441
76649
|
is_active?: boolean
|
|
76650
|
+
name?: string | null
|
|
76442
76651
|
yearsOfExperience?: number | null
|
|
76443
76652
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
76444
76653
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -76742,6 +76951,40 @@ export namespace Prisma {
|
|
|
76742
76951
|
skipDuplicates?: boolean
|
|
76743
76952
|
}
|
|
76744
76953
|
|
|
76954
|
+
export type ActivityLogCreateWithoutApplicationInput = {
|
|
76955
|
+
id?: string
|
|
76956
|
+
actor_type?: $Enums.ActivityActorType
|
|
76957
|
+
message: string
|
|
76958
|
+
timestamp?: Date | string
|
|
76959
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
76960
|
+
created_at?: Date | string
|
|
76961
|
+
is_active?: boolean
|
|
76962
|
+
actor?: UserCreateNestedOneWithoutActor_activity_logsInput
|
|
76963
|
+
user?: UserCreateNestedOneWithoutActivityLogsInput
|
|
76964
|
+
}
|
|
76965
|
+
|
|
76966
|
+
export type ActivityLogUncheckedCreateWithoutApplicationInput = {
|
|
76967
|
+
id?: string
|
|
76968
|
+
actor_id?: string | null
|
|
76969
|
+
actor_type?: $Enums.ActivityActorType
|
|
76970
|
+
message: string
|
|
76971
|
+
timestamp?: Date | string
|
|
76972
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
76973
|
+
created_at?: Date | string
|
|
76974
|
+
is_active?: boolean
|
|
76975
|
+
userId?: string | null
|
|
76976
|
+
}
|
|
76977
|
+
|
|
76978
|
+
export type ActivityLogCreateOrConnectWithoutApplicationInput = {
|
|
76979
|
+
where: ActivityLogWhereUniqueInput
|
|
76980
|
+
create: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput>
|
|
76981
|
+
}
|
|
76982
|
+
|
|
76983
|
+
export type ActivityLogCreateManyApplicationInputEnvelope = {
|
|
76984
|
+
data: ActivityLogCreateManyApplicationInput | ActivityLogCreateManyApplicationInput[]
|
|
76985
|
+
skipDuplicates?: boolean
|
|
76986
|
+
}
|
|
76987
|
+
|
|
76745
76988
|
export type EvaluationPlanUpsertWithoutApplicationsInput = {
|
|
76746
76989
|
update: XOR<EvaluationPlanUpdateWithoutApplicationsInput, EvaluationPlanUncheckedUpdateWithoutApplicationsInput>
|
|
76747
76990
|
create: XOR<EvaluationPlanCreateWithoutApplicationsInput, EvaluationPlanUncheckedCreateWithoutApplicationsInput>
|
|
@@ -76870,12 +77113,12 @@ export namespace Prisma {
|
|
|
76870
77113
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
76871
77114
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
76872
77115
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
76873
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
76874
77116
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
76875
77117
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
76876
77118
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
76877
77119
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
76878
77120
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
77121
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
76879
77122
|
}
|
|
76880
77123
|
|
|
76881
77124
|
export type UserUncheckedUpdateWithoutApplicationsInput = {
|
|
@@ -76928,12 +77171,12 @@ export namespace Prisma {
|
|
|
76928
77171
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76929
77172
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76930
77173
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76931
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76932
77174
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
76933
77175
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
76934
77176
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
76935
77177
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
76936
77178
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
77179
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
76937
77180
|
}
|
|
76938
77181
|
|
|
76939
77182
|
export type OrganisationUpsertWithoutApplicationsInput = {
|
|
@@ -77032,6 +77275,7 @@ export namespace Prisma {
|
|
|
77032
77275
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
77033
77276
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
77034
77277
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
77278
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77035
77279
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
77036
77280
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
77037
77281
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
@@ -77054,6 +77298,7 @@ export namespace Prisma {
|
|
|
77054
77298
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
77055
77299
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
77056
77300
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
77301
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
77057
77302
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
77058
77303
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
77059
77304
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -77312,6 +77557,38 @@ export namespace Prisma {
|
|
|
77312
77557
|
details?: JsonNullableFilter<"OngoingEvaluation">
|
|
77313
77558
|
}
|
|
77314
77559
|
|
|
77560
|
+
export type ActivityLogUpsertWithWhereUniqueWithoutApplicationInput = {
|
|
77561
|
+
where: ActivityLogWhereUniqueInput
|
|
77562
|
+
update: XOR<ActivityLogUpdateWithoutApplicationInput, ActivityLogUncheckedUpdateWithoutApplicationInput>
|
|
77563
|
+
create: XOR<ActivityLogCreateWithoutApplicationInput, ActivityLogUncheckedCreateWithoutApplicationInput>
|
|
77564
|
+
}
|
|
77565
|
+
|
|
77566
|
+
export type ActivityLogUpdateWithWhereUniqueWithoutApplicationInput = {
|
|
77567
|
+
where: ActivityLogWhereUniqueInput
|
|
77568
|
+
data: XOR<ActivityLogUpdateWithoutApplicationInput, ActivityLogUncheckedUpdateWithoutApplicationInput>
|
|
77569
|
+
}
|
|
77570
|
+
|
|
77571
|
+
export type ActivityLogUpdateManyWithWhereWithoutApplicationInput = {
|
|
77572
|
+
where: ActivityLogScalarWhereInput
|
|
77573
|
+
data: XOR<ActivityLogUpdateManyMutationInput, ActivityLogUncheckedUpdateManyWithoutApplicationInput>
|
|
77574
|
+
}
|
|
77575
|
+
|
|
77576
|
+
export type ActivityLogScalarWhereInput = {
|
|
77577
|
+
AND?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
77578
|
+
OR?: ActivityLogScalarWhereInput[]
|
|
77579
|
+
NOT?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
77580
|
+
id?: StringFilter<"ActivityLog"> | string
|
|
77581
|
+
application_id?: StringFilter<"ActivityLog"> | string
|
|
77582
|
+
actor_id?: StringNullableFilter<"ActivityLog"> | string | null
|
|
77583
|
+
actor_type?: EnumActivityActorTypeFilter<"ActivityLog"> | $Enums.ActivityActorType
|
|
77584
|
+
message?: StringFilter<"ActivityLog"> | string
|
|
77585
|
+
timestamp?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
77586
|
+
metadata?: JsonNullableFilter<"ActivityLog">
|
|
77587
|
+
created_at?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
77588
|
+
is_active?: BoolFilter<"ActivityLog"> | boolean
|
|
77589
|
+
userId?: StringNullableFilter<"ActivityLog"> | string | null
|
|
77590
|
+
}
|
|
77591
|
+
|
|
77315
77592
|
export type JobDescriptionCreateWithoutApprovalsInput = {
|
|
77316
77593
|
id?: string
|
|
77317
77594
|
status?: $Enums.JobDescriptionStatus
|
|
@@ -77429,12 +77706,12 @@ export namespace Prisma {
|
|
|
77429
77706
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
77430
77707
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
77431
77708
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
77432
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
77433
77709
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
77434
77710
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
77435
77711
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
77436
77712
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
77437
77713
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
77714
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
77438
77715
|
}
|
|
77439
77716
|
|
|
77440
77717
|
export type UserUncheckedCreateWithoutApprovalsInput = {
|
|
@@ -77487,12 +77764,12 @@ export namespace Prisma {
|
|
|
77487
77764
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
77488
77765
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
77489
77766
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
77490
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
77491
77767
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
77492
77768
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
77493
77769
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
77494
77770
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
77495
77771
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
77772
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
77496
77773
|
}
|
|
77497
77774
|
|
|
77498
77775
|
export type UserCreateOrConnectWithoutApprovalsInput = {
|
|
@@ -77705,12 +77982,12 @@ export namespace Prisma {
|
|
|
77705
77982
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
77706
77983
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
77707
77984
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
77708
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
77709
77985
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
77710
77986
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
77711
77987
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
77712
77988
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
77713
77989
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
77990
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
77714
77991
|
}
|
|
77715
77992
|
|
|
77716
77993
|
export type UserUncheckedUpdateWithoutApprovalsInput = {
|
|
@@ -77763,12 +78040,12 @@ export namespace Prisma {
|
|
|
77763
78040
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
77764
78041
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
77765
78042
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
77766
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
77767
78043
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
77768
78044
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
77769
78045
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
77770
78046
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
77771
78047
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78048
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
77772
78049
|
}
|
|
77773
78050
|
|
|
77774
78051
|
export type OrganisationUpsertWithoutApprovalsInput = {
|
|
@@ -77943,12 +78220,12 @@ export namespace Prisma {
|
|
|
77943
78220
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
77944
78221
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
77945
78222
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
77946
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
77947
78223
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
77948
78224
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
77949
78225
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
77950
78226
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
77951
78227
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
78228
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
77952
78229
|
}
|
|
77953
78230
|
|
|
77954
78231
|
export type UserUncheckedCreateWithoutCandidate_assessmentsInput = {
|
|
@@ -78001,12 +78278,12 @@ export namespace Prisma {
|
|
|
78001
78278
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
78002
78279
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
78003
78280
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
78004
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
78005
78281
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
78006
78282
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
78007
78283
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
78008
78284
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
78009
78285
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
78286
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
78010
78287
|
}
|
|
78011
78288
|
|
|
78012
78289
|
export type UserCreateOrConnectWithoutCandidate_assessmentsInput = {
|
|
@@ -78064,12 +78341,12 @@ export namespace Prisma {
|
|
|
78064
78341
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
78065
78342
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
78066
78343
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
78067
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
78068
78344
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
78069
78345
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
78070
78346
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
78071
78347
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
78072
78348
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
78349
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
78073
78350
|
}
|
|
78074
78351
|
|
|
78075
78352
|
export type UserUncheckedCreateWithoutReviewer_assessmentsInput = {
|
|
@@ -78122,12 +78399,12 @@ export namespace Prisma {
|
|
|
78122
78399
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
78123
78400
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
78124
78401
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
78125
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
78126
78402
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
78127
78403
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
78128
78404
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
78129
78405
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
78130
78406
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
78407
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
78131
78408
|
}
|
|
78132
78409
|
|
|
78133
78410
|
export type UserCreateOrConnectWithoutReviewer_assessmentsInput = {
|
|
@@ -78288,12 +78565,12 @@ export namespace Prisma {
|
|
|
78288
78565
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
78289
78566
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
78290
78567
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
78291
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
78292
78568
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
78293
78569
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
78294
78570
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
78295
78571
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
78296
78572
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
78573
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
78297
78574
|
}
|
|
78298
78575
|
|
|
78299
78576
|
export type UserUncheckedCreateWithoutAssessment_resultsInput = {
|
|
@@ -78346,12 +78623,12 @@ export namespace Prisma {
|
|
|
78346
78623
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
78347
78624
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
78348
78625
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
78349
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
78350
78626
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
78351
78627
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
78352
78628
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
78353
78629
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
78354
78630
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
78631
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
78355
78632
|
}
|
|
78356
78633
|
|
|
78357
78634
|
export type UserCreateOrConnectWithoutAssessment_resultsInput = {
|
|
@@ -78471,12 +78748,12 @@ export namespace Prisma {
|
|
|
78471
78748
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
78472
78749
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
78473
78750
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
78474
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
78475
78751
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
78476
78752
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
78477
78753
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
78478
78754
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
78479
78755
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
78756
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
78480
78757
|
}
|
|
78481
78758
|
|
|
78482
78759
|
export type UserUncheckedUpdateWithoutCandidate_assessmentsInput = {
|
|
@@ -78529,12 +78806,12 @@ export namespace Prisma {
|
|
|
78529
78806
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78530
78807
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78531
78808
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78532
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78533
78809
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
78534
78810
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
78535
78811
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
78536
78812
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
78537
78813
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78814
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
78538
78815
|
}
|
|
78539
78816
|
|
|
78540
78817
|
export type UserUpsertWithoutReviewer_assessmentsInput = {
|
|
@@ -78598,12 +78875,12 @@ export namespace Prisma {
|
|
|
78598
78875
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
78599
78876
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
78600
78877
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
78601
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
78602
78878
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
78603
78879
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
78604
78880
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
78605
78881
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
78606
78882
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
78883
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
78607
78884
|
}
|
|
78608
78885
|
|
|
78609
78886
|
export type UserUncheckedUpdateWithoutReviewer_assessmentsInput = {
|
|
@@ -78656,12 +78933,12 @@ export namespace Prisma {
|
|
|
78656
78933
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78657
78934
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78658
78935
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78659
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78660
78936
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
78661
78937
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
78662
78938
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
78663
78939
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
78664
78940
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78941
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
78665
78942
|
}
|
|
78666
78943
|
|
|
78667
78944
|
export type AssessmentQuestionUpsertWithWhereUniqueWithoutAssessmentInput = {
|
|
@@ -78835,12 +79112,12 @@ export namespace Prisma {
|
|
|
78835
79112
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
78836
79113
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
78837
79114
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
78838
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
78839
79115
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
78840
79116
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
78841
79117
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
78842
79118
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
78843
79119
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
79120
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
78844
79121
|
}
|
|
78845
79122
|
|
|
78846
79123
|
export type UserUncheckedUpdateWithoutAssessment_resultsInput = {
|
|
@@ -78893,12 +79170,12 @@ export namespace Prisma {
|
|
|
78893
79170
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78894
79171
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78895
79172
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78896
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78897
79173
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
78898
79174
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
78899
79175
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
78900
79176
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
78901
79177
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
79178
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
78902
79179
|
}
|
|
78903
79180
|
|
|
78904
79181
|
export type OrganisationCreateWithoutAssessment_libraryInput = {
|
|
@@ -80080,11 +80357,11 @@ export namespace Prisma {
|
|
|
80080
80357
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
80081
80358
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
80082
80359
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
80083
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
80084
80360
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
80085
80361
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
80086
80362
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
80087
80363
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
80364
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
80088
80365
|
}
|
|
80089
80366
|
|
|
80090
80367
|
export type UserUncheckedCreateWithoutCalendlyInput = {
|
|
@@ -80138,11 +80415,11 @@ export namespace Prisma {
|
|
|
80138
80415
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
80139
80416
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
80140
80417
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
80141
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
80142
80418
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
80143
80419
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
80144
80420
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
80145
80421
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
80422
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
80146
80423
|
}
|
|
80147
80424
|
|
|
80148
80425
|
export type UserCreateOrConnectWithoutCalendlyInput = {
|
|
@@ -80212,11 +80489,11 @@ export namespace Prisma {
|
|
|
80212
80489
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
80213
80490
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
80214
80491
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
80215
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
80216
80492
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
80217
80493
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
80218
80494
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
80219
80495
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
80496
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
80220
80497
|
}
|
|
80221
80498
|
|
|
80222
80499
|
export type UserUncheckedUpdateWithoutCalendlyInput = {
|
|
@@ -80270,11 +80547,11 @@ export namespace Prisma {
|
|
|
80270
80547
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80271
80548
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80272
80549
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80273
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80274
80550
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
80275
80551
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
80276
80552
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
80277
80553
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80554
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
80278
80555
|
}
|
|
80279
80556
|
|
|
80280
80557
|
export type UserCreateWithoutCandidate_profileInput = {
|
|
@@ -80327,12 +80604,12 @@ export namespace Prisma {
|
|
|
80327
80604
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
80328
80605
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
80329
80606
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
80330
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
80331
80607
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
80332
80608
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
80333
80609
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
80334
80610
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
80335
80611
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
80612
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
80336
80613
|
}
|
|
80337
80614
|
|
|
80338
80615
|
export type UserUncheckedCreateWithoutCandidate_profileInput = {
|
|
@@ -80385,12 +80662,12 @@ export namespace Prisma {
|
|
|
80385
80662
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
80386
80663
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
80387
80664
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
80388
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
80389
80665
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
80390
80666
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
80391
80667
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
80392
80668
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
80393
80669
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
80670
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
80394
80671
|
}
|
|
80395
80672
|
|
|
80396
80673
|
export type UserCreateOrConnectWithoutCandidate_profileInput = {
|
|
@@ -80406,6 +80683,7 @@ export namespace Prisma {
|
|
|
80406
80683
|
created_by: string
|
|
80407
80684
|
updated_by: string
|
|
80408
80685
|
is_active?: boolean
|
|
80686
|
+
name?: string | null
|
|
80409
80687
|
yearsOfExperience?: number | null
|
|
80410
80688
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
80411
80689
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
@@ -80428,6 +80706,7 @@ export namespace Prisma {
|
|
|
80428
80706
|
created_by: string
|
|
80429
80707
|
updated_by: string
|
|
80430
80708
|
is_active?: boolean
|
|
80709
|
+
name?: string | null
|
|
80431
80710
|
yearsOfExperience?: number | null
|
|
80432
80711
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
80433
80712
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -80502,12 +80781,12 @@ export namespace Prisma {
|
|
|
80502
80781
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
80503
80782
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
80504
80783
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
80505
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
80506
80784
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
80507
80785
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
80508
80786
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
80509
80787
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
80510
80788
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
80789
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
80511
80790
|
}
|
|
80512
80791
|
|
|
80513
80792
|
export type UserUncheckedUpdateWithoutCandidate_profileInput = {
|
|
@@ -80560,12 +80839,12 @@ export namespace Prisma {
|
|
|
80560
80839
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80561
80840
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80562
80841
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80563
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80564
80842
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
80565
80843
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
80566
80844
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
80567
80845
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
80568
80846
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80847
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
80569
80848
|
}
|
|
80570
80849
|
|
|
80571
80850
|
export type ResumeUpsertWithoutCandidate_profileInput = {
|
|
@@ -80587,6 +80866,7 @@ export namespace Prisma {
|
|
|
80587
80866
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
80588
80867
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
80589
80868
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
80869
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80590
80870
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
80591
80871
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
80592
80872
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
@@ -80609,6 +80889,7 @@ export namespace Prisma {
|
|
|
80609
80889
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
80610
80890
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
80611
80891
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
80892
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80612
80893
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
80613
80894
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
80614
80895
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -80876,6 +81157,7 @@ export namespace Prisma {
|
|
|
80876
81157
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
80877
81158
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
80878
81159
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
81160
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
80879
81161
|
}
|
|
80880
81162
|
|
|
80881
81163
|
export type ApplicationUncheckedCreateWithoutEvaluation_planInput = {
|
|
@@ -80897,6 +81179,7 @@ export namespace Prisma {
|
|
|
80897
81179
|
is_active?: boolean
|
|
80898
81180
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
80899
81181
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
81182
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
80900
81183
|
}
|
|
80901
81184
|
|
|
80902
81185
|
export type ApplicationCreateOrConnectWithoutEvaluation_planInput = {
|
|
@@ -81616,11 +81899,11 @@ export namespace Prisma {
|
|
|
81616
81899
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
81617
81900
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
81618
81901
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
81619
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
81620
81902
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
81621
81903
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
81622
81904
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
81623
81905
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
81906
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
81624
81907
|
}
|
|
81625
81908
|
|
|
81626
81909
|
export type UserUncheckedCreateWithoutFitChecksInput = {
|
|
@@ -81674,11 +81957,11 @@ export namespace Prisma {
|
|
|
81674
81957
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
81675
81958
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
81676
81959
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
81677
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
81678
81960
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
81679
81961
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
81680
81962
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
81681
81963
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
81964
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
81682
81965
|
}
|
|
81683
81966
|
|
|
81684
81967
|
export type UserCreateOrConnectWithoutFitChecksInput = {
|
|
@@ -81694,6 +81977,7 @@ export namespace Prisma {
|
|
|
81694
81977
|
created_by: string
|
|
81695
81978
|
updated_by: string
|
|
81696
81979
|
is_active?: boolean
|
|
81980
|
+
name?: string | null
|
|
81697
81981
|
yearsOfExperience?: number | null
|
|
81698
81982
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
81699
81983
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
@@ -81716,6 +82000,7 @@ export namespace Prisma {
|
|
|
81716
82000
|
created_by: string
|
|
81717
82001
|
updated_by: string
|
|
81718
82002
|
is_active?: boolean
|
|
82003
|
+
name?: string | null
|
|
81719
82004
|
yearsOfExperience?: number | null
|
|
81720
82005
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
81721
82006
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -81815,6 +82100,7 @@ export namespace Prisma {
|
|
|
81815
82100
|
job_description: JobDescriptionCreateNestedOneWithoutApplicationsInput
|
|
81816
82101
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
81817
82102
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
82103
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
81818
82104
|
}
|
|
81819
82105
|
|
|
81820
82106
|
export type ApplicationUncheckedCreateWithoutFit_checkInput = {
|
|
@@ -81836,6 +82122,7 @@ export namespace Prisma {
|
|
|
81836
82122
|
is_active?: boolean
|
|
81837
82123
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
81838
82124
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
82125
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
81839
82126
|
}
|
|
81840
82127
|
|
|
81841
82128
|
export type ApplicationCreateOrConnectWithoutFit_checkInput = {
|
|
@@ -81982,11 +82269,11 @@ export namespace Prisma {
|
|
|
81982
82269
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
81983
82270
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
81984
82271
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
81985
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
81986
82272
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
81987
82273
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
81988
82274
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
81989
82275
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
82276
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
81990
82277
|
}
|
|
81991
82278
|
|
|
81992
82279
|
export type UserUncheckedUpdateWithoutFitChecksInput = {
|
|
@@ -82040,11 +82327,11 @@ export namespace Prisma {
|
|
|
82040
82327
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82041
82328
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82042
82329
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82043
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82044
82330
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
82045
82331
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
82046
82332
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
82047
82333
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
82334
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
82048
82335
|
}
|
|
82049
82336
|
|
|
82050
82337
|
export type ResumeUpsertWithoutFit_checkInput = {
|
|
@@ -82066,6 +82353,7 @@ export namespace Prisma {
|
|
|
82066
82353
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
82067
82354
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
82068
82355
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
82356
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
82069
82357
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
82070
82358
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
82071
82359
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
@@ -82088,6 +82376,7 @@ export namespace Prisma {
|
|
|
82088
82376
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
82089
82377
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
82090
82378
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
82379
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
82091
82380
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
82092
82381
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
82093
82382
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -82199,6 +82488,7 @@ export namespace Prisma {
|
|
|
82199
82488
|
job_description?: JobDescriptionUpdateOneRequiredWithoutApplicationsNestedInput
|
|
82200
82489
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
82201
82490
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
82491
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
82202
82492
|
}
|
|
82203
82493
|
|
|
82204
82494
|
export type ApplicationUncheckedUpdateWithoutFit_checkInput = {
|
|
@@ -82220,6 +82510,7 @@ export namespace Prisma {
|
|
|
82220
82510
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
82221
82511
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
82222
82512
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
82513
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
82223
82514
|
}
|
|
82224
82515
|
|
|
82225
82516
|
export type UserCreateWithoutGoogleInput = {
|
|
@@ -82273,11 +82564,11 @@ export namespace Prisma {
|
|
|
82273
82564
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
82274
82565
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
82275
82566
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
82276
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
82277
82567
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
82278
82568
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
82279
82569
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
82280
82570
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
82571
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
82281
82572
|
}
|
|
82282
82573
|
|
|
82283
82574
|
export type UserUncheckedCreateWithoutGoogleInput = {
|
|
@@ -82331,11 +82622,11 @@ export namespace Prisma {
|
|
|
82331
82622
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
82332
82623
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
82333
82624
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
82334
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
82335
82625
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
82336
82626
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
82337
82627
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
82338
82628
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
82629
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
82339
82630
|
}
|
|
82340
82631
|
|
|
82341
82632
|
export type UserCreateOrConnectWithoutGoogleInput = {
|
|
@@ -82405,11 +82696,11 @@ export namespace Prisma {
|
|
|
82405
82696
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
82406
82697
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
82407
82698
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
82408
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
82409
82699
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
82410
82700
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
82411
82701
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
82412
82702
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
82703
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
82413
82704
|
}
|
|
82414
82705
|
|
|
82415
82706
|
export type UserUncheckedUpdateWithoutGoogleInput = {
|
|
@@ -82463,11 +82754,11 @@ export namespace Prisma {
|
|
|
82463
82754
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82464
82755
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82465
82756
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82466
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82467
82757
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
82468
82758
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
82469
82759
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
82470
82760
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82761
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
82471
82762
|
}
|
|
82472
82763
|
|
|
82473
82764
|
export type InterviewCreateWithoutIntermediateFeedbacksInput = {
|
|
@@ -82829,12 +83120,12 @@ export namespace Prisma {
|
|
|
82829
83120
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
82830
83121
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
82831
83122
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
82832
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
82833
83123
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
82834
83124
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
82835
83125
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
82836
83126
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
82837
83127
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
83128
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
82838
83129
|
}
|
|
82839
83130
|
|
|
82840
83131
|
export type UserUncheckedCreateWithoutCandidate_interviewsInput = {
|
|
@@ -82887,12 +83178,12 @@ export namespace Prisma {
|
|
|
82887
83178
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
82888
83179
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
82889
83180
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
82890
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
82891
83181
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
82892
83182
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
82893
83183
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
82894
83184
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
82895
83185
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
83186
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
82896
83187
|
}
|
|
82897
83188
|
|
|
82898
83189
|
export type UserCreateOrConnectWithoutCandidate_interviewsInput = {
|
|
@@ -82950,12 +83241,12 @@ export namespace Prisma {
|
|
|
82950
83241
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
82951
83242
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
82952
83243
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
82953
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
82954
83244
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
82955
83245
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
82956
83246
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
82957
83247
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
82958
83248
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
83249
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
82959
83250
|
}
|
|
82960
83251
|
|
|
82961
83252
|
export type UserUncheckedCreateWithoutInterviewer_interviewsInput = {
|
|
@@ -83008,12 +83299,12 @@ export namespace Prisma {
|
|
|
83008
83299
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
83009
83300
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
83010
83301
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
83011
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
83012
83302
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
83013
83303
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
83014
83304
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
83015
83305
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
83016
83306
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
83307
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
83017
83308
|
}
|
|
83018
83309
|
|
|
83019
83310
|
export type UserCreateOrConnectWithoutInterviewer_interviewsInput = {
|
|
@@ -83167,6 +83458,7 @@ export namespace Prisma {
|
|
|
83167
83458
|
created_by: string
|
|
83168
83459
|
updated_by: string
|
|
83169
83460
|
is_active?: boolean
|
|
83461
|
+
name?: string | null
|
|
83170
83462
|
yearsOfExperience?: number | null
|
|
83171
83463
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
83172
83464
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
@@ -83189,6 +83481,7 @@ export namespace Prisma {
|
|
|
83189
83481
|
created_by: string
|
|
83190
83482
|
updated_by: string
|
|
83191
83483
|
is_active?: boolean
|
|
83484
|
+
name?: string | null
|
|
83192
83485
|
yearsOfExperience?: number | null
|
|
83193
83486
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
83194
83487
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -83282,6 +83575,7 @@ export namespace Prisma {
|
|
|
83282
83575
|
job_description: JobDescriptionCreateNestedOneWithoutApplicationsInput
|
|
83283
83576
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
83284
83577
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
83578
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
83285
83579
|
}
|
|
83286
83580
|
|
|
83287
83581
|
export type ApplicationUncheckedCreateWithoutInterviewsInput = {
|
|
@@ -83303,6 +83597,7 @@ export namespace Prisma {
|
|
|
83303
83597
|
updated_by: string
|
|
83304
83598
|
is_active?: boolean
|
|
83305
83599
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
83600
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
83306
83601
|
}
|
|
83307
83602
|
|
|
83308
83603
|
export type ApplicationCreateOrConnectWithoutInterviewsInput = {
|
|
@@ -83664,12 +83959,12 @@ export namespace Prisma {
|
|
|
83664
83959
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
83665
83960
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
83666
83961
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
83667
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
83668
83962
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
83669
83963
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
83670
83964
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
83671
83965
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
83672
83966
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
83967
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
83673
83968
|
}
|
|
83674
83969
|
|
|
83675
83970
|
export type UserUncheckedUpdateWithoutCandidate_interviewsInput = {
|
|
@@ -83722,12 +84017,12 @@ export namespace Prisma {
|
|
|
83722
84017
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83723
84018
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83724
84019
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83725
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83726
84020
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
83727
84021
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
83728
84022
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
83729
84023
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
83730
84024
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
84025
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
83731
84026
|
}
|
|
83732
84027
|
|
|
83733
84028
|
export type UserUpsertWithoutInterviewer_interviewsInput = {
|
|
@@ -83791,12 +84086,12 @@ export namespace Prisma {
|
|
|
83791
84086
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
83792
84087
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
83793
84088
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
83794
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
83795
84089
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
83796
84090
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
83797
84091
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
83798
84092
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
83799
84093
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
84094
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
83800
84095
|
}
|
|
83801
84096
|
|
|
83802
84097
|
export type UserUncheckedUpdateWithoutInterviewer_interviewsInput = {
|
|
@@ -83849,12 +84144,12 @@ export namespace Prisma {
|
|
|
83849
84144
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83850
84145
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83851
84146
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83852
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
83853
84147
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
83854
84148
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
83855
84149
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
83856
84150
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
83857
84151
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
84152
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
83858
84153
|
}
|
|
83859
84154
|
|
|
83860
84155
|
export type OrganisationUpsertWithoutInterviewsInput = {
|
|
@@ -84026,6 +84321,7 @@ export namespace Prisma {
|
|
|
84026
84321
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
84027
84322
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
84028
84323
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
84324
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84029
84325
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
84030
84326
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
84031
84327
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
@@ -84048,6 +84344,7 @@ export namespace Prisma {
|
|
|
84048
84344
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
84049
84345
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
84050
84346
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
84347
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84051
84348
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
84052
84349
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
84053
84350
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -84153,6 +84450,7 @@ export namespace Prisma {
|
|
|
84153
84450
|
job_description?: JobDescriptionUpdateOneRequiredWithoutApplicationsNestedInput
|
|
84154
84451
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
84155
84452
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
84453
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
84156
84454
|
}
|
|
84157
84455
|
|
|
84158
84456
|
export type ApplicationUncheckedUpdateWithoutInterviewsInput = {
|
|
@@ -84174,6 +84472,7 @@ export namespace Prisma {
|
|
|
84174
84472
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
84175
84473
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
84176
84474
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
84475
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
84177
84476
|
}
|
|
84178
84477
|
|
|
84179
84478
|
export type OngoingEvaluationUpsertWithoutInterviewInput = {
|
|
@@ -84818,6 +85117,7 @@ export namespace Prisma {
|
|
|
84818
85117
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
84819
85118
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
84820
85119
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
85120
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
84821
85121
|
}
|
|
84822
85122
|
|
|
84823
85123
|
export type ApplicationUncheckedCreateWithoutJob_descriptionInput = {
|
|
@@ -84839,6 +85139,7 @@ export namespace Prisma {
|
|
|
84839
85139
|
is_active?: boolean
|
|
84840
85140
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
84841
85141
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
85142
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
84842
85143
|
}
|
|
84843
85144
|
|
|
84844
85145
|
export type ApplicationCreateOrConnectWithoutJob_descriptionInput = {
|
|
@@ -85253,6 +85554,7 @@ export namespace Prisma {
|
|
|
85253
85554
|
created_by: string
|
|
85254
85555
|
updated_by: string
|
|
85255
85556
|
is_active?: boolean
|
|
85557
|
+
name?: string | null
|
|
85256
85558
|
yearsOfExperience?: number | null
|
|
85257
85559
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
85258
85560
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
@@ -85274,6 +85576,7 @@ export namespace Prisma {
|
|
|
85274
85576
|
created_by: string
|
|
85275
85577
|
updated_by: string
|
|
85276
85578
|
is_active?: boolean
|
|
85579
|
+
name?: string | null
|
|
85277
85580
|
yearsOfExperience?: number | null
|
|
85278
85581
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
85279
85582
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -85392,12 +85695,12 @@ export namespace Prisma {
|
|
|
85392
85695
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
85393
85696
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
85394
85697
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
85395
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
85396
85698
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
85397
85699
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
85398
85700
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
85399
85701
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
85400
85702
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
85703
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
85401
85704
|
}
|
|
85402
85705
|
|
|
85403
85706
|
export type UserUncheckedCreateWithoutHiring_manager_job_descriptionsInput = {
|
|
@@ -85450,12 +85753,12 @@ export namespace Prisma {
|
|
|
85450
85753
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
85451
85754
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
85452
85755
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
85453
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
85454
85756
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
85455
85757
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
85456
85758
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
85457
85759
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
85458
85760
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
85761
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
85459
85762
|
}
|
|
85460
85763
|
|
|
85461
85764
|
export type UserCreateOrConnectWithoutHiring_manager_job_descriptionsInput = {
|
|
@@ -85513,12 +85816,12 @@ export namespace Prisma {
|
|
|
85513
85816
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
85514
85817
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
85515
85818
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
85516
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
85517
85819
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
85518
85820
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
85519
85821
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
85520
85822
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
85521
85823
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
85824
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
85522
85825
|
}
|
|
85523
85826
|
|
|
85524
85827
|
export type UserUncheckedCreateWithoutJob_descriptionInput = {
|
|
@@ -85571,12 +85874,12 @@ export namespace Prisma {
|
|
|
85571
85874
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
85572
85875
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
85573
85876
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
85574
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
85575
85877
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
85576
85878
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
85577
85879
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
85578
85880
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
85579
85881
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
85882
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
85580
85883
|
}
|
|
85581
85884
|
|
|
85582
85885
|
export type UserCreateOrConnectWithoutJob_descriptionInput = {
|
|
@@ -85946,6 +86249,7 @@ export namespace Prisma {
|
|
|
85946
86249
|
created_by?: StringFilter<"Resume"> | string
|
|
85947
86250
|
updated_by?: StringFilter<"Resume"> | string
|
|
85948
86251
|
is_active?: BoolFilter<"Resume"> | boolean
|
|
86252
|
+
name?: StringNullableFilter<"Resume"> | string | null
|
|
85949
86253
|
yearsOfExperience?: IntNullableFilter<"Resume"> | number | null
|
|
85950
86254
|
}
|
|
85951
86255
|
|
|
@@ -86065,12 +86369,12 @@ export namespace Prisma {
|
|
|
86065
86369
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
86066
86370
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
86067
86371
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
86068
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
86069
86372
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
86070
86373
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
86071
86374
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
86072
86375
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
86073
86376
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
86377
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
86074
86378
|
}
|
|
86075
86379
|
|
|
86076
86380
|
export type UserUncheckedUpdateWithoutHiring_manager_job_descriptionsInput = {
|
|
@@ -86123,12 +86427,12 @@ export namespace Prisma {
|
|
|
86123
86427
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86124
86428
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86125
86429
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86126
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86127
86430
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
86128
86431
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
86129
86432
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
86130
86433
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
86131
86434
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86435
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
86132
86436
|
}
|
|
86133
86437
|
|
|
86134
86438
|
export type UserUpsertWithWhereUniqueWithoutJob_descriptionInput = {
|
|
@@ -86353,12 +86657,12 @@ export namespace Prisma {
|
|
|
86353
86657
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
86354
86658
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
86355
86659
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
86356
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
86357
86660
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
86358
86661
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
86359
86662
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
86360
86663
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
86361
86664
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
86665
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
86362
86666
|
}
|
|
86363
86667
|
|
|
86364
86668
|
export type UserUncheckedCreateWithoutSent_messagesInput = {
|
|
@@ -86411,12 +86715,12 @@ export namespace Prisma {
|
|
|
86411
86715
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
86412
86716
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
86413
86717
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
86414
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
86415
86718
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
86416
86719
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
86417
86720
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
86418
86721
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
86419
86722
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
86723
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
86420
86724
|
}
|
|
86421
86725
|
|
|
86422
86726
|
export type UserCreateOrConnectWithoutSent_messagesInput = {
|
|
@@ -86474,12 +86778,12 @@ export namespace Prisma {
|
|
|
86474
86778
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
86475
86779
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
86476
86780
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
86477
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
86478
86781
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
86479
86782
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
86480
86783
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
86481
86784
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
86482
86785
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
86786
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
86483
86787
|
}
|
|
86484
86788
|
|
|
86485
86789
|
export type UserUncheckedCreateWithoutReceived_messagesInput = {
|
|
@@ -86532,12 +86836,12 @@ export namespace Prisma {
|
|
|
86532
86836
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
86533
86837
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
86534
86838
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
86535
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
86536
86839
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
86537
86840
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
86538
86841
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
86539
86842
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
86540
86843
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
86844
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
86541
86845
|
}
|
|
86542
86846
|
|
|
86543
86847
|
export type UserCreateOrConnectWithoutReceived_messagesInput = {
|
|
@@ -86606,12 +86910,12 @@ export namespace Prisma {
|
|
|
86606
86910
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
86607
86911
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
86608
86912
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
86609
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
86610
86913
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
86611
86914
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
86612
86915
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
86613
86916
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
86614
86917
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
86918
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
86615
86919
|
}
|
|
86616
86920
|
|
|
86617
86921
|
export type UserUncheckedUpdateWithoutSent_messagesInput = {
|
|
@@ -86664,12 +86968,12 @@ export namespace Prisma {
|
|
|
86664
86968
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86665
86969
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86666
86970
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86667
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86668
86971
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
86669
86972
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
86670
86973
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
86671
86974
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
86672
86975
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86976
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
86673
86977
|
}
|
|
86674
86978
|
|
|
86675
86979
|
export type UserUpsertWithoutReceived_messagesInput = {
|
|
@@ -86733,12 +87037,12 @@ export namespace Prisma {
|
|
|
86733
87037
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
86734
87038
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
86735
87039
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
86736
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
86737
87040
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
86738
87041
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
86739
87042
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
86740
87043
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
86741
87044
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
87045
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
86742
87046
|
}
|
|
86743
87047
|
|
|
86744
87048
|
export type UserUncheckedUpdateWithoutReceived_messagesInput = {
|
|
@@ -86791,12 +87095,12 @@ export namespace Prisma {
|
|
|
86791
87095
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86792
87096
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86793
87097
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86794
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86795
87098
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
86796
87099
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
86797
87100
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
86798
87101
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
86799
87102
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
87103
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
86800
87104
|
}
|
|
86801
87105
|
|
|
86802
87106
|
export type JobDescriptionCreateWithoutOngoing_evaluationsInput = {
|
|
@@ -86885,6 +87189,7 @@ export namespace Prisma {
|
|
|
86885
87189
|
job_description: JobDescriptionCreateNestedOneWithoutApplicationsInput
|
|
86886
87190
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
86887
87191
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
87192
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
86888
87193
|
}
|
|
86889
87194
|
|
|
86890
87195
|
export type ApplicationUncheckedCreateWithoutOngoing_evaluationsInput = {
|
|
@@ -86906,6 +87211,7 @@ export namespace Prisma {
|
|
|
86906
87211
|
updated_by: string
|
|
86907
87212
|
is_active?: boolean
|
|
86908
87213
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
87214
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
86909
87215
|
}
|
|
86910
87216
|
|
|
86911
87217
|
export type ApplicationCreateOrConnectWithoutOngoing_evaluationsInput = {
|
|
@@ -86963,12 +87269,12 @@ export namespace Prisma {
|
|
|
86963
87269
|
reviewer_assessments?: AssessmentCreateNestedManyWithoutReviewerInput
|
|
86964
87270
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
86965
87271
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
86966
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
86967
87272
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
86968
87273
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
86969
87274
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
86970
87275
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
86971
87276
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
87277
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
86972
87278
|
}
|
|
86973
87279
|
|
|
86974
87280
|
export type UserUncheckedCreateWithoutOngoing_evaluationsInput = {
|
|
@@ -87021,12 +87327,12 @@ export namespace Prisma {
|
|
|
87021
87327
|
reviewer_assessments?: AssessmentUncheckedCreateNestedManyWithoutReviewerInput
|
|
87022
87328
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
87023
87329
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
87024
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
87025
87330
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
87026
87331
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
87027
87332
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
87028
87333
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
87029
87334
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
87335
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
87030
87336
|
}
|
|
87031
87337
|
|
|
87032
87338
|
export type UserCreateOrConnectWithoutOngoing_evaluationsInput = {
|
|
@@ -87042,6 +87348,7 @@ export namespace Prisma {
|
|
|
87042
87348
|
created_by: string
|
|
87043
87349
|
updated_by: string
|
|
87044
87350
|
is_active?: boolean
|
|
87351
|
+
name?: string | null
|
|
87045
87352
|
yearsOfExperience?: number | null
|
|
87046
87353
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
87047
87354
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
@@ -87064,6 +87371,7 @@ export namespace Prisma {
|
|
|
87064
87371
|
created_by: string
|
|
87065
87372
|
updated_by: string
|
|
87066
87373
|
is_active?: boolean
|
|
87374
|
+
name?: string | null
|
|
87067
87375
|
yearsOfExperience?: number | null
|
|
87068
87376
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
87069
87377
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -87385,6 +87693,7 @@ export namespace Prisma {
|
|
|
87385
87693
|
job_description?: JobDescriptionUpdateOneRequiredWithoutApplicationsNestedInput
|
|
87386
87694
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
87387
87695
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
87696
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
87388
87697
|
}
|
|
87389
87698
|
|
|
87390
87699
|
export type ApplicationUncheckedUpdateWithoutOngoing_evaluationsInput = {
|
|
@@ -87406,6 +87715,7 @@ export namespace Prisma {
|
|
|
87406
87715
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
87407
87716
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
87408
87717
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
87718
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
87409
87719
|
}
|
|
87410
87720
|
|
|
87411
87721
|
export type UserUpsertWithoutOngoing_evaluationsInput = {
|
|
@@ -87469,12 +87779,12 @@ export namespace Prisma {
|
|
|
87469
87779
|
reviewer_assessments?: AssessmentUpdateManyWithoutReviewerNestedInput
|
|
87470
87780
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
87471
87781
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
87472
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
87473
87782
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
87474
87783
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
87475
87784
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
87476
87785
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
87477
87786
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
87787
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
87478
87788
|
}
|
|
87479
87789
|
|
|
87480
87790
|
export type UserUncheckedUpdateWithoutOngoing_evaluationsInput = {
|
|
@@ -87527,12 +87837,12 @@ export namespace Prisma {
|
|
|
87527
87837
|
reviewer_assessments?: AssessmentUncheckedUpdateManyWithoutReviewerNestedInput
|
|
87528
87838
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
87529
87839
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
87530
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
87531
87840
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
87532
87841
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
87533
87842
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
87534
87843
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
87535
87844
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
87845
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
87536
87846
|
}
|
|
87537
87847
|
|
|
87538
87848
|
export type ResumeUpsertWithoutOngoing_evaluationsInput = {
|
|
@@ -87554,6 +87864,7 @@ export namespace Prisma {
|
|
|
87554
87864
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
87555
87865
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
87556
87866
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
87867
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
87557
87868
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
87558
87869
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
87559
87870
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
@@ -87576,6 +87887,7 @@ export namespace Prisma {
|
|
|
87576
87887
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
87577
87888
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
87578
87889
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
87890
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
87579
87891
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
87580
87892
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
87581
87893
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -87857,12 +88169,12 @@ export namespace Prisma {
|
|
|
87857
88169
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
87858
88170
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
87859
88171
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
87860
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
87861
88172
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
87862
88173
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
87863
88174
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
87864
88175
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
87865
88176
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
88177
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
87866
88178
|
}
|
|
87867
88179
|
|
|
87868
88180
|
export type UserUncheckedCreateWithoutOrganisationInput = {
|
|
@@ -87915,12 +88227,12 @@ export namespace Prisma {
|
|
|
87915
88227
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
87916
88228
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
87917
88229
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
87918
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
87919
88230
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
87920
88231
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
87921
88232
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
87922
88233
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
87923
88234
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
88235
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
87924
88236
|
}
|
|
87925
88237
|
|
|
87926
88238
|
export type UserCreateOrConnectWithoutOrganisationInput = {
|
|
@@ -87952,6 +88264,7 @@ export namespace Prisma {
|
|
|
87952
88264
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
87953
88265
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
87954
88266
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
88267
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
87955
88268
|
}
|
|
87956
88269
|
|
|
87957
88270
|
export type ApplicationUncheckedCreateWithoutOrganisationInput = {
|
|
@@ -87973,6 +88286,7 @@ export namespace Prisma {
|
|
|
87973
88286
|
is_active?: boolean
|
|
87974
88287
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
87975
88288
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
88289
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
87976
88290
|
}
|
|
87977
88291
|
|
|
87978
88292
|
export type ApplicationCreateOrConnectWithoutOrganisationInput = {
|
|
@@ -88383,6 +88697,7 @@ export namespace Prisma {
|
|
|
88383
88697
|
created_by: string
|
|
88384
88698
|
updated_by: string
|
|
88385
88699
|
is_active?: boolean
|
|
88700
|
+
name?: string | null
|
|
88386
88701
|
yearsOfExperience?: number | null
|
|
88387
88702
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
88388
88703
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -88404,6 +88719,7 @@ export namespace Prisma {
|
|
|
88404
88719
|
created_by: string
|
|
88405
88720
|
updated_by: string
|
|
88406
88721
|
is_active?: boolean
|
|
88722
|
+
name?: string | null
|
|
88407
88723
|
yearsOfExperience?: number | null
|
|
88408
88724
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
88409
88725
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -89343,12 +89659,12 @@ export namespace Prisma {
|
|
|
89343
89659
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
89344
89660
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
89345
89661
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
89346
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
89347
89662
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
89348
89663
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
89349
89664
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
89350
89665
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
89351
89666
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
89667
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
89352
89668
|
}
|
|
89353
89669
|
|
|
89354
89670
|
export type UserUncheckedCreateWithoutPanelistInput = {
|
|
@@ -89401,12 +89717,12 @@ export namespace Prisma {
|
|
|
89401
89717
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
89402
89718
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
89403
89719
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
89404
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
89405
89720
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
89406
89721
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
89407
89722
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
89408
89723
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
89409
89724
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
89725
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
89410
89726
|
}
|
|
89411
89727
|
|
|
89412
89728
|
export type UserCreateOrConnectWithoutPanelistInput = {
|
|
@@ -89695,12 +90011,12 @@ export namespace Prisma {
|
|
|
89695
90011
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
89696
90012
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
89697
90013
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
89698
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
89699
90014
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
89700
90015
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
89701
90016
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
89702
90017
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
89703
90018
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
90019
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
89704
90020
|
}
|
|
89705
90021
|
|
|
89706
90022
|
export type UserUncheckedUpdateWithoutPanelistInput = {
|
|
@@ -89753,12 +90069,12 @@ export namespace Prisma {
|
|
|
89753
90069
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
89754
90070
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
89755
90071
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
89756
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
89757
90072
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
89758
90073
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
89759
90074
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
89760
90075
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
89761
90076
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90077
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
89762
90078
|
}
|
|
89763
90079
|
|
|
89764
90080
|
export type OrganisationUpsertWithoutPanelistsInput = {
|
|
@@ -89936,12 +90252,12 @@ export namespace Prisma {
|
|
|
89936
90252
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
89937
90253
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
89938
90254
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
89939
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
89940
90255
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
89941
90256
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
89942
90257
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
89943
90258
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
89944
90259
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
90260
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
89945
90261
|
}
|
|
89946
90262
|
|
|
89947
90263
|
export type UserUncheckedCreateWithoutPermissionInput = {
|
|
@@ -89994,12 +90310,12 @@ export namespace Prisma {
|
|
|
89994
90310
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
89995
90311
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
89996
90312
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
89997
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
89998
90313
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
89999
90314
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
90000
90315
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
90001
90316
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
90002
90317
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
90318
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
90003
90319
|
}
|
|
90004
90320
|
|
|
90005
90321
|
export type UserCreateOrConnectWithoutPermissionInput = {
|
|
@@ -90099,12 +90415,12 @@ export namespace Prisma {
|
|
|
90099
90415
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
90100
90416
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
90101
90417
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
90102
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
90103
90418
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
90104
90419
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
90105
90420
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
90106
90421
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
90107
90422
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
90423
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
90108
90424
|
}
|
|
90109
90425
|
|
|
90110
90426
|
export type UserUncheckedUpdateWithoutPermissionInput = {
|
|
@@ -90157,12 +90473,12 @@ export namespace Prisma {
|
|
|
90157
90473
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90158
90474
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90159
90475
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90160
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90161
90476
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
90162
90477
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
90163
90478
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
90164
90479
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
90165
90480
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90481
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
90166
90482
|
}
|
|
90167
90483
|
|
|
90168
90484
|
export type UserRoleUpsertWithoutPermissionInput = {
|
|
@@ -90252,12 +90568,12 @@ export namespace Prisma {
|
|
|
90252
90568
|
reviewer_assessments?: AssessmentCreateNestedManyWithoutReviewerInput
|
|
90253
90569
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
90254
90570
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
90255
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
90256
90571
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
90257
90572
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
90258
90573
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
90259
90574
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
90260
90575
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
90576
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
90261
90577
|
}
|
|
90262
90578
|
|
|
90263
90579
|
export type UserUncheckedCreateWithoutQuestionsInput = {
|
|
@@ -90310,12 +90626,12 @@ export namespace Prisma {
|
|
|
90310
90626
|
reviewer_assessments?: AssessmentUncheckedCreateNestedManyWithoutReviewerInput
|
|
90311
90627
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
90312
90628
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
90313
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
90314
90629
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
90315
90630
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
90316
90631
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
90317
90632
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
90318
90633
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
90634
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
90319
90635
|
}
|
|
90320
90636
|
|
|
90321
90637
|
export type UserCreateOrConnectWithoutQuestionsInput = {
|
|
@@ -90548,12 +90864,12 @@ export namespace Prisma {
|
|
|
90548
90864
|
reviewer_assessments?: AssessmentUpdateManyWithoutReviewerNestedInput
|
|
90549
90865
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
90550
90866
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
90551
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
90552
90867
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
90553
90868
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
90554
90869
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
90555
90870
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
90556
90871
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
90872
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
90557
90873
|
}
|
|
90558
90874
|
|
|
90559
90875
|
export type UserUncheckedUpdateWithoutQuestionsInput = {
|
|
@@ -90606,12 +90922,12 @@ export namespace Prisma {
|
|
|
90606
90922
|
reviewer_assessments?: AssessmentUncheckedUpdateManyWithoutReviewerNestedInput
|
|
90607
90923
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90608
90924
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90609
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90610
90925
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
90611
90926
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
90612
90927
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
90613
90928
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
90614
90929
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90930
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
90615
90931
|
}
|
|
90616
90932
|
|
|
90617
90933
|
export type AssessmentQuestionUpsertWithWhereUniqueWithoutQuestionInput = {
|
|
@@ -90814,12 +91130,12 @@ export namespace Prisma {
|
|
|
90814
91130
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
90815
91131
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
90816
91132
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
90817
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
90818
91133
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
90819
91134
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
90820
91135
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
90821
91136
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
90822
91137
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
91138
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
90823
91139
|
}
|
|
90824
91140
|
|
|
90825
91141
|
export type UserUncheckedCreateWithoutResumeInput = {
|
|
@@ -90872,12 +91188,12 @@ export namespace Prisma {
|
|
|
90872
91188
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
90873
91189
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
90874
91190
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
90875
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
90876
91191
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
90877
91192
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
90878
91193
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
90879
91194
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
90880
91195
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
91196
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
90881
91197
|
}
|
|
90882
91198
|
|
|
90883
91199
|
export type UserCreateOrConnectWithoutResumeInput = {
|
|
@@ -91042,6 +91358,7 @@ export namespace Prisma {
|
|
|
91042
91358
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
91043
91359
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
91044
91360
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
91361
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
91045
91362
|
}
|
|
91046
91363
|
|
|
91047
91364
|
export type ApplicationUncheckedCreateWithoutResumeInput = {
|
|
@@ -91063,6 +91380,7 @@ export namespace Prisma {
|
|
|
91063
91380
|
is_active?: boolean
|
|
91064
91381
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
91065
91382
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
91383
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
91066
91384
|
}
|
|
91067
91385
|
|
|
91068
91386
|
export type ApplicationCreateOrConnectWithoutResumeInput = {
|
|
@@ -91443,12 +91761,12 @@ export namespace Prisma {
|
|
|
91443
91761
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
91444
91762
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
91445
91763
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
91446
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
91447
91764
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
91448
91765
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
91449
91766
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
91450
91767
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
91451
91768
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
91769
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
91452
91770
|
}
|
|
91453
91771
|
|
|
91454
91772
|
export type UserUncheckedUpdateWithoutResumeInput = {
|
|
@@ -91501,12 +91819,12 @@ export namespace Prisma {
|
|
|
91501
91819
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
91502
91820
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
91503
91821
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
91504
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
91505
91822
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
91506
91823
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
91507
91824
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
91508
91825
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
91509
91826
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
91827
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
91510
91828
|
}
|
|
91511
91829
|
|
|
91512
91830
|
export type OrganisationUpsertWithoutResumesInput = {
|
|
@@ -91815,6 +92133,7 @@ export namespace Prisma {
|
|
|
91815
92133
|
created_by: string
|
|
91816
92134
|
updated_by: string
|
|
91817
92135
|
is_active?: boolean
|
|
92136
|
+
name?: string | null
|
|
91818
92137
|
yearsOfExperience?: number | null
|
|
91819
92138
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
91820
92139
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
@@ -91837,6 +92156,7 @@ export namespace Prisma {
|
|
|
91837
92156
|
created_by: string
|
|
91838
92157
|
updated_by: string
|
|
91839
92158
|
is_active?: boolean
|
|
92159
|
+
name?: string | null
|
|
91840
92160
|
yearsOfExperience?: number | null
|
|
91841
92161
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
91842
92162
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -91869,6 +92189,7 @@ export namespace Prisma {
|
|
|
91869
92189
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
91870
92190
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
91871
92191
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
92192
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
91872
92193
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
91873
92194
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
91874
92195
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
@@ -91891,6 +92212,7 @@ export namespace Prisma {
|
|
|
91891
92212
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
91892
92213
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
91893
92214
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
92215
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
91894
92216
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
91895
92217
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
91896
92218
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -92839,6 +93161,7 @@ export namespace Prisma {
|
|
|
92839
93161
|
fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
|
|
92840
93162
|
interviews?: InterviewCreateNestedManyWithoutApplicationInput
|
|
92841
93163
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
|
|
93164
|
+
activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
|
|
92842
93165
|
}
|
|
92843
93166
|
|
|
92844
93167
|
export type ApplicationUncheckedCreateWithoutCandidateInput = {
|
|
@@ -92860,6 +93183,7 @@ export namespace Prisma {
|
|
|
92860
93183
|
is_active?: boolean
|
|
92861
93184
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
92862
93185
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
93186
|
+
activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
|
|
92863
93187
|
}
|
|
92864
93188
|
|
|
92865
93189
|
export type ApplicationCreateOrConnectWithoutCandidateInput = {
|
|
@@ -92880,6 +93204,7 @@ export namespace Prisma {
|
|
|
92880
93204
|
created_by: string
|
|
92881
93205
|
updated_by: string
|
|
92882
93206
|
is_active?: boolean
|
|
93207
|
+
name?: string | null
|
|
92883
93208
|
yearsOfExperience?: number | null
|
|
92884
93209
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
92885
93210
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -92901,6 +93226,7 @@ export namespace Prisma {
|
|
|
92901
93226
|
created_by: string
|
|
92902
93227
|
updated_by: string
|
|
92903
93228
|
is_active?: boolean
|
|
93229
|
+
name?: string | null
|
|
92904
93230
|
yearsOfExperience?: number | null
|
|
92905
93231
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
92906
93232
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -93736,58 +94062,28 @@ export namespace Prisma {
|
|
|
93736
94062
|
skipDuplicates?: boolean
|
|
93737
94063
|
}
|
|
93738
94064
|
|
|
93739
|
-
export type ActivityLogCreateWithoutCandidateInput = {
|
|
93740
|
-
id?: string
|
|
93741
|
-
actor_type: $Enums.ActivityActorType
|
|
93742
|
-
action_type: $Enums.ActivityActionType
|
|
93743
|
-
message: string
|
|
93744
|
-
timestamp?: Date | string
|
|
93745
|
-
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
93746
|
-
created_at?: Date | string
|
|
93747
|
-
actor?: UserCreateNestedOneWithoutActor_activity_logsInput
|
|
93748
|
-
}
|
|
93749
|
-
|
|
93750
|
-
export type ActivityLogUncheckedCreateWithoutCandidateInput = {
|
|
93751
|
-
id?: string
|
|
93752
|
-
actor_id?: string | null
|
|
93753
|
-
actor_type: $Enums.ActivityActorType
|
|
93754
|
-
action_type: $Enums.ActivityActionType
|
|
93755
|
-
message: string
|
|
93756
|
-
timestamp?: Date | string
|
|
93757
|
-
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
93758
|
-
created_at?: Date | string
|
|
93759
|
-
}
|
|
93760
|
-
|
|
93761
|
-
export type ActivityLogCreateOrConnectWithoutCandidateInput = {
|
|
93762
|
-
where: ActivityLogWhereUniqueInput
|
|
93763
|
-
create: XOR<ActivityLogCreateWithoutCandidateInput, ActivityLogUncheckedCreateWithoutCandidateInput>
|
|
93764
|
-
}
|
|
93765
|
-
|
|
93766
|
-
export type ActivityLogCreateManyCandidateInputEnvelope = {
|
|
93767
|
-
data: ActivityLogCreateManyCandidateInput | ActivityLogCreateManyCandidateInput[]
|
|
93768
|
-
skipDuplicates?: boolean
|
|
93769
|
-
}
|
|
93770
|
-
|
|
93771
94065
|
export type ActivityLogCreateWithoutActorInput = {
|
|
93772
94066
|
id?: string
|
|
93773
|
-
actor_type
|
|
93774
|
-
action_type: $Enums.ActivityActionType
|
|
94067
|
+
actor_type?: $Enums.ActivityActorType
|
|
93775
94068
|
message: string
|
|
93776
94069
|
timestamp?: Date | string
|
|
93777
94070
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
93778
94071
|
created_at?: Date | string
|
|
93779
|
-
|
|
94072
|
+
is_active?: boolean
|
|
94073
|
+
application: ApplicationCreateNestedOneWithoutActivity_logsInput
|
|
94074
|
+
user?: UserCreateNestedOneWithoutActivityLogsInput
|
|
93780
94075
|
}
|
|
93781
94076
|
|
|
93782
94077
|
export type ActivityLogUncheckedCreateWithoutActorInput = {
|
|
93783
94078
|
id?: string
|
|
93784
|
-
|
|
93785
|
-
actor_type
|
|
93786
|
-
action_type: $Enums.ActivityActionType
|
|
94079
|
+
application_id: string
|
|
94080
|
+
actor_type?: $Enums.ActivityActorType
|
|
93787
94081
|
message: string
|
|
93788
94082
|
timestamp?: Date | string
|
|
93789
94083
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
93790
94084
|
created_at?: Date | string
|
|
94085
|
+
is_active?: boolean
|
|
94086
|
+
userId?: string | null
|
|
93791
94087
|
}
|
|
93792
94088
|
|
|
93793
94089
|
export type ActivityLogCreateOrConnectWithoutActorInput = {
|
|
@@ -93980,6 +94276,40 @@ export namespace Prisma {
|
|
|
93980
94276
|
skipDuplicates?: boolean
|
|
93981
94277
|
}
|
|
93982
94278
|
|
|
94279
|
+
export type ActivityLogCreateWithoutUserInput = {
|
|
94280
|
+
id?: string
|
|
94281
|
+
actor_type?: $Enums.ActivityActorType
|
|
94282
|
+
message: string
|
|
94283
|
+
timestamp?: Date | string
|
|
94284
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
94285
|
+
created_at?: Date | string
|
|
94286
|
+
is_active?: boolean
|
|
94287
|
+
actor?: UserCreateNestedOneWithoutActor_activity_logsInput
|
|
94288
|
+
application: ApplicationCreateNestedOneWithoutActivity_logsInput
|
|
94289
|
+
}
|
|
94290
|
+
|
|
94291
|
+
export type ActivityLogUncheckedCreateWithoutUserInput = {
|
|
94292
|
+
id?: string
|
|
94293
|
+
application_id: string
|
|
94294
|
+
actor_id?: string | null
|
|
94295
|
+
actor_type?: $Enums.ActivityActorType
|
|
94296
|
+
message: string
|
|
94297
|
+
timestamp?: Date | string
|
|
94298
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
94299
|
+
created_at?: Date | string
|
|
94300
|
+
is_active?: boolean
|
|
94301
|
+
}
|
|
94302
|
+
|
|
94303
|
+
export type ActivityLogCreateOrConnectWithoutUserInput = {
|
|
94304
|
+
where: ActivityLogWhereUniqueInput
|
|
94305
|
+
create: XOR<ActivityLogCreateWithoutUserInput, ActivityLogUncheckedCreateWithoutUserInput>
|
|
94306
|
+
}
|
|
94307
|
+
|
|
94308
|
+
export type ActivityLogCreateManyUserInputEnvelope = {
|
|
94309
|
+
data: ActivityLogCreateManyUserInput | ActivityLogCreateManyUserInput[]
|
|
94310
|
+
skipDuplicates?: boolean
|
|
94311
|
+
}
|
|
94312
|
+
|
|
93983
94313
|
export type UserRoleUpsertWithoutUsersInput = {
|
|
93984
94314
|
update: XOR<UserRoleUpdateWithoutUsersInput, UserRoleUncheckedUpdateWithoutUsersInput>
|
|
93985
94315
|
create: XOR<UserRoleCreateWithoutUsersInput, UserRoleUncheckedCreateWithoutUsersInput>
|
|
@@ -94523,37 +94853,6 @@ export namespace Prisma {
|
|
|
94523
94853
|
data: XOR<OngoingEvaluationUpdateManyMutationInput, OngoingEvaluationUncheckedUpdateManyWithoutCandidateInput>
|
|
94524
94854
|
}
|
|
94525
94855
|
|
|
94526
|
-
export type ActivityLogUpsertWithWhereUniqueWithoutCandidateInput = {
|
|
94527
|
-
where: ActivityLogWhereUniqueInput
|
|
94528
|
-
update: XOR<ActivityLogUpdateWithoutCandidateInput, ActivityLogUncheckedUpdateWithoutCandidateInput>
|
|
94529
|
-
create: XOR<ActivityLogCreateWithoutCandidateInput, ActivityLogUncheckedCreateWithoutCandidateInput>
|
|
94530
|
-
}
|
|
94531
|
-
|
|
94532
|
-
export type ActivityLogUpdateWithWhereUniqueWithoutCandidateInput = {
|
|
94533
|
-
where: ActivityLogWhereUniqueInput
|
|
94534
|
-
data: XOR<ActivityLogUpdateWithoutCandidateInput, ActivityLogUncheckedUpdateWithoutCandidateInput>
|
|
94535
|
-
}
|
|
94536
|
-
|
|
94537
|
-
export type ActivityLogUpdateManyWithWhereWithoutCandidateInput = {
|
|
94538
|
-
where: ActivityLogScalarWhereInput
|
|
94539
|
-
data: XOR<ActivityLogUpdateManyMutationInput, ActivityLogUncheckedUpdateManyWithoutCandidateInput>
|
|
94540
|
-
}
|
|
94541
|
-
|
|
94542
|
-
export type ActivityLogScalarWhereInput = {
|
|
94543
|
-
AND?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
94544
|
-
OR?: ActivityLogScalarWhereInput[]
|
|
94545
|
-
NOT?: ActivityLogScalarWhereInput | ActivityLogScalarWhereInput[]
|
|
94546
|
-
id?: StringFilter<"ActivityLog"> | string
|
|
94547
|
-
candidate_id?: StringFilter<"ActivityLog"> | string
|
|
94548
|
-
actor_id?: StringNullableFilter<"ActivityLog"> | string | null
|
|
94549
|
-
actor_type?: EnumActivityActorTypeFilter<"ActivityLog"> | $Enums.ActivityActorType
|
|
94550
|
-
action_type?: EnumActivityActionTypeFilter<"ActivityLog"> | $Enums.ActivityActionType
|
|
94551
|
-
message?: StringFilter<"ActivityLog"> | string
|
|
94552
|
-
timestamp?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
94553
|
-
metadata?: JsonNullableFilter<"ActivityLog">
|
|
94554
|
-
created_at?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
94555
|
-
}
|
|
94556
|
-
|
|
94557
94856
|
export type ActivityLogUpsertWithWhereUniqueWithoutActorInput = {
|
|
94558
94857
|
where: ActivityLogWhereUniqueInput
|
|
94559
94858
|
update: XOR<ActivityLogUpdateWithoutActorInput, ActivityLogUncheckedUpdateWithoutActorInput>
|
|
@@ -94676,6 +94975,22 @@ export namespace Prisma {
|
|
|
94676
94975
|
data: XOR<FitCheckUpdateManyMutationInput, FitCheckUncheckedUpdateManyWithoutCandidateInput>
|
|
94677
94976
|
}
|
|
94678
94977
|
|
|
94978
|
+
export type ActivityLogUpsertWithWhereUniqueWithoutUserInput = {
|
|
94979
|
+
where: ActivityLogWhereUniqueInput
|
|
94980
|
+
update: XOR<ActivityLogUpdateWithoutUserInput, ActivityLogUncheckedUpdateWithoutUserInput>
|
|
94981
|
+
create: XOR<ActivityLogCreateWithoutUserInput, ActivityLogUncheckedCreateWithoutUserInput>
|
|
94982
|
+
}
|
|
94983
|
+
|
|
94984
|
+
export type ActivityLogUpdateWithWhereUniqueWithoutUserInput = {
|
|
94985
|
+
where: ActivityLogWhereUniqueInput
|
|
94986
|
+
data: XOR<ActivityLogUpdateWithoutUserInput, ActivityLogUncheckedUpdateWithoutUserInput>
|
|
94987
|
+
}
|
|
94988
|
+
|
|
94989
|
+
export type ActivityLogUpdateManyWithWhereWithoutUserInput = {
|
|
94990
|
+
where: ActivityLogScalarWhereInput
|
|
94991
|
+
data: XOR<ActivityLogUpdateManyMutationInput, ActivityLogUncheckedUpdateManyWithoutUserInput>
|
|
94992
|
+
}
|
|
94993
|
+
|
|
94679
94994
|
export type UserCreateWithoutUser_profileInput = {
|
|
94680
94995
|
id?: string
|
|
94681
94996
|
email: string
|
|
@@ -94726,12 +95041,12 @@ export namespace Prisma {
|
|
|
94726
95041
|
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
94727
95042
|
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
94728
95043
|
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
94729
|
-
candidate_activity_logs?: ActivityLogCreateNestedManyWithoutCandidateInput
|
|
94730
95044
|
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
94731
95045
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
94732
95046
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
94733
95047
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
94734
95048
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
95049
|
+
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
94735
95050
|
}
|
|
94736
95051
|
|
|
94737
95052
|
export type UserUncheckedCreateWithoutUser_profileInput = {
|
|
@@ -94784,12 +95099,12 @@ export namespace Prisma {
|
|
|
94784
95099
|
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
94785
95100
|
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
94786
95101
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
94787
|
-
candidate_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutCandidateInput
|
|
94788
95102
|
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
94789
95103
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
94790
95104
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
94791
95105
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
94792
95106
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
95107
|
+
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
94793
95108
|
}
|
|
94794
95109
|
|
|
94795
95110
|
export type UserCreateOrConnectWithoutUser_profileInput = {
|
|
@@ -94858,12 +95173,12 @@ export namespace Prisma {
|
|
|
94858
95173
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
94859
95174
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
94860
95175
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
94861
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
94862
95176
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
94863
95177
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
94864
95178
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
94865
95179
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
94866
95180
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
95181
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
94867
95182
|
}
|
|
94868
95183
|
|
|
94869
95184
|
export type UserUncheckedUpdateWithoutUser_profileInput = {
|
|
@@ -94916,12 +95231,12 @@ export namespace Prisma {
|
|
|
94916
95231
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94917
95232
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94918
95233
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94919
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
94920
95234
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
94921
95235
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
94922
95236
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
94923
95237
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
94924
95238
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95239
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
94925
95240
|
}
|
|
94926
95241
|
|
|
94927
95242
|
export type UserCreateManyRoleInput = {
|
|
@@ -95008,12 +95323,12 @@ export namespace Prisma {
|
|
|
95008
95323
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
95009
95324
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
95010
95325
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
95011
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
95012
95326
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
95013
95327
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
95014
95328
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
95015
95329
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
95016
95330
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
95331
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
95017
95332
|
}
|
|
95018
95333
|
|
|
95019
95334
|
export type UserUncheckedUpdateWithoutRoleInput = {
|
|
@@ -95066,12 +95381,12 @@ export namespace Prisma {
|
|
|
95066
95381
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95067
95382
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95068
95383
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95069
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95070
95384
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
95071
95385
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
95072
95386
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
95073
95387
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
95074
95388
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95389
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
95075
95390
|
}
|
|
95076
95391
|
|
|
95077
95392
|
export type UserUncheckedUpdateManyWithoutRoleInput = {
|
|
@@ -95166,6 +95481,18 @@ export namespace Prisma {
|
|
|
95166
95481
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
95167
95482
|
}
|
|
95168
95483
|
|
|
95484
|
+
export type ActivityLogCreateManyApplicationInput = {
|
|
95485
|
+
id?: string
|
|
95486
|
+
actor_id?: string | null
|
|
95487
|
+
actor_type?: $Enums.ActivityActorType
|
|
95488
|
+
message: string
|
|
95489
|
+
timestamp?: Date | string
|
|
95490
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
95491
|
+
created_at?: Date | string
|
|
95492
|
+
is_active?: boolean
|
|
95493
|
+
userId?: string | null
|
|
95494
|
+
}
|
|
95495
|
+
|
|
95169
95496
|
export type InterviewUpdateWithoutApplicationInput = {
|
|
95170
95497
|
id?: StringFieldUpdateOperationsInput | string
|
|
95171
95498
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -95354,6 +95681,42 @@ export namespace Prisma {
|
|
|
95354
95681
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
95355
95682
|
}
|
|
95356
95683
|
|
|
95684
|
+
export type ActivityLogUpdateWithoutApplicationInput = {
|
|
95685
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
95686
|
+
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
95687
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
95688
|
+
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95689
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
95690
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95691
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95692
|
+
actor?: UserUpdateOneWithoutActor_activity_logsNestedInput
|
|
95693
|
+
user?: UserUpdateOneWithoutActivityLogsNestedInput
|
|
95694
|
+
}
|
|
95695
|
+
|
|
95696
|
+
export type ActivityLogUncheckedUpdateWithoutApplicationInput = {
|
|
95697
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
95698
|
+
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95699
|
+
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
95700
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
95701
|
+
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95702
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
95703
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95704
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95705
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95706
|
+
}
|
|
95707
|
+
|
|
95708
|
+
export type ActivityLogUncheckedUpdateManyWithoutApplicationInput = {
|
|
95709
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
95710
|
+
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95711
|
+
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
95712
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
95713
|
+
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95714
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
95715
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95716
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95717
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95718
|
+
}
|
|
95719
|
+
|
|
95357
95720
|
export type AssessmentQuestionCreateManyAssessmentInput = {
|
|
95358
95721
|
question_id: string
|
|
95359
95722
|
created_at?: Date | string
|
|
@@ -96107,6 +96470,7 @@ export namespace Prisma {
|
|
|
96107
96470
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
96108
96471
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
96109
96472
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
96473
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
96110
96474
|
}
|
|
96111
96475
|
|
|
96112
96476
|
export type ApplicationUncheckedUpdateWithoutEvaluation_planInput = {
|
|
@@ -96128,6 +96492,7 @@ export namespace Prisma {
|
|
|
96128
96492
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
96129
96493
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
96130
96494
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
96495
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
96131
96496
|
}
|
|
96132
96497
|
|
|
96133
96498
|
export type ApplicationUncheckedUpdateManyWithoutEvaluation_planInput = {
|
|
@@ -96813,6 +97178,7 @@ export namespace Prisma {
|
|
|
96813
97178
|
created_by: string
|
|
96814
97179
|
updated_by: string
|
|
96815
97180
|
is_active?: boolean
|
|
97181
|
+
name?: string | null
|
|
96816
97182
|
yearsOfExperience?: number | null
|
|
96817
97183
|
}
|
|
96818
97184
|
|
|
@@ -96852,6 +97218,7 @@ export namespace Prisma {
|
|
|
96852
97218
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
96853
97219
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
96854
97220
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
97221
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
96855
97222
|
}
|
|
96856
97223
|
|
|
96857
97224
|
export type ApplicationUncheckedUpdateWithoutJob_descriptionInput = {
|
|
@@ -96873,6 +97240,7 @@ export namespace Prisma {
|
|
|
96873
97240
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
96874
97241
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
96875
97242
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
97243
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
96876
97244
|
}
|
|
96877
97245
|
|
|
96878
97246
|
export type ApplicationUncheckedUpdateManyWithoutJob_descriptionInput = {
|
|
@@ -97374,6 +97742,7 @@ export namespace Prisma {
|
|
|
97374
97742
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
97375
97743
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
97376
97744
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
97745
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97377
97746
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97378
97747
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
97379
97748
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
@@ -97395,6 +97764,7 @@ export namespace Prisma {
|
|
|
97395
97764
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
97396
97765
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
97397
97766
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
97767
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97398
97768
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97399
97769
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
97400
97770
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -97414,6 +97784,7 @@ export namespace Prisma {
|
|
|
97414
97784
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
97415
97785
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
97416
97786
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
97787
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
97417
97788
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
97418
97789
|
}
|
|
97419
97790
|
|
|
@@ -97467,12 +97838,12 @@ export namespace Prisma {
|
|
|
97467
97838
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
97468
97839
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
97469
97840
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
97470
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
97471
97841
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
97472
97842
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
97473
97843
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
97474
97844
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
97475
97845
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
97846
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
97476
97847
|
}
|
|
97477
97848
|
|
|
97478
97849
|
export type UserUncheckedUpdateWithoutJob_descriptionInput = {
|
|
@@ -97525,12 +97896,12 @@ export namespace Prisma {
|
|
|
97525
97896
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97526
97897
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97527
97898
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97528
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97529
97899
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
97530
97900
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
97531
97901
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
97532
97902
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
97533
97903
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97904
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
97534
97905
|
}
|
|
97535
97906
|
|
|
97536
97907
|
export type UserUncheckedUpdateManyWithoutJob_descriptionInput = {
|
|
@@ -97817,6 +98188,7 @@ export namespace Prisma {
|
|
|
97817
98188
|
created_by: string
|
|
97818
98189
|
updated_by: string
|
|
97819
98190
|
is_active?: boolean
|
|
98191
|
+
name?: string | null
|
|
97820
98192
|
yearsOfExperience?: number | null
|
|
97821
98193
|
}
|
|
97822
98194
|
|
|
@@ -97957,12 +98329,12 @@ export namespace Prisma {
|
|
|
97957
98329
|
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
97958
98330
|
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
97959
98331
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
97960
|
-
candidate_activity_logs?: ActivityLogUpdateManyWithoutCandidateNestedInput
|
|
97961
98332
|
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
97962
98333
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
97963
98334
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
97964
98335
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
97965
98336
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
98337
|
+
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
97966
98338
|
}
|
|
97967
98339
|
|
|
97968
98340
|
export type UserUncheckedUpdateWithoutOrganisationInput = {
|
|
@@ -98015,12 +98387,12 @@ export namespace Prisma {
|
|
|
98015
98387
|
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
98016
98388
|
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
98017
98389
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
98018
|
-
candidate_activity_logs?: ActivityLogUncheckedUpdateManyWithoutCandidateNestedInput
|
|
98019
98390
|
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
98020
98391
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
98021
98392
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
98022
98393
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
98023
98394
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
98395
|
+
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
98024
98396
|
}
|
|
98025
98397
|
|
|
98026
98398
|
export type UserUncheckedUpdateManyWithoutOrganisationInput = {
|
|
@@ -98076,6 +98448,7 @@ export namespace Prisma {
|
|
|
98076
98448
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
98077
98449
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
98078
98450
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
98451
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
98079
98452
|
}
|
|
98080
98453
|
|
|
98081
98454
|
export type ApplicationUncheckedUpdateWithoutOrganisationInput = {
|
|
@@ -98097,6 +98470,7 @@ export namespace Prisma {
|
|
|
98097
98470
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
98098
98471
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
98099
98472
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
98473
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
98100
98474
|
}
|
|
98101
98475
|
|
|
98102
98476
|
export type ApplicationUncheckedUpdateManyWithoutOrganisationInput = {
|
|
@@ -98581,6 +98955,7 @@ export namespace Prisma {
|
|
|
98581
98955
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
98582
98956
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
98583
98957
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
98958
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98584
98959
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
98585
98960
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
98586
98961
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -98602,6 +98977,7 @@ export namespace Prisma {
|
|
|
98602
98977
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
98603
98978
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
98604
98979
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
98980
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98605
98981
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
98606
98982
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
98607
98983
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -98621,6 +98997,7 @@ export namespace Prisma {
|
|
|
98621
98997
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
98622
98998
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
98623
98999
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
99000
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98624
99001
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
98625
99002
|
}
|
|
98626
99003
|
|
|
@@ -99369,6 +99746,7 @@ export namespace Prisma {
|
|
|
99369
99746
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
99370
99747
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
99371
99748
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
99749
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
99372
99750
|
}
|
|
99373
99751
|
|
|
99374
99752
|
export type ApplicationUncheckedUpdateWithoutResumeInput = {
|
|
@@ -99390,6 +99768,7 @@ export namespace Prisma {
|
|
|
99390
99768
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
99391
99769
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
99392
99770
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
99771
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
99393
99772
|
}
|
|
99394
99773
|
|
|
99395
99774
|
export type ApplicationUncheckedUpdateManyWithoutResumeInput = {
|
|
@@ -99830,6 +100209,7 @@ export namespace Prisma {
|
|
|
99830
100209
|
created_by: string
|
|
99831
100210
|
updated_by: string
|
|
99832
100211
|
is_active?: boolean
|
|
100212
|
+
name?: string | null
|
|
99833
100213
|
yearsOfExperience?: number | null
|
|
99834
100214
|
}
|
|
99835
100215
|
|
|
@@ -100052,26 +100432,16 @@ export namespace Prisma {
|
|
|
100052
100432
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
100053
100433
|
}
|
|
100054
100434
|
|
|
100055
|
-
export type ActivityLogCreateManyCandidateInput = {
|
|
100056
|
-
id?: string
|
|
100057
|
-
actor_id?: string | null
|
|
100058
|
-
actor_type: $Enums.ActivityActorType
|
|
100059
|
-
action_type: $Enums.ActivityActionType
|
|
100060
|
-
message: string
|
|
100061
|
-
timestamp?: Date | string
|
|
100062
|
-
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
100063
|
-
created_at?: Date | string
|
|
100064
|
-
}
|
|
100065
|
-
|
|
100066
100435
|
export type ActivityLogCreateManyActorInput = {
|
|
100067
100436
|
id?: string
|
|
100068
|
-
|
|
100069
|
-
actor_type
|
|
100070
|
-
action_type: $Enums.ActivityActionType
|
|
100437
|
+
application_id: string
|
|
100438
|
+
actor_type?: $Enums.ActivityActorType
|
|
100071
100439
|
message: string
|
|
100072
100440
|
timestamp?: Date | string
|
|
100073
100441
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
100074
100442
|
created_at?: Date | string
|
|
100443
|
+
is_active?: boolean
|
|
100444
|
+
userId?: string | null
|
|
100075
100445
|
}
|
|
100076
100446
|
|
|
100077
100447
|
export type ActionCreateManyUserInput = {
|
|
@@ -100122,6 +100492,18 @@ export namespace Prisma {
|
|
|
100122
100492
|
updated_at?: Date | string
|
|
100123
100493
|
}
|
|
100124
100494
|
|
|
100495
|
+
export type ActivityLogCreateManyUserInput = {
|
|
100496
|
+
id?: string
|
|
100497
|
+
application_id: string
|
|
100498
|
+
actor_id?: string | null
|
|
100499
|
+
actor_type?: $Enums.ActivityActorType
|
|
100500
|
+
message: string
|
|
100501
|
+
timestamp?: Date | string
|
|
100502
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
100503
|
+
created_at?: Date | string
|
|
100504
|
+
is_active?: boolean
|
|
100505
|
+
}
|
|
100506
|
+
|
|
100125
100507
|
export type ApplicationUpdateWithoutCandidateInput = {
|
|
100126
100508
|
id?: StringFieldUpdateOperationsInput | string
|
|
100127
100509
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
@@ -100141,6 +100523,7 @@ export namespace Prisma {
|
|
|
100141
100523
|
fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
|
|
100142
100524
|
interviews?: InterviewUpdateManyWithoutApplicationNestedInput
|
|
100143
100525
|
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
|
|
100526
|
+
activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
|
|
100144
100527
|
}
|
|
100145
100528
|
|
|
100146
100529
|
export type ApplicationUncheckedUpdateWithoutCandidateInput = {
|
|
@@ -100162,6 +100545,7 @@ export namespace Prisma {
|
|
|
100162
100545
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
100163
100546
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
100164
100547
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
100548
|
+
activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
|
|
100165
100549
|
}
|
|
100166
100550
|
|
|
100167
100551
|
export type ApplicationUncheckedUpdateManyWithoutCandidateInput = {
|
|
@@ -100191,6 +100575,7 @@ export namespace Prisma {
|
|
|
100191
100575
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
100192
100576
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
100193
100577
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
100578
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100194
100579
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
100195
100580
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
100196
100581
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -100212,6 +100597,7 @@ export namespace Prisma {
|
|
|
100212
100597
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
100213
100598
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
100214
100599
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
100600
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100215
100601
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
100216
100602
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
100217
100603
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -100231,6 +100617,7 @@ export namespace Prisma {
|
|
|
100231
100617
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
100232
100618
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
100233
100619
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
100620
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100234
100621
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
100235
100622
|
}
|
|
100236
100623
|
|
|
@@ -101041,70 +101428,40 @@ export namespace Prisma {
|
|
|
101041
101428
|
details?: NullableJsonNullValueInput | InputJsonValue
|
|
101042
101429
|
}
|
|
101043
101430
|
|
|
101044
|
-
export type ActivityLogUpdateWithoutCandidateInput = {
|
|
101045
|
-
id?: StringFieldUpdateOperationsInput | string
|
|
101046
|
-
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101047
|
-
action_type?: EnumActivityActionTypeFieldUpdateOperationsInput | $Enums.ActivityActionType
|
|
101048
|
-
message?: StringFieldUpdateOperationsInput | string
|
|
101049
|
-
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101050
|
-
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101051
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101052
|
-
actor?: UserUpdateOneWithoutActor_activity_logsNestedInput
|
|
101053
|
-
}
|
|
101054
|
-
|
|
101055
|
-
export type ActivityLogUncheckedUpdateWithoutCandidateInput = {
|
|
101056
|
-
id?: StringFieldUpdateOperationsInput | string
|
|
101057
|
-
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101058
|
-
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101059
|
-
action_type?: EnumActivityActionTypeFieldUpdateOperationsInput | $Enums.ActivityActionType
|
|
101060
|
-
message?: StringFieldUpdateOperationsInput | string
|
|
101061
|
-
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101062
|
-
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101063
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101064
|
-
}
|
|
101065
|
-
|
|
101066
|
-
export type ActivityLogUncheckedUpdateManyWithoutCandidateInput = {
|
|
101067
|
-
id?: StringFieldUpdateOperationsInput | string
|
|
101068
|
-
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101069
|
-
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101070
|
-
action_type?: EnumActivityActionTypeFieldUpdateOperationsInput | $Enums.ActivityActionType
|
|
101071
|
-
message?: StringFieldUpdateOperationsInput | string
|
|
101072
|
-
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101073
|
-
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101074
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101075
|
-
}
|
|
101076
|
-
|
|
101077
101431
|
export type ActivityLogUpdateWithoutActorInput = {
|
|
101078
101432
|
id?: StringFieldUpdateOperationsInput | string
|
|
101079
101433
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101080
|
-
action_type?: EnumActivityActionTypeFieldUpdateOperationsInput | $Enums.ActivityActionType
|
|
101081
101434
|
message?: StringFieldUpdateOperationsInput | string
|
|
101082
101435
|
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101083
101436
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101084
101437
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101085
|
-
|
|
101438
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101439
|
+
application?: ApplicationUpdateOneRequiredWithoutActivity_logsNestedInput
|
|
101440
|
+
user?: UserUpdateOneWithoutActivityLogsNestedInput
|
|
101086
101441
|
}
|
|
101087
101442
|
|
|
101088
101443
|
export type ActivityLogUncheckedUpdateWithoutActorInput = {
|
|
101089
101444
|
id?: StringFieldUpdateOperationsInput | string
|
|
101090
|
-
|
|
101445
|
+
application_id?: StringFieldUpdateOperationsInput | string
|
|
101091
101446
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101092
|
-
action_type?: EnumActivityActionTypeFieldUpdateOperationsInput | $Enums.ActivityActionType
|
|
101093
101447
|
message?: StringFieldUpdateOperationsInput | string
|
|
101094
101448
|
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101095
101449
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101096
101450
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101451
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101452
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101097
101453
|
}
|
|
101098
101454
|
|
|
101099
101455
|
export type ActivityLogUncheckedUpdateManyWithoutActorInput = {
|
|
101100
101456
|
id?: StringFieldUpdateOperationsInput | string
|
|
101101
|
-
|
|
101457
|
+
application_id?: StringFieldUpdateOperationsInput | string
|
|
101102
101458
|
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101103
|
-
action_type?: EnumActivityActionTypeFieldUpdateOperationsInput | $Enums.ActivityActionType
|
|
101104
101459
|
message?: StringFieldUpdateOperationsInput | string
|
|
101105
101460
|
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101106
101461
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101107
101462
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101463
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101464
|
+
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101108
101465
|
}
|
|
101109
101466
|
|
|
101110
101467
|
export type ActionUpdateWithoutUserInput = {
|
|
@@ -101253,6 +101610,42 @@ export namespace Prisma {
|
|
|
101253
101610
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101254
101611
|
}
|
|
101255
101612
|
|
|
101613
|
+
export type ActivityLogUpdateWithoutUserInput = {
|
|
101614
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
101615
|
+
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101616
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
101617
|
+
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101618
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101619
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101620
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101621
|
+
actor?: UserUpdateOneWithoutActor_activity_logsNestedInput
|
|
101622
|
+
application?: ApplicationUpdateOneRequiredWithoutActivity_logsNestedInput
|
|
101623
|
+
}
|
|
101624
|
+
|
|
101625
|
+
export type ActivityLogUncheckedUpdateWithoutUserInput = {
|
|
101626
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
101627
|
+
application_id?: StringFieldUpdateOperationsInput | string
|
|
101628
|
+
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101629
|
+
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101630
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
101631
|
+
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101632
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101633
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101634
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101635
|
+
}
|
|
101636
|
+
|
|
101637
|
+
export type ActivityLogUncheckedUpdateManyWithoutUserInput = {
|
|
101638
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
101639
|
+
application_id?: StringFieldUpdateOperationsInput | string
|
|
101640
|
+
actor_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101641
|
+
actor_type?: EnumActivityActorTypeFieldUpdateOperationsInput | $Enums.ActivityActorType
|
|
101642
|
+
message?: StringFieldUpdateOperationsInput | string
|
|
101643
|
+
timestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101644
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101645
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101646
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101647
|
+
}
|
|
101648
|
+
|
|
101256
101649
|
|
|
101257
101650
|
|
|
101258
101651
|
/**
|