@adaptware/eagles-db 0.1.39 → 0.1.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/edge.js +4 -5
- package/client/index-browser.js +1 -2
- package/client/index.d.ts +2 -625
- package/client/index.js +4 -5
- package/client/package.json +1 -1
- package/client/schema.prisma +0 -3
- package/client/wasm.js +1 -2
- package/package.json +1 -1
- package/prisma/schema/activityLog.prisma +0 -2
- package/prisma/schema/user.prisma +0 -1
package/client/index.d.ts
CHANGED
|
@@ -5518,7 +5518,6 @@ export namespace Prisma {
|
|
|
5518
5518
|
actor_activity_logs: number
|
|
5519
5519
|
actions: number
|
|
5520
5520
|
fitChecks: number
|
|
5521
|
-
activityLogs: number
|
|
5522
5521
|
}
|
|
5523
5522
|
|
|
5524
5523
|
export type UserCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -5540,7 +5539,6 @@ export namespace Prisma {
|
|
|
5540
5539
|
actor_activity_logs?: boolean | UserCountOutputTypeCountActor_activity_logsArgs
|
|
5541
5540
|
actions?: boolean | UserCountOutputTypeCountActionsArgs
|
|
5542
5541
|
fitChecks?: boolean | UserCountOutputTypeCountFitChecksArgs
|
|
5543
|
-
activityLogs?: boolean | UserCountOutputTypeCountActivityLogsArgs
|
|
5544
5542
|
}
|
|
5545
5543
|
|
|
5546
5544
|
// Custom InputTypes
|
|
@@ -5680,13 +5678,6 @@ export namespace Prisma {
|
|
|
5680
5678
|
where?: FitCheckWhereInput
|
|
5681
5679
|
}
|
|
5682
5680
|
|
|
5683
|
-
/**
|
|
5684
|
-
* UserCountOutputType without action
|
|
5685
|
-
*/
|
|
5686
|
-
export type UserCountOutputTypeCountActivityLogsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5687
|
-
where?: ActivityLogWhereInput
|
|
5688
|
-
}
|
|
5689
|
-
|
|
5690
5681
|
|
|
5691
5682
|
/**
|
|
5692
5683
|
* Models
|
|
@@ -9266,7 +9257,6 @@ export namespace Prisma {
|
|
|
9266
9257
|
timestamp: Date | null
|
|
9267
9258
|
created_at: Date | null
|
|
9268
9259
|
is_active: boolean | null
|
|
9269
|
-
userId: string | null
|
|
9270
9260
|
}
|
|
9271
9261
|
|
|
9272
9262
|
export type ActivityLogMaxAggregateOutputType = {
|
|
@@ -9278,7 +9268,6 @@ export namespace Prisma {
|
|
|
9278
9268
|
timestamp: Date | null
|
|
9279
9269
|
created_at: Date | null
|
|
9280
9270
|
is_active: boolean | null
|
|
9281
|
-
userId: string | null
|
|
9282
9271
|
}
|
|
9283
9272
|
|
|
9284
9273
|
export type ActivityLogCountAggregateOutputType = {
|
|
@@ -9291,7 +9280,6 @@ export namespace Prisma {
|
|
|
9291
9280
|
metadata: number
|
|
9292
9281
|
created_at: number
|
|
9293
9282
|
is_active: number
|
|
9294
|
-
userId: number
|
|
9295
9283
|
_all: number
|
|
9296
9284
|
}
|
|
9297
9285
|
|
|
@@ -9305,7 +9293,6 @@ export namespace Prisma {
|
|
|
9305
9293
|
timestamp?: true
|
|
9306
9294
|
created_at?: true
|
|
9307
9295
|
is_active?: true
|
|
9308
|
-
userId?: true
|
|
9309
9296
|
}
|
|
9310
9297
|
|
|
9311
9298
|
export type ActivityLogMaxAggregateInputType = {
|
|
@@ -9317,7 +9304,6 @@ export namespace Prisma {
|
|
|
9317
9304
|
timestamp?: true
|
|
9318
9305
|
created_at?: true
|
|
9319
9306
|
is_active?: true
|
|
9320
|
-
userId?: true
|
|
9321
9307
|
}
|
|
9322
9308
|
|
|
9323
9309
|
export type ActivityLogCountAggregateInputType = {
|
|
@@ -9330,7 +9316,6 @@ export namespace Prisma {
|
|
|
9330
9316
|
metadata?: true
|
|
9331
9317
|
created_at?: true
|
|
9332
9318
|
is_active?: true
|
|
9333
|
-
userId?: true
|
|
9334
9319
|
_all?: true
|
|
9335
9320
|
}
|
|
9336
9321
|
|
|
@@ -9416,7 +9401,6 @@ export namespace Prisma {
|
|
|
9416
9401
|
metadata: JsonValue | null
|
|
9417
9402
|
created_at: Date
|
|
9418
9403
|
is_active: boolean
|
|
9419
|
-
userId: string | null
|
|
9420
9404
|
_count: ActivityLogCountAggregateOutputType | null
|
|
9421
9405
|
_min: ActivityLogMinAggregateOutputType | null
|
|
9422
9406
|
_max: ActivityLogMaxAggregateOutputType | null
|
|
@@ -9446,10 +9430,8 @@ export namespace Prisma {
|
|
|
9446
9430
|
metadata?: boolean
|
|
9447
9431
|
created_at?: boolean
|
|
9448
9432
|
is_active?: boolean
|
|
9449
|
-
userId?: boolean
|
|
9450
9433
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9451
9434
|
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9452
|
-
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9453
9435
|
}, ExtArgs["result"]["activityLog"]>
|
|
9454
9436
|
|
|
9455
9437
|
export type ActivityLogSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -9462,10 +9444,8 @@ export namespace Prisma {
|
|
|
9462
9444
|
metadata?: boolean
|
|
9463
9445
|
created_at?: boolean
|
|
9464
9446
|
is_active?: boolean
|
|
9465
|
-
userId?: boolean
|
|
9466
9447
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9467
9448
|
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9468
|
-
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9469
9449
|
}, ExtArgs["result"]["activityLog"]>
|
|
9470
9450
|
|
|
9471
9451
|
export type ActivityLogSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -9478,10 +9458,8 @@ export namespace Prisma {
|
|
|
9478
9458
|
metadata?: boolean
|
|
9479
9459
|
created_at?: boolean
|
|
9480
9460
|
is_active?: boolean
|
|
9481
|
-
userId?: boolean
|
|
9482
9461
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9483
9462
|
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9484
|
-
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9485
9463
|
}, ExtArgs["result"]["activityLog"]>
|
|
9486
9464
|
|
|
9487
9465
|
export type ActivityLogSelectScalar = {
|
|
@@ -9494,24 +9472,20 @@ export namespace Prisma {
|
|
|
9494
9472
|
metadata?: boolean
|
|
9495
9473
|
created_at?: boolean
|
|
9496
9474
|
is_active?: boolean
|
|
9497
|
-
userId?: boolean
|
|
9498
9475
|
}
|
|
9499
9476
|
|
|
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"
|
|
9477
|
+
export type ActivityLogOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "application_id" | "actor_id" | "actor_type" | "message" | "timestamp" | "metadata" | "created_at" | "is_active", ExtArgs["result"]["activityLog"]>
|
|
9501
9478
|
export type ActivityLogInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9502
9479
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9503
9480
|
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9504
|
-
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9505
9481
|
}
|
|
9506
9482
|
export type ActivityLogIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9507
9483
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9508
9484
|
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9509
|
-
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9510
9485
|
}
|
|
9511
9486
|
export type ActivityLogIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9512
9487
|
actor?: boolean | ActivityLog$actorArgs<ExtArgs>
|
|
9513
9488
|
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
9514
|
-
user?: boolean | ActivityLog$userArgs<ExtArgs>
|
|
9515
9489
|
}
|
|
9516
9490
|
|
|
9517
9491
|
export type $ActivityLogPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -9519,7 +9493,6 @@ export namespace Prisma {
|
|
|
9519
9493
|
objects: {
|
|
9520
9494
|
actor: Prisma.$UserPayload<ExtArgs> | null
|
|
9521
9495
|
application: Prisma.$ApplicationPayload<ExtArgs>
|
|
9522
|
-
user: Prisma.$UserPayload<ExtArgs> | null
|
|
9523
9496
|
}
|
|
9524
9497
|
scalars: $Extensions.GetPayloadResult<{
|
|
9525
9498
|
id: string
|
|
@@ -9531,7 +9504,6 @@ export namespace Prisma {
|
|
|
9531
9504
|
metadata: Prisma.JsonValue | null
|
|
9532
9505
|
created_at: Date
|
|
9533
9506
|
is_active: boolean
|
|
9534
|
-
userId: string | null
|
|
9535
9507
|
}, ExtArgs["result"]["activityLog"]>
|
|
9536
9508
|
composites: {}
|
|
9537
9509
|
}
|
|
@@ -9928,7 +9900,6 @@ export namespace Prisma {
|
|
|
9928
9900
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
9929
9901
|
actor<T extends ActivityLog$actorArgs<ExtArgs> = {}>(args?: Subset<T, ActivityLog$actorArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
9930
9902
|
application<T extends ApplicationDefaultArgs<ExtArgs> = {}>(args?: Subset<T, ApplicationDefaultArgs<ExtArgs>>): Prisma__ApplicationClient<$Result.GetResult<Prisma.$ApplicationPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
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>
|
|
9932
9903
|
/**
|
|
9933
9904
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
9934
9905
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -9967,7 +9938,6 @@ export namespace Prisma {
|
|
|
9967
9938
|
readonly metadata: FieldRef<"ActivityLog", 'Json'>
|
|
9968
9939
|
readonly created_at: FieldRef<"ActivityLog", 'DateTime'>
|
|
9969
9940
|
readonly is_active: FieldRef<"ActivityLog", 'Boolean'>
|
|
9970
|
-
readonly userId: FieldRef<"ActivityLog", 'String'>
|
|
9971
9941
|
}
|
|
9972
9942
|
|
|
9973
9943
|
|
|
@@ -10382,25 +10352,6 @@ export namespace Prisma {
|
|
|
10382
10352
|
where?: UserWhereInput
|
|
10383
10353
|
}
|
|
10384
10354
|
|
|
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
|
-
|
|
10404
10355
|
/**
|
|
10405
10356
|
* ActivityLog without action
|
|
10406
10357
|
*/
|
|
@@ -51699,7 +51650,6 @@ export namespace Prisma {
|
|
|
51699
51650
|
calendly?: boolean | User$calendlyArgs<ExtArgs>
|
|
51700
51651
|
google?: boolean | User$googleArgs<ExtArgs>
|
|
51701
51652
|
fitChecks?: boolean | User$fitChecksArgs<ExtArgs>
|
|
51702
|
-
activityLogs?: boolean | User$activityLogsArgs<ExtArgs>
|
|
51703
51653
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
51704
51654
|
}, ExtArgs["result"]["user"]>
|
|
51705
51655
|
|
|
@@ -51842,7 +51792,6 @@ export namespace Prisma {
|
|
|
51842
51792
|
calendly?: boolean | User$calendlyArgs<ExtArgs>
|
|
51843
51793
|
google?: boolean | User$googleArgs<ExtArgs>
|
|
51844
51794
|
fitChecks?: boolean | User$fitChecksArgs<ExtArgs>
|
|
51845
|
-
activityLogs?: boolean | User$activityLogsArgs<ExtArgs>
|
|
51846
51795
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
51847
51796
|
}
|
|
51848
51797
|
export type UserIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -51885,7 +51834,6 @@ export namespace Prisma {
|
|
|
51885
51834
|
calendly: Prisma.$CalendlyPayload<ExtArgs> | null
|
|
51886
51835
|
google: Prisma.$GooglePayload<ExtArgs> | null
|
|
51887
51836
|
fitChecks: Prisma.$FitCheckPayload<ExtArgs>[]
|
|
51888
|
-
activityLogs: Prisma.$ActivityLogPayload<ExtArgs>[]
|
|
51889
51837
|
}
|
|
51890
51838
|
scalars: $Extensions.GetPayloadResult<{
|
|
51891
51839
|
id: string
|
|
@@ -52340,7 +52288,6 @@ export namespace Prisma {
|
|
|
52340
52288
|
calendly<T extends User$calendlyArgs<ExtArgs> = {}>(args?: Subset<T, User$calendlyArgs<ExtArgs>>): Prisma__CalendlyClient<$Result.GetResult<Prisma.$CalendlyPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
52341
52289
|
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>
|
|
52342
52290
|
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>
|
|
52344
52291
|
/**
|
|
52345
52292
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
52346
52293
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -53362,30 +53309,6 @@ export namespace Prisma {
|
|
|
53362
53309
|
distinct?: FitCheckScalarFieldEnum | FitCheckScalarFieldEnum[]
|
|
53363
53310
|
}
|
|
53364
53311
|
|
|
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
|
-
|
|
53389
53312
|
/**
|
|
53390
53313
|
* User without action
|
|
53391
53314
|
*/
|
|
@@ -54631,8 +54554,7 @@ export namespace Prisma {
|
|
|
54631
54554
|
timestamp: 'timestamp',
|
|
54632
54555
|
metadata: 'metadata',
|
|
54633
54556
|
created_at: 'created_at',
|
|
54634
|
-
is_active: 'is_active'
|
|
54635
|
-
userId: 'userId'
|
|
54557
|
+
is_active: 'is_active'
|
|
54636
54558
|
};
|
|
54637
54559
|
|
|
54638
54560
|
export type ActivityLogScalarFieldEnum = (typeof ActivityLogScalarFieldEnum)[keyof typeof ActivityLogScalarFieldEnum]
|
|
@@ -56149,10 +56071,8 @@ export namespace Prisma {
|
|
|
56149
56071
|
metadata?: JsonNullableFilter<"ActivityLog">
|
|
56150
56072
|
created_at?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
56151
56073
|
is_active?: BoolFilter<"ActivityLog"> | boolean
|
|
56152
|
-
userId?: StringNullableFilter<"ActivityLog"> | string | null
|
|
56153
56074
|
actor?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
56154
56075
|
application?: XOR<ApplicationScalarRelationFilter, ApplicationWhereInput>
|
|
56155
|
-
user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
56156
56076
|
}
|
|
56157
56077
|
|
|
56158
56078
|
export type ActivityLogOrderByWithRelationInput = {
|
|
@@ -56165,10 +56085,8 @@ export namespace Prisma {
|
|
|
56165
56085
|
metadata?: SortOrderInput | SortOrder
|
|
56166
56086
|
created_at?: SortOrder
|
|
56167
56087
|
is_active?: SortOrder
|
|
56168
|
-
userId?: SortOrderInput | SortOrder
|
|
56169
56088
|
actor?: UserOrderByWithRelationInput
|
|
56170
56089
|
application?: ApplicationOrderByWithRelationInput
|
|
56171
|
-
user?: UserOrderByWithRelationInput
|
|
56172
56090
|
}
|
|
56173
56091
|
|
|
56174
56092
|
export type ActivityLogWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -56184,10 +56102,8 @@ export namespace Prisma {
|
|
|
56184
56102
|
metadata?: JsonNullableFilter<"ActivityLog">
|
|
56185
56103
|
created_at?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
56186
56104
|
is_active?: BoolFilter<"ActivityLog"> | boolean
|
|
56187
|
-
userId?: StringNullableFilter<"ActivityLog"> | string | null
|
|
56188
56105
|
actor?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
56189
56106
|
application?: XOR<ApplicationScalarRelationFilter, ApplicationWhereInput>
|
|
56190
|
-
user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
56191
56107
|
}, "id">
|
|
56192
56108
|
|
|
56193
56109
|
export type ActivityLogOrderByWithAggregationInput = {
|
|
@@ -56200,7 +56116,6 @@ export namespace Prisma {
|
|
|
56200
56116
|
metadata?: SortOrderInput | SortOrder
|
|
56201
56117
|
created_at?: SortOrder
|
|
56202
56118
|
is_active?: SortOrder
|
|
56203
|
-
userId?: SortOrderInput | SortOrder
|
|
56204
56119
|
_count?: ActivityLogCountOrderByAggregateInput
|
|
56205
56120
|
_max?: ActivityLogMaxOrderByAggregateInput
|
|
56206
56121
|
_min?: ActivityLogMinOrderByAggregateInput
|
|
@@ -56219,7 +56134,6 @@ export namespace Prisma {
|
|
|
56219
56134
|
metadata?: JsonNullableWithAggregatesFilter<"ActivityLog">
|
|
56220
56135
|
created_at?: DateTimeWithAggregatesFilter<"ActivityLog"> | Date | string
|
|
56221
56136
|
is_active?: BoolWithAggregatesFilter<"ActivityLog"> | boolean
|
|
56222
|
-
userId?: StringNullableWithAggregatesFilter<"ActivityLog"> | string | null
|
|
56223
56137
|
}
|
|
56224
56138
|
|
|
56225
56139
|
export type ApplicationWhereInput = {
|
|
@@ -59881,7 +59795,6 @@ export namespace Prisma {
|
|
|
59881
59795
|
calendly?: XOR<CalendlyNullableScalarRelationFilter, CalendlyWhereInput> | null
|
|
59882
59796
|
google?: XOR<GoogleNullableScalarRelationFilter, GoogleWhereInput> | null
|
|
59883
59797
|
fitChecks?: FitCheckListRelationFilter
|
|
59884
|
-
activityLogs?: ActivityLogListRelationFilter
|
|
59885
59798
|
}
|
|
59886
59799
|
|
|
59887
59800
|
export type UserOrderByWithRelationInput = {
|
|
@@ -59943,7 +59856,6 @@ export namespace Prisma {
|
|
|
59943
59856
|
calendly?: CalendlyOrderByWithRelationInput
|
|
59944
59857
|
google?: GoogleOrderByWithRelationInput
|
|
59945
59858
|
fitChecks?: FitCheckOrderByRelationAggregateInput
|
|
59946
|
-
activityLogs?: ActivityLogOrderByRelationAggregateInput
|
|
59947
59859
|
}
|
|
59948
59860
|
|
|
59949
59861
|
export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -60008,7 +59920,6 @@ export namespace Prisma {
|
|
|
60008
59920
|
calendly?: XOR<CalendlyNullableScalarRelationFilter, CalendlyWhereInput> | null
|
|
60009
59921
|
google?: XOR<GoogleNullableScalarRelationFilter, GoogleWhereInput> | null
|
|
60010
59922
|
fitChecks?: FitCheckListRelationFilter
|
|
60011
|
-
activityLogs?: ActivityLogListRelationFilter
|
|
60012
59923
|
}, "id" | "email" | "google_id" | "permission_id">
|
|
60013
59924
|
|
|
60014
59925
|
export type UserOrderByWithAggregationInput = {
|
|
@@ -60480,7 +60391,6 @@ export namespace Prisma {
|
|
|
60480
60391
|
is_active?: boolean
|
|
60481
60392
|
actor?: UserCreateNestedOneWithoutActor_activity_logsInput
|
|
60482
60393
|
application: ApplicationCreateNestedOneWithoutActivity_logsInput
|
|
60483
|
-
user?: UserCreateNestedOneWithoutActivityLogsInput
|
|
60484
60394
|
}
|
|
60485
60395
|
|
|
60486
60396
|
export type ActivityLogUncheckedCreateInput = {
|
|
@@ -60493,7 +60403,6 @@ export namespace Prisma {
|
|
|
60493
60403
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60494
60404
|
created_at?: Date | string
|
|
60495
60405
|
is_active?: boolean
|
|
60496
|
-
userId?: string | null
|
|
60497
60406
|
}
|
|
60498
60407
|
|
|
60499
60408
|
export type ActivityLogUpdateInput = {
|
|
@@ -60506,7 +60415,6 @@ export namespace Prisma {
|
|
|
60506
60415
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
60507
60416
|
actor?: UserUpdateOneWithoutActor_activity_logsNestedInput
|
|
60508
60417
|
application?: ApplicationUpdateOneRequiredWithoutActivity_logsNestedInput
|
|
60509
|
-
user?: UserUpdateOneWithoutActivityLogsNestedInput
|
|
60510
60418
|
}
|
|
60511
60419
|
|
|
60512
60420
|
export type ActivityLogUncheckedUpdateInput = {
|
|
@@ -60519,7 +60427,6 @@ export namespace Prisma {
|
|
|
60519
60427
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60520
60428
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
60521
60429
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
60522
|
-
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60523
60430
|
}
|
|
60524
60431
|
|
|
60525
60432
|
export type ActivityLogCreateManyInput = {
|
|
@@ -60532,7 +60439,6 @@ export namespace Prisma {
|
|
|
60532
60439
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60533
60440
|
created_at?: Date | string
|
|
60534
60441
|
is_active?: boolean
|
|
60535
|
-
userId?: string | null
|
|
60536
60442
|
}
|
|
60537
60443
|
|
|
60538
60444
|
export type ActivityLogUpdateManyMutationInput = {
|
|
@@ -60555,7 +60461,6 @@ export namespace Prisma {
|
|
|
60555
60461
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
60556
60462
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
60557
60463
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
60558
|
-
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
60559
60464
|
}
|
|
60560
60465
|
|
|
60561
60466
|
export type ApplicationCreateInput = {
|
|
@@ -64659,7 +64564,6 @@ export namespace Prisma {
|
|
|
64659
64564
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
64660
64565
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
64661
64566
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
64662
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
64663
64567
|
}
|
|
64664
64568
|
|
|
64665
64569
|
export type UserUncheckedCreateInput = {
|
|
@@ -64718,7 +64622,6 @@ export namespace Prisma {
|
|
|
64718
64622
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
64719
64623
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
64720
64624
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
64721
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
64722
64625
|
}
|
|
64723
64626
|
|
|
64724
64627
|
export type UserUpdateInput = {
|
|
@@ -64777,7 +64680,6 @@ export namespace Prisma {
|
|
|
64777
64680
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
64778
64681
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
64779
64682
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
64780
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
64781
64683
|
}
|
|
64782
64684
|
|
|
64783
64685
|
export type UserUncheckedUpdateInput = {
|
|
@@ -64836,7 +64738,6 @@ export namespace Prisma {
|
|
|
64836
64738
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
64837
64739
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
64838
64740
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
64839
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
64840
64741
|
}
|
|
64841
64742
|
|
|
64842
64743
|
export type UserCreateManyInput = {
|
|
@@ -65465,7 +65366,6 @@ export namespace Prisma {
|
|
|
65465
65366
|
metadata?: SortOrder
|
|
65466
65367
|
created_at?: SortOrder
|
|
65467
65368
|
is_active?: SortOrder
|
|
65468
|
-
userId?: SortOrder
|
|
65469
65369
|
}
|
|
65470
65370
|
|
|
65471
65371
|
export type ActivityLogMaxOrderByAggregateInput = {
|
|
@@ -65477,7 +65377,6 @@ export namespace Prisma {
|
|
|
65477
65377
|
timestamp?: SortOrder
|
|
65478
65378
|
created_at?: SortOrder
|
|
65479
65379
|
is_active?: SortOrder
|
|
65480
|
-
userId?: SortOrder
|
|
65481
65380
|
}
|
|
65482
65381
|
|
|
65483
65382
|
export type ActivityLogMinOrderByAggregateInput = {
|
|
@@ -65489,7 +65388,6 @@ export namespace Prisma {
|
|
|
65489
65388
|
timestamp?: SortOrder
|
|
65490
65389
|
created_at?: SortOrder
|
|
65491
65390
|
is_active?: SortOrder
|
|
65492
|
-
userId?: SortOrder
|
|
65493
65391
|
}
|
|
65494
65392
|
|
|
65495
65393
|
export type EnumActivityActorTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -68676,12 +68574,6 @@ export namespace Prisma {
|
|
|
68676
68574
|
connect?: ApplicationWhereUniqueInput
|
|
68677
68575
|
}
|
|
68678
68576
|
|
|
68679
|
-
export type UserCreateNestedOneWithoutActivityLogsInput = {
|
|
68680
|
-
create?: XOR<UserCreateWithoutActivityLogsInput, UserUncheckedCreateWithoutActivityLogsInput>
|
|
68681
|
-
connectOrCreate?: UserCreateOrConnectWithoutActivityLogsInput
|
|
68682
|
-
connect?: UserWhereUniqueInput
|
|
68683
|
-
}
|
|
68684
|
-
|
|
68685
68577
|
export type EnumActivityActorTypeFieldUpdateOperationsInput = {
|
|
68686
68578
|
set?: $Enums.ActivityActorType
|
|
68687
68579
|
}
|
|
@@ -68704,16 +68596,6 @@ export namespace Prisma {
|
|
|
68704
68596
|
update?: XOR<XOR<ApplicationUpdateToOneWithWhereWithoutActivity_logsInput, ApplicationUpdateWithoutActivity_logsInput>, ApplicationUncheckedUpdateWithoutActivity_logsInput>
|
|
68705
68597
|
}
|
|
68706
68598
|
|
|
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
|
-
|
|
68717
68599
|
export type EvaluationPlanCreateNestedOneWithoutApplicationsInput = {
|
|
68718
68600
|
create?: XOR<EvaluationPlanCreateWithoutApplicationsInput, EvaluationPlanUncheckedCreateWithoutApplicationsInput>
|
|
68719
68601
|
connectOrCreate?: EvaluationPlanCreateOrConnectWithoutApplicationsInput
|
|
@@ -72911,13 +72793,6 @@ export namespace Prisma {
|
|
|
72911
72793
|
connect?: FitCheckWhereUniqueInput | FitCheckWhereUniqueInput[]
|
|
72912
72794
|
}
|
|
72913
72795
|
|
|
72914
|
-
export type ActivityLogCreateNestedManyWithoutUserInput = {
|
|
72915
|
-
create?: XOR<ActivityLogCreateWithoutUserInput, ActivityLogUncheckedCreateWithoutUserInput> | ActivityLogCreateWithoutUserInput[] | ActivityLogUncheckedCreateWithoutUserInput[]
|
|
72916
|
-
connectOrCreate?: ActivityLogCreateOrConnectWithoutUserInput | ActivityLogCreateOrConnectWithoutUserInput[]
|
|
72917
|
-
createMany?: ActivityLogCreateManyUserInputEnvelope
|
|
72918
|
-
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
72919
|
-
}
|
|
72920
|
-
|
|
72921
72796
|
export type ApplicationUncheckedCreateNestedManyWithoutCandidateInput = {
|
|
72922
72797
|
create?: XOR<ApplicationCreateWithoutCandidateInput, ApplicationUncheckedCreateWithoutCandidateInput> | ApplicationCreateWithoutCandidateInput[] | ApplicationUncheckedCreateWithoutCandidateInput[]
|
|
72923
72798
|
connectOrCreate?: ApplicationCreateOrConnectWithoutCandidateInput | ApplicationCreateOrConnectWithoutCandidateInput[]
|
|
@@ -73073,13 +72948,6 @@ export namespace Prisma {
|
|
|
73073
72948
|
connect?: FitCheckWhereUniqueInput | FitCheckWhereUniqueInput[]
|
|
73074
72949
|
}
|
|
73075
72950
|
|
|
73076
|
-
export type ActivityLogUncheckedCreateNestedManyWithoutUserInput = {
|
|
73077
|
-
create?: XOR<ActivityLogCreateWithoutUserInput, ActivityLogUncheckedCreateWithoutUserInput> | ActivityLogCreateWithoutUserInput[] | ActivityLogUncheckedCreateWithoutUserInput[]
|
|
73078
|
-
connectOrCreate?: ActivityLogCreateOrConnectWithoutUserInput | ActivityLogCreateOrConnectWithoutUserInput[]
|
|
73079
|
-
createMany?: ActivityLogCreateManyUserInputEnvelope
|
|
73080
|
-
connect?: ActivityLogWhereUniqueInput | ActivityLogWhereUniqueInput[]
|
|
73081
|
-
}
|
|
73082
|
-
|
|
73083
72951
|
export type EnumFirstLoginStatusFieldUpdateOperationsInput = {
|
|
73084
72952
|
set?: $Enums.FirstLoginStatus
|
|
73085
72953
|
}
|
|
@@ -73413,20 +73281,6 @@ export namespace Prisma {
|
|
|
73413
73281
|
deleteMany?: FitCheckScalarWhereInput | FitCheckScalarWhereInput[]
|
|
73414
73282
|
}
|
|
73415
73283
|
|
|
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
|
-
|
|
73430
73284
|
export type ApplicationUncheckedUpdateManyWithoutCandidateNestedInput = {
|
|
73431
73285
|
create?: XOR<ApplicationCreateWithoutCandidateInput, ApplicationUncheckedCreateWithoutCandidateInput> | ApplicationCreateWithoutCandidateInput[] | ApplicationUncheckedCreateWithoutCandidateInput[]
|
|
73432
73286
|
connectOrCreate?: ApplicationCreateOrConnectWithoutCandidateInput | ApplicationCreateOrConnectWithoutCandidateInput[]
|
|
@@ -73728,20 +73582,6 @@ export namespace Prisma {
|
|
|
73728
73582
|
deleteMany?: FitCheckScalarWhereInput | FitCheckScalarWhereInput[]
|
|
73729
73583
|
}
|
|
73730
73584
|
|
|
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
|
-
|
|
73745
73585
|
export type UserCreateNestedOneWithoutUser_profileInput = {
|
|
73746
73586
|
create?: XOR<UserCreateWithoutUser_profileInput, UserUncheckedCreateWithoutUser_profileInput>
|
|
73747
73587
|
connectOrCreate?: UserCreateOrConnectWithoutUser_profileInput
|
|
@@ -74686,7 +74526,6 @@ export namespace Prisma {
|
|
|
74686
74526
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
74687
74527
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
74688
74528
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
74689
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
74690
74529
|
}
|
|
74691
74530
|
|
|
74692
74531
|
export type UserUncheckedCreateWithoutCandidateResponsesInput = {
|
|
@@ -74744,7 +74583,6 @@ export namespace Prisma {
|
|
|
74744
74583
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
74745
74584
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
74746
74585
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
74747
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
74748
74586
|
}
|
|
74749
74587
|
|
|
74750
74588
|
export type UserCreateOrConnectWithoutCandidateResponsesInput = {
|
|
@@ -74918,7 +74756,6 @@ export namespace Prisma {
|
|
|
74918
74756
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
74919
74757
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
74920
74758
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
74921
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
74922
74759
|
}
|
|
74923
74760
|
|
|
74924
74761
|
export type UserUncheckedUpdateWithoutCandidateResponsesInput = {
|
|
@@ -74976,7 +74813,6 @@ export namespace Prisma {
|
|
|
74976
74813
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
74977
74814
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
74978
74815
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
74979
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
74980
74816
|
}
|
|
74981
74817
|
|
|
74982
74818
|
export type OrganisationCreateWithoutUser_rolesInput = {
|
|
@@ -75132,7 +74968,6 @@ export namespace Prisma {
|
|
|
75132
74968
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
75133
74969
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
75134
74970
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
75135
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
75136
74971
|
}
|
|
75137
74972
|
|
|
75138
74973
|
export type UserUncheckedCreateWithoutRoleInput = {
|
|
@@ -75190,7 +75025,6 @@ export namespace Prisma {
|
|
|
75190
75025
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
75191
75026
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
75192
75027
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
75193
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
75194
75028
|
}
|
|
75195
75029
|
|
|
75196
75030
|
export type UserCreateOrConnectWithoutRoleInput = {
|
|
@@ -75422,7 +75256,6 @@ export namespace Prisma {
|
|
|
75422
75256
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
75423
75257
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
75424
75258
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
75425
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
75426
75259
|
}
|
|
75427
75260
|
|
|
75428
75261
|
export type UserUncheckedCreateWithoutActionsInput = {
|
|
@@ -75480,7 +75313,6 @@ export namespace Prisma {
|
|
|
75480
75313
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
75481
75314
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
75482
75315
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
75483
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
75484
75316
|
}
|
|
75485
75317
|
|
|
75486
75318
|
export type UserCreateOrConnectWithoutActionsInput = {
|
|
@@ -75625,7 +75457,6 @@ export namespace Prisma {
|
|
|
75625
75457
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
75626
75458
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
75627
75459
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
75628
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
75629
75460
|
}
|
|
75630
75461
|
|
|
75631
75462
|
export type UserUncheckedUpdateWithoutActionsInput = {
|
|
@@ -75683,7 +75514,6 @@ export namespace Prisma {
|
|
|
75683
75514
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
75684
75515
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
75685
75516
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
75686
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
75687
75517
|
}
|
|
75688
75518
|
|
|
75689
75519
|
export type OrganisationUpsertWithoutActionsInput = {
|
|
@@ -75818,7 +75648,6 @@ export namespace Prisma {
|
|
|
75818
75648
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
75819
75649
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
75820
75650
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
75821
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
75822
75651
|
}
|
|
75823
75652
|
|
|
75824
75653
|
export type UserUncheckedCreateWithoutActor_activity_logsInput = {
|
|
@@ -75876,7 +75705,6 @@ export namespace Prisma {
|
|
|
75876
75705
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
75877
75706
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
75878
75707
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
75879
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
75880
75708
|
}
|
|
75881
75709
|
|
|
75882
75710
|
export type UserCreateOrConnectWithoutActor_activity_logsInput = {
|
|
@@ -75933,127 +75761,6 @@ export namespace Prisma {
|
|
|
75933
75761
|
create: XOR<ApplicationCreateWithoutActivity_logsInput, ApplicationUncheckedCreateWithoutActivity_logsInput>
|
|
75934
75762
|
}
|
|
75935
75763
|
|
|
75936
|
-
export type UserCreateWithoutActivityLogsInput = {
|
|
75937
|
-
id?: string
|
|
75938
|
-
email: string
|
|
75939
|
-
password: string
|
|
75940
|
-
google_id?: string | null
|
|
75941
|
-
refresh_token?: string | null
|
|
75942
|
-
created_at?: Date | string
|
|
75943
|
-
updated_at?: Date | string
|
|
75944
|
-
created_by: string
|
|
75945
|
-
updated_by: string
|
|
75946
|
-
is_active?: boolean
|
|
75947
|
-
is_self_registered?: boolean
|
|
75948
|
-
profile_created: boolean
|
|
75949
|
-
first_login_status?: $Enums.FirstLoginStatus
|
|
75950
|
-
name?: string | null
|
|
75951
|
-
phone?: string | null
|
|
75952
|
-
description?: string | null
|
|
75953
|
-
date_of_birth?: Date | string | null
|
|
75954
|
-
designation?: string | null
|
|
75955
|
-
location?: string | null
|
|
75956
|
-
salary?: string | null
|
|
75957
|
-
work_experience?: NullableJsonNullValueInput | InputJsonValue
|
|
75958
|
-
education?: NullableJsonNullValueInput | InputJsonValue
|
|
75959
|
-
skills?: NullableJsonNullValueInput | InputJsonValue
|
|
75960
|
-
notice_period?: string | null
|
|
75961
|
-
preferred_work_mode?: string | null
|
|
75962
|
-
gender?: string | null
|
|
75963
|
-
ethnicity?: string | null
|
|
75964
|
-
veteran_status?: string | null
|
|
75965
|
-
disability_status?: string | null
|
|
75966
|
-
role: UserRoleCreateNestedOneWithoutUsersInput
|
|
75967
|
-
permission?: PermissionCreateNestedOneWithoutUserInput
|
|
75968
|
-
organisation?: OrganisationCreateNestedOneWithoutInterviewersInput
|
|
75969
|
-
applications?: ApplicationCreateNestedManyWithoutCandidateInput
|
|
75970
|
-
resume?: ResumeCreateNestedManyWithoutUserInput
|
|
75971
|
-
candidate_profile?: CandidateProfileCreateNestedOneWithoutUserInput
|
|
75972
|
-
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
75973
|
-
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
75974
|
-
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
75975
|
-
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
75976
|
-
panelist?: PanelistCreateNestedOneWithoutUserInput
|
|
75977
|
-
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
75978
|
-
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
75979
|
-
candidate_interviews?: InterviewCreateNestedManyWithoutCandidateInput
|
|
75980
|
-
interviewer_interviews?: InterviewCreateNestedManyWithoutInterviewerInput
|
|
75981
|
-
assessment_results?: AssessmentCreateNestedManyWithoutUserInput
|
|
75982
|
-
candidate_assessments?: AssessmentCreateNestedManyWithoutCandidateInput
|
|
75983
|
-
reviewer_assessments?: AssessmentCreateNestedManyWithoutReviewerInput
|
|
75984
|
-
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
75985
|
-
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
75986
|
-
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
75987
|
-
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
75988
|
-
actions?: ActionCreateNestedManyWithoutUserInput
|
|
75989
|
-
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
75990
|
-
google?: GoogleCreateNestedOneWithoutUserInput
|
|
75991
|
-
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
75992
|
-
}
|
|
75993
|
-
|
|
75994
|
-
export type UserUncheckedCreateWithoutActivityLogsInput = {
|
|
75995
|
-
id?: string
|
|
75996
|
-
email: string
|
|
75997
|
-
password: string
|
|
75998
|
-
role_id: string
|
|
75999
|
-
google_id?: string | null
|
|
76000
|
-
refresh_token?: string | null
|
|
76001
|
-
created_at?: Date | string
|
|
76002
|
-
updated_at?: Date | string
|
|
76003
|
-
created_by: string
|
|
76004
|
-
updated_by: string
|
|
76005
|
-
is_active?: boolean
|
|
76006
|
-
is_self_registered?: boolean
|
|
76007
|
-
permission_id?: string | null
|
|
76008
|
-
organisation_id?: string | null
|
|
76009
|
-
profile_created: boolean
|
|
76010
|
-
first_login_status?: $Enums.FirstLoginStatus
|
|
76011
|
-
name?: string | null
|
|
76012
|
-
phone?: string | null
|
|
76013
|
-
description?: string | null
|
|
76014
|
-
date_of_birth?: Date | string | null
|
|
76015
|
-
designation?: string | null
|
|
76016
|
-
location?: string | null
|
|
76017
|
-
salary?: string | null
|
|
76018
|
-
work_experience?: NullableJsonNullValueInput | InputJsonValue
|
|
76019
|
-
education?: NullableJsonNullValueInput | InputJsonValue
|
|
76020
|
-
skills?: NullableJsonNullValueInput | InputJsonValue
|
|
76021
|
-
notice_period?: string | null
|
|
76022
|
-
preferred_work_mode?: string | null
|
|
76023
|
-
gender?: string | null
|
|
76024
|
-
ethnicity?: string | null
|
|
76025
|
-
veteran_status?: string | null
|
|
76026
|
-
disability_status?: string | null
|
|
76027
|
-
applications?: ApplicationUncheckedCreateNestedManyWithoutCandidateInput
|
|
76028
|
-
resume?: ResumeUncheckedCreateNestedManyWithoutUserInput
|
|
76029
|
-
candidate_profile?: CandidateProfileUncheckedCreateNestedOneWithoutUserInput
|
|
76030
|
-
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
76031
|
-
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
76032
|
-
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
76033
|
-
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
76034
|
-
panelist?: PanelistUncheckedCreateNestedOneWithoutUserInput
|
|
76035
|
-
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
76036
|
-
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
76037
|
-
candidate_interviews?: InterviewUncheckedCreateNestedManyWithoutCandidateInput
|
|
76038
|
-
interviewer_interviews?: InterviewUncheckedCreateNestedManyWithoutInterviewerInput
|
|
76039
|
-
assessment_results?: AssessmentUncheckedCreateNestedManyWithoutUserInput
|
|
76040
|
-
candidate_assessments?: AssessmentUncheckedCreateNestedManyWithoutCandidateInput
|
|
76041
|
-
reviewer_assessments?: AssessmentUncheckedCreateNestedManyWithoutReviewerInput
|
|
76042
|
-
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
76043
|
-
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
76044
|
-
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
76045
|
-
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
76046
|
-
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
76047
|
-
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
76048
|
-
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
76049
|
-
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
76050
|
-
}
|
|
76051
|
-
|
|
76052
|
-
export type UserCreateOrConnectWithoutActivityLogsInput = {
|
|
76053
|
-
where: UserWhereUniqueInput
|
|
76054
|
-
create: XOR<UserCreateWithoutActivityLogsInput, UserUncheckedCreateWithoutActivityLogsInput>
|
|
76055
|
-
}
|
|
76056
|
-
|
|
76057
75764
|
export type UserUpsertWithoutActor_activity_logsInput = {
|
|
76058
75765
|
update: XOR<UserUpdateWithoutActor_activity_logsInput, UserUncheckedUpdateWithoutActor_activity_logsInput>
|
|
76059
75766
|
create: XOR<UserCreateWithoutActor_activity_logsInput, UserUncheckedCreateWithoutActor_activity_logsInput>
|
|
@@ -76120,7 +75827,6 @@ export namespace Prisma {
|
|
|
76120
75827
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
76121
75828
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
76122
75829
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
76123
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
76124
75830
|
}
|
|
76125
75831
|
|
|
76126
75832
|
export type UserUncheckedUpdateWithoutActor_activity_logsInput = {
|
|
@@ -76178,7 +75884,6 @@ export namespace Prisma {
|
|
|
76178
75884
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
76179
75885
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
76180
75886
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76181
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
76182
75887
|
}
|
|
76183
75888
|
|
|
76184
75889
|
export type ApplicationUpsertWithoutActivity_logsInput = {
|
|
@@ -76236,133 +75941,6 @@ export namespace Prisma {
|
|
|
76236
75941
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
76237
75942
|
}
|
|
76238
75943
|
|
|
76239
|
-
export type UserUpsertWithoutActivityLogsInput = {
|
|
76240
|
-
update: XOR<UserUpdateWithoutActivityLogsInput, UserUncheckedUpdateWithoutActivityLogsInput>
|
|
76241
|
-
create: XOR<UserCreateWithoutActivityLogsInput, UserUncheckedCreateWithoutActivityLogsInput>
|
|
76242
|
-
where?: UserWhereInput
|
|
76243
|
-
}
|
|
76244
|
-
|
|
76245
|
-
export type UserUpdateToOneWithWhereWithoutActivityLogsInput = {
|
|
76246
|
-
where?: UserWhereInput
|
|
76247
|
-
data: XOR<UserUpdateWithoutActivityLogsInput, UserUncheckedUpdateWithoutActivityLogsInput>
|
|
76248
|
-
}
|
|
76249
|
-
|
|
76250
|
-
export type UserUpdateWithoutActivityLogsInput = {
|
|
76251
|
-
id?: StringFieldUpdateOperationsInput | string
|
|
76252
|
-
email?: StringFieldUpdateOperationsInput | string
|
|
76253
|
-
password?: StringFieldUpdateOperationsInput | string
|
|
76254
|
-
google_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76255
|
-
refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76256
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76257
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76258
|
-
created_by?: StringFieldUpdateOperationsInput | string
|
|
76259
|
-
updated_by?: StringFieldUpdateOperationsInput | string
|
|
76260
|
-
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76261
|
-
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
76262
|
-
profile_created?: BoolFieldUpdateOperationsInput | boolean
|
|
76263
|
-
first_login_status?: EnumFirstLoginStatusFieldUpdateOperationsInput | $Enums.FirstLoginStatus
|
|
76264
|
-
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76265
|
-
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76266
|
-
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76267
|
-
date_of_birth?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
76268
|
-
designation?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76269
|
-
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76270
|
-
salary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76271
|
-
work_experience?: NullableJsonNullValueInput | InputJsonValue
|
|
76272
|
-
education?: NullableJsonNullValueInput | InputJsonValue
|
|
76273
|
-
skills?: NullableJsonNullValueInput | InputJsonValue
|
|
76274
|
-
notice_period?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76275
|
-
preferred_work_mode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76276
|
-
gender?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76277
|
-
ethnicity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76278
|
-
veteran_status?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76279
|
-
disability_status?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76280
|
-
role?: UserRoleUpdateOneRequiredWithoutUsersNestedInput
|
|
76281
|
-
permission?: PermissionUpdateOneWithoutUserNestedInput
|
|
76282
|
-
organisation?: OrganisationUpdateOneWithoutInterviewersNestedInput
|
|
76283
|
-
applications?: ApplicationUpdateManyWithoutCandidateNestedInput
|
|
76284
|
-
resume?: ResumeUpdateManyWithoutUserNestedInput
|
|
76285
|
-
candidate_profile?: CandidateProfileUpdateOneWithoutUserNestedInput
|
|
76286
|
-
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
76287
|
-
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
76288
|
-
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
76289
|
-
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
76290
|
-
panelist?: PanelistUpdateOneWithoutUserNestedInput
|
|
76291
|
-
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
76292
|
-
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
76293
|
-
candidate_interviews?: InterviewUpdateManyWithoutCandidateNestedInput
|
|
76294
|
-
interviewer_interviews?: InterviewUpdateManyWithoutInterviewerNestedInput
|
|
76295
|
-
assessment_results?: AssessmentUpdateManyWithoutUserNestedInput
|
|
76296
|
-
candidate_assessments?: AssessmentUpdateManyWithoutCandidateNestedInput
|
|
76297
|
-
reviewer_assessments?: AssessmentUpdateManyWithoutReviewerNestedInput
|
|
76298
|
-
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
76299
|
-
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
76300
|
-
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
76301
|
-
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
76302
|
-
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
76303
|
-
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
76304
|
-
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
76305
|
-
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
76306
|
-
}
|
|
76307
|
-
|
|
76308
|
-
export type UserUncheckedUpdateWithoutActivityLogsInput = {
|
|
76309
|
-
id?: StringFieldUpdateOperationsInput | string
|
|
76310
|
-
email?: StringFieldUpdateOperationsInput | string
|
|
76311
|
-
password?: StringFieldUpdateOperationsInput | string
|
|
76312
|
-
role_id?: StringFieldUpdateOperationsInput | string
|
|
76313
|
-
google_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76314
|
-
refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76315
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76316
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
76317
|
-
created_by?: StringFieldUpdateOperationsInput | string
|
|
76318
|
-
updated_by?: StringFieldUpdateOperationsInput | string
|
|
76319
|
-
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
76320
|
-
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
76321
|
-
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76322
|
-
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76323
|
-
profile_created?: BoolFieldUpdateOperationsInput | boolean
|
|
76324
|
-
first_login_status?: EnumFirstLoginStatusFieldUpdateOperationsInput | $Enums.FirstLoginStatus
|
|
76325
|
-
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76326
|
-
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76327
|
-
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76328
|
-
date_of_birth?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
76329
|
-
designation?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76330
|
-
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76331
|
-
salary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76332
|
-
work_experience?: NullableJsonNullValueInput | InputJsonValue
|
|
76333
|
-
education?: NullableJsonNullValueInput | InputJsonValue
|
|
76334
|
-
skills?: NullableJsonNullValueInput | InputJsonValue
|
|
76335
|
-
notice_period?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76336
|
-
preferred_work_mode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76337
|
-
gender?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76338
|
-
ethnicity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76339
|
-
veteran_status?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76340
|
-
disability_status?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76341
|
-
applications?: ApplicationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76342
|
-
resume?: ResumeUncheckedUpdateManyWithoutUserNestedInput
|
|
76343
|
-
candidate_profile?: CandidateProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
76344
|
-
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
76345
|
-
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
76346
|
-
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
76347
|
-
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
76348
|
-
panelist?: PanelistUncheckedUpdateOneWithoutUserNestedInput
|
|
76349
|
-
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
76350
|
-
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
76351
|
-
candidate_interviews?: InterviewUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76352
|
-
interviewer_interviews?: InterviewUncheckedUpdateManyWithoutInterviewerNestedInput
|
|
76353
|
-
assessment_results?: AssessmentUncheckedUpdateManyWithoutUserNestedInput
|
|
76354
|
-
candidate_assessments?: AssessmentUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76355
|
-
reviewer_assessments?: AssessmentUncheckedUpdateManyWithoutReviewerNestedInput
|
|
76356
|
-
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76357
|
-
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76358
|
-
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76359
|
-
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
76360
|
-
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
76361
|
-
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
76362
|
-
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
76363
|
-
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
76364
|
-
}
|
|
76365
|
-
|
|
76366
75944
|
export type EvaluationPlanCreateWithoutApplicationsInput = {
|
|
76367
75945
|
id?: string
|
|
76368
75946
|
title: string
|
|
@@ -76479,7 +76057,6 @@ export namespace Prisma {
|
|
|
76479
76057
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
76480
76058
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
76481
76059
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
76482
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
76483
76060
|
}
|
|
76484
76061
|
|
|
76485
76062
|
export type UserUncheckedCreateWithoutApplicationsInput = {
|
|
@@ -76537,7 +76114,6 @@ export namespace Prisma {
|
|
|
76537
76114
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
76538
76115
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
76539
76116
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
76540
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
76541
76117
|
}
|
|
76542
76118
|
|
|
76543
76119
|
export type UserCreateOrConnectWithoutApplicationsInput = {
|
|
@@ -76960,7 +76536,6 @@ export namespace Prisma {
|
|
|
76960
76536
|
created_at?: Date | string
|
|
76961
76537
|
is_active?: boolean
|
|
76962
76538
|
actor?: UserCreateNestedOneWithoutActor_activity_logsInput
|
|
76963
|
-
user?: UserCreateNestedOneWithoutActivityLogsInput
|
|
76964
76539
|
}
|
|
76965
76540
|
|
|
76966
76541
|
export type ActivityLogUncheckedCreateWithoutApplicationInput = {
|
|
@@ -76972,7 +76547,6 @@ export namespace Prisma {
|
|
|
76972
76547
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
76973
76548
|
created_at?: Date | string
|
|
76974
76549
|
is_active?: boolean
|
|
76975
|
-
userId?: string | null
|
|
76976
76550
|
}
|
|
76977
76551
|
|
|
76978
76552
|
export type ActivityLogCreateOrConnectWithoutApplicationInput = {
|
|
@@ -77118,7 +76692,6 @@ export namespace Prisma {
|
|
|
77118
76692
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
77119
76693
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
77120
76694
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
77121
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
77122
76695
|
}
|
|
77123
76696
|
|
|
77124
76697
|
export type UserUncheckedUpdateWithoutApplicationsInput = {
|
|
@@ -77176,7 +76749,6 @@ export namespace Prisma {
|
|
|
77176
76749
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
77177
76750
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
77178
76751
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
77179
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
77180
76752
|
}
|
|
77181
76753
|
|
|
77182
76754
|
export type OrganisationUpsertWithoutApplicationsInput = {
|
|
@@ -77586,7 +77158,6 @@ export namespace Prisma {
|
|
|
77586
77158
|
metadata?: JsonNullableFilter<"ActivityLog">
|
|
77587
77159
|
created_at?: DateTimeFilter<"ActivityLog"> | Date | string
|
|
77588
77160
|
is_active?: BoolFilter<"ActivityLog"> | boolean
|
|
77589
|
-
userId?: StringNullableFilter<"ActivityLog"> | string | null
|
|
77590
77161
|
}
|
|
77591
77162
|
|
|
77592
77163
|
export type JobDescriptionCreateWithoutApprovalsInput = {
|
|
@@ -77711,7 +77282,6 @@ export namespace Prisma {
|
|
|
77711
77282
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
77712
77283
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
77713
77284
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
77714
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
77715
77285
|
}
|
|
77716
77286
|
|
|
77717
77287
|
export type UserUncheckedCreateWithoutApprovalsInput = {
|
|
@@ -77769,7 +77339,6 @@ export namespace Prisma {
|
|
|
77769
77339
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
77770
77340
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
77771
77341
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
77772
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
77773
77342
|
}
|
|
77774
77343
|
|
|
77775
77344
|
export type UserCreateOrConnectWithoutApprovalsInput = {
|
|
@@ -77987,7 +77556,6 @@ export namespace Prisma {
|
|
|
77987
77556
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
77988
77557
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
77989
77558
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
77990
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
77991
77559
|
}
|
|
77992
77560
|
|
|
77993
77561
|
export type UserUncheckedUpdateWithoutApprovalsInput = {
|
|
@@ -78045,7 +77613,6 @@ export namespace Prisma {
|
|
|
78045
77613
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
78046
77614
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
78047
77615
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78048
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
78049
77616
|
}
|
|
78050
77617
|
|
|
78051
77618
|
export type OrganisationUpsertWithoutApprovalsInput = {
|
|
@@ -78225,7 +77792,6 @@ export namespace Prisma {
|
|
|
78225
77792
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
78226
77793
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
78227
77794
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
78228
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
78229
77795
|
}
|
|
78230
77796
|
|
|
78231
77797
|
export type UserUncheckedCreateWithoutCandidate_assessmentsInput = {
|
|
@@ -78283,7 +77849,6 @@ export namespace Prisma {
|
|
|
78283
77849
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
78284
77850
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
78285
77851
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
78286
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
78287
77852
|
}
|
|
78288
77853
|
|
|
78289
77854
|
export type UserCreateOrConnectWithoutCandidate_assessmentsInput = {
|
|
@@ -78346,7 +77911,6 @@ export namespace Prisma {
|
|
|
78346
77911
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
78347
77912
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
78348
77913
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
78349
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
78350
77914
|
}
|
|
78351
77915
|
|
|
78352
77916
|
export type UserUncheckedCreateWithoutReviewer_assessmentsInput = {
|
|
@@ -78404,7 +77968,6 @@ export namespace Prisma {
|
|
|
78404
77968
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
78405
77969
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
78406
77970
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
78407
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
78408
77971
|
}
|
|
78409
77972
|
|
|
78410
77973
|
export type UserCreateOrConnectWithoutReviewer_assessmentsInput = {
|
|
@@ -78570,7 +78133,6 @@ export namespace Prisma {
|
|
|
78570
78133
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
78571
78134
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
78572
78135
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
78573
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
78574
78136
|
}
|
|
78575
78137
|
|
|
78576
78138
|
export type UserUncheckedCreateWithoutAssessment_resultsInput = {
|
|
@@ -78628,7 +78190,6 @@ export namespace Prisma {
|
|
|
78628
78190
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
78629
78191
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
78630
78192
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
78631
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
78632
78193
|
}
|
|
78633
78194
|
|
|
78634
78195
|
export type UserCreateOrConnectWithoutAssessment_resultsInput = {
|
|
@@ -78753,7 +78314,6 @@ export namespace Prisma {
|
|
|
78753
78314
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
78754
78315
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
78755
78316
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
78756
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
78757
78317
|
}
|
|
78758
78318
|
|
|
78759
78319
|
export type UserUncheckedUpdateWithoutCandidate_assessmentsInput = {
|
|
@@ -78811,7 +78371,6 @@ export namespace Prisma {
|
|
|
78811
78371
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
78812
78372
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
78813
78373
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78814
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
78815
78374
|
}
|
|
78816
78375
|
|
|
78817
78376
|
export type UserUpsertWithoutReviewer_assessmentsInput = {
|
|
@@ -78880,7 +78439,6 @@ export namespace Prisma {
|
|
|
78880
78439
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
78881
78440
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
78882
78441
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
78883
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
78884
78442
|
}
|
|
78885
78443
|
|
|
78886
78444
|
export type UserUncheckedUpdateWithoutReviewer_assessmentsInput = {
|
|
@@ -78938,7 +78496,6 @@ export namespace Prisma {
|
|
|
78938
78496
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
78939
78497
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
78940
78498
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
78941
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
78942
78499
|
}
|
|
78943
78500
|
|
|
78944
78501
|
export type AssessmentQuestionUpsertWithWhereUniqueWithoutAssessmentInput = {
|
|
@@ -79117,7 +78674,6 @@ export namespace Prisma {
|
|
|
79117
78674
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
79118
78675
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
79119
78676
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
79120
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
79121
78677
|
}
|
|
79122
78678
|
|
|
79123
78679
|
export type UserUncheckedUpdateWithoutAssessment_resultsInput = {
|
|
@@ -79175,7 +78731,6 @@ export namespace Prisma {
|
|
|
79175
78731
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
79176
78732
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
79177
78733
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
79178
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
79179
78734
|
}
|
|
79180
78735
|
|
|
79181
78736
|
export type OrganisationCreateWithoutAssessment_libraryInput = {
|
|
@@ -80361,7 +79916,6 @@ export namespace Prisma {
|
|
|
80361
79916
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
80362
79917
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
80363
79918
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
80364
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
80365
79919
|
}
|
|
80366
79920
|
|
|
80367
79921
|
export type UserUncheckedCreateWithoutCalendlyInput = {
|
|
@@ -80419,7 +79973,6 @@ export namespace Prisma {
|
|
|
80419
79973
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
80420
79974
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
80421
79975
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
80422
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
80423
79976
|
}
|
|
80424
79977
|
|
|
80425
79978
|
export type UserCreateOrConnectWithoutCalendlyInput = {
|
|
@@ -80493,7 +80046,6 @@ export namespace Prisma {
|
|
|
80493
80046
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
80494
80047
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
80495
80048
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
80496
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
80497
80049
|
}
|
|
80498
80050
|
|
|
80499
80051
|
export type UserUncheckedUpdateWithoutCalendlyInput = {
|
|
@@ -80551,7 +80103,6 @@ export namespace Prisma {
|
|
|
80551
80103
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
80552
80104
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
80553
80105
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80554
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
80555
80106
|
}
|
|
80556
80107
|
|
|
80557
80108
|
export type UserCreateWithoutCandidate_profileInput = {
|
|
@@ -80609,7 +80160,6 @@ export namespace Prisma {
|
|
|
80609
80160
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
80610
80161
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
80611
80162
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
80612
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
80613
80163
|
}
|
|
80614
80164
|
|
|
80615
80165
|
export type UserUncheckedCreateWithoutCandidate_profileInput = {
|
|
@@ -80667,7 +80217,6 @@ export namespace Prisma {
|
|
|
80667
80217
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
80668
80218
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
80669
80219
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
80670
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
80671
80220
|
}
|
|
80672
80221
|
|
|
80673
80222
|
export type UserCreateOrConnectWithoutCandidate_profileInput = {
|
|
@@ -80786,7 +80335,6 @@ export namespace Prisma {
|
|
|
80786
80335
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
80787
80336
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
80788
80337
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
80789
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
80790
80338
|
}
|
|
80791
80339
|
|
|
80792
80340
|
export type UserUncheckedUpdateWithoutCandidate_profileInput = {
|
|
@@ -80844,7 +80392,6 @@ export namespace Prisma {
|
|
|
80844
80392
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
80845
80393
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
80846
80394
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
80847
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
80848
80395
|
}
|
|
80849
80396
|
|
|
80850
80397
|
export type ResumeUpsertWithoutCandidate_profileInput = {
|
|
@@ -81903,7 +81450,6 @@ export namespace Prisma {
|
|
|
81903
81450
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
81904
81451
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
81905
81452
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
81906
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
81907
81453
|
}
|
|
81908
81454
|
|
|
81909
81455
|
export type UserUncheckedCreateWithoutFitChecksInput = {
|
|
@@ -81961,7 +81507,6 @@ export namespace Prisma {
|
|
|
81961
81507
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
81962
81508
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
81963
81509
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
81964
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
81965
81510
|
}
|
|
81966
81511
|
|
|
81967
81512
|
export type UserCreateOrConnectWithoutFitChecksInput = {
|
|
@@ -82273,7 +81818,6 @@ export namespace Prisma {
|
|
|
82273
81818
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
82274
81819
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
82275
81820
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
82276
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
82277
81821
|
}
|
|
82278
81822
|
|
|
82279
81823
|
export type UserUncheckedUpdateWithoutFitChecksInput = {
|
|
@@ -82331,7 +81875,6 @@ export namespace Prisma {
|
|
|
82331
81875
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
82332
81876
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
82333
81877
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
82334
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
82335
81878
|
}
|
|
82336
81879
|
|
|
82337
81880
|
export type ResumeUpsertWithoutFit_checkInput = {
|
|
@@ -82568,7 +82111,6 @@ export namespace Prisma {
|
|
|
82568
82111
|
actions?: ActionCreateNestedManyWithoutUserInput
|
|
82569
82112
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
82570
82113
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
82571
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
82572
82114
|
}
|
|
82573
82115
|
|
|
82574
82116
|
export type UserUncheckedCreateWithoutGoogleInput = {
|
|
@@ -82626,7 +82168,6 @@ export namespace Prisma {
|
|
|
82626
82168
|
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
82627
82169
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
82628
82170
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
82629
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
82630
82171
|
}
|
|
82631
82172
|
|
|
82632
82173
|
export type UserCreateOrConnectWithoutGoogleInput = {
|
|
@@ -82700,7 +82241,6 @@ export namespace Prisma {
|
|
|
82700
82241
|
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
82701
82242
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
82702
82243
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
82703
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
82704
82244
|
}
|
|
82705
82245
|
|
|
82706
82246
|
export type UserUncheckedUpdateWithoutGoogleInput = {
|
|
@@ -82758,7 +82298,6 @@ export namespace Prisma {
|
|
|
82758
82298
|
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
82759
82299
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
82760
82300
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
82761
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
82762
82301
|
}
|
|
82763
82302
|
|
|
82764
82303
|
export type InterviewCreateWithoutIntermediateFeedbacksInput = {
|
|
@@ -83125,7 +82664,6 @@ export namespace Prisma {
|
|
|
83125
82664
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
83126
82665
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
83127
82666
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
83128
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
83129
82667
|
}
|
|
83130
82668
|
|
|
83131
82669
|
export type UserUncheckedCreateWithoutCandidate_interviewsInput = {
|
|
@@ -83183,7 +82721,6 @@ export namespace Prisma {
|
|
|
83183
82721
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
83184
82722
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
83185
82723
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
83186
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
83187
82724
|
}
|
|
83188
82725
|
|
|
83189
82726
|
export type UserCreateOrConnectWithoutCandidate_interviewsInput = {
|
|
@@ -83246,7 +82783,6 @@ export namespace Prisma {
|
|
|
83246
82783
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
83247
82784
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
83248
82785
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
83249
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
83250
82786
|
}
|
|
83251
82787
|
|
|
83252
82788
|
export type UserUncheckedCreateWithoutInterviewer_interviewsInput = {
|
|
@@ -83304,7 +82840,6 @@ export namespace Prisma {
|
|
|
83304
82840
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
83305
82841
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
83306
82842
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
83307
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
83308
82843
|
}
|
|
83309
82844
|
|
|
83310
82845
|
export type UserCreateOrConnectWithoutInterviewer_interviewsInput = {
|
|
@@ -83964,7 +83499,6 @@ export namespace Prisma {
|
|
|
83964
83499
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
83965
83500
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
83966
83501
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
83967
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
83968
83502
|
}
|
|
83969
83503
|
|
|
83970
83504
|
export type UserUncheckedUpdateWithoutCandidate_interviewsInput = {
|
|
@@ -84022,7 +83556,6 @@ export namespace Prisma {
|
|
|
84022
83556
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
84023
83557
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
84024
83558
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
84025
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
84026
83559
|
}
|
|
84027
83560
|
|
|
84028
83561
|
export type UserUpsertWithoutInterviewer_interviewsInput = {
|
|
@@ -84091,7 +83624,6 @@ export namespace Prisma {
|
|
|
84091
83624
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
84092
83625
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
84093
83626
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
84094
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
84095
83627
|
}
|
|
84096
83628
|
|
|
84097
83629
|
export type UserUncheckedUpdateWithoutInterviewer_interviewsInput = {
|
|
@@ -84149,7 +83681,6 @@ export namespace Prisma {
|
|
|
84149
83681
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
84150
83682
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
84151
83683
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
84152
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
84153
83684
|
}
|
|
84154
83685
|
|
|
84155
83686
|
export type OrganisationUpsertWithoutInterviewsInput = {
|
|
@@ -85700,7 +85231,6 @@ export namespace Prisma {
|
|
|
85700
85231
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
85701
85232
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
85702
85233
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
85703
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
85704
85234
|
}
|
|
85705
85235
|
|
|
85706
85236
|
export type UserUncheckedCreateWithoutHiring_manager_job_descriptionsInput = {
|
|
@@ -85758,7 +85288,6 @@ export namespace Prisma {
|
|
|
85758
85288
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
85759
85289
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
85760
85290
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
85761
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
85762
85291
|
}
|
|
85763
85292
|
|
|
85764
85293
|
export type UserCreateOrConnectWithoutHiring_manager_job_descriptionsInput = {
|
|
@@ -85821,7 +85350,6 @@ export namespace Prisma {
|
|
|
85821
85350
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
85822
85351
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
85823
85352
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
85824
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
85825
85353
|
}
|
|
85826
85354
|
|
|
85827
85355
|
export type UserUncheckedCreateWithoutJob_descriptionInput = {
|
|
@@ -85879,7 +85407,6 @@ export namespace Prisma {
|
|
|
85879
85407
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
85880
85408
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
85881
85409
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
85882
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
85883
85410
|
}
|
|
85884
85411
|
|
|
85885
85412
|
export type UserCreateOrConnectWithoutJob_descriptionInput = {
|
|
@@ -86374,7 +85901,6 @@ export namespace Prisma {
|
|
|
86374
85901
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
86375
85902
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
86376
85903
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
86377
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
86378
85904
|
}
|
|
86379
85905
|
|
|
86380
85906
|
export type UserUncheckedUpdateWithoutHiring_manager_job_descriptionsInput = {
|
|
@@ -86432,7 +85958,6 @@ export namespace Prisma {
|
|
|
86432
85958
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
86433
85959
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
86434
85960
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86435
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
86436
85961
|
}
|
|
86437
85962
|
|
|
86438
85963
|
export type UserUpsertWithWhereUniqueWithoutJob_descriptionInput = {
|
|
@@ -86662,7 +86187,6 @@ export namespace Prisma {
|
|
|
86662
86187
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
86663
86188
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
86664
86189
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
86665
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
86666
86190
|
}
|
|
86667
86191
|
|
|
86668
86192
|
export type UserUncheckedCreateWithoutSent_messagesInput = {
|
|
@@ -86720,7 +86244,6 @@ export namespace Prisma {
|
|
|
86720
86244
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
86721
86245
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
86722
86246
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
86723
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
86724
86247
|
}
|
|
86725
86248
|
|
|
86726
86249
|
export type UserCreateOrConnectWithoutSent_messagesInput = {
|
|
@@ -86783,7 +86306,6 @@ export namespace Prisma {
|
|
|
86783
86306
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
86784
86307
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
86785
86308
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
86786
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
86787
86309
|
}
|
|
86788
86310
|
|
|
86789
86311
|
export type UserUncheckedCreateWithoutReceived_messagesInput = {
|
|
@@ -86841,7 +86363,6 @@ export namespace Prisma {
|
|
|
86841
86363
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
86842
86364
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
86843
86365
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
86844
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
86845
86366
|
}
|
|
86846
86367
|
|
|
86847
86368
|
export type UserCreateOrConnectWithoutReceived_messagesInput = {
|
|
@@ -86915,7 +86436,6 @@ export namespace Prisma {
|
|
|
86915
86436
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
86916
86437
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
86917
86438
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
86918
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
86919
86439
|
}
|
|
86920
86440
|
|
|
86921
86441
|
export type UserUncheckedUpdateWithoutSent_messagesInput = {
|
|
@@ -86973,7 +86493,6 @@ export namespace Prisma {
|
|
|
86973
86493
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
86974
86494
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
86975
86495
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
86976
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
86977
86496
|
}
|
|
86978
86497
|
|
|
86979
86498
|
export type UserUpsertWithoutReceived_messagesInput = {
|
|
@@ -87042,7 +86561,6 @@ export namespace Prisma {
|
|
|
87042
86561
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
87043
86562
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
87044
86563
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
87045
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
87046
86564
|
}
|
|
87047
86565
|
|
|
87048
86566
|
export type UserUncheckedUpdateWithoutReceived_messagesInput = {
|
|
@@ -87100,7 +86618,6 @@ export namespace Prisma {
|
|
|
87100
86618
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
87101
86619
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
87102
86620
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
87103
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
87104
86621
|
}
|
|
87105
86622
|
|
|
87106
86623
|
export type JobDescriptionCreateWithoutOngoing_evaluationsInput = {
|
|
@@ -87274,7 +86791,6 @@ export namespace Prisma {
|
|
|
87274
86791
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
87275
86792
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
87276
86793
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
87277
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
87278
86794
|
}
|
|
87279
86795
|
|
|
87280
86796
|
export type UserUncheckedCreateWithoutOngoing_evaluationsInput = {
|
|
@@ -87332,7 +86848,6 @@ export namespace Prisma {
|
|
|
87332
86848
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
87333
86849
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
87334
86850
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
87335
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
87336
86851
|
}
|
|
87337
86852
|
|
|
87338
86853
|
export type UserCreateOrConnectWithoutOngoing_evaluationsInput = {
|
|
@@ -87784,7 +87299,6 @@ export namespace Prisma {
|
|
|
87784
87299
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
87785
87300
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
87786
87301
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
87787
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
87788
87302
|
}
|
|
87789
87303
|
|
|
87790
87304
|
export type UserUncheckedUpdateWithoutOngoing_evaluationsInput = {
|
|
@@ -87842,7 +87356,6 @@ export namespace Prisma {
|
|
|
87842
87356
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
87843
87357
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
87844
87358
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
87845
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
87846
87359
|
}
|
|
87847
87360
|
|
|
87848
87361
|
export type ResumeUpsertWithoutOngoing_evaluationsInput = {
|
|
@@ -88174,7 +87687,6 @@ export namespace Prisma {
|
|
|
88174
87687
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
88175
87688
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
88176
87689
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
88177
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
88178
87690
|
}
|
|
88179
87691
|
|
|
88180
87692
|
export type UserUncheckedCreateWithoutOrganisationInput = {
|
|
@@ -88232,7 +87744,6 @@ export namespace Prisma {
|
|
|
88232
87744
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
88233
87745
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
88234
87746
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
88235
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
88236
87747
|
}
|
|
88237
87748
|
|
|
88238
87749
|
export type UserCreateOrConnectWithoutOrganisationInput = {
|
|
@@ -89664,7 +89175,6 @@ export namespace Prisma {
|
|
|
89664
89175
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
89665
89176
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
89666
89177
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
89667
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
89668
89178
|
}
|
|
89669
89179
|
|
|
89670
89180
|
export type UserUncheckedCreateWithoutPanelistInput = {
|
|
@@ -89722,7 +89232,6 @@ export namespace Prisma {
|
|
|
89722
89232
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
89723
89233
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
89724
89234
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
89725
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
89726
89235
|
}
|
|
89727
89236
|
|
|
89728
89237
|
export type UserCreateOrConnectWithoutPanelistInput = {
|
|
@@ -90016,7 +89525,6 @@ export namespace Prisma {
|
|
|
90016
89525
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
90017
89526
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
90018
89527
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
90019
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
90020
89528
|
}
|
|
90021
89529
|
|
|
90022
89530
|
export type UserUncheckedUpdateWithoutPanelistInput = {
|
|
@@ -90074,7 +89582,6 @@ export namespace Prisma {
|
|
|
90074
89582
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
90075
89583
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
90076
89584
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90077
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
90078
89585
|
}
|
|
90079
89586
|
|
|
90080
89587
|
export type OrganisationUpsertWithoutPanelistsInput = {
|
|
@@ -90257,7 +89764,6 @@ export namespace Prisma {
|
|
|
90257
89764
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
90258
89765
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
90259
89766
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
90260
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
90261
89767
|
}
|
|
90262
89768
|
|
|
90263
89769
|
export type UserUncheckedCreateWithoutPermissionInput = {
|
|
@@ -90315,7 +89821,6 @@ export namespace Prisma {
|
|
|
90315
89821
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
90316
89822
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
90317
89823
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
90318
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
90319
89824
|
}
|
|
90320
89825
|
|
|
90321
89826
|
export type UserCreateOrConnectWithoutPermissionInput = {
|
|
@@ -90420,7 +89925,6 @@ export namespace Prisma {
|
|
|
90420
89925
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
90421
89926
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
90422
89927
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
90423
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
90424
89928
|
}
|
|
90425
89929
|
|
|
90426
89930
|
export type UserUncheckedUpdateWithoutPermissionInput = {
|
|
@@ -90478,7 +89982,6 @@ export namespace Prisma {
|
|
|
90478
89982
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
90479
89983
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
90480
89984
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90481
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
90482
89985
|
}
|
|
90483
89986
|
|
|
90484
89987
|
export type UserRoleUpsertWithoutPermissionInput = {
|
|
@@ -90573,7 +90076,6 @@ export namespace Prisma {
|
|
|
90573
90076
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
90574
90077
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
90575
90078
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
90576
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
90577
90079
|
}
|
|
90578
90080
|
|
|
90579
90081
|
export type UserUncheckedCreateWithoutQuestionsInput = {
|
|
@@ -90631,7 +90133,6 @@ export namespace Prisma {
|
|
|
90631
90133
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
90632
90134
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
90633
90135
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
90634
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
90635
90136
|
}
|
|
90636
90137
|
|
|
90637
90138
|
export type UserCreateOrConnectWithoutQuestionsInput = {
|
|
@@ -90869,7 +90370,6 @@ export namespace Prisma {
|
|
|
90869
90370
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
90870
90371
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
90871
90372
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
90872
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
90873
90373
|
}
|
|
90874
90374
|
|
|
90875
90375
|
export type UserUncheckedUpdateWithoutQuestionsInput = {
|
|
@@ -90927,7 +90427,6 @@ export namespace Prisma {
|
|
|
90927
90427
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
90928
90428
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
90929
90429
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
90930
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
90931
90430
|
}
|
|
90932
90431
|
|
|
90933
90432
|
export type AssessmentQuestionUpsertWithWhereUniqueWithoutQuestionInput = {
|
|
@@ -91135,7 +90634,6 @@ export namespace Prisma {
|
|
|
91135
90634
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
91136
90635
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
91137
90636
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
91138
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
91139
90637
|
}
|
|
91140
90638
|
|
|
91141
90639
|
export type UserUncheckedCreateWithoutResumeInput = {
|
|
@@ -91193,7 +90691,6 @@ export namespace Prisma {
|
|
|
91193
90691
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
91194
90692
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
91195
90693
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
91196
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
91197
90694
|
}
|
|
91198
90695
|
|
|
91199
90696
|
export type UserCreateOrConnectWithoutResumeInput = {
|
|
@@ -91766,7 +91263,6 @@ export namespace Prisma {
|
|
|
91766
91263
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
91767
91264
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
91768
91265
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
91769
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
91770
91266
|
}
|
|
91771
91267
|
|
|
91772
91268
|
export type UserUncheckedUpdateWithoutResumeInput = {
|
|
@@ -91824,7 +91320,6 @@ export namespace Prisma {
|
|
|
91824
91320
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
91825
91321
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
91826
91322
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
91827
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
91828
91323
|
}
|
|
91829
91324
|
|
|
91830
91325
|
export type OrganisationUpsertWithoutResumesInput = {
|
|
@@ -94071,7 +93566,6 @@ export namespace Prisma {
|
|
|
94071
93566
|
created_at?: Date | string
|
|
94072
93567
|
is_active?: boolean
|
|
94073
93568
|
application: ApplicationCreateNestedOneWithoutActivity_logsInput
|
|
94074
|
-
user?: UserCreateNestedOneWithoutActivityLogsInput
|
|
94075
93569
|
}
|
|
94076
93570
|
|
|
94077
93571
|
export type ActivityLogUncheckedCreateWithoutActorInput = {
|
|
@@ -94083,7 +93577,6 @@ export namespace Prisma {
|
|
|
94083
93577
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
94084
93578
|
created_at?: Date | string
|
|
94085
93579
|
is_active?: boolean
|
|
94086
|
-
userId?: string | null
|
|
94087
93580
|
}
|
|
94088
93581
|
|
|
94089
93582
|
export type ActivityLogCreateOrConnectWithoutActorInput = {
|
|
@@ -94276,40 +93769,6 @@ export namespace Prisma {
|
|
|
94276
93769
|
skipDuplicates?: boolean
|
|
94277
93770
|
}
|
|
94278
93771
|
|
|
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
|
-
|
|
94313
93772
|
export type UserRoleUpsertWithoutUsersInput = {
|
|
94314
93773
|
update: XOR<UserRoleUpdateWithoutUsersInput, UserRoleUncheckedUpdateWithoutUsersInput>
|
|
94315
93774
|
create: XOR<UserRoleCreateWithoutUsersInput, UserRoleUncheckedCreateWithoutUsersInput>
|
|
@@ -94975,22 +94434,6 @@ export namespace Prisma {
|
|
|
94975
94434
|
data: XOR<FitCheckUpdateManyMutationInput, FitCheckUncheckedUpdateManyWithoutCandidateInput>
|
|
94976
94435
|
}
|
|
94977
94436
|
|
|
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
|
-
|
|
94994
94437
|
export type UserCreateWithoutUser_profileInput = {
|
|
94995
94438
|
id?: string
|
|
94996
94439
|
email: string
|
|
@@ -95046,7 +94489,6 @@ export namespace Prisma {
|
|
|
95046
94489
|
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
95047
94490
|
google?: GoogleCreateNestedOneWithoutUserInput
|
|
95048
94491
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
95049
|
-
activityLogs?: ActivityLogCreateNestedManyWithoutUserInput
|
|
95050
94492
|
}
|
|
95051
94493
|
|
|
95052
94494
|
export type UserUncheckedCreateWithoutUser_profileInput = {
|
|
@@ -95104,7 +94546,6 @@ export namespace Prisma {
|
|
|
95104
94546
|
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
95105
94547
|
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
95106
94548
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
95107
|
-
activityLogs?: ActivityLogUncheckedCreateNestedManyWithoutUserInput
|
|
95108
94549
|
}
|
|
95109
94550
|
|
|
95110
94551
|
export type UserCreateOrConnectWithoutUser_profileInput = {
|
|
@@ -95178,7 +94619,6 @@ export namespace Prisma {
|
|
|
95178
94619
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
95179
94620
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
95180
94621
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
95181
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
95182
94622
|
}
|
|
95183
94623
|
|
|
95184
94624
|
export type UserUncheckedUpdateWithoutUser_profileInput = {
|
|
@@ -95236,7 +94676,6 @@ export namespace Prisma {
|
|
|
95236
94676
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
95237
94677
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
95238
94678
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95239
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
95240
94679
|
}
|
|
95241
94680
|
|
|
95242
94681
|
export type UserCreateManyRoleInput = {
|
|
@@ -95328,7 +94767,6 @@ export namespace Prisma {
|
|
|
95328
94767
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
95329
94768
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
95330
94769
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
95331
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
95332
94770
|
}
|
|
95333
94771
|
|
|
95334
94772
|
export type UserUncheckedUpdateWithoutRoleInput = {
|
|
@@ -95386,7 +94824,6 @@ export namespace Prisma {
|
|
|
95386
94824
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
95387
94825
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
95388
94826
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
95389
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
95390
94827
|
}
|
|
95391
94828
|
|
|
95392
94829
|
export type UserUncheckedUpdateManyWithoutRoleInput = {
|
|
@@ -95490,7 +94927,6 @@ export namespace Prisma {
|
|
|
95490
94927
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
95491
94928
|
created_at?: Date | string
|
|
95492
94929
|
is_active?: boolean
|
|
95493
|
-
userId?: string | null
|
|
95494
94930
|
}
|
|
95495
94931
|
|
|
95496
94932
|
export type InterviewUpdateWithoutApplicationInput = {
|
|
@@ -95690,7 +95126,6 @@ export namespace Prisma {
|
|
|
95690
95126
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95691
95127
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95692
95128
|
actor?: UserUpdateOneWithoutActor_activity_logsNestedInput
|
|
95693
|
-
user?: UserUpdateOneWithoutActivityLogsNestedInput
|
|
95694
95129
|
}
|
|
95695
95130
|
|
|
95696
95131
|
export type ActivityLogUncheckedUpdateWithoutApplicationInput = {
|
|
@@ -95702,7 +95137,6 @@ export namespace Prisma {
|
|
|
95702
95137
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
95703
95138
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95704
95139
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95705
|
-
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95706
95140
|
}
|
|
95707
95141
|
|
|
95708
95142
|
export type ActivityLogUncheckedUpdateManyWithoutApplicationInput = {
|
|
@@ -95714,7 +95148,6 @@ export namespace Prisma {
|
|
|
95714
95148
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
95715
95149
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
95716
95150
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
95717
|
-
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95718
95151
|
}
|
|
95719
95152
|
|
|
95720
95153
|
export type AssessmentQuestionCreateManyAssessmentInput = {
|
|
@@ -97843,7 +97276,6 @@ export namespace Prisma {
|
|
|
97843
97276
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
97844
97277
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
97845
97278
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
97846
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
97847
97279
|
}
|
|
97848
97280
|
|
|
97849
97281
|
export type UserUncheckedUpdateWithoutJob_descriptionInput = {
|
|
@@ -97901,7 +97333,6 @@ export namespace Prisma {
|
|
|
97901
97333
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
97902
97334
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
97903
97335
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
97904
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
97905
97336
|
}
|
|
97906
97337
|
|
|
97907
97338
|
export type UserUncheckedUpdateManyWithoutJob_descriptionInput = {
|
|
@@ -98334,7 +97765,6 @@ export namespace Prisma {
|
|
|
98334
97765
|
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
98335
97766
|
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
98336
97767
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
98337
|
-
activityLogs?: ActivityLogUpdateManyWithoutUserNestedInput
|
|
98338
97768
|
}
|
|
98339
97769
|
|
|
98340
97770
|
export type UserUncheckedUpdateWithoutOrganisationInput = {
|
|
@@ -98392,7 +97822,6 @@ export namespace Prisma {
|
|
|
98392
97822
|
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
98393
97823
|
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
98394
97824
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
98395
|
-
activityLogs?: ActivityLogUncheckedUpdateManyWithoutUserNestedInput
|
|
98396
97825
|
}
|
|
98397
97826
|
|
|
98398
97827
|
export type UserUncheckedUpdateManyWithoutOrganisationInput = {
|
|
@@ -100441,7 +99870,6 @@ export namespace Prisma {
|
|
|
100441
99870
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
100442
99871
|
created_at?: Date | string
|
|
100443
99872
|
is_active?: boolean
|
|
100444
|
-
userId?: string | null
|
|
100445
99873
|
}
|
|
100446
99874
|
|
|
100447
99875
|
export type ActionCreateManyUserInput = {
|
|
@@ -100492,18 +99920,6 @@ export namespace Prisma {
|
|
|
100492
99920
|
updated_at?: Date | string
|
|
100493
99921
|
}
|
|
100494
99922
|
|
|
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
|
-
|
|
100507
99923
|
export type ApplicationUpdateWithoutCandidateInput = {
|
|
100508
99924
|
id?: StringFieldUpdateOperationsInput | string
|
|
100509
99925
|
status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
|
|
@@ -101437,7 +100853,6 @@ export namespace Prisma {
|
|
|
101437
100853
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101438
100854
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101439
100855
|
application?: ApplicationUpdateOneRequiredWithoutActivity_logsNestedInput
|
|
101440
|
-
user?: UserUpdateOneWithoutActivityLogsNestedInput
|
|
101441
100856
|
}
|
|
101442
100857
|
|
|
101443
100858
|
export type ActivityLogUncheckedUpdateWithoutActorInput = {
|
|
@@ -101449,7 +100864,6 @@ export namespace Prisma {
|
|
|
101449
100864
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101450
100865
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101451
100866
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101452
|
-
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101453
100867
|
}
|
|
101454
100868
|
|
|
101455
100869
|
export type ActivityLogUncheckedUpdateManyWithoutActorInput = {
|
|
@@ -101461,7 +100875,6 @@ export namespace Prisma {
|
|
|
101461
100875
|
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
101462
100876
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101463
100877
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
101464
|
-
userId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101465
100878
|
}
|
|
101466
100879
|
|
|
101467
100880
|
export type ActionUpdateWithoutUserInput = {
|
|
@@ -101610,42 +101023,6 @@ export namespace Prisma {
|
|
|
101610
101023
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101611
101024
|
}
|
|
101612
101025
|
|
|
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
|
-
|
|
101649
101026
|
|
|
101650
101027
|
|
|
101651
101028
|
/**
|