@adaptware/eagles-db 0.1.74 → 0.1.75

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/index.d.ts CHANGED
@@ -73,11 +73,6 @@ export type Assignment = $Result.DefaultSelection<Prisma.$AssignmentPayload>
73
73
  *
74
74
  */
75
75
  export type AssignmentLibrary = $Result.DefaultSelection<Prisma.$AssignmentLibraryPayload>
76
- /**
77
- * Model AuthModule
78
- *
79
- */
80
- export type AuthModule = $Result.DefaultSelection<Prisma.$AuthModulePayload>
81
76
  /**
82
77
  * Model Budget
83
78
  *
@@ -284,14 +279,6 @@ export const AssignmentStatus: {
284
279
  export type AssignmentStatus = (typeof AssignmentStatus)[keyof typeof AssignmentStatus]
285
280
 
286
281
 
287
- export const AuthProvider: {
288
- GOOGLE: 'GOOGLE',
289
- MICROSOFT: 'MICROSOFT'
290
- };
291
-
292
- export type AuthProvider = (typeof AuthProvider)[keyof typeof AuthProvider]
293
-
294
-
295
282
  export const JobType: {
296
283
  Full_time: 'Full_time',
297
284
  Part_time: 'Part_time',
@@ -576,10 +563,6 @@ export type AssignmentStatus = $Enums.AssignmentStatus
576
563
 
577
564
  export const AssignmentStatus: typeof $Enums.AssignmentStatus
578
565
 
579
- export type AuthProvider = $Enums.AuthProvider
580
-
581
- export const AuthProvider: typeof $Enums.AuthProvider
582
-
583
566
  export type JobType = $Enums.JobType
584
567
 
585
568
  export const JobType: typeof $Enums.JobType
@@ -908,16 +891,6 @@ export class PrismaClient<
908
891
  */
909
892
  get assignmentLibrary(): Prisma.AssignmentLibraryDelegate<ExtArgs, ClientOptions>;
910
893
 
911
- /**
912
- * `prisma.authModule`: Exposes CRUD operations for the **AuthModule** model.
913
- * Example usage:
914
- * ```ts
915
- * // Fetch zero or more AuthModules
916
- * const authModules = await prisma.authModule.findMany()
917
- * ```
918
- */
919
- get authModule(): Prisma.AuthModuleDelegate<ExtArgs, ClientOptions>;
920
-
921
894
  /**
922
895
  * `prisma.budget`: Exposes CRUD operations for the **Budget** model.
923
896
  * Example usage:
@@ -1658,7 +1631,6 @@ export namespace Prisma {
1658
1631
  AssessmentQuestion: 'AssessmentQuestion',
1659
1632
  Assignment: 'Assignment',
1660
1633
  AssignmentLibrary: 'AssignmentLibrary',
1661
- AuthModule: 'AuthModule',
1662
1634
  Budget: 'Budget',
1663
1635
  Calendly: 'Calendly',
1664
1636
  CandidateProfile: 'CandidateProfile',
@@ -1706,7 +1678,7 @@ export namespace Prisma {
1706
1678
  omit: GlobalOmitOptions
1707
1679
  }
1708
1680
  meta: {
1709
- modelProps: "candidateQuestionResponse" | "userRole" | "action" | "activityLog" | "application" | "approval" | "assessment" | "assessmentLibrary" | "assessmentQuestion" | "assignment" | "assignmentLibrary" | "authModule" | "budget" | "calendly" | "candidateProfile" | "contactUs" | "evaluationPlan" | "feedback" | "fitCheck" | "google" | "integrationCredential" | "integrationJobSync" | "zohoSyncMapping" | "interview" | "interviewNotes" | "jobDescription" | "jobDescriptionData" | "jobProfile" | "liveAnalysis" | "message" | "ongoingEvaluation" | "organisation" | "permission" | "asyncOperation" | "question" | "resume" | "resumeData" | "suggestion" | "transcript" | "user" | "userProfile"
1681
+ modelProps: "candidateQuestionResponse" | "userRole" | "action" | "activityLog" | "application" | "approval" | "assessment" | "assessmentLibrary" | "assessmentQuestion" | "assignment" | "assignmentLibrary" | "budget" | "calendly" | "candidateProfile" | "contactUs" | "evaluationPlan" | "feedback" | "fitCheck" | "google" | "integrationCredential" | "integrationJobSync" | "zohoSyncMapping" | "interview" | "interviewNotes" | "jobDescription" | "jobDescriptionData" | "jobProfile" | "liveAnalysis" | "message" | "ongoingEvaluation" | "organisation" | "permission" | "asyncOperation" | "question" | "resume" | "resumeData" | "suggestion" | "transcript" | "user" | "userProfile"
1710
1682
  txIsolationLevel: Prisma.TransactionIsolationLevel
1711
1683
  }
1712
1684
  model: {
@@ -2524,80 +2496,6 @@ export namespace Prisma {
2524
2496
  }
2525
2497
  }
2526
2498
  }
2527
- AuthModule: {
2528
- payload: Prisma.$AuthModulePayload<ExtArgs>
2529
- fields: Prisma.AuthModuleFieldRefs
2530
- operations: {
2531
- findUnique: {
2532
- args: Prisma.AuthModuleFindUniqueArgs<ExtArgs>
2533
- result: $Utils.PayloadToResult<Prisma.$AuthModulePayload> | null
2534
- }
2535
- findUniqueOrThrow: {
2536
- args: Prisma.AuthModuleFindUniqueOrThrowArgs<ExtArgs>
2537
- result: $Utils.PayloadToResult<Prisma.$AuthModulePayload>
2538
- }
2539
- findFirst: {
2540
- args: Prisma.AuthModuleFindFirstArgs<ExtArgs>
2541
- result: $Utils.PayloadToResult<Prisma.$AuthModulePayload> | null
2542
- }
2543
- findFirstOrThrow: {
2544
- args: Prisma.AuthModuleFindFirstOrThrowArgs<ExtArgs>
2545
- result: $Utils.PayloadToResult<Prisma.$AuthModulePayload>
2546
- }
2547
- findMany: {
2548
- args: Prisma.AuthModuleFindManyArgs<ExtArgs>
2549
- result: $Utils.PayloadToResult<Prisma.$AuthModulePayload>[]
2550
- }
2551
- create: {
2552
- args: Prisma.AuthModuleCreateArgs<ExtArgs>
2553
- result: $Utils.PayloadToResult<Prisma.$AuthModulePayload>
2554
- }
2555
- createMany: {
2556
- args: Prisma.AuthModuleCreateManyArgs<ExtArgs>
2557
- result: BatchPayload
2558
- }
2559
- createManyAndReturn: {
2560
- args: Prisma.AuthModuleCreateManyAndReturnArgs<ExtArgs>
2561
- result: $Utils.PayloadToResult<Prisma.$AuthModulePayload>[]
2562
- }
2563
- delete: {
2564
- args: Prisma.AuthModuleDeleteArgs<ExtArgs>
2565
- result: $Utils.PayloadToResult<Prisma.$AuthModulePayload>
2566
- }
2567
- update: {
2568
- args: Prisma.AuthModuleUpdateArgs<ExtArgs>
2569
- result: $Utils.PayloadToResult<Prisma.$AuthModulePayload>
2570
- }
2571
- deleteMany: {
2572
- args: Prisma.AuthModuleDeleteManyArgs<ExtArgs>
2573
- result: BatchPayload
2574
- }
2575
- updateMany: {
2576
- args: Prisma.AuthModuleUpdateManyArgs<ExtArgs>
2577
- result: BatchPayload
2578
- }
2579
- updateManyAndReturn: {
2580
- args: Prisma.AuthModuleUpdateManyAndReturnArgs<ExtArgs>
2581
- result: $Utils.PayloadToResult<Prisma.$AuthModulePayload>[]
2582
- }
2583
- upsert: {
2584
- args: Prisma.AuthModuleUpsertArgs<ExtArgs>
2585
- result: $Utils.PayloadToResult<Prisma.$AuthModulePayload>
2586
- }
2587
- aggregate: {
2588
- args: Prisma.AuthModuleAggregateArgs<ExtArgs>
2589
- result: $Utils.Optional<AggregateAuthModule>
2590
- }
2591
- groupBy: {
2592
- args: Prisma.AuthModuleGroupByArgs<ExtArgs>
2593
- result: $Utils.Optional<AuthModuleGroupByOutputType>[]
2594
- }
2595
- count: {
2596
- args: Prisma.AuthModuleCountArgs<ExtArgs>
2597
- result: $Utils.Optional<AuthModuleCountAggregateOutputType> | number
2598
- }
2599
- }
2600
- }
2601
2499
  Budget: {
2602
2500
  payload: Prisma.$BudgetPayload<ExtArgs>
2603
2501
  fields: Prisma.BudgetFieldRefs
@@ -4847,7 +4745,6 @@ export namespace Prisma {
4847
4745
  assessmentQuestion?: AssessmentQuestionOmit
4848
4746
  assignment?: AssignmentOmit
4849
4747
  assignmentLibrary?: AssignmentLibraryOmit
4850
- authModule?: AuthModuleOmit
4851
4748
  budget?: BudgetOmit
4852
4749
  calendly?: CalendlyOmit
4853
4750
  candidateProfile?: CandidateProfileOmit
@@ -5815,7 +5712,6 @@ export namespace Prisma {
5815
5712
  fitChecks: number
5816
5713
  created_job_profiles: number
5817
5714
  assigned_job_profiles: number
5818
- user_auth_modules: number
5819
5715
  }
5820
5716
 
5821
5717
  export type UserCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -5842,7 +5738,6 @@ export namespace Prisma {
5842
5738
  fitChecks?: boolean | UserCountOutputTypeCountFitChecksArgs
5843
5739
  created_job_profiles?: boolean | UserCountOutputTypeCountCreated_job_profilesArgs
5844
5740
  assigned_job_profiles?: boolean | UserCountOutputTypeCountAssigned_job_profilesArgs
5845
- user_auth_modules?: boolean | UserCountOutputTypeCountUser_auth_modulesArgs
5846
5741
  }
5847
5742
 
5848
5743
  // Custom InputTypes
@@ -6017,13 +5912,6 @@ export namespace Prisma {
6017
5912
  where?: JobProfileWhereInput
6018
5913
  }
6019
5914
 
6020
- /**
6021
- * UserCountOutputType without action
6022
- */
6023
- export type UserCountOutputTypeCountUser_auth_modulesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
6024
- where?: AuthModuleWhereInput
6025
- }
6026
-
6027
5915
 
6028
5916
  /**
6029
5917
  * Models
@@ -19246,1627 +19134,478 @@ export namespace Prisma {
19246
19134
 
19247
19135
 
19248
19136
  /**
19249
- * Fields of the AssignmentLibrary model
19250
- */
19251
- interface AssignmentLibraryFieldRefs {
19252
- readonly id: FieldRef<"AssignmentLibrary", 'String'>
19253
- readonly deadline: FieldRef<"AssignmentLibrary", 'Int'>
19254
- readonly assignment: FieldRef<"AssignmentLibrary", 'Json'>
19255
- readonly job_description_id: FieldRef<"AssignmentLibrary", 'String'>
19256
- readonly organisation_id: FieldRef<"AssignmentLibrary", 'String'>
19257
- readonly created_at: FieldRef<"AssignmentLibrary", 'DateTime'>
19258
- readonly updated_at: FieldRef<"AssignmentLibrary", 'DateTime'>
19259
- readonly created_by: FieldRef<"AssignmentLibrary", 'String'>
19260
- readonly updated_by: FieldRef<"AssignmentLibrary", 'String'>
19261
- readonly is_active: FieldRef<"AssignmentLibrary", 'Boolean'>
19262
- }
19263
-
19264
-
19265
- // Custom InputTypes
19266
- /**
19267
- * AssignmentLibrary findUnique
19268
- */
19269
- export type AssignmentLibraryFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19270
- /**
19271
- * Select specific fields to fetch from the AssignmentLibrary
19272
- */
19273
- select?: AssignmentLibrarySelect<ExtArgs> | null
19274
- /**
19275
- * Omit specific fields from the AssignmentLibrary
19276
- */
19277
- omit?: AssignmentLibraryOmit<ExtArgs> | null
19278
- /**
19279
- * Choose, which related nodes to fetch as well
19280
- */
19281
- include?: AssignmentLibraryInclude<ExtArgs> | null
19282
- /**
19283
- * Filter, which AssignmentLibrary to fetch.
19284
- */
19285
- where: AssignmentLibraryWhereUniqueInput
19286
- }
19287
-
19288
- /**
19289
- * AssignmentLibrary findUniqueOrThrow
19290
- */
19291
- export type AssignmentLibraryFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19292
- /**
19293
- * Select specific fields to fetch from the AssignmentLibrary
19294
- */
19295
- select?: AssignmentLibrarySelect<ExtArgs> | null
19296
- /**
19297
- * Omit specific fields from the AssignmentLibrary
19298
- */
19299
- omit?: AssignmentLibraryOmit<ExtArgs> | null
19300
- /**
19301
- * Choose, which related nodes to fetch as well
19302
- */
19303
- include?: AssignmentLibraryInclude<ExtArgs> | null
19304
- /**
19305
- * Filter, which AssignmentLibrary to fetch.
19306
- */
19307
- where: AssignmentLibraryWhereUniqueInput
19308
- }
19309
-
19310
- /**
19311
- * AssignmentLibrary findFirst
19312
- */
19313
- export type AssignmentLibraryFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19314
- /**
19315
- * Select specific fields to fetch from the AssignmentLibrary
19316
- */
19317
- select?: AssignmentLibrarySelect<ExtArgs> | null
19318
- /**
19319
- * Omit specific fields from the AssignmentLibrary
19320
- */
19321
- omit?: AssignmentLibraryOmit<ExtArgs> | null
19322
- /**
19323
- * Choose, which related nodes to fetch as well
19324
- */
19325
- include?: AssignmentLibraryInclude<ExtArgs> | null
19326
- /**
19327
- * Filter, which AssignmentLibrary to fetch.
19328
- */
19329
- where?: AssignmentLibraryWhereInput
19330
- /**
19331
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
19332
- *
19333
- * Determine the order of AssignmentLibraries to fetch.
19334
- */
19335
- orderBy?: AssignmentLibraryOrderByWithRelationInput | AssignmentLibraryOrderByWithRelationInput[]
19336
- /**
19337
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
19338
- *
19339
- * Sets the position for searching for AssignmentLibraries.
19340
- */
19341
- cursor?: AssignmentLibraryWhereUniqueInput
19342
- /**
19343
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
19344
- *
19345
- * Take `±n` AssignmentLibraries from the position of the cursor.
19346
- */
19347
- take?: number
19348
- /**
19349
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
19350
- *
19351
- * Skip the first `n` AssignmentLibraries.
19352
- */
19353
- skip?: number
19354
- /**
19355
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
19356
- *
19357
- * Filter by unique combinations of AssignmentLibraries.
19358
- */
19359
- distinct?: AssignmentLibraryScalarFieldEnum | AssignmentLibraryScalarFieldEnum[]
19360
- }
19361
-
19362
- /**
19363
- * AssignmentLibrary findFirstOrThrow
19364
- */
19365
- export type AssignmentLibraryFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19366
- /**
19367
- * Select specific fields to fetch from the AssignmentLibrary
19368
- */
19369
- select?: AssignmentLibrarySelect<ExtArgs> | null
19370
- /**
19371
- * Omit specific fields from the AssignmentLibrary
19372
- */
19373
- omit?: AssignmentLibraryOmit<ExtArgs> | null
19374
- /**
19375
- * Choose, which related nodes to fetch as well
19376
- */
19377
- include?: AssignmentLibraryInclude<ExtArgs> | null
19378
- /**
19379
- * Filter, which AssignmentLibrary to fetch.
19380
- */
19381
- where?: AssignmentLibraryWhereInput
19382
- /**
19383
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
19384
- *
19385
- * Determine the order of AssignmentLibraries to fetch.
19386
- */
19387
- orderBy?: AssignmentLibraryOrderByWithRelationInput | AssignmentLibraryOrderByWithRelationInput[]
19388
- /**
19389
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
19390
- *
19391
- * Sets the position for searching for AssignmentLibraries.
19392
- */
19393
- cursor?: AssignmentLibraryWhereUniqueInput
19394
- /**
19395
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
19396
- *
19397
- * Take `±n` AssignmentLibraries from the position of the cursor.
19398
- */
19399
- take?: number
19400
- /**
19401
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
19402
- *
19403
- * Skip the first `n` AssignmentLibraries.
19404
- */
19405
- skip?: number
19406
- /**
19407
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
19408
- *
19409
- * Filter by unique combinations of AssignmentLibraries.
19410
- */
19411
- distinct?: AssignmentLibraryScalarFieldEnum | AssignmentLibraryScalarFieldEnum[]
19412
- }
19413
-
19414
- /**
19415
- * AssignmentLibrary findMany
19416
- */
19417
- export type AssignmentLibraryFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19418
- /**
19419
- * Select specific fields to fetch from the AssignmentLibrary
19420
- */
19421
- select?: AssignmentLibrarySelect<ExtArgs> | null
19422
- /**
19423
- * Omit specific fields from the AssignmentLibrary
19424
- */
19425
- omit?: AssignmentLibraryOmit<ExtArgs> | null
19426
- /**
19427
- * Choose, which related nodes to fetch as well
19428
- */
19429
- include?: AssignmentLibraryInclude<ExtArgs> | null
19430
- /**
19431
- * Filter, which AssignmentLibraries to fetch.
19432
- */
19433
- where?: AssignmentLibraryWhereInput
19434
- /**
19435
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
19436
- *
19437
- * Determine the order of AssignmentLibraries to fetch.
19438
- */
19439
- orderBy?: AssignmentLibraryOrderByWithRelationInput | AssignmentLibraryOrderByWithRelationInput[]
19440
- /**
19441
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
19442
- *
19443
- * Sets the position for listing AssignmentLibraries.
19444
- */
19445
- cursor?: AssignmentLibraryWhereUniqueInput
19446
- /**
19447
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
19448
- *
19449
- * Take `±n` AssignmentLibraries from the position of the cursor.
19450
- */
19451
- take?: number
19452
- /**
19453
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
19454
- *
19455
- * Skip the first `n` AssignmentLibraries.
19456
- */
19457
- skip?: number
19458
- distinct?: AssignmentLibraryScalarFieldEnum | AssignmentLibraryScalarFieldEnum[]
19459
- }
19460
-
19461
- /**
19462
- * AssignmentLibrary create
19463
- */
19464
- export type AssignmentLibraryCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19465
- /**
19466
- * Select specific fields to fetch from the AssignmentLibrary
19467
- */
19468
- select?: AssignmentLibrarySelect<ExtArgs> | null
19469
- /**
19470
- * Omit specific fields from the AssignmentLibrary
19471
- */
19472
- omit?: AssignmentLibraryOmit<ExtArgs> | null
19473
- /**
19474
- * Choose, which related nodes to fetch as well
19475
- */
19476
- include?: AssignmentLibraryInclude<ExtArgs> | null
19477
- /**
19478
- * The data needed to create a AssignmentLibrary.
19479
- */
19480
- data: XOR<AssignmentLibraryCreateInput, AssignmentLibraryUncheckedCreateInput>
19481
- }
19482
-
19483
- /**
19484
- * AssignmentLibrary createMany
19485
- */
19486
- export type AssignmentLibraryCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19487
- /**
19488
- * The data used to create many AssignmentLibraries.
19489
- */
19490
- data: AssignmentLibraryCreateManyInput | AssignmentLibraryCreateManyInput[]
19491
- skipDuplicates?: boolean
19492
- }
19493
-
19494
- /**
19495
- * AssignmentLibrary createManyAndReturn
19496
- */
19497
- export type AssignmentLibraryCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19498
- /**
19499
- * Select specific fields to fetch from the AssignmentLibrary
19500
- */
19501
- select?: AssignmentLibrarySelectCreateManyAndReturn<ExtArgs> | null
19502
- /**
19503
- * Omit specific fields from the AssignmentLibrary
19504
- */
19505
- omit?: AssignmentLibraryOmit<ExtArgs> | null
19506
- /**
19507
- * The data used to create many AssignmentLibraries.
19508
- */
19509
- data: AssignmentLibraryCreateManyInput | AssignmentLibraryCreateManyInput[]
19510
- skipDuplicates?: boolean
19511
- /**
19512
- * Choose, which related nodes to fetch as well
19513
- */
19514
- include?: AssignmentLibraryIncludeCreateManyAndReturn<ExtArgs> | null
19515
- }
19516
-
19517
- /**
19518
- * AssignmentLibrary update
19519
- */
19520
- export type AssignmentLibraryUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19521
- /**
19522
- * Select specific fields to fetch from the AssignmentLibrary
19523
- */
19524
- select?: AssignmentLibrarySelect<ExtArgs> | null
19525
- /**
19526
- * Omit specific fields from the AssignmentLibrary
19527
- */
19528
- omit?: AssignmentLibraryOmit<ExtArgs> | null
19529
- /**
19530
- * Choose, which related nodes to fetch as well
19531
- */
19532
- include?: AssignmentLibraryInclude<ExtArgs> | null
19533
- /**
19534
- * The data needed to update a AssignmentLibrary.
19535
- */
19536
- data: XOR<AssignmentLibraryUpdateInput, AssignmentLibraryUncheckedUpdateInput>
19537
- /**
19538
- * Choose, which AssignmentLibrary to update.
19539
- */
19540
- where: AssignmentLibraryWhereUniqueInput
19541
- }
19542
-
19543
- /**
19544
- * AssignmentLibrary updateMany
19545
- */
19546
- export type AssignmentLibraryUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19547
- /**
19548
- * The data used to update AssignmentLibraries.
19549
- */
19550
- data: XOR<AssignmentLibraryUpdateManyMutationInput, AssignmentLibraryUncheckedUpdateManyInput>
19551
- /**
19552
- * Filter which AssignmentLibraries to update
19553
- */
19554
- where?: AssignmentLibraryWhereInput
19555
- /**
19556
- * Limit how many AssignmentLibraries to update.
19557
- */
19558
- limit?: number
19559
- }
19560
-
19561
- /**
19562
- * AssignmentLibrary updateManyAndReturn
19563
- */
19564
- export type AssignmentLibraryUpdateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19565
- /**
19566
- * Select specific fields to fetch from the AssignmentLibrary
19567
- */
19568
- select?: AssignmentLibrarySelectUpdateManyAndReturn<ExtArgs> | null
19569
- /**
19570
- * Omit specific fields from the AssignmentLibrary
19571
- */
19572
- omit?: AssignmentLibraryOmit<ExtArgs> | null
19573
- /**
19574
- * The data used to update AssignmentLibraries.
19575
- */
19576
- data: XOR<AssignmentLibraryUpdateManyMutationInput, AssignmentLibraryUncheckedUpdateManyInput>
19577
- /**
19578
- * Filter which AssignmentLibraries to update
19579
- */
19580
- where?: AssignmentLibraryWhereInput
19581
- /**
19582
- * Limit how many AssignmentLibraries to update.
19583
- */
19584
- limit?: number
19585
- /**
19586
- * Choose, which related nodes to fetch as well
19587
- */
19588
- include?: AssignmentLibraryIncludeUpdateManyAndReturn<ExtArgs> | null
19589
- }
19590
-
19591
- /**
19592
- * AssignmentLibrary upsert
19593
- */
19594
- export type AssignmentLibraryUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19595
- /**
19596
- * Select specific fields to fetch from the AssignmentLibrary
19597
- */
19598
- select?: AssignmentLibrarySelect<ExtArgs> | null
19599
- /**
19600
- * Omit specific fields from the AssignmentLibrary
19601
- */
19602
- omit?: AssignmentLibraryOmit<ExtArgs> | null
19603
- /**
19604
- * Choose, which related nodes to fetch as well
19605
- */
19606
- include?: AssignmentLibraryInclude<ExtArgs> | null
19607
- /**
19608
- * The filter to search for the AssignmentLibrary to update in case it exists.
19609
- */
19610
- where: AssignmentLibraryWhereUniqueInput
19611
- /**
19612
- * In case the AssignmentLibrary found by the `where` argument doesn't exist, create a new AssignmentLibrary with this data.
19613
- */
19614
- create: XOR<AssignmentLibraryCreateInput, AssignmentLibraryUncheckedCreateInput>
19615
- /**
19616
- * In case the AssignmentLibrary was found with the provided `where` argument, update it with this data.
19617
- */
19618
- update: XOR<AssignmentLibraryUpdateInput, AssignmentLibraryUncheckedUpdateInput>
19619
- }
19620
-
19621
- /**
19622
- * AssignmentLibrary delete
19623
- */
19624
- export type AssignmentLibraryDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19625
- /**
19626
- * Select specific fields to fetch from the AssignmentLibrary
19627
- */
19628
- select?: AssignmentLibrarySelect<ExtArgs> | null
19629
- /**
19630
- * Omit specific fields from the AssignmentLibrary
19631
- */
19632
- omit?: AssignmentLibraryOmit<ExtArgs> | null
19633
- /**
19634
- * Choose, which related nodes to fetch as well
19635
- */
19636
- include?: AssignmentLibraryInclude<ExtArgs> | null
19637
- /**
19638
- * Filter which AssignmentLibrary to delete.
19639
- */
19640
- where: AssignmentLibraryWhereUniqueInput
19641
- }
19642
-
19643
- /**
19644
- * AssignmentLibrary deleteMany
19645
- */
19646
- export type AssignmentLibraryDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19647
- /**
19648
- * Filter which AssignmentLibraries to delete
19649
- */
19650
- where?: AssignmentLibraryWhereInput
19651
- /**
19652
- * Limit how many AssignmentLibraries to delete.
19653
- */
19654
- limit?: number
19655
- }
19656
-
19657
- /**
19658
- * AssignmentLibrary.evaluationPlan
19659
- */
19660
- export type AssignmentLibrary$evaluationPlanArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19661
- /**
19662
- * Select specific fields to fetch from the EvaluationPlan
19663
- */
19664
- select?: EvaluationPlanSelect<ExtArgs> | null
19665
- /**
19666
- * Omit specific fields from the EvaluationPlan
19667
- */
19668
- omit?: EvaluationPlanOmit<ExtArgs> | null
19669
- /**
19670
- * Choose, which related nodes to fetch as well
19671
- */
19672
- include?: EvaluationPlanInclude<ExtArgs> | null
19673
- where?: EvaluationPlanWhereInput
19674
- orderBy?: EvaluationPlanOrderByWithRelationInput | EvaluationPlanOrderByWithRelationInput[]
19675
- cursor?: EvaluationPlanWhereUniqueInput
19676
- take?: number
19677
- skip?: number
19678
- distinct?: EvaluationPlanScalarFieldEnum | EvaluationPlanScalarFieldEnum[]
19679
- }
19680
-
19681
- /**
19682
- * AssignmentLibrary.assignments
19683
- */
19684
- export type AssignmentLibrary$assignmentsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19685
- /**
19686
- * Select specific fields to fetch from the Assignment
19687
- */
19688
- select?: AssignmentSelect<ExtArgs> | null
19689
- /**
19690
- * Omit specific fields from the Assignment
19691
- */
19692
- omit?: AssignmentOmit<ExtArgs> | null
19693
- /**
19694
- * Choose, which related nodes to fetch as well
19695
- */
19696
- include?: AssignmentInclude<ExtArgs> | null
19697
- where?: AssignmentWhereInput
19698
- orderBy?: AssignmentOrderByWithRelationInput | AssignmentOrderByWithRelationInput[]
19699
- cursor?: AssignmentWhereUniqueInput
19700
- take?: number
19701
- skip?: number
19702
- distinct?: AssignmentScalarFieldEnum | AssignmentScalarFieldEnum[]
19703
- }
19704
-
19705
- /**
19706
- * AssignmentLibrary without action
19707
- */
19708
- export type AssignmentLibraryDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19709
- /**
19710
- * Select specific fields to fetch from the AssignmentLibrary
19711
- */
19712
- select?: AssignmentLibrarySelect<ExtArgs> | null
19713
- /**
19714
- * Omit specific fields from the AssignmentLibrary
19715
- */
19716
- omit?: AssignmentLibraryOmit<ExtArgs> | null
19717
- /**
19718
- * Choose, which related nodes to fetch as well
19719
- */
19720
- include?: AssignmentLibraryInclude<ExtArgs> | null
19721
- }
19722
-
19723
-
19724
- /**
19725
- * Model AuthModule
19726
- */
19727
-
19728
- export type AggregateAuthModule = {
19729
- _count: AuthModuleCountAggregateOutputType | null
19730
- _min: AuthModuleMinAggregateOutputType | null
19731
- _max: AuthModuleMaxAggregateOutputType | null
19732
- }
19733
-
19734
- export type AuthModuleMinAggregateOutputType = {
19735
- id: string | null
19736
- user_id: string | null
19737
- provider: $Enums.AuthProvider | null
19738
- provider_account_id: string | null
19739
- access_token: string | null
19740
- refresh_token: string | null
19741
- id_token: string | null
19742
- expires_at: Date | null
19743
- token_type: string | null
19744
- scope: string | null
19745
- created_at: Date | null
19746
- updated_at: Date | null
19747
- }
19748
-
19749
- export type AuthModuleMaxAggregateOutputType = {
19750
- id: string | null
19751
- user_id: string | null
19752
- provider: $Enums.AuthProvider | null
19753
- provider_account_id: string | null
19754
- access_token: string | null
19755
- refresh_token: string | null
19756
- id_token: string | null
19757
- expires_at: Date | null
19758
- token_type: string | null
19759
- scope: string | null
19760
- created_at: Date | null
19761
- updated_at: Date | null
19762
- }
19763
-
19764
- export type AuthModuleCountAggregateOutputType = {
19765
- id: number
19766
- user_id: number
19767
- provider: number
19768
- provider_account_id: number
19769
- access_token: number
19770
- refresh_token: number
19771
- id_token: number
19772
- expires_at: number
19773
- token_type: number
19774
- scope: number
19775
- created_at: number
19776
- updated_at: number
19777
- _all: number
19778
- }
19779
-
19780
-
19781
- export type AuthModuleMinAggregateInputType = {
19782
- id?: true
19783
- user_id?: true
19784
- provider?: true
19785
- provider_account_id?: true
19786
- access_token?: true
19787
- refresh_token?: true
19788
- id_token?: true
19789
- expires_at?: true
19790
- token_type?: true
19791
- scope?: true
19792
- created_at?: true
19793
- updated_at?: true
19794
- }
19795
-
19796
- export type AuthModuleMaxAggregateInputType = {
19797
- id?: true
19798
- user_id?: true
19799
- provider?: true
19800
- provider_account_id?: true
19801
- access_token?: true
19802
- refresh_token?: true
19803
- id_token?: true
19804
- expires_at?: true
19805
- token_type?: true
19806
- scope?: true
19807
- created_at?: true
19808
- updated_at?: true
19809
- }
19810
-
19811
- export type AuthModuleCountAggregateInputType = {
19812
- id?: true
19813
- user_id?: true
19814
- provider?: true
19815
- provider_account_id?: true
19816
- access_token?: true
19817
- refresh_token?: true
19818
- id_token?: true
19819
- expires_at?: true
19820
- token_type?: true
19821
- scope?: true
19822
- created_at?: true
19823
- updated_at?: true
19824
- _all?: true
19825
- }
19826
-
19827
- export type AuthModuleAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19828
- /**
19829
- * Filter which AuthModule to aggregate.
19830
- */
19831
- where?: AuthModuleWhereInput
19832
- /**
19833
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
19834
- *
19835
- * Determine the order of AuthModules to fetch.
19836
- */
19837
- orderBy?: AuthModuleOrderByWithRelationInput | AuthModuleOrderByWithRelationInput[]
19838
- /**
19839
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
19840
- *
19841
- * Sets the start position
19842
- */
19843
- cursor?: AuthModuleWhereUniqueInput
19844
- /**
19845
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
19846
- *
19847
- * Take `±n` AuthModules from the position of the cursor.
19848
- */
19849
- take?: number
19850
- /**
19851
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
19852
- *
19853
- * Skip the first `n` AuthModules.
19854
- */
19855
- skip?: number
19856
- /**
19857
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
19858
- *
19859
- * Count returned AuthModules
19860
- **/
19861
- _count?: true | AuthModuleCountAggregateInputType
19862
- /**
19863
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
19864
- *
19865
- * Select which fields to find the minimum value
19866
- **/
19867
- _min?: AuthModuleMinAggregateInputType
19868
- /**
19869
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
19870
- *
19871
- * Select which fields to find the maximum value
19872
- **/
19873
- _max?: AuthModuleMaxAggregateInputType
19874
- }
19875
-
19876
- export type GetAuthModuleAggregateType<T extends AuthModuleAggregateArgs> = {
19877
- [P in keyof T & keyof AggregateAuthModule]: P extends '_count' | 'count'
19878
- ? T[P] extends true
19879
- ? number
19880
- : GetScalarType<T[P], AggregateAuthModule[P]>
19881
- : GetScalarType<T[P], AggregateAuthModule[P]>
19882
- }
19883
-
19884
-
19885
-
19886
-
19887
- export type AuthModuleGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19888
- where?: AuthModuleWhereInput
19889
- orderBy?: AuthModuleOrderByWithAggregationInput | AuthModuleOrderByWithAggregationInput[]
19890
- by: AuthModuleScalarFieldEnum[] | AuthModuleScalarFieldEnum
19891
- having?: AuthModuleScalarWhereWithAggregatesInput
19892
- take?: number
19893
- skip?: number
19894
- _count?: AuthModuleCountAggregateInputType | true
19895
- _min?: AuthModuleMinAggregateInputType
19896
- _max?: AuthModuleMaxAggregateInputType
19897
- }
19898
-
19899
- export type AuthModuleGroupByOutputType = {
19900
- id: string
19901
- user_id: string
19902
- provider: $Enums.AuthProvider
19903
- provider_account_id: string
19904
- access_token: string | null
19905
- refresh_token: string | null
19906
- id_token: string | null
19907
- expires_at: Date | null
19908
- token_type: string | null
19909
- scope: string | null
19910
- created_at: Date
19911
- updated_at: Date
19912
- _count: AuthModuleCountAggregateOutputType | null
19913
- _min: AuthModuleMinAggregateOutputType | null
19914
- _max: AuthModuleMaxAggregateOutputType | null
19915
- }
19916
-
19917
- type GetAuthModuleGroupByPayload<T extends AuthModuleGroupByArgs> = Prisma.PrismaPromise<
19918
- Array<
19919
- PickEnumerable<AuthModuleGroupByOutputType, T['by']> &
19920
- {
19921
- [P in ((keyof T) & (keyof AuthModuleGroupByOutputType))]: P extends '_count'
19922
- ? T[P] extends boolean
19923
- ? number
19924
- : GetScalarType<T[P], AuthModuleGroupByOutputType[P]>
19925
- : GetScalarType<T[P], AuthModuleGroupByOutputType[P]>
19926
- }
19927
- >
19928
- >
19929
-
19930
-
19931
- export type AuthModuleSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
19932
- id?: boolean
19933
- user_id?: boolean
19934
- provider?: boolean
19935
- provider_account_id?: boolean
19936
- access_token?: boolean
19937
- refresh_token?: boolean
19938
- id_token?: boolean
19939
- expires_at?: boolean
19940
- token_type?: boolean
19941
- scope?: boolean
19942
- created_at?: boolean
19943
- updated_at?: boolean
19944
- user?: boolean | UserDefaultArgs<ExtArgs>
19945
- }, ExtArgs["result"]["authModule"]>
19946
-
19947
- export type AuthModuleSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
19948
- id?: boolean
19949
- user_id?: boolean
19950
- provider?: boolean
19951
- provider_account_id?: boolean
19952
- access_token?: boolean
19953
- refresh_token?: boolean
19954
- id_token?: boolean
19955
- expires_at?: boolean
19956
- token_type?: boolean
19957
- scope?: boolean
19958
- created_at?: boolean
19959
- updated_at?: boolean
19960
- user?: boolean | UserDefaultArgs<ExtArgs>
19961
- }, ExtArgs["result"]["authModule"]>
19962
-
19963
- export type AuthModuleSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
19964
- id?: boolean
19965
- user_id?: boolean
19966
- provider?: boolean
19967
- provider_account_id?: boolean
19968
- access_token?: boolean
19969
- refresh_token?: boolean
19970
- id_token?: boolean
19971
- expires_at?: boolean
19972
- token_type?: boolean
19973
- scope?: boolean
19974
- created_at?: boolean
19975
- updated_at?: boolean
19976
- user?: boolean | UserDefaultArgs<ExtArgs>
19977
- }, ExtArgs["result"]["authModule"]>
19978
-
19979
- export type AuthModuleSelectScalar = {
19980
- id?: boolean
19981
- user_id?: boolean
19982
- provider?: boolean
19983
- provider_account_id?: boolean
19984
- access_token?: boolean
19985
- refresh_token?: boolean
19986
- id_token?: boolean
19987
- expires_at?: boolean
19988
- token_type?: boolean
19989
- scope?: boolean
19990
- created_at?: boolean
19991
- updated_at?: boolean
19992
- }
19993
-
19994
- export type AuthModuleOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "provider" | "provider_account_id" | "access_token" | "refresh_token" | "id_token" | "expires_at" | "token_type" | "scope" | "created_at" | "updated_at", ExtArgs["result"]["authModule"]>
19995
- export type AuthModuleInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19996
- user?: boolean | UserDefaultArgs<ExtArgs>
19997
- }
19998
- export type AuthModuleIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19999
- user?: boolean | UserDefaultArgs<ExtArgs>
20000
- }
20001
- export type AuthModuleIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20002
- user?: boolean | UserDefaultArgs<ExtArgs>
20003
- }
20004
-
20005
- export type $AuthModulePayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20006
- name: "AuthModule"
20007
- objects: {
20008
- user: Prisma.$UserPayload<ExtArgs>
20009
- }
20010
- scalars: $Extensions.GetPayloadResult<{
20011
- id: string
20012
- user_id: string
20013
- provider: $Enums.AuthProvider
20014
- provider_account_id: string
20015
- access_token: string | null
20016
- refresh_token: string | null
20017
- id_token: string | null
20018
- expires_at: Date | null
20019
- token_type: string | null
20020
- scope: string | null
20021
- created_at: Date
20022
- updated_at: Date
20023
- }, ExtArgs["result"]["authModule"]>
20024
- composites: {}
20025
- }
20026
-
20027
- type AuthModuleGetPayload<S extends boolean | null | undefined | AuthModuleDefaultArgs> = $Result.GetResult<Prisma.$AuthModulePayload, S>
20028
-
20029
- type AuthModuleCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
20030
- Omit<AuthModuleFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
20031
- select?: AuthModuleCountAggregateInputType | true
20032
- }
20033
-
20034
- export interface AuthModuleDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> {
20035
- [K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['AuthModule'], meta: { name: 'AuthModule' } }
20036
- /**
20037
- * Find zero or one AuthModule that matches the filter.
20038
- * @param {AuthModuleFindUniqueArgs} args - Arguments to find a AuthModule
20039
- * @example
20040
- * // Get one AuthModule
20041
- * const authModule = await prisma.authModule.findUnique({
20042
- * where: {
20043
- * // ... provide filter here
20044
- * }
20045
- * })
20046
- */
20047
- findUnique<T extends AuthModuleFindUniqueArgs>(args: SelectSubset<T, AuthModuleFindUniqueArgs<ExtArgs>>): Prisma__AuthModuleClient<$Result.GetResult<Prisma.$AuthModulePayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
20048
-
20049
- /**
20050
- * Find one AuthModule that matches the filter or throw an error with `error.code='P2025'`
20051
- * if no matches were found.
20052
- * @param {AuthModuleFindUniqueOrThrowArgs} args - Arguments to find a AuthModule
20053
- * @example
20054
- * // Get one AuthModule
20055
- * const authModule = await prisma.authModule.findUniqueOrThrow({
20056
- * where: {
20057
- * // ... provide filter here
20058
- * }
20059
- * })
20060
- */
20061
- findUniqueOrThrow<T extends AuthModuleFindUniqueOrThrowArgs>(args: SelectSubset<T, AuthModuleFindUniqueOrThrowArgs<ExtArgs>>): Prisma__AuthModuleClient<$Result.GetResult<Prisma.$AuthModulePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
20062
-
20063
- /**
20064
- * Find the first AuthModule that matches the filter.
20065
- * Note, that providing `undefined` is treated as the value not being there.
20066
- * Read more here: https://pris.ly/d/null-undefined
20067
- * @param {AuthModuleFindFirstArgs} args - Arguments to find a AuthModule
20068
- * @example
20069
- * // Get one AuthModule
20070
- * const authModule = await prisma.authModule.findFirst({
20071
- * where: {
20072
- * // ... provide filter here
20073
- * }
20074
- * })
20075
- */
20076
- findFirst<T extends AuthModuleFindFirstArgs>(args?: SelectSubset<T, AuthModuleFindFirstArgs<ExtArgs>>): Prisma__AuthModuleClient<$Result.GetResult<Prisma.$AuthModulePayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
20077
-
20078
- /**
20079
- * Find the first AuthModule that matches the filter or
20080
- * throw `PrismaKnownClientError` with `P2025` code if no matches were found.
20081
- * Note, that providing `undefined` is treated as the value not being there.
20082
- * Read more here: https://pris.ly/d/null-undefined
20083
- * @param {AuthModuleFindFirstOrThrowArgs} args - Arguments to find a AuthModule
20084
- * @example
20085
- * // Get one AuthModule
20086
- * const authModule = await prisma.authModule.findFirstOrThrow({
20087
- * where: {
20088
- * // ... provide filter here
20089
- * }
20090
- * })
20091
- */
20092
- findFirstOrThrow<T extends AuthModuleFindFirstOrThrowArgs>(args?: SelectSubset<T, AuthModuleFindFirstOrThrowArgs<ExtArgs>>): Prisma__AuthModuleClient<$Result.GetResult<Prisma.$AuthModulePayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
20093
-
20094
- /**
20095
- * Find zero or more AuthModules that matches the filter.
20096
- * Note, that providing `undefined` is treated as the value not being there.
20097
- * Read more here: https://pris.ly/d/null-undefined
20098
- * @param {AuthModuleFindManyArgs} args - Arguments to filter and select certain fields only.
20099
- * @example
20100
- * // Get all AuthModules
20101
- * const authModules = await prisma.authModule.findMany()
20102
- *
20103
- * // Get first 10 AuthModules
20104
- * const authModules = await prisma.authModule.findMany({ take: 10 })
20105
- *
20106
- * // Only select the `id`
20107
- * const authModuleWithIdOnly = await prisma.authModule.findMany({ select: { id: true } })
20108
- *
20109
- */
20110
- findMany<T extends AuthModuleFindManyArgs>(args?: SelectSubset<T, AuthModuleFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AuthModulePayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>
20111
-
20112
- /**
20113
- * Create a AuthModule.
20114
- * @param {AuthModuleCreateArgs} args - Arguments to create a AuthModule.
20115
- * @example
20116
- * // Create one AuthModule
20117
- * const AuthModule = await prisma.authModule.create({
20118
- * data: {
20119
- * // ... data to create a AuthModule
20120
- * }
20121
- * })
20122
- *
20123
- */
20124
- create<T extends AuthModuleCreateArgs>(args: SelectSubset<T, AuthModuleCreateArgs<ExtArgs>>): Prisma__AuthModuleClient<$Result.GetResult<Prisma.$AuthModulePayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
20125
-
20126
- /**
20127
- * Create many AuthModules.
20128
- * @param {AuthModuleCreateManyArgs} args - Arguments to create many AuthModules.
20129
- * @example
20130
- * // Create many AuthModules
20131
- * const authModule = await prisma.authModule.createMany({
20132
- * data: [
20133
- * // ... provide data here
20134
- * ]
20135
- * })
20136
- *
20137
- */
20138
- createMany<T extends AuthModuleCreateManyArgs>(args?: SelectSubset<T, AuthModuleCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
20139
-
20140
- /**
20141
- * Create many AuthModules and returns the data saved in the database.
20142
- * @param {AuthModuleCreateManyAndReturnArgs} args - Arguments to create many AuthModules.
20143
- * @example
20144
- * // Create many AuthModules
20145
- * const authModule = await prisma.authModule.createManyAndReturn({
20146
- * data: [
20147
- * // ... provide data here
20148
- * ]
20149
- * })
20150
- *
20151
- * // Create many AuthModules and only return the `id`
20152
- * const authModuleWithIdOnly = await prisma.authModule.createManyAndReturn({
20153
- * select: { id: true },
20154
- * data: [
20155
- * // ... provide data here
20156
- * ]
20157
- * })
20158
- * Note, that providing `undefined` is treated as the value not being there.
20159
- * Read more here: https://pris.ly/d/null-undefined
20160
- *
20161
- */
20162
- createManyAndReturn<T extends AuthModuleCreateManyAndReturnArgs>(args?: SelectSubset<T, AuthModuleCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AuthModulePayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>
20163
-
20164
- /**
20165
- * Delete a AuthModule.
20166
- * @param {AuthModuleDeleteArgs} args - Arguments to delete one AuthModule.
20167
- * @example
20168
- * // Delete one AuthModule
20169
- * const AuthModule = await prisma.authModule.delete({
20170
- * where: {
20171
- * // ... filter to delete one AuthModule
20172
- * }
20173
- * })
20174
- *
20175
- */
20176
- delete<T extends AuthModuleDeleteArgs>(args: SelectSubset<T, AuthModuleDeleteArgs<ExtArgs>>): Prisma__AuthModuleClient<$Result.GetResult<Prisma.$AuthModulePayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
20177
-
20178
- /**
20179
- * Update one AuthModule.
20180
- * @param {AuthModuleUpdateArgs} args - Arguments to update one AuthModule.
20181
- * @example
20182
- * // Update one AuthModule
20183
- * const authModule = await prisma.authModule.update({
20184
- * where: {
20185
- * // ... provide filter here
20186
- * },
20187
- * data: {
20188
- * // ... provide data here
20189
- * }
20190
- * })
20191
- *
20192
- */
20193
- update<T extends AuthModuleUpdateArgs>(args: SelectSubset<T, AuthModuleUpdateArgs<ExtArgs>>): Prisma__AuthModuleClient<$Result.GetResult<Prisma.$AuthModulePayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
20194
-
20195
- /**
20196
- * Delete zero or more AuthModules.
20197
- * @param {AuthModuleDeleteManyArgs} args - Arguments to filter AuthModules to delete.
20198
- * @example
20199
- * // Delete a few AuthModules
20200
- * const { count } = await prisma.authModule.deleteMany({
20201
- * where: {
20202
- * // ... provide filter here
20203
- * }
20204
- * })
20205
- *
20206
- */
20207
- deleteMany<T extends AuthModuleDeleteManyArgs>(args?: SelectSubset<T, AuthModuleDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
20208
-
20209
- /**
20210
- * Update zero or more AuthModules.
20211
- * Note, that providing `undefined` is treated as the value not being there.
20212
- * Read more here: https://pris.ly/d/null-undefined
20213
- * @param {AuthModuleUpdateManyArgs} args - Arguments to update one or more rows.
20214
- * @example
20215
- * // Update many AuthModules
20216
- * const authModule = await prisma.authModule.updateMany({
20217
- * where: {
20218
- * // ... provide filter here
20219
- * },
20220
- * data: {
20221
- * // ... provide data here
20222
- * }
20223
- * })
20224
- *
20225
- */
20226
- updateMany<T extends AuthModuleUpdateManyArgs>(args: SelectSubset<T, AuthModuleUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
20227
-
20228
- /**
20229
- * Update zero or more AuthModules and returns the data updated in the database.
20230
- * @param {AuthModuleUpdateManyAndReturnArgs} args - Arguments to update many AuthModules.
20231
- * @example
20232
- * // Update many AuthModules
20233
- * const authModule = await prisma.authModule.updateManyAndReturn({
20234
- * where: {
20235
- * // ... provide filter here
20236
- * },
20237
- * data: [
20238
- * // ... provide data here
20239
- * ]
20240
- * })
20241
- *
20242
- * // Update zero or more AuthModules and only return the `id`
20243
- * const authModuleWithIdOnly = await prisma.authModule.updateManyAndReturn({
20244
- * select: { id: true },
20245
- * where: {
20246
- * // ... provide filter here
20247
- * },
20248
- * data: [
20249
- * // ... provide data here
20250
- * ]
20251
- * })
20252
- * Note, that providing `undefined` is treated as the value not being there.
20253
- * Read more here: https://pris.ly/d/null-undefined
20254
- *
20255
- */
20256
- updateManyAndReturn<T extends AuthModuleUpdateManyAndReturnArgs>(args: SelectSubset<T, AuthModuleUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AuthModulePayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>
20257
-
20258
- /**
20259
- * Create or update one AuthModule.
20260
- * @param {AuthModuleUpsertArgs} args - Arguments to update or create a AuthModule.
20261
- * @example
20262
- * // Update or create a AuthModule
20263
- * const authModule = await prisma.authModule.upsert({
20264
- * create: {
20265
- * // ... data to create a AuthModule
20266
- * },
20267
- * update: {
20268
- * // ... in case it already exists, update
20269
- * },
20270
- * where: {
20271
- * // ... the filter for the AuthModule we want to update
20272
- * }
20273
- * })
20274
- */
20275
- upsert<T extends AuthModuleUpsertArgs>(args: SelectSubset<T, AuthModuleUpsertArgs<ExtArgs>>): Prisma__AuthModuleClient<$Result.GetResult<Prisma.$AuthModulePayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
20276
-
20277
-
20278
- /**
20279
- * Count the number of AuthModules.
20280
- * Note, that providing `undefined` is treated as the value not being there.
20281
- * Read more here: https://pris.ly/d/null-undefined
20282
- * @param {AuthModuleCountArgs} args - Arguments to filter AuthModules to count.
20283
- * @example
20284
- * // Count the number of AuthModules
20285
- * const count = await prisma.authModule.count({
20286
- * where: {
20287
- * // ... the filter for the AuthModules we want to count
20288
- * }
20289
- * })
20290
- **/
20291
- count<T extends AuthModuleCountArgs>(
20292
- args?: Subset<T, AuthModuleCountArgs>,
20293
- ): Prisma.PrismaPromise<
20294
- T extends $Utils.Record<'select', any>
20295
- ? T['select'] extends true
20296
- ? number
20297
- : GetScalarType<T['select'], AuthModuleCountAggregateOutputType>
20298
- : number
20299
- >
20300
-
20301
- /**
20302
- * Allows you to perform aggregations operations on a AuthModule.
20303
- * Note, that providing `undefined` is treated as the value not being there.
20304
- * Read more here: https://pris.ly/d/null-undefined
20305
- * @param {AuthModuleAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
20306
- * @example
20307
- * // Ordered by age ascending
20308
- * // Where email contains prisma.io
20309
- * // Limited to the 10 users
20310
- * const aggregations = await prisma.user.aggregate({
20311
- * _avg: {
20312
- * age: true,
20313
- * },
20314
- * where: {
20315
- * email: {
20316
- * contains: "prisma.io",
20317
- * },
20318
- * },
20319
- * orderBy: {
20320
- * age: "asc",
20321
- * },
20322
- * take: 10,
20323
- * })
20324
- **/
20325
- aggregate<T extends AuthModuleAggregateArgs>(args: Subset<T, AuthModuleAggregateArgs>): Prisma.PrismaPromise<GetAuthModuleAggregateType<T>>
20326
-
20327
- /**
20328
- * Group by AuthModule.
20329
- * Note, that providing `undefined` is treated as the value not being there.
20330
- * Read more here: https://pris.ly/d/null-undefined
20331
- * @param {AuthModuleGroupByArgs} args - Group by arguments.
20332
- * @example
20333
- * // Group by city, order by createdAt, get count
20334
- * const result = await prisma.user.groupBy({
20335
- * by: ['city', 'createdAt'],
20336
- * orderBy: {
20337
- * createdAt: true
20338
- * },
20339
- * _count: {
20340
- * _all: true
20341
- * },
20342
- * })
20343
- *
20344
- **/
20345
- groupBy<
20346
- T extends AuthModuleGroupByArgs,
20347
- HasSelectOrTake extends Or<
20348
- Extends<'skip', Keys<T>>,
20349
- Extends<'take', Keys<T>>
20350
- >,
20351
- OrderByArg extends True extends HasSelectOrTake
20352
- ? { orderBy: AuthModuleGroupByArgs['orderBy'] }
20353
- : { orderBy?: AuthModuleGroupByArgs['orderBy'] },
20354
- OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
20355
- ByFields extends MaybeTupleToUnion<T['by']>,
20356
- ByValid extends Has<ByFields, OrderFields>,
20357
- HavingFields extends GetHavingFields<T['having']>,
20358
- HavingValid extends Has<ByFields, HavingFields>,
20359
- ByEmpty extends T['by'] extends never[] ? True : False,
20360
- InputErrors extends ByEmpty extends True
20361
- ? `Error: "by" must not be empty.`
20362
- : HavingValid extends False
20363
- ? {
20364
- [P in HavingFields]: P extends ByFields
20365
- ? never
20366
- : P extends string
20367
- ? `Error: Field "${P}" used in "having" needs to be provided in "by".`
20368
- : [
20369
- Error,
20370
- 'Field ',
20371
- P,
20372
- ` in "having" needs to be provided in "by"`,
20373
- ]
20374
- }[HavingFields]
20375
- : 'take' extends Keys<T>
20376
- ? 'orderBy' extends Keys<T>
20377
- ? ByValid extends True
20378
- ? {}
20379
- : {
20380
- [P in OrderFields]: P extends ByFields
20381
- ? never
20382
- : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
20383
- }[OrderFields]
20384
- : 'Error: If you provide "take", you also need to provide "orderBy"'
20385
- : 'skip' extends Keys<T>
20386
- ? 'orderBy' extends Keys<T>
20387
- ? ByValid extends True
20388
- ? {}
20389
- : {
20390
- [P in OrderFields]: P extends ByFields
20391
- ? never
20392
- : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
20393
- }[OrderFields]
20394
- : 'Error: If you provide "skip", you also need to provide "orderBy"'
20395
- : ByValid extends True
20396
- ? {}
20397
- : {
20398
- [P in OrderFields]: P extends ByFields
20399
- ? never
20400
- : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
20401
- }[OrderFields]
20402
- >(args: SubsetIntersection<T, AuthModuleGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetAuthModuleGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
20403
- /**
20404
- * Fields of the AuthModule model
20405
- */
20406
- readonly fields: AuthModuleFieldRefs;
20407
- }
20408
-
20409
- /**
20410
- * The delegate class that acts as a "Promise-like" for AuthModule.
20411
- * Why is this prefixed with `Prisma__`?
20412
- * Because we want to prevent naming conflicts as mentioned in
20413
- * https://github.com/prisma/prisma-client-js/issues/707
20414
- */
20415
- export interface Prisma__AuthModuleClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
20416
- readonly [Symbol.toStringTag]: "PrismaPromise"
20417
- user<T extends UserDefaultArgs<ExtArgs> = {}>(args?: Subset<T, UserDefaultArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
20418
- /**
20419
- * Attaches callbacks for the resolution and/or rejection of the Promise.
20420
- * @param onfulfilled The callback to execute when the Promise is resolved.
20421
- * @param onrejected The callback to execute when the Promise is rejected.
20422
- * @returns A Promise for the completion of which ever callback is executed.
20423
- */
20424
- then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>
20425
- /**
20426
- * Attaches a callback for only the rejection of the Promise.
20427
- * @param onrejected The callback to execute when the Promise is rejected.
20428
- * @returns A Promise for the completion of the callback.
20429
- */
20430
- catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
20431
- /**
20432
- * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
20433
- * resolved value cannot be modified from the callback.
20434
- * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
20435
- * @returns A Promise for the completion of the callback.
20436
- */
20437
- finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
20438
- }
20439
-
20440
-
20441
-
20442
-
20443
- /**
20444
- * Fields of the AuthModule model
19137
+ * Fields of the AssignmentLibrary model
20445
19138
  */
20446
- interface AuthModuleFieldRefs {
20447
- readonly id: FieldRef<"AuthModule", 'String'>
20448
- readonly user_id: FieldRef<"AuthModule", 'String'>
20449
- readonly provider: FieldRef<"AuthModule", 'AuthProvider'>
20450
- readonly provider_account_id: FieldRef<"AuthModule", 'String'>
20451
- readonly access_token: FieldRef<"AuthModule", 'String'>
20452
- readonly refresh_token: FieldRef<"AuthModule", 'String'>
20453
- readonly id_token: FieldRef<"AuthModule", 'String'>
20454
- readonly expires_at: FieldRef<"AuthModule", 'DateTime'>
20455
- readonly token_type: FieldRef<"AuthModule", 'String'>
20456
- readonly scope: FieldRef<"AuthModule", 'String'>
20457
- readonly created_at: FieldRef<"AuthModule", 'DateTime'>
20458
- readonly updated_at: FieldRef<"AuthModule", 'DateTime'>
19139
+ interface AssignmentLibraryFieldRefs {
19140
+ readonly id: FieldRef<"AssignmentLibrary", 'String'>
19141
+ readonly deadline: FieldRef<"AssignmentLibrary", 'Int'>
19142
+ readonly assignment: FieldRef<"AssignmentLibrary", 'Json'>
19143
+ readonly job_description_id: FieldRef<"AssignmentLibrary", 'String'>
19144
+ readonly organisation_id: FieldRef<"AssignmentLibrary", 'String'>
19145
+ readonly created_at: FieldRef<"AssignmentLibrary", 'DateTime'>
19146
+ readonly updated_at: FieldRef<"AssignmentLibrary", 'DateTime'>
19147
+ readonly created_by: FieldRef<"AssignmentLibrary", 'String'>
19148
+ readonly updated_by: FieldRef<"AssignmentLibrary", 'String'>
19149
+ readonly is_active: FieldRef<"AssignmentLibrary", 'Boolean'>
20459
19150
  }
20460
19151
 
20461
19152
 
20462
19153
  // Custom InputTypes
20463
19154
  /**
20464
- * AuthModule findUnique
19155
+ * AssignmentLibrary findUnique
20465
19156
  */
20466
- export type AuthModuleFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19157
+ export type AssignmentLibraryFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20467
19158
  /**
20468
- * Select specific fields to fetch from the AuthModule
19159
+ * Select specific fields to fetch from the AssignmentLibrary
20469
19160
  */
20470
- select?: AuthModuleSelect<ExtArgs> | null
19161
+ select?: AssignmentLibrarySelect<ExtArgs> | null
20471
19162
  /**
20472
- * Omit specific fields from the AuthModule
19163
+ * Omit specific fields from the AssignmentLibrary
20473
19164
  */
20474
- omit?: AuthModuleOmit<ExtArgs> | null
19165
+ omit?: AssignmentLibraryOmit<ExtArgs> | null
20475
19166
  /**
20476
19167
  * Choose, which related nodes to fetch as well
20477
19168
  */
20478
- include?: AuthModuleInclude<ExtArgs> | null
19169
+ include?: AssignmentLibraryInclude<ExtArgs> | null
20479
19170
  /**
20480
- * Filter, which AuthModule to fetch.
19171
+ * Filter, which AssignmentLibrary to fetch.
20481
19172
  */
20482
- where: AuthModuleWhereUniqueInput
19173
+ where: AssignmentLibraryWhereUniqueInput
20483
19174
  }
20484
19175
 
20485
19176
  /**
20486
- * AuthModule findUniqueOrThrow
19177
+ * AssignmentLibrary findUniqueOrThrow
20487
19178
  */
20488
- export type AuthModuleFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19179
+ export type AssignmentLibraryFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20489
19180
  /**
20490
- * Select specific fields to fetch from the AuthModule
19181
+ * Select specific fields to fetch from the AssignmentLibrary
20491
19182
  */
20492
- select?: AuthModuleSelect<ExtArgs> | null
19183
+ select?: AssignmentLibrarySelect<ExtArgs> | null
20493
19184
  /**
20494
- * Omit specific fields from the AuthModule
19185
+ * Omit specific fields from the AssignmentLibrary
20495
19186
  */
20496
- omit?: AuthModuleOmit<ExtArgs> | null
19187
+ omit?: AssignmentLibraryOmit<ExtArgs> | null
20497
19188
  /**
20498
19189
  * Choose, which related nodes to fetch as well
20499
19190
  */
20500
- include?: AuthModuleInclude<ExtArgs> | null
19191
+ include?: AssignmentLibraryInclude<ExtArgs> | null
20501
19192
  /**
20502
- * Filter, which AuthModule to fetch.
19193
+ * Filter, which AssignmentLibrary to fetch.
20503
19194
  */
20504
- where: AuthModuleWhereUniqueInput
19195
+ where: AssignmentLibraryWhereUniqueInput
20505
19196
  }
20506
19197
 
20507
19198
  /**
20508
- * AuthModule findFirst
19199
+ * AssignmentLibrary findFirst
20509
19200
  */
20510
- export type AuthModuleFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19201
+ export type AssignmentLibraryFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20511
19202
  /**
20512
- * Select specific fields to fetch from the AuthModule
19203
+ * Select specific fields to fetch from the AssignmentLibrary
20513
19204
  */
20514
- select?: AuthModuleSelect<ExtArgs> | null
19205
+ select?: AssignmentLibrarySelect<ExtArgs> | null
20515
19206
  /**
20516
- * Omit specific fields from the AuthModule
19207
+ * Omit specific fields from the AssignmentLibrary
20517
19208
  */
20518
- omit?: AuthModuleOmit<ExtArgs> | null
19209
+ omit?: AssignmentLibraryOmit<ExtArgs> | null
20519
19210
  /**
20520
19211
  * Choose, which related nodes to fetch as well
20521
19212
  */
20522
- include?: AuthModuleInclude<ExtArgs> | null
19213
+ include?: AssignmentLibraryInclude<ExtArgs> | null
20523
19214
  /**
20524
- * Filter, which AuthModule to fetch.
19215
+ * Filter, which AssignmentLibrary to fetch.
20525
19216
  */
20526
- where?: AuthModuleWhereInput
19217
+ where?: AssignmentLibraryWhereInput
20527
19218
  /**
20528
19219
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
20529
19220
  *
20530
- * Determine the order of AuthModules to fetch.
19221
+ * Determine the order of AssignmentLibraries to fetch.
20531
19222
  */
20532
- orderBy?: AuthModuleOrderByWithRelationInput | AuthModuleOrderByWithRelationInput[]
19223
+ orderBy?: AssignmentLibraryOrderByWithRelationInput | AssignmentLibraryOrderByWithRelationInput[]
20533
19224
  /**
20534
19225
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
20535
19226
  *
20536
- * Sets the position for searching for AuthModules.
19227
+ * Sets the position for searching for AssignmentLibraries.
20537
19228
  */
20538
- cursor?: AuthModuleWhereUniqueInput
19229
+ cursor?: AssignmentLibraryWhereUniqueInput
20539
19230
  /**
20540
19231
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
20541
19232
  *
20542
- * Take `±n` AuthModules from the position of the cursor.
19233
+ * Take `±n` AssignmentLibraries from the position of the cursor.
20543
19234
  */
20544
19235
  take?: number
20545
19236
  /**
20546
19237
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
20547
19238
  *
20548
- * Skip the first `n` AuthModules.
19239
+ * Skip the first `n` AssignmentLibraries.
20549
19240
  */
20550
19241
  skip?: number
20551
19242
  /**
20552
19243
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
20553
19244
  *
20554
- * Filter by unique combinations of AuthModules.
19245
+ * Filter by unique combinations of AssignmentLibraries.
20555
19246
  */
20556
- distinct?: AuthModuleScalarFieldEnum | AuthModuleScalarFieldEnum[]
19247
+ distinct?: AssignmentLibraryScalarFieldEnum | AssignmentLibraryScalarFieldEnum[]
20557
19248
  }
20558
19249
 
20559
19250
  /**
20560
- * AuthModule findFirstOrThrow
19251
+ * AssignmentLibrary findFirstOrThrow
20561
19252
  */
20562
- export type AuthModuleFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19253
+ export type AssignmentLibraryFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20563
19254
  /**
20564
- * Select specific fields to fetch from the AuthModule
19255
+ * Select specific fields to fetch from the AssignmentLibrary
20565
19256
  */
20566
- select?: AuthModuleSelect<ExtArgs> | null
19257
+ select?: AssignmentLibrarySelect<ExtArgs> | null
20567
19258
  /**
20568
- * Omit specific fields from the AuthModule
19259
+ * Omit specific fields from the AssignmentLibrary
20569
19260
  */
20570
- omit?: AuthModuleOmit<ExtArgs> | null
19261
+ omit?: AssignmentLibraryOmit<ExtArgs> | null
20571
19262
  /**
20572
19263
  * Choose, which related nodes to fetch as well
20573
19264
  */
20574
- include?: AuthModuleInclude<ExtArgs> | null
19265
+ include?: AssignmentLibraryInclude<ExtArgs> | null
20575
19266
  /**
20576
- * Filter, which AuthModule to fetch.
19267
+ * Filter, which AssignmentLibrary to fetch.
20577
19268
  */
20578
- where?: AuthModuleWhereInput
19269
+ where?: AssignmentLibraryWhereInput
20579
19270
  /**
20580
19271
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
20581
19272
  *
20582
- * Determine the order of AuthModules to fetch.
19273
+ * Determine the order of AssignmentLibraries to fetch.
20583
19274
  */
20584
- orderBy?: AuthModuleOrderByWithRelationInput | AuthModuleOrderByWithRelationInput[]
19275
+ orderBy?: AssignmentLibraryOrderByWithRelationInput | AssignmentLibraryOrderByWithRelationInput[]
20585
19276
  /**
20586
19277
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
20587
19278
  *
20588
- * Sets the position for searching for AuthModules.
19279
+ * Sets the position for searching for AssignmentLibraries.
20589
19280
  */
20590
- cursor?: AuthModuleWhereUniqueInput
19281
+ cursor?: AssignmentLibraryWhereUniqueInput
20591
19282
  /**
20592
19283
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
20593
19284
  *
20594
- * Take `±n` AuthModules from the position of the cursor.
19285
+ * Take `±n` AssignmentLibraries from the position of the cursor.
20595
19286
  */
20596
19287
  take?: number
20597
19288
  /**
20598
19289
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
20599
19290
  *
20600
- * Skip the first `n` AuthModules.
19291
+ * Skip the first `n` AssignmentLibraries.
20601
19292
  */
20602
19293
  skip?: number
20603
19294
  /**
20604
19295
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
20605
19296
  *
20606
- * Filter by unique combinations of AuthModules.
19297
+ * Filter by unique combinations of AssignmentLibraries.
20607
19298
  */
20608
- distinct?: AuthModuleScalarFieldEnum | AuthModuleScalarFieldEnum[]
19299
+ distinct?: AssignmentLibraryScalarFieldEnum | AssignmentLibraryScalarFieldEnum[]
20609
19300
  }
20610
19301
 
20611
19302
  /**
20612
- * AuthModule findMany
19303
+ * AssignmentLibrary findMany
20613
19304
  */
20614
- export type AuthModuleFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19305
+ export type AssignmentLibraryFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20615
19306
  /**
20616
- * Select specific fields to fetch from the AuthModule
19307
+ * Select specific fields to fetch from the AssignmentLibrary
20617
19308
  */
20618
- select?: AuthModuleSelect<ExtArgs> | null
19309
+ select?: AssignmentLibrarySelect<ExtArgs> | null
20619
19310
  /**
20620
- * Omit specific fields from the AuthModule
19311
+ * Omit specific fields from the AssignmentLibrary
20621
19312
  */
20622
- omit?: AuthModuleOmit<ExtArgs> | null
19313
+ omit?: AssignmentLibraryOmit<ExtArgs> | null
20623
19314
  /**
20624
19315
  * Choose, which related nodes to fetch as well
20625
19316
  */
20626
- include?: AuthModuleInclude<ExtArgs> | null
19317
+ include?: AssignmentLibraryInclude<ExtArgs> | null
20627
19318
  /**
20628
- * Filter, which AuthModules to fetch.
19319
+ * Filter, which AssignmentLibraries to fetch.
20629
19320
  */
20630
- where?: AuthModuleWhereInput
19321
+ where?: AssignmentLibraryWhereInput
20631
19322
  /**
20632
19323
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
20633
19324
  *
20634
- * Determine the order of AuthModules to fetch.
19325
+ * Determine the order of AssignmentLibraries to fetch.
20635
19326
  */
20636
- orderBy?: AuthModuleOrderByWithRelationInput | AuthModuleOrderByWithRelationInput[]
19327
+ orderBy?: AssignmentLibraryOrderByWithRelationInput | AssignmentLibraryOrderByWithRelationInput[]
20637
19328
  /**
20638
19329
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
20639
19330
  *
20640
- * Sets the position for listing AuthModules.
19331
+ * Sets the position for listing AssignmentLibraries.
20641
19332
  */
20642
- cursor?: AuthModuleWhereUniqueInput
19333
+ cursor?: AssignmentLibraryWhereUniqueInput
20643
19334
  /**
20644
19335
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
20645
19336
  *
20646
- * Take `±n` AuthModules from the position of the cursor.
19337
+ * Take `±n` AssignmentLibraries from the position of the cursor.
20647
19338
  */
20648
19339
  take?: number
20649
19340
  /**
20650
19341
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
20651
19342
  *
20652
- * Skip the first `n` AuthModules.
19343
+ * Skip the first `n` AssignmentLibraries.
20653
19344
  */
20654
19345
  skip?: number
20655
- distinct?: AuthModuleScalarFieldEnum | AuthModuleScalarFieldEnum[]
19346
+ distinct?: AssignmentLibraryScalarFieldEnum | AssignmentLibraryScalarFieldEnum[]
20656
19347
  }
20657
19348
 
20658
19349
  /**
20659
- * AuthModule create
19350
+ * AssignmentLibrary create
20660
19351
  */
20661
- export type AuthModuleCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19352
+ export type AssignmentLibraryCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20662
19353
  /**
20663
- * Select specific fields to fetch from the AuthModule
19354
+ * Select specific fields to fetch from the AssignmentLibrary
20664
19355
  */
20665
- select?: AuthModuleSelect<ExtArgs> | null
19356
+ select?: AssignmentLibrarySelect<ExtArgs> | null
20666
19357
  /**
20667
- * Omit specific fields from the AuthModule
19358
+ * Omit specific fields from the AssignmentLibrary
20668
19359
  */
20669
- omit?: AuthModuleOmit<ExtArgs> | null
19360
+ omit?: AssignmentLibraryOmit<ExtArgs> | null
20670
19361
  /**
20671
19362
  * Choose, which related nodes to fetch as well
20672
19363
  */
20673
- include?: AuthModuleInclude<ExtArgs> | null
19364
+ include?: AssignmentLibraryInclude<ExtArgs> | null
20674
19365
  /**
20675
- * The data needed to create a AuthModule.
19366
+ * The data needed to create a AssignmentLibrary.
20676
19367
  */
20677
- data: XOR<AuthModuleCreateInput, AuthModuleUncheckedCreateInput>
19368
+ data: XOR<AssignmentLibraryCreateInput, AssignmentLibraryUncheckedCreateInput>
20678
19369
  }
20679
19370
 
20680
19371
  /**
20681
- * AuthModule createMany
19372
+ * AssignmentLibrary createMany
20682
19373
  */
20683
- export type AuthModuleCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19374
+ export type AssignmentLibraryCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20684
19375
  /**
20685
- * The data used to create many AuthModules.
19376
+ * The data used to create many AssignmentLibraries.
20686
19377
  */
20687
- data: AuthModuleCreateManyInput | AuthModuleCreateManyInput[]
19378
+ data: AssignmentLibraryCreateManyInput | AssignmentLibraryCreateManyInput[]
20688
19379
  skipDuplicates?: boolean
20689
19380
  }
20690
19381
 
20691
19382
  /**
20692
- * AuthModule createManyAndReturn
19383
+ * AssignmentLibrary createManyAndReturn
20693
19384
  */
20694
- export type AuthModuleCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19385
+ export type AssignmentLibraryCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20695
19386
  /**
20696
- * Select specific fields to fetch from the AuthModule
19387
+ * Select specific fields to fetch from the AssignmentLibrary
20697
19388
  */
20698
- select?: AuthModuleSelectCreateManyAndReturn<ExtArgs> | null
19389
+ select?: AssignmentLibrarySelectCreateManyAndReturn<ExtArgs> | null
20699
19390
  /**
20700
- * Omit specific fields from the AuthModule
19391
+ * Omit specific fields from the AssignmentLibrary
20701
19392
  */
20702
- omit?: AuthModuleOmit<ExtArgs> | null
19393
+ omit?: AssignmentLibraryOmit<ExtArgs> | null
20703
19394
  /**
20704
- * The data used to create many AuthModules.
19395
+ * The data used to create many AssignmentLibraries.
20705
19396
  */
20706
- data: AuthModuleCreateManyInput | AuthModuleCreateManyInput[]
19397
+ data: AssignmentLibraryCreateManyInput | AssignmentLibraryCreateManyInput[]
20707
19398
  skipDuplicates?: boolean
20708
19399
  /**
20709
19400
  * Choose, which related nodes to fetch as well
20710
19401
  */
20711
- include?: AuthModuleIncludeCreateManyAndReturn<ExtArgs> | null
19402
+ include?: AssignmentLibraryIncludeCreateManyAndReturn<ExtArgs> | null
20712
19403
  }
20713
19404
 
20714
19405
  /**
20715
- * AuthModule update
19406
+ * AssignmentLibrary update
20716
19407
  */
20717
- export type AuthModuleUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19408
+ export type AssignmentLibraryUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20718
19409
  /**
20719
- * Select specific fields to fetch from the AuthModule
19410
+ * Select specific fields to fetch from the AssignmentLibrary
20720
19411
  */
20721
- select?: AuthModuleSelect<ExtArgs> | null
19412
+ select?: AssignmentLibrarySelect<ExtArgs> | null
20722
19413
  /**
20723
- * Omit specific fields from the AuthModule
19414
+ * Omit specific fields from the AssignmentLibrary
20724
19415
  */
20725
- omit?: AuthModuleOmit<ExtArgs> | null
19416
+ omit?: AssignmentLibraryOmit<ExtArgs> | null
20726
19417
  /**
20727
19418
  * Choose, which related nodes to fetch as well
20728
19419
  */
20729
- include?: AuthModuleInclude<ExtArgs> | null
19420
+ include?: AssignmentLibraryInclude<ExtArgs> | null
20730
19421
  /**
20731
- * The data needed to update a AuthModule.
19422
+ * The data needed to update a AssignmentLibrary.
20732
19423
  */
20733
- data: XOR<AuthModuleUpdateInput, AuthModuleUncheckedUpdateInput>
19424
+ data: XOR<AssignmentLibraryUpdateInput, AssignmentLibraryUncheckedUpdateInput>
20734
19425
  /**
20735
- * Choose, which AuthModule to update.
19426
+ * Choose, which AssignmentLibrary to update.
20736
19427
  */
20737
- where: AuthModuleWhereUniqueInput
19428
+ where: AssignmentLibraryWhereUniqueInput
20738
19429
  }
20739
19430
 
20740
19431
  /**
20741
- * AuthModule updateMany
19432
+ * AssignmentLibrary updateMany
20742
19433
  */
20743
- export type AuthModuleUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19434
+ export type AssignmentLibraryUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20744
19435
  /**
20745
- * The data used to update AuthModules.
19436
+ * The data used to update AssignmentLibraries.
20746
19437
  */
20747
- data: XOR<AuthModuleUpdateManyMutationInput, AuthModuleUncheckedUpdateManyInput>
19438
+ data: XOR<AssignmentLibraryUpdateManyMutationInput, AssignmentLibraryUncheckedUpdateManyInput>
20748
19439
  /**
20749
- * Filter which AuthModules to update
19440
+ * Filter which AssignmentLibraries to update
20750
19441
  */
20751
- where?: AuthModuleWhereInput
19442
+ where?: AssignmentLibraryWhereInput
20752
19443
  /**
20753
- * Limit how many AuthModules to update.
19444
+ * Limit how many AssignmentLibraries to update.
20754
19445
  */
20755
19446
  limit?: number
20756
19447
  }
20757
19448
 
20758
19449
  /**
20759
- * AuthModule updateManyAndReturn
19450
+ * AssignmentLibrary updateManyAndReturn
20760
19451
  */
20761
- export type AuthModuleUpdateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19452
+ export type AssignmentLibraryUpdateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20762
19453
  /**
20763
- * Select specific fields to fetch from the AuthModule
19454
+ * Select specific fields to fetch from the AssignmentLibrary
20764
19455
  */
20765
- select?: AuthModuleSelectUpdateManyAndReturn<ExtArgs> | null
19456
+ select?: AssignmentLibrarySelectUpdateManyAndReturn<ExtArgs> | null
20766
19457
  /**
20767
- * Omit specific fields from the AuthModule
19458
+ * Omit specific fields from the AssignmentLibrary
20768
19459
  */
20769
- omit?: AuthModuleOmit<ExtArgs> | null
19460
+ omit?: AssignmentLibraryOmit<ExtArgs> | null
20770
19461
  /**
20771
- * The data used to update AuthModules.
19462
+ * The data used to update AssignmentLibraries.
20772
19463
  */
20773
- data: XOR<AuthModuleUpdateManyMutationInput, AuthModuleUncheckedUpdateManyInput>
19464
+ data: XOR<AssignmentLibraryUpdateManyMutationInput, AssignmentLibraryUncheckedUpdateManyInput>
20774
19465
  /**
20775
- * Filter which AuthModules to update
19466
+ * Filter which AssignmentLibraries to update
20776
19467
  */
20777
- where?: AuthModuleWhereInput
19468
+ where?: AssignmentLibraryWhereInput
20778
19469
  /**
20779
- * Limit how many AuthModules to update.
19470
+ * Limit how many AssignmentLibraries to update.
20780
19471
  */
20781
19472
  limit?: number
20782
19473
  /**
20783
19474
  * Choose, which related nodes to fetch as well
20784
19475
  */
20785
- include?: AuthModuleIncludeUpdateManyAndReturn<ExtArgs> | null
19476
+ include?: AssignmentLibraryIncludeUpdateManyAndReturn<ExtArgs> | null
20786
19477
  }
20787
19478
 
20788
19479
  /**
20789
- * AuthModule upsert
19480
+ * AssignmentLibrary upsert
20790
19481
  */
20791
- export type AuthModuleUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19482
+ export type AssignmentLibraryUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20792
19483
  /**
20793
- * Select specific fields to fetch from the AuthModule
19484
+ * Select specific fields to fetch from the AssignmentLibrary
20794
19485
  */
20795
- select?: AuthModuleSelect<ExtArgs> | null
19486
+ select?: AssignmentLibrarySelect<ExtArgs> | null
20796
19487
  /**
20797
- * Omit specific fields from the AuthModule
19488
+ * Omit specific fields from the AssignmentLibrary
20798
19489
  */
20799
- omit?: AuthModuleOmit<ExtArgs> | null
19490
+ omit?: AssignmentLibraryOmit<ExtArgs> | null
20800
19491
  /**
20801
19492
  * Choose, which related nodes to fetch as well
20802
19493
  */
20803
- include?: AuthModuleInclude<ExtArgs> | null
19494
+ include?: AssignmentLibraryInclude<ExtArgs> | null
20804
19495
  /**
20805
- * The filter to search for the AuthModule to update in case it exists.
19496
+ * The filter to search for the AssignmentLibrary to update in case it exists.
20806
19497
  */
20807
- where: AuthModuleWhereUniqueInput
19498
+ where: AssignmentLibraryWhereUniqueInput
20808
19499
  /**
20809
- * In case the AuthModule found by the `where` argument doesn't exist, create a new AuthModule with this data.
19500
+ * In case the AssignmentLibrary found by the `where` argument doesn't exist, create a new AssignmentLibrary with this data.
20810
19501
  */
20811
- create: XOR<AuthModuleCreateInput, AuthModuleUncheckedCreateInput>
19502
+ create: XOR<AssignmentLibraryCreateInput, AssignmentLibraryUncheckedCreateInput>
20812
19503
  /**
20813
- * In case the AuthModule was found with the provided `where` argument, update it with this data.
19504
+ * In case the AssignmentLibrary was found with the provided `where` argument, update it with this data.
20814
19505
  */
20815
- update: XOR<AuthModuleUpdateInput, AuthModuleUncheckedUpdateInput>
19506
+ update: XOR<AssignmentLibraryUpdateInput, AssignmentLibraryUncheckedUpdateInput>
20816
19507
  }
20817
19508
 
20818
19509
  /**
20819
- * AuthModule delete
19510
+ * AssignmentLibrary delete
20820
19511
  */
20821
- export type AuthModuleDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19512
+ export type AssignmentLibraryDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20822
19513
  /**
20823
- * Select specific fields to fetch from the AuthModule
19514
+ * Select specific fields to fetch from the AssignmentLibrary
20824
19515
  */
20825
- select?: AuthModuleSelect<ExtArgs> | null
19516
+ select?: AssignmentLibrarySelect<ExtArgs> | null
20826
19517
  /**
20827
- * Omit specific fields from the AuthModule
19518
+ * Omit specific fields from the AssignmentLibrary
20828
19519
  */
20829
- omit?: AuthModuleOmit<ExtArgs> | null
19520
+ omit?: AssignmentLibraryOmit<ExtArgs> | null
20830
19521
  /**
20831
19522
  * Choose, which related nodes to fetch as well
20832
19523
  */
20833
- include?: AuthModuleInclude<ExtArgs> | null
19524
+ include?: AssignmentLibraryInclude<ExtArgs> | null
20834
19525
  /**
20835
- * Filter which AuthModule to delete.
19526
+ * Filter which AssignmentLibrary to delete.
20836
19527
  */
20837
- where: AuthModuleWhereUniqueInput
19528
+ where: AssignmentLibraryWhereUniqueInput
20838
19529
  }
20839
19530
 
20840
19531
  /**
20841
- * AuthModule deleteMany
19532
+ * AssignmentLibrary deleteMany
20842
19533
  */
20843
- export type AuthModuleDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19534
+ export type AssignmentLibraryDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20844
19535
  /**
20845
- * Filter which AuthModules to delete
19536
+ * Filter which AssignmentLibraries to delete
20846
19537
  */
20847
- where?: AuthModuleWhereInput
19538
+ where?: AssignmentLibraryWhereInput
20848
19539
  /**
20849
- * Limit how many AuthModules to delete.
19540
+ * Limit how many AssignmentLibraries to delete.
20850
19541
  */
20851
19542
  limit?: number
20852
19543
  }
20853
19544
 
20854
19545
  /**
20855
- * AuthModule without action
19546
+ * AssignmentLibrary.evaluationPlan
20856
19547
  */
20857
- export type AuthModuleDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19548
+ export type AssignmentLibrary$evaluationPlanArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20858
19549
  /**
20859
- * Select specific fields to fetch from the AuthModule
19550
+ * Select specific fields to fetch from the EvaluationPlan
20860
19551
  */
20861
- select?: AuthModuleSelect<ExtArgs> | null
19552
+ select?: EvaluationPlanSelect<ExtArgs> | null
20862
19553
  /**
20863
- * Omit specific fields from the AuthModule
19554
+ * Omit specific fields from the EvaluationPlan
20864
19555
  */
20865
- omit?: AuthModuleOmit<ExtArgs> | null
19556
+ omit?: EvaluationPlanOmit<ExtArgs> | null
20866
19557
  /**
20867
19558
  * Choose, which related nodes to fetch as well
20868
19559
  */
20869
- include?: AuthModuleInclude<ExtArgs> | null
19560
+ include?: EvaluationPlanInclude<ExtArgs> | null
19561
+ where?: EvaluationPlanWhereInput
19562
+ orderBy?: EvaluationPlanOrderByWithRelationInput | EvaluationPlanOrderByWithRelationInput[]
19563
+ cursor?: EvaluationPlanWhereUniqueInput
19564
+ take?: number
19565
+ skip?: number
19566
+ distinct?: EvaluationPlanScalarFieldEnum | EvaluationPlanScalarFieldEnum[]
19567
+ }
19568
+
19569
+ /**
19570
+ * AssignmentLibrary.assignments
19571
+ */
19572
+ export type AssignmentLibrary$assignmentsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19573
+ /**
19574
+ * Select specific fields to fetch from the Assignment
19575
+ */
19576
+ select?: AssignmentSelect<ExtArgs> | null
19577
+ /**
19578
+ * Omit specific fields from the Assignment
19579
+ */
19580
+ omit?: AssignmentOmit<ExtArgs> | null
19581
+ /**
19582
+ * Choose, which related nodes to fetch as well
19583
+ */
19584
+ include?: AssignmentInclude<ExtArgs> | null
19585
+ where?: AssignmentWhereInput
19586
+ orderBy?: AssignmentOrderByWithRelationInput | AssignmentOrderByWithRelationInput[]
19587
+ cursor?: AssignmentWhereUniqueInput
19588
+ take?: number
19589
+ skip?: number
19590
+ distinct?: AssignmentScalarFieldEnum | AssignmentScalarFieldEnum[]
19591
+ }
19592
+
19593
+ /**
19594
+ * AssignmentLibrary without action
19595
+ */
19596
+ export type AssignmentLibraryDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19597
+ /**
19598
+ * Select specific fields to fetch from the AssignmentLibrary
19599
+ */
19600
+ select?: AssignmentLibrarySelect<ExtArgs> | null
19601
+ /**
19602
+ * Omit specific fields from the AssignmentLibrary
19603
+ */
19604
+ omit?: AssignmentLibraryOmit<ExtArgs> | null
19605
+ /**
19606
+ * Choose, which related nodes to fetch as well
19607
+ */
19608
+ include?: AssignmentLibraryInclude<ExtArgs> | null
20870
19609
  }
20871
19610
 
20872
19611
 
@@ -50614,6 +49353,7 @@ export namespace Prisma {
50614
49353
  organisation_id: string | null
50615
49354
  job_description_id: string | null
50616
49355
  uploaded_resume_path: string | null
49356
+ file_hash: string | null
50617
49357
  created_at: Date | null
50618
49358
  updated_at: Date | null
50619
49359
  created_by: string | null
@@ -50629,6 +49369,7 @@ export namespace Prisma {
50629
49369
  organisation_id: string | null
50630
49370
  job_description_id: string | null
50631
49371
  uploaded_resume_path: string | null
49372
+ file_hash: string | null
50632
49373
  created_at: Date | null
50633
49374
  updated_at: Date | null
50634
49375
  created_by: string | null
@@ -50644,6 +49385,7 @@ export namespace Prisma {
50644
49385
  organisation_id: number
50645
49386
  job_description_id: number
50646
49387
  uploaded_resume_path: number
49388
+ file_hash: number
50647
49389
  summary: number
50648
49390
  created_at: number
50649
49391
  updated_at: number
@@ -50670,6 +49412,7 @@ export namespace Prisma {
50670
49412
  organisation_id?: true
50671
49413
  job_description_id?: true
50672
49414
  uploaded_resume_path?: true
49415
+ file_hash?: true
50673
49416
  created_at?: true
50674
49417
  updated_at?: true
50675
49418
  created_by?: true
@@ -50685,6 +49428,7 @@ export namespace Prisma {
50685
49428
  organisation_id?: true
50686
49429
  job_description_id?: true
50687
49430
  uploaded_resume_path?: true
49431
+ file_hash?: true
50688
49432
  created_at?: true
50689
49433
  updated_at?: true
50690
49434
  created_by?: true
@@ -50700,6 +49444,7 @@ export namespace Prisma {
50700
49444
  organisation_id?: true
50701
49445
  job_description_id?: true
50702
49446
  uploaded_resume_path?: true
49447
+ file_hash?: true
50703
49448
  summary?: true
50704
49449
  created_at?: true
50705
49450
  updated_at?: true
@@ -50803,6 +49548,7 @@ export namespace Prisma {
50803
49548
  organisation_id: string | null
50804
49549
  job_description_id: string | null
50805
49550
  uploaded_resume_path: string | null
49551
+ file_hash: string | null
50806
49552
  summary: JsonValue | null
50807
49553
  created_at: Date
50808
49554
  updated_at: Date
@@ -50838,6 +49584,7 @@ export namespace Prisma {
50838
49584
  organisation_id?: boolean
50839
49585
  job_description_id?: boolean
50840
49586
  uploaded_resume_path?: boolean
49587
+ file_hash?: boolean
50841
49588
  summary?: boolean
50842
49589
  created_at?: boolean
50843
49590
  updated_at?: boolean
@@ -50864,6 +49611,7 @@ export namespace Prisma {
50864
49611
  organisation_id?: boolean
50865
49612
  job_description_id?: boolean
50866
49613
  uploaded_resume_path?: boolean
49614
+ file_hash?: boolean
50867
49615
  summary?: boolean
50868
49616
  created_at?: boolean
50869
49617
  updated_at?: boolean
@@ -50883,6 +49631,7 @@ export namespace Prisma {
50883
49631
  organisation_id?: boolean
50884
49632
  job_description_id?: boolean
50885
49633
  uploaded_resume_path?: boolean
49634
+ file_hash?: boolean
50886
49635
  summary?: boolean
50887
49636
  created_at?: boolean
50888
49637
  updated_at?: boolean
@@ -50902,6 +49651,7 @@ export namespace Prisma {
50902
49651
  organisation_id?: boolean
50903
49652
  job_description_id?: boolean
50904
49653
  uploaded_resume_path?: boolean
49654
+ file_hash?: boolean
50905
49655
  summary?: boolean
50906
49656
  created_at?: boolean
50907
49657
  updated_at?: boolean
@@ -50912,7 +49662,7 @@ export namespace Prisma {
50912
49662
  yearsOfExperience?: boolean
50913
49663
  }
50914
49664
 
50915
- export type ResumeOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "organisation_id" | "job_description_id" | "uploaded_resume_path" | "summary" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "name" | "yearsOfExperience", ExtArgs["result"]["resume"]>
49665
+ export type ResumeOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "organisation_id" | "job_description_id" | "uploaded_resume_path" | "file_hash" | "summary" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "name" | "yearsOfExperience", ExtArgs["result"]["resume"]>
50916
49666
  export type ResumeInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
50917
49667
  user?: boolean | Resume$userArgs<ExtArgs>
50918
49668
  organisation?: boolean | Resume$organisationArgs<ExtArgs>
@@ -50955,6 +49705,7 @@ export namespace Prisma {
50955
49705
  organisation_id: string | null
50956
49706
  job_description_id: string | null
50957
49707
  uploaded_resume_path: string | null
49708
+ file_hash: string | null
50958
49709
  summary: Prisma.JsonValue | null
50959
49710
  created_at: Date
50960
49711
  updated_at: Date
@@ -51400,6 +50151,7 @@ export namespace Prisma {
51400
50151
  readonly organisation_id: FieldRef<"Resume", 'String'>
51401
50152
  readonly job_description_id: FieldRef<"Resume", 'String'>
51402
50153
  readonly uploaded_resume_path: FieldRef<"Resume", 'String'>
50154
+ readonly file_hash: FieldRef<"Resume", 'String'>
51403
50155
  readonly summary: FieldRef<"Resume", 'Json'>
51404
50156
  readonly created_at: FieldRef<"Resume", 'DateTime'>
51405
50157
  readonly updated_at: FieldRef<"Resume", 'DateTime'>
@@ -56014,7 +54766,6 @@ export namespace Prisma {
56014
54766
  fitChecks?: boolean | User$fitChecksArgs<ExtArgs>
56015
54767
  created_job_profiles?: boolean | User$created_job_profilesArgs<ExtArgs>
56016
54768
  assigned_job_profiles?: boolean | User$assigned_job_profilesArgs<ExtArgs>
56017
- user_auth_modules?: boolean | User$user_auth_modulesArgs<ExtArgs>
56018
54769
  _count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
56019
54770
  }, ExtArgs["result"]["user"]>
56020
54771
 
@@ -56161,7 +54912,6 @@ export namespace Prisma {
56161
54912
  fitChecks?: boolean | User$fitChecksArgs<ExtArgs>
56162
54913
  created_job_profiles?: boolean | User$created_job_profilesArgs<ExtArgs>
56163
54914
  assigned_job_profiles?: boolean | User$assigned_job_profilesArgs<ExtArgs>
56164
- user_auth_modules?: boolean | User$user_auth_modulesArgs<ExtArgs>
56165
54915
  _count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
56166
54916
  }
56167
54917
  export type UserIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -56208,7 +54958,6 @@ export namespace Prisma {
56208
54958
  fitChecks: Prisma.$FitCheckPayload<ExtArgs>[]
56209
54959
  created_job_profiles: Prisma.$JobProfilePayload<ExtArgs>[]
56210
54960
  assigned_job_profiles: Prisma.$JobProfilePayload<ExtArgs>[]
56211
- user_auth_modules: Prisma.$AuthModulePayload<ExtArgs>[]
56212
54961
  }
56213
54962
  scalars: $Extensions.GetPayloadResult<{
56214
54963
  id: string
@@ -56667,7 +55416,6 @@ export namespace Prisma {
56667
55416
  fitChecks<T extends User$fitChecksArgs<ExtArgs> = {}>(args?: Subset<T, User$fitChecksArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$FitCheckPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
56668
55417
  created_job_profiles<T extends User$created_job_profilesArgs<ExtArgs> = {}>(args?: Subset<T, User$created_job_profilesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$JobProfilePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
56669
55418
  assigned_job_profiles<T extends User$assigned_job_profilesArgs<ExtArgs> = {}>(args?: Subset<T, User$assigned_job_profilesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$JobProfilePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
56670
- user_auth_modules<T extends User$user_auth_modulesArgs<ExtArgs> = {}>(args?: Subset<T, User$user_auth_modulesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AuthModulePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
56671
55419
  /**
56672
55420
  * Attaches callbacks for the resolution and/or rejection of the Promise.
56673
55421
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -57790,30 +56538,6 @@ export namespace Prisma {
57790
56538
  distinct?: JobProfileScalarFieldEnum | JobProfileScalarFieldEnum[]
57791
56539
  }
57792
56540
 
57793
- /**
57794
- * User.user_auth_modules
57795
- */
57796
- export type User$user_auth_modulesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
57797
- /**
57798
- * Select specific fields to fetch from the AuthModule
57799
- */
57800
- select?: AuthModuleSelect<ExtArgs> | null
57801
- /**
57802
- * Omit specific fields from the AuthModule
57803
- */
57804
- omit?: AuthModuleOmit<ExtArgs> | null
57805
- /**
57806
- * Choose, which related nodes to fetch as well
57807
- */
57808
- include?: AuthModuleInclude<ExtArgs> | null
57809
- where?: AuthModuleWhereInput
57810
- orderBy?: AuthModuleOrderByWithRelationInput | AuthModuleOrderByWithRelationInput[]
57811
- cursor?: AuthModuleWhereUniqueInput
57812
- take?: number
57813
- skip?: number
57814
- distinct?: AuthModuleScalarFieldEnum | AuthModuleScalarFieldEnum[]
57815
- }
57816
-
57817
56541
  /**
57818
56542
  * User without action
57819
56543
  */
@@ -59200,24 +57924,6 @@ export namespace Prisma {
59200
57924
  export type AssignmentLibraryScalarFieldEnum = (typeof AssignmentLibraryScalarFieldEnum)[keyof typeof AssignmentLibraryScalarFieldEnum]
59201
57925
 
59202
57926
 
59203
- export const AuthModuleScalarFieldEnum: {
59204
- id: 'id',
59205
- user_id: 'user_id',
59206
- provider: 'provider',
59207
- provider_account_id: 'provider_account_id',
59208
- access_token: 'access_token',
59209
- refresh_token: 'refresh_token',
59210
- id_token: 'id_token',
59211
- expires_at: 'expires_at',
59212
- token_type: 'token_type',
59213
- scope: 'scope',
59214
- created_at: 'created_at',
59215
- updated_at: 'updated_at'
59216
- };
59217
-
59218
- export type AuthModuleScalarFieldEnum = (typeof AuthModuleScalarFieldEnum)[keyof typeof AuthModuleScalarFieldEnum]
59219
-
59220
-
59221
57927
  export const BudgetScalarFieldEnum: {
59222
57928
  id: 'id',
59223
57929
  job_type: 'job_type',
@@ -59734,6 +58440,7 @@ export namespace Prisma {
59734
58440
  organisation_id: 'organisation_id',
59735
58441
  job_description_id: 'job_description_id',
59736
58442
  uploaded_resume_path: 'uploaded_resume_path',
58443
+ file_hash: 'file_hash',
59737
58444
  summary: 'summary',
59738
58445
  created_at: 'created_at',
59739
58446
  updated_at: 'updated_at',
@@ -60083,20 +58790,6 @@ export namespace Prisma {
60083
58790
 
60084
58791
 
60085
58792
 
60086
- /**
60087
- * Reference to a field of type 'AuthProvider'
60088
- */
60089
- export type EnumAuthProviderFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'AuthProvider'>
60090
-
60091
-
60092
-
60093
- /**
60094
- * Reference to a field of type 'AuthProvider[]'
60095
- */
60096
- export type ListEnumAuthProviderFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'AuthProvider[]'>
60097
-
60098
-
60099
-
60100
58793
  /**
60101
58794
  * Reference to a field of type 'JobType'
60102
58795
  */
@@ -61582,97 +60275,6 @@ export namespace Prisma {
61582
60275
  is_active?: BoolWithAggregatesFilter<"AssignmentLibrary"> | boolean
61583
60276
  }
61584
60277
 
61585
- export type AuthModuleWhereInput = {
61586
- AND?: AuthModuleWhereInput | AuthModuleWhereInput[]
61587
- OR?: AuthModuleWhereInput[]
61588
- NOT?: AuthModuleWhereInput | AuthModuleWhereInput[]
61589
- id?: StringFilter<"AuthModule"> | string
61590
- user_id?: StringFilter<"AuthModule"> | string
61591
- provider?: EnumAuthProviderFilter<"AuthModule"> | $Enums.AuthProvider
61592
- provider_account_id?: StringFilter<"AuthModule"> | string
61593
- access_token?: StringNullableFilter<"AuthModule"> | string | null
61594
- refresh_token?: StringNullableFilter<"AuthModule"> | string | null
61595
- id_token?: StringNullableFilter<"AuthModule"> | string | null
61596
- expires_at?: DateTimeNullableFilter<"AuthModule"> | Date | string | null
61597
- token_type?: StringNullableFilter<"AuthModule"> | string | null
61598
- scope?: StringNullableFilter<"AuthModule"> | string | null
61599
- created_at?: DateTimeFilter<"AuthModule"> | Date | string
61600
- updated_at?: DateTimeFilter<"AuthModule"> | Date | string
61601
- user?: XOR<UserScalarRelationFilter, UserWhereInput>
61602
- }
61603
-
61604
- export type AuthModuleOrderByWithRelationInput = {
61605
- id?: SortOrder
61606
- user_id?: SortOrder
61607
- provider?: SortOrder
61608
- provider_account_id?: SortOrder
61609
- access_token?: SortOrderInput | SortOrder
61610
- refresh_token?: SortOrderInput | SortOrder
61611
- id_token?: SortOrderInput | SortOrder
61612
- expires_at?: SortOrderInput | SortOrder
61613
- token_type?: SortOrderInput | SortOrder
61614
- scope?: SortOrderInput | SortOrder
61615
- created_at?: SortOrder
61616
- updated_at?: SortOrder
61617
- user?: UserOrderByWithRelationInput
61618
- }
61619
-
61620
- export type AuthModuleWhereUniqueInput = Prisma.AtLeast<{
61621
- id?: string
61622
- provider_provider_account_id?: AuthModuleProviderProvider_account_idCompoundUniqueInput
61623
- AND?: AuthModuleWhereInput | AuthModuleWhereInput[]
61624
- OR?: AuthModuleWhereInput[]
61625
- NOT?: AuthModuleWhereInput | AuthModuleWhereInput[]
61626
- user_id?: StringFilter<"AuthModule"> | string
61627
- provider?: EnumAuthProviderFilter<"AuthModule"> | $Enums.AuthProvider
61628
- provider_account_id?: StringFilter<"AuthModule"> | string
61629
- access_token?: StringNullableFilter<"AuthModule"> | string | null
61630
- refresh_token?: StringNullableFilter<"AuthModule"> | string | null
61631
- id_token?: StringNullableFilter<"AuthModule"> | string | null
61632
- expires_at?: DateTimeNullableFilter<"AuthModule"> | Date | string | null
61633
- token_type?: StringNullableFilter<"AuthModule"> | string | null
61634
- scope?: StringNullableFilter<"AuthModule"> | string | null
61635
- created_at?: DateTimeFilter<"AuthModule"> | Date | string
61636
- updated_at?: DateTimeFilter<"AuthModule"> | Date | string
61637
- user?: XOR<UserScalarRelationFilter, UserWhereInput>
61638
- }, "id" | "provider_provider_account_id">
61639
-
61640
- export type AuthModuleOrderByWithAggregationInput = {
61641
- id?: SortOrder
61642
- user_id?: SortOrder
61643
- provider?: SortOrder
61644
- provider_account_id?: SortOrder
61645
- access_token?: SortOrderInput | SortOrder
61646
- refresh_token?: SortOrderInput | SortOrder
61647
- id_token?: SortOrderInput | SortOrder
61648
- expires_at?: SortOrderInput | SortOrder
61649
- token_type?: SortOrderInput | SortOrder
61650
- scope?: SortOrderInput | SortOrder
61651
- created_at?: SortOrder
61652
- updated_at?: SortOrder
61653
- _count?: AuthModuleCountOrderByAggregateInput
61654
- _max?: AuthModuleMaxOrderByAggregateInput
61655
- _min?: AuthModuleMinOrderByAggregateInput
61656
- }
61657
-
61658
- export type AuthModuleScalarWhereWithAggregatesInput = {
61659
- AND?: AuthModuleScalarWhereWithAggregatesInput | AuthModuleScalarWhereWithAggregatesInput[]
61660
- OR?: AuthModuleScalarWhereWithAggregatesInput[]
61661
- NOT?: AuthModuleScalarWhereWithAggregatesInput | AuthModuleScalarWhereWithAggregatesInput[]
61662
- id?: StringWithAggregatesFilter<"AuthModule"> | string
61663
- user_id?: StringWithAggregatesFilter<"AuthModule"> | string
61664
- provider?: EnumAuthProviderWithAggregatesFilter<"AuthModule"> | $Enums.AuthProvider
61665
- provider_account_id?: StringWithAggregatesFilter<"AuthModule"> | string
61666
- access_token?: StringNullableWithAggregatesFilter<"AuthModule"> | string | null
61667
- refresh_token?: StringNullableWithAggregatesFilter<"AuthModule"> | string | null
61668
- id_token?: StringNullableWithAggregatesFilter<"AuthModule"> | string | null
61669
- expires_at?: DateTimeNullableWithAggregatesFilter<"AuthModule"> | Date | string | null
61670
- token_type?: StringNullableWithAggregatesFilter<"AuthModule"> | string | null
61671
- scope?: StringNullableWithAggregatesFilter<"AuthModule"> | string | null
61672
- created_at?: DateTimeWithAggregatesFilter<"AuthModule"> | Date | string
61673
- updated_at?: DateTimeWithAggregatesFilter<"AuthModule"> | Date | string
61674
- }
61675
-
61676
60278
  export type BudgetWhereInput = {
61677
60279
  AND?: BudgetWhereInput | BudgetWhereInput[]
61678
60280
  OR?: BudgetWhereInput[]
@@ -64475,6 +63077,7 @@ export namespace Prisma {
64475
63077
  organisation_id?: StringNullableFilter<"Resume"> | string | null
64476
63078
  job_description_id?: StringNullableFilter<"Resume"> | string | null
64477
63079
  uploaded_resume_path?: StringNullableFilter<"Resume"> | string | null
63080
+ file_hash?: StringNullableFilter<"Resume"> | string | null
64478
63081
  summary?: JsonNullableFilter<"Resume">
64479
63082
  created_at?: DateTimeFilter<"Resume"> | Date | string
64480
63083
  updated_at?: DateTimeFilter<"Resume"> | Date | string
@@ -64500,6 +63103,7 @@ export namespace Prisma {
64500
63103
  organisation_id?: SortOrderInput | SortOrder
64501
63104
  job_description_id?: SortOrderInput | SortOrder
64502
63105
  uploaded_resume_path?: SortOrderInput | SortOrder
63106
+ file_hash?: SortOrderInput | SortOrder
64503
63107
  summary?: SortOrderInput | SortOrder
64504
63108
  created_at?: SortOrder
64505
63109
  updated_at?: SortOrder
@@ -64521,6 +63125,7 @@ export namespace Prisma {
64521
63125
 
64522
63126
  export type ResumeWhereUniqueInput = Prisma.AtLeast<{
64523
63127
  id?: string
63128
+ file_hash?: string
64524
63129
  AND?: ResumeWhereInput | ResumeWhereInput[]
64525
63130
  OR?: ResumeWhereInput[]
64526
63131
  NOT?: ResumeWhereInput | ResumeWhereInput[]
@@ -64545,7 +63150,7 @@ export namespace Prisma {
64545
63150
  resume_data?: ResumeDataListRelationFilter
64546
63151
  fit_check?: FitCheckListRelationFilter
64547
63152
  candidate_profile?: XOR<CandidateProfileNullableScalarRelationFilter, CandidateProfileWhereInput> | null
64548
- }, "id">
63153
+ }, "id" | "file_hash">
64549
63154
 
64550
63155
  export type ResumeOrderByWithAggregationInput = {
64551
63156
  id?: SortOrder
@@ -64553,6 +63158,7 @@ export namespace Prisma {
64553
63158
  organisation_id?: SortOrderInput | SortOrder
64554
63159
  job_description_id?: SortOrderInput | SortOrder
64555
63160
  uploaded_resume_path?: SortOrderInput | SortOrder
63161
+ file_hash?: SortOrderInput | SortOrder
64556
63162
  summary?: SortOrderInput | SortOrder
64557
63163
  created_at?: SortOrder
64558
63164
  updated_at?: SortOrder
@@ -64577,6 +63183,7 @@ export namespace Prisma {
64577
63183
  organisation_id?: StringNullableWithAggregatesFilter<"Resume"> | string | null
64578
63184
  job_description_id?: StringNullableWithAggregatesFilter<"Resume"> | string | null
64579
63185
  uploaded_resume_path?: StringNullableWithAggregatesFilter<"Resume"> | string | null
63186
+ file_hash?: StringNullableWithAggregatesFilter<"Resume"> | string | null
64580
63187
  summary?: JsonNullableWithAggregatesFilter<"Resume">
64581
63188
  created_at?: DateTimeWithAggregatesFilter<"Resume"> | Date | string
64582
63189
  updated_at?: DateTimeWithAggregatesFilter<"Resume"> | Date | string
@@ -64933,7 +63540,6 @@ export namespace Prisma {
64933
63540
  fitChecks?: FitCheckListRelationFilter
64934
63541
  created_job_profiles?: JobProfileListRelationFilter
64935
63542
  assigned_job_profiles?: JobProfileListRelationFilter
64936
- user_auth_modules?: AuthModuleListRelationFilter
64937
63543
  }
64938
63544
 
64939
63545
  export type UserOrderByWithRelationInput = {
@@ -64999,7 +63605,6 @@ export namespace Prisma {
64999
63605
  fitChecks?: FitCheckOrderByRelationAggregateInput
65000
63606
  created_job_profiles?: JobProfileOrderByRelationAggregateInput
65001
63607
  assigned_job_profiles?: JobProfileOrderByRelationAggregateInput
65002
- user_auth_modules?: AuthModuleOrderByRelationAggregateInput
65003
63608
  }
65004
63609
 
65005
63610
  export type UserWhereUniqueInput = Prisma.AtLeast<{
@@ -65068,7 +63673,6 @@ export namespace Prisma {
65068
63673
  fitChecks?: FitCheckListRelationFilter
65069
63674
  created_job_profiles?: JobProfileListRelationFilter
65070
63675
  assigned_job_profiles?: JobProfileListRelationFilter
65071
- user_auth_modules?: AuthModuleListRelationFilter
65072
63676
  }, "id" | "email" | "google_id" | "permission_id">
65073
63677
 
65074
63678
  export type UserOrderByWithAggregationInput = {
@@ -66432,110 +65036,6 @@ export namespace Prisma {
66432
65036
  is_active?: BoolFieldUpdateOperationsInput | boolean
66433
65037
  }
66434
65038
 
66435
- export type AuthModuleCreateInput = {
66436
- id?: string
66437
- provider: $Enums.AuthProvider
66438
- provider_account_id: string
66439
- access_token?: string | null
66440
- refresh_token?: string | null
66441
- id_token?: string | null
66442
- expires_at?: Date | string | null
66443
- token_type?: string | null
66444
- scope?: string | null
66445
- created_at?: Date | string
66446
- updated_at?: Date | string
66447
- user: UserCreateNestedOneWithoutUser_auth_modulesInput
66448
- }
66449
-
66450
- export type AuthModuleUncheckedCreateInput = {
66451
- id?: string
66452
- user_id: string
66453
- provider: $Enums.AuthProvider
66454
- provider_account_id: string
66455
- access_token?: string | null
66456
- refresh_token?: string | null
66457
- id_token?: string | null
66458
- expires_at?: Date | string | null
66459
- token_type?: string | null
66460
- scope?: string | null
66461
- created_at?: Date | string
66462
- updated_at?: Date | string
66463
- }
66464
-
66465
- export type AuthModuleUpdateInput = {
66466
- id?: StringFieldUpdateOperationsInput | string
66467
- provider?: EnumAuthProviderFieldUpdateOperationsInput | $Enums.AuthProvider
66468
- provider_account_id?: StringFieldUpdateOperationsInput | string
66469
- access_token?: NullableStringFieldUpdateOperationsInput | string | null
66470
- refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
66471
- id_token?: NullableStringFieldUpdateOperationsInput | string | null
66472
- expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
66473
- token_type?: NullableStringFieldUpdateOperationsInput | string | null
66474
- scope?: NullableStringFieldUpdateOperationsInput | string | null
66475
- created_at?: DateTimeFieldUpdateOperationsInput | Date | string
66476
- updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
66477
- user?: UserUpdateOneRequiredWithoutUser_auth_modulesNestedInput
66478
- }
66479
-
66480
- export type AuthModuleUncheckedUpdateInput = {
66481
- id?: StringFieldUpdateOperationsInput | string
66482
- user_id?: StringFieldUpdateOperationsInput | string
66483
- provider?: EnumAuthProviderFieldUpdateOperationsInput | $Enums.AuthProvider
66484
- provider_account_id?: StringFieldUpdateOperationsInput | string
66485
- access_token?: NullableStringFieldUpdateOperationsInput | string | null
66486
- refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
66487
- id_token?: NullableStringFieldUpdateOperationsInput | string | null
66488
- expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
66489
- token_type?: NullableStringFieldUpdateOperationsInput | string | null
66490
- scope?: NullableStringFieldUpdateOperationsInput | string | null
66491
- created_at?: DateTimeFieldUpdateOperationsInput | Date | string
66492
- updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
66493
- }
66494
-
66495
- export type AuthModuleCreateManyInput = {
66496
- id?: string
66497
- user_id: string
66498
- provider: $Enums.AuthProvider
66499
- provider_account_id: string
66500
- access_token?: string | null
66501
- refresh_token?: string | null
66502
- id_token?: string | null
66503
- expires_at?: Date | string | null
66504
- token_type?: string | null
66505
- scope?: string | null
66506
- created_at?: Date | string
66507
- updated_at?: Date | string
66508
- }
66509
-
66510
- export type AuthModuleUpdateManyMutationInput = {
66511
- id?: StringFieldUpdateOperationsInput | string
66512
- provider?: EnumAuthProviderFieldUpdateOperationsInput | $Enums.AuthProvider
66513
- provider_account_id?: StringFieldUpdateOperationsInput | string
66514
- access_token?: NullableStringFieldUpdateOperationsInput | string | null
66515
- refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
66516
- id_token?: NullableStringFieldUpdateOperationsInput | string | null
66517
- expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
66518
- token_type?: NullableStringFieldUpdateOperationsInput | string | null
66519
- scope?: NullableStringFieldUpdateOperationsInput | string | null
66520
- created_at?: DateTimeFieldUpdateOperationsInput | Date | string
66521
- updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
66522
- }
66523
-
66524
- export type AuthModuleUncheckedUpdateManyInput = {
66525
- id?: StringFieldUpdateOperationsInput | string
66526
- user_id?: StringFieldUpdateOperationsInput | string
66527
- provider?: EnumAuthProviderFieldUpdateOperationsInput | $Enums.AuthProvider
66528
- provider_account_id?: StringFieldUpdateOperationsInput | string
66529
- access_token?: NullableStringFieldUpdateOperationsInput | string | null
66530
- refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
66531
- id_token?: NullableStringFieldUpdateOperationsInput | string | null
66532
- expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
66533
- token_type?: NullableStringFieldUpdateOperationsInput | string | null
66534
- scope?: NullableStringFieldUpdateOperationsInput | string | null
66535
- created_at?: DateTimeFieldUpdateOperationsInput | Date | string
66536
- updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
66537
- }
66538
-
66539
65039
  export type BudgetCreateInput = {
66540
65040
  id?: string
66541
65041
  job_type: $Enums.JobType
@@ -69776,6 +68276,7 @@ export namespace Prisma {
69776
68276
  export type ResumeCreateInput = {
69777
68277
  id?: string
69778
68278
  uploaded_resume_path?: string | null
68279
+ file_hash?: string | null
69779
68280
  summary?: NullableJsonNullValueInput | InputJsonValue
69780
68281
  created_at?: Date | string
69781
68282
  updated_at?: Date | string
@@ -69801,6 +68302,7 @@ export namespace Prisma {
69801
68302
  organisation_id?: string | null
69802
68303
  job_description_id?: string | null
69803
68304
  uploaded_resume_path?: string | null
68305
+ file_hash?: string | null
69804
68306
  summary?: NullableJsonNullValueInput | InputJsonValue
69805
68307
  created_at?: Date | string
69806
68308
  updated_at?: Date | string
@@ -69820,6 +68322,7 @@ export namespace Prisma {
69820
68322
  export type ResumeUpdateInput = {
69821
68323
  id?: StringFieldUpdateOperationsInput | string
69822
68324
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
68325
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
69823
68326
  summary?: NullableJsonNullValueInput | InputJsonValue
69824
68327
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
69825
68328
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -69845,6 +68348,7 @@ export namespace Prisma {
69845
68348
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
69846
68349
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
69847
68350
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
68351
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
69848
68352
  summary?: NullableJsonNullValueInput | InputJsonValue
69849
68353
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
69850
68354
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -69867,6 +68371,7 @@ export namespace Prisma {
69867
68371
  organisation_id?: string | null
69868
68372
  job_description_id?: string | null
69869
68373
  uploaded_resume_path?: string | null
68374
+ file_hash?: string | null
69870
68375
  summary?: NullableJsonNullValueInput | InputJsonValue
69871
68376
  created_at?: Date | string
69872
68377
  updated_at?: Date | string
@@ -69880,6 +68385,7 @@ export namespace Prisma {
69880
68385
  export type ResumeUpdateManyMutationInput = {
69881
68386
  id?: StringFieldUpdateOperationsInput | string
69882
68387
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
68388
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
69883
68389
  summary?: NullableJsonNullValueInput | InputJsonValue
69884
68390
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
69885
68391
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -69896,6 +68402,7 @@ export namespace Prisma {
69896
68402
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
69897
68403
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
69898
68404
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
68405
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
69899
68406
  summary?: NullableJsonNullValueInput | InputJsonValue
69900
68407
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
69901
68408
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -70272,7 +68779,6 @@ export namespace Prisma {
70272
68779
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
70273
68780
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
70274
68781
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
70275
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
70276
68782
  }
70277
68783
 
70278
68784
  export type UserUncheckedCreateInput = {
@@ -70335,7 +68841,6 @@ export namespace Prisma {
70335
68841
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
70336
68842
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
70337
68843
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
70338
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
70339
68844
  }
70340
68845
 
70341
68846
  export type UserUpdateInput = {
@@ -70398,7 +68903,6 @@ export namespace Prisma {
70398
68903
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
70399
68904
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
70400
68905
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
70401
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
70402
68906
  }
70403
68907
 
70404
68908
  export type UserUncheckedUpdateInput = {
@@ -70461,7 +68965,6 @@ export namespace Prisma {
70461
68965
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
70462
68966
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
70463
68967
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
70464
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
70465
68968
  }
70466
68969
 
70467
68970
  export type UserCreateManyInput = {
@@ -71810,73 +70313,6 @@ export namespace Prisma {
71810
70313
  deadline?: SortOrder
71811
70314
  }
71812
70315
 
71813
- export type EnumAuthProviderFilter<$PrismaModel = never> = {
71814
- equals?: $Enums.AuthProvider | EnumAuthProviderFieldRefInput<$PrismaModel>
71815
- in?: $Enums.AuthProvider[] | ListEnumAuthProviderFieldRefInput<$PrismaModel>
71816
- notIn?: $Enums.AuthProvider[] | ListEnumAuthProviderFieldRefInput<$PrismaModel>
71817
- not?: NestedEnumAuthProviderFilter<$PrismaModel> | $Enums.AuthProvider
71818
- }
71819
-
71820
- export type AuthModuleProviderProvider_account_idCompoundUniqueInput = {
71821
- provider: $Enums.AuthProvider
71822
- provider_account_id: string
71823
- }
71824
-
71825
- export type AuthModuleCountOrderByAggregateInput = {
71826
- id?: SortOrder
71827
- user_id?: SortOrder
71828
- provider?: SortOrder
71829
- provider_account_id?: SortOrder
71830
- access_token?: SortOrder
71831
- refresh_token?: SortOrder
71832
- id_token?: SortOrder
71833
- expires_at?: SortOrder
71834
- token_type?: SortOrder
71835
- scope?: SortOrder
71836
- created_at?: SortOrder
71837
- updated_at?: SortOrder
71838
- }
71839
-
71840
- export type AuthModuleMaxOrderByAggregateInput = {
71841
- id?: SortOrder
71842
- user_id?: SortOrder
71843
- provider?: SortOrder
71844
- provider_account_id?: SortOrder
71845
- access_token?: SortOrder
71846
- refresh_token?: SortOrder
71847
- id_token?: SortOrder
71848
- expires_at?: SortOrder
71849
- token_type?: SortOrder
71850
- scope?: SortOrder
71851
- created_at?: SortOrder
71852
- updated_at?: SortOrder
71853
- }
71854
-
71855
- export type AuthModuleMinOrderByAggregateInput = {
71856
- id?: SortOrder
71857
- user_id?: SortOrder
71858
- provider?: SortOrder
71859
- provider_account_id?: SortOrder
71860
- access_token?: SortOrder
71861
- refresh_token?: SortOrder
71862
- id_token?: SortOrder
71863
- expires_at?: SortOrder
71864
- token_type?: SortOrder
71865
- scope?: SortOrder
71866
- created_at?: SortOrder
71867
- updated_at?: SortOrder
71868
- }
71869
-
71870
- export type EnumAuthProviderWithAggregatesFilter<$PrismaModel = never> = {
71871
- equals?: $Enums.AuthProvider | EnumAuthProviderFieldRefInput<$PrismaModel>
71872
- in?: $Enums.AuthProvider[] | ListEnumAuthProviderFieldRefInput<$PrismaModel>
71873
- notIn?: $Enums.AuthProvider[] | ListEnumAuthProviderFieldRefInput<$PrismaModel>
71874
- not?: NestedEnumAuthProviderWithAggregatesFilter<$PrismaModel> | $Enums.AuthProvider
71875
- _count?: NestedIntFilter<$PrismaModel>
71876
- _min?: NestedEnumAuthProviderFilter<$PrismaModel>
71877
- _max?: NestedEnumAuthProviderFilter<$PrismaModel>
71878
- }
71879
-
71880
70316
  export type EnumJobTypeFilter<$PrismaModel = never> = {
71881
70317
  equals?: $Enums.JobType | EnumJobTypeFieldRefInput<$PrismaModel>
71882
70318
  in?: $Enums.JobType[] | ListEnumJobTypeFieldRefInput<$PrismaModel>
@@ -74046,6 +72482,7 @@ export namespace Prisma {
74046
72482
  organisation_id?: SortOrder
74047
72483
  job_description_id?: SortOrder
74048
72484
  uploaded_resume_path?: SortOrder
72485
+ file_hash?: SortOrder
74049
72486
  summary?: SortOrder
74050
72487
  created_at?: SortOrder
74051
72488
  updated_at?: SortOrder
@@ -74066,6 +72503,7 @@ export namespace Prisma {
74066
72503
  organisation_id?: SortOrder
74067
72504
  job_description_id?: SortOrder
74068
72505
  uploaded_resume_path?: SortOrder
72506
+ file_hash?: SortOrder
74069
72507
  created_at?: SortOrder
74070
72508
  updated_at?: SortOrder
74071
72509
  created_by?: SortOrder
@@ -74081,6 +72519,7 @@ export namespace Prisma {
74081
72519
  organisation_id?: SortOrder
74082
72520
  job_description_id?: SortOrder
74083
72521
  uploaded_resume_path?: SortOrder
72522
+ file_hash?: SortOrder
74084
72523
  created_at?: SortOrder
74085
72524
  updated_at?: SortOrder
74086
72525
  created_by?: SortOrder
@@ -74277,20 +72716,10 @@ export namespace Prisma {
74277
72716
  isNot?: GoogleWhereInput | null
74278
72717
  }
74279
72718
 
74280
- export type AuthModuleListRelationFilter = {
74281
- every?: AuthModuleWhereInput
74282
- some?: AuthModuleWhereInput
74283
- none?: AuthModuleWhereInput
74284
- }
74285
-
74286
72719
  export type MessageOrderByRelationAggregateInput = {
74287
72720
  _count?: SortOrder
74288
72721
  }
74289
72722
 
74290
- export type AuthModuleOrderByRelationAggregateInput = {
74291
- _count?: SortOrder
74292
- }
74293
-
74294
72723
  export type UserCountOrderByAggregateInput = {
74295
72724
  id?: SortOrder
74296
72725
  email?: SortOrder
@@ -75562,24 +73991,6 @@ export namespace Prisma {
75562
73991
  deleteMany?: AssignmentScalarWhereInput | AssignmentScalarWhereInput[]
75563
73992
  }
75564
73993
 
75565
- export type UserCreateNestedOneWithoutUser_auth_modulesInput = {
75566
- create?: XOR<UserCreateWithoutUser_auth_modulesInput, UserUncheckedCreateWithoutUser_auth_modulesInput>
75567
- connectOrCreate?: UserCreateOrConnectWithoutUser_auth_modulesInput
75568
- connect?: UserWhereUniqueInput
75569
- }
75570
-
75571
- export type EnumAuthProviderFieldUpdateOperationsInput = {
75572
- set?: $Enums.AuthProvider
75573
- }
75574
-
75575
- export type UserUpdateOneRequiredWithoutUser_auth_modulesNestedInput = {
75576
- create?: XOR<UserCreateWithoutUser_auth_modulesInput, UserUncheckedCreateWithoutUser_auth_modulesInput>
75577
- connectOrCreate?: UserCreateOrConnectWithoutUser_auth_modulesInput
75578
- upsert?: UserUpsertWithoutUser_auth_modulesInput
75579
- connect?: UserWhereUniqueInput
75580
- update?: XOR<XOR<UserUpdateToOneWithWhereWithoutUser_auth_modulesInput, UserUpdateWithoutUser_auth_modulesInput>, UserUncheckedUpdateWithoutUser_auth_modulesInput>
75581
- }
75582
-
75583
73994
  export type JobDescriptionCreateNestedOneWithoutBudgetInput = {
75584
73995
  create?: XOR<JobDescriptionCreateWithoutBudgetInput, JobDescriptionUncheckedCreateWithoutBudgetInput>
75585
73996
  connectOrCreate?: JobDescriptionCreateOrConnectWithoutBudgetInput
@@ -79184,13 +77595,6 @@ export namespace Prisma {
79184
77595
  connect?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
79185
77596
  }
79186
77597
 
79187
- export type AuthModuleCreateNestedManyWithoutUserInput = {
79188
- create?: XOR<AuthModuleCreateWithoutUserInput, AuthModuleUncheckedCreateWithoutUserInput> | AuthModuleCreateWithoutUserInput[] | AuthModuleUncheckedCreateWithoutUserInput[]
79189
- connectOrCreate?: AuthModuleCreateOrConnectWithoutUserInput | AuthModuleCreateOrConnectWithoutUserInput[]
79190
- createMany?: AuthModuleCreateManyUserInputEnvelope
79191
- connect?: AuthModuleWhereUniqueInput | AuthModuleWhereUniqueInput[]
79192
- }
79193
-
79194
77598
  export type ApplicationUncheckedCreateNestedManyWithoutCandidateInput = {
79195
77599
  create?: XOR<ApplicationCreateWithoutCandidateInput, ApplicationUncheckedCreateWithoutCandidateInput> | ApplicationCreateWithoutCandidateInput[] | ApplicationUncheckedCreateWithoutCandidateInput[]
79196
77600
  connectOrCreate?: ApplicationCreateOrConnectWithoutCandidateInput | ApplicationCreateOrConnectWithoutCandidateInput[]
@@ -79375,13 +77779,6 @@ export namespace Prisma {
79375
77779
  connect?: JobProfileWhereUniqueInput | JobProfileWhereUniqueInput[]
79376
77780
  }
79377
77781
 
79378
- export type AuthModuleUncheckedCreateNestedManyWithoutUserInput = {
79379
- create?: XOR<AuthModuleCreateWithoutUserInput, AuthModuleUncheckedCreateWithoutUserInput> | AuthModuleCreateWithoutUserInput[] | AuthModuleUncheckedCreateWithoutUserInput[]
79380
- connectOrCreate?: AuthModuleCreateOrConnectWithoutUserInput | AuthModuleCreateOrConnectWithoutUserInput[]
79381
- createMany?: AuthModuleCreateManyUserInputEnvelope
79382
- connect?: AuthModuleWhereUniqueInput | AuthModuleWhereUniqueInput[]
79383
- }
79384
-
79385
77782
  export type EnumFirstLoginStatusFieldUpdateOperationsInput = {
79386
77783
  set?: $Enums.FirstLoginStatus
79387
77784
  }
@@ -79775,20 +78172,6 @@ export namespace Prisma {
79775
78172
  deleteMany?: JobProfileScalarWhereInput | JobProfileScalarWhereInput[]
79776
78173
  }
79777
78174
 
79778
- export type AuthModuleUpdateManyWithoutUserNestedInput = {
79779
- create?: XOR<AuthModuleCreateWithoutUserInput, AuthModuleUncheckedCreateWithoutUserInput> | AuthModuleCreateWithoutUserInput[] | AuthModuleUncheckedCreateWithoutUserInput[]
79780
- connectOrCreate?: AuthModuleCreateOrConnectWithoutUserInput | AuthModuleCreateOrConnectWithoutUserInput[]
79781
- upsert?: AuthModuleUpsertWithWhereUniqueWithoutUserInput | AuthModuleUpsertWithWhereUniqueWithoutUserInput[]
79782
- createMany?: AuthModuleCreateManyUserInputEnvelope
79783
- set?: AuthModuleWhereUniqueInput | AuthModuleWhereUniqueInput[]
79784
- disconnect?: AuthModuleWhereUniqueInput | AuthModuleWhereUniqueInput[]
79785
- delete?: AuthModuleWhereUniqueInput | AuthModuleWhereUniqueInput[]
79786
- connect?: AuthModuleWhereUniqueInput | AuthModuleWhereUniqueInput[]
79787
- update?: AuthModuleUpdateWithWhereUniqueWithoutUserInput | AuthModuleUpdateWithWhereUniqueWithoutUserInput[]
79788
- updateMany?: AuthModuleUpdateManyWithWhereWithoutUserInput | AuthModuleUpdateManyWithWhereWithoutUserInput[]
79789
- deleteMany?: AuthModuleScalarWhereInput | AuthModuleScalarWhereInput[]
79790
- }
79791
-
79792
78175
  export type ApplicationUncheckedUpdateManyWithoutCandidateNestedInput = {
79793
78176
  create?: XOR<ApplicationCreateWithoutCandidateInput, ApplicationUncheckedCreateWithoutCandidateInput> | ApplicationCreateWithoutCandidateInput[] | ApplicationUncheckedCreateWithoutCandidateInput[]
79794
78177
  connectOrCreate?: ApplicationCreateOrConnectWithoutCandidateInput | ApplicationCreateOrConnectWithoutCandidateInput[]
@@ -80150,20 +78533,6 @@ export namespace Prisma {
80150
78533
  deleteMany?: JobProfileScalarWhereInput | JobProfileScalarWhereInput[]
80151
78534
  }
80152
78535
 
80153
- export type AuthModuleUncheckedUpdateManyWithoutUserNestedInput = {
80154
- create?: XOR<AuthModuleCreateWithoutUserInput, AuthModuleUncheckedCreateWithoutUserInput> | AuthModuleCreateWithoutUserInput[] | AuthModuleUncheckedCreateWithoutUserInput[]
80155
- connectOrCreate?: AuthModuleCreateOrConnectWithoutUserInput | AuthModuleCreateOrConnectWithoutUserInput[]
80156
- upsert?: AuthModuleUpsertWithWhereUniqueWithoutUserInput | AuthModuleUpsertWithWhereUniqueWithoutUserInput[]
80157
- createMany?: AuthModuleCreateManyUserInputEnvelope
80158
- set?: AuthModuleWhereUniqueInput | AuthModuleWhereUniqueInput[]
80159
- disconnect?: AuthModuleWhereUniqueInput | AuthModuleWhereUniqueInput[]
80160
- delete?: AuthModuleWhereUniqueInput | AuthModuleWhereUniqueInput[]
80161
- connect?: AuthModuleWhereUniqueInput | AuthModuleWhereUniqueInput[]
80162
- update?: AuthModuleUpdateWithWhereUniqueWithoutUserInput | AuthModuleUpdateWithWhereUniqueWithoutUserInput[]
80163
- updateMany?: AuthModuleUpdateManyWithWhereWithoutUserInput | AuthModuleUpdateManyWithWhereWithoutUserInput[]
80164
- deleteMany?: AuthModuleScalarWhereInput | AuthModuleScalarWhereInput[]
80165
- }
80166
-
80167
78536
  export type UserCreateNestedOneWithoutUser_profileInput = {
80168
78537
  create?: XOR<UserCreateWithoutUser_profileInput, UserUncheckedCreateWithoutUser_profileInput>
80169
78538
  connectOrCreate?: UserCreateOrConnectWithoutUser_profileInput
@@ -80539,23 +78908,6 @@ export namespace Prisma {
80539
78908
  _max?: NestedEnumAssignmentStatusFilter<$PrismaModel>
80540
78909
  }
80541
78910
 
80542
- export type NestedEnumAuthProviderFilter<$PrismaModel = never> = {
80543
- equals?: $Enums.AuthProvider | EnumAuthProviderFieldRefInput<$PrismaModel>
80544
- in?: $Enums.AuthProvider[] | ListEnumAuthProviderFieldRefInput<$PrismaModel>
80545
- notIn?: $Enums.AuthProvider[] | ListEnumAuthProviderFieldRefInput<$PrismaModel>
80546
- not?: NestedEnumAuthProviderFilter<$PrismaModel> | $Enums.AuthProvider
80547
- }
80548
-
80549
- export type NestedEnumAuthProviderWithAggregatesFilter<$PrismaModel = never> = {
80550
- equals?: $Enums.AuthProvider | EnumAuthProviderFieldRefInput<$PrismaModel>
80551
- in?: $Enums.AuthProvider[] | ListEnumAuthProviderFieldRefInput<$PrismaModel>
80552
- notIn?: $Enums.AuthProvider[] | ListEnumAuthProviderFieldRefInput<$PrismaModel>
80553
- not?: NestedEnumAuthProviderWithAggregatesFilter<$PrismaModel> | $Enums.AuthProvider
80554
- _count?: NestedIntFilter<$PrismaModel>
80555
- _min?: NestedEnumAuthProviderFilter<$PrismaModel>
80556
- _max?: NestedEnumAuthProviderFilter<$PrismaModel>
80557
- }
80558
-
80559
78911
  export type NestedEnumJobTypeFilter<$PrismaModel = never> = {
80560
78912
  equals?: $Enums.JobType | EnumJobTypeFieldRefInput<$PrismaModel>
80561
78913
  in?: $Enums.JobType[] | ListEnumJobTypeFieldRefInput<$PrismaModel>
@@ -81203,7 +79555,6 @@ export namespace Prisma {
81203
79555
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
81204
79556
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
81205
79557
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
81206
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
81207
79558
  }
81208
79559
 
81209
79560
  export type UserUncheckedCreateWithoutCandidateResponsesInput = {
@@ -81265,7 +79616,6 @@ export namespace Prisma {
81265
79616
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
81266
79617
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
81267
79618
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
81268
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
81269
79619
  }
81270
79620
 
81271
79621
  export type UserCreateOrConnectWithoutCandidateResponsesInput = {
@@ -81449,7 +79799,6 @@ export namespace Prisma {
81449
79799
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
81450
79800
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
81451
79801
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
81452
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
81453
79802
  }
81454
79803
 
81455
79804
  export type UserUncheckedUpdateWithoutCandidateResponsesInput = {
@@ -81511,7 +79860,6 @@ export namespace Prisma {
81511
79860
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
81512
79861
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
81513
79862
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
81514
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
81515
79863
  }
81516
79864
 
81517
79865
  export type OrganisationCreateWithoutUser_rolesInput = {
@@ -81679,7 +80027,6 @@ export namespace Prisma {
81679
80027
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
81680
80028
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
81681
80029
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
81682
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
81683
80030
  }
81684
80031
 
81685
80032
  export type UserUncheckedCreateWithoutRoleInput = {
@@ -81741,7 +80088,6 @@ export namespace Prisma {
81741
80088
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
81742
80089
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
81743
80090
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
81744
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
81745
80091
  }
81746
80092
 
81747
80093
  export type UserCreateOrConnectWithoutRoleInput = {
@@ -81985,7 +80331,6 @@ export namespace Prisma {
81985
80331
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
81986
80332
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
81987
80333
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
81988
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
81989
80334
  }
81990
80335
 
81991
80336
  export type UserUncheckedCreateWithoutActionsInput = {
@@ -82047,7 +80392,6 @@ export namespace Prisma {
82047
80392
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
82048
80393
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
82049
80394
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
82050
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
82051
80395
  }
82052
80396
 
82053
80397
  export type UserCreateOrConnectWithoutActionsInput = {
@@ -82204,7 +80548,6 @@ export namespace Prisma {
82204
80548
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
82205
80549
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
82206
80550
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
82207
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
82208
80551
  }
82209
80552
 
82210
80553
  export type UserUncheckedUpdateWithoutActionsInput = {
@@ -82266,7 +80609,6 @@ export namespace Prisma {
82266
80609
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
82267
80610
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
82268
80611
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
82269
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
82270
80612
  }
82271
80613
 
82272
80614
  export type OrganisationUpsertWithoutActionsInput = {
@@ -82413,7 +80755,6 @@ export namespace Prisma {
82413
80755
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
82414
80756
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
82415
80757
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
82416
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
82417
80758
  }
82418
80759
 
82419
80760
  export type UserUncheckedCreateWithoutActor_activity_logsInput = {
@@ -82475,7 +80816,6 @@ export namespace Prisma {
82475
80816
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
82476
80817
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
82477
80818
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
82478
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
82479
80819
  }
82480
80820
 
82481
80821
  export type UserCreateOrConnectWithoutActor_activity_logsInput = {
@@ -82604,7 +80944,6 @@ export namespace Prisma {
82604
80944
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
82605
80945
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
82606
80946
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
82607
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
82608
80947
  }
82609
80948
 
82610
80949
  export type UserUncheckedUpdateWithoutActor_activity_logsInput = {
@@ -82666,7 +81005,6 @@ export namespace Prisma {
82666
81005
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
82667
81006
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
82668
81007
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
82669
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
82670
81008
  }
82671
81009
 
82672
81010
  export type ApplicationUpsertWithoutActivity_logsInput = {
@@ -82850,7 +81188,6 @@ export namespace Prisma {
82850
81188
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
82851
81189
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
82852
81190
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
82853
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
82854
81191
  }
82855
81192
 
82856
81193
  export type UserUncheckedCreateWithoutApplicationsInput = {
@@ -82912,7 +81249,6 @@ export namespace Prisma {
82912
81249
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
82913
81250
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
82914
81251
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
82915
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
82916
81252
  }
82917
81253
 
82918
81254
  export type UserCreateOrConnectWithoutApplicationsInput = {
@@ -83002,6 +81338,7 @@ export namespace Prisma {
83002
81338
  export type ResumeCreateWithoutApplicationsInput = {
83003
81339
  id?: string
83004
81340
  uploaded_resume_path?: string | null
81341
+ file_hash?: string | null
83005
81342
  summary?: NullableJsonNullValueInput | InputJsonValue
83006
81343
  created_at?: Date | string
83007
81344
  updated_at?: Date | string
@@ -83026,6 +81363,7 @@ export namespace Prisma {
83026
81363
  organisation_id?: string | null
83027
81364
  job_description_id?: string | null
83028
81365
  uploaded_resume_path?: string | null
81366
+ file_hash?: string | null
83029
81367
  summary?: NullableJsonNullValueInput | InputJsonValue
83030
81368
  created_at?: Date | string
83031
81369
  updated_at?: Date | string
@@ -83591,7 +81929,6 @@ export namespace Prisma {
83591
81929
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
83592
81930
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
83593
81931
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
83594
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
83595
81932
  }
83596
81933
 
83597
81934
  export type UserUncheckedUpdateWithoutApplicationsInput = {
@@ -83653,7 +81990,6 @@ export namespace Prisma {
83653
81990
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
83654
81991
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
83655
81992
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
83656
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
83657
81993
  }
83658
81994
 
83659
81995
  export type OrganisationUpsertWithoutApplicationsInput = {
@@ -83755,6 +82091,7 @@ export namespace Prisma {
83755
82091
  export type ResumeUpdateWithoutApplicationsInput = {
83756
82092
  id?: StringFieldUpdateOperationsInput | string
83757
82093
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
82094
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
83758
82095
  summary?: NullableJsonNullValueInput | InputJsonValue
83759
82096
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
83760
82097
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -83779,6 +82116,7 @@ export namespace Prisma {
83779
82116
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
83780
82117
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
83781
82118
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
82119
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
83782
82120
  summary?: NullableJsonNullValueInput | InputJsonValue
83783
82121
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
83784
82122
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -84269,7 +82607,6 @@ export namespace Prisma {
84269
82607
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
84270
82608
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
84271
82609
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
84272
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
84273
82610
  }
84274
82611
 
84275
82612
  export type UserUncheckedCreateWithoutApprovalsInput = {
@@ -84331,7 +82668,6 @@ export namespace Prisma {
84331
82668
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
84332
82669
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
84333
82670
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
84334
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
84335
82671
  }
84336
82672
 
84337
82673
  export type UserCreateOrConnectWithoutApprovalsInput = {
@@ -84569,7 +82905,6 @@ export namespace Prisma {
84569
82905
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
84570
82906
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
84571
82907
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
84572
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
84573
82908
  }
84574
82909
 
84575
82910
  export type UserUncheckedUpdateWithoutApprovalsInput = {
@@ -84631,7 +82966,6 @@ export namespace Prisma {
84631
82966
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
84632
82967
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
84633
82968
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
84634
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
84635
82969
  }
84636
82970
 
84637
82971
  export type OrganisationUpsertWithoutApprovalsInput = {
@@ -84823,7 +83157,6 @@ export namespace Prisma {
84823
83157
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
84824
83158
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
84825
83159
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
84826
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
84827
83160
  }
84828
83161
 
84829
83162
  export type UserUncheckedCreateWithoutCandidate_assessmentsInput = {
@@ -84885,7 +83218,6 @@ export namespace Prisma {
84885
83218
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
84886
83219
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
84887
83220
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
84888
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
84889
83221
  }
84890
83222
 
84891
83223
  export type UserCreateOrConnectWithoutCandidate_assessmentsInput = {
@@ -84952,7 +83284,6 @@ export namespace Prisma {
84952
83284
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
84953
83285
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
84954
83286
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
84955
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
84956
83287
  }
84957
83288
 
84958
83289
  export type UserUncheckedCreateWithoutReviewer_assessmentsInput = {
@@ -85014,7 +83345,6 @@ export namespace Prisma {
85014
83345
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
85015
83346
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
85016
83347
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
85017
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
85018
83348
  }
85019
83349
 
85020
83350
  export type UserCreateOrConnectWithoutReviewer_assessmentsInput = {
@@ -85218,7 +83548,6 @@ export namespace Prisma {
85218
83548
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
85219
83549
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
85220
83550
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
85221
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
85222
83551
  }
85223
83552
 
85224
83553
  export type UserUncheckedCreateWithoutAssessment_resultsInput = {
@@ -85280,7 +83609,6 @@ export namespace Prisma {
85280
83609
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
85281
83610
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
85282
83611
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
85283
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
85284
83612
  }
85285
83613
 
85286
83614
  export type UserCreateOrConnectWithoutAssessment_resultsInput = {
@@ -85482,7 +83810,6 @@ export namespace Prisma {
85482
83810
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
85483
83811
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
85484
83812
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
85485
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
85486
83813
  }
85487
83814
 
85488
83815
  export type UserUncheckedUpdateWithoutCandidate_assessmentsInput = {
@@ -85544,7 +83871,6 @@ export namespace Prisma {
85544
83871
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
85545
83872
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
85546
83873
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
85547
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
85548
83874
  }
85549
83875
 
85550
83876
  export type UserUpsertWithoutReviewer_assessmentsInput = {
@@ -85617,7 +83943,6 @@ export namespace Prisma {
85617
83943
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
85618
83944
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
85619
83945
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
85620
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
85621
83946
  }
85622
83947
 
85623
83948
  export type UserUncheckedUpdateWithoutReviewer_assessmentsInput = {
@@ -85679,7 +84004,6 @@ export namespace Prisma {
85679
84004
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
85680
84005
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
85681
84006
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
85682
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
85683
84007
  }
85684
84008
 
85685
84009
  export type AssessmentQuestionUpsertWithWhereUniqueWithoutAssessmentInput = {
@@ -85896,7 +84220,6 @@ export namespace Prisma {
85896
84220
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
85897
84221
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
85898
84222
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
85899
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
85900
84223
  }
85901
84224
 
85902
84225
  export type UserUncheckedUpdateWithoutAssessment_resultsInput = {
@@ -85958,7 +84281,6 @@ export namespace Prisma {
85958
84281
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
85959
84282
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
85960
84283
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
85961
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
85962
84284
  }
85963
84285
 
85964
84286
  export type OngoingEvaluationUpsertWithoutAssessmentInput = {
@@ -86760,7 +85082,6 @@ export namespace Prisma {
86760
85082
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
86761
85083
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
86762
85084
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
86763
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
86764
85085
  }
86765
85086
 
86766
85087
  export type UserUncheckedCreateWithoutCandidate_assignmentsInput = {
@@ -86822,7 +85143,6 @@ export namespace Prisma {
86822
85143
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
86823
85144
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
86824
85145
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
86825
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
86826
85146
  }
86827
85147
 
86828
85148
  export type UserCreateOrConnectWithoutCandidate_assignmentsInput = {
@@ -86922,7 +85242,6 @@ export namespace Prisma {
86922
85242
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
86923
85243
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
86924
85244
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
86925
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
86926
85245
  }
86927
85246
 
86928
85247
  export type UserUncheckedCreateWithoutReviewer_assignmentsInput = {
@@ -86984,7 +85303,6 @@ export namespace Prisma {
86984
85303
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
86985
85304
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
86986
85305
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
86987
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
86988
85306
  }
86989
85307
 
86990
85308
  export type UserCreateOrConnectWithoutReviewer_assignmentsInput = {
@@ -87340,7 +85658,6 @@ export namespace Prisma {
87340
85658
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
87341
85659
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
87342
85660
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
87343
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
87344
85661
  }
87345
85662
 
87346
85663
  export type UserUncheckedUpdateWithoutCandidate_assignmentsInput = {
@@ -87402,7 +85719,6 @@ export namespace Prisma {
87402
85719
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
87403
85720
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
87404
85721
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
87405
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
87406
85722
  }
87407
85723
 
87408
85724
  export type AssignmentLibraryUpsertWithoutAssignmentsInput = {
@@ -87514,7 +85830,6 @@ export namespace Prisma {
87514
85830
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
87515
85831
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
87516
85832
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
87517
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
87518
85833
  }
87519
85834
 
87520
85835
  export type UserUncheckedUpdateWithoutReviewer_assignmentsInput = {
@@ -87576,7 +85891,6 @@ export namespace Prisma {
87576
85891
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
87577
85892
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
87578
85893
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
87579
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
87580
85894
  }
87581
85895
 
87582
85896
  export type OrganisationUpsertWithoutAssignmentsInput = {
@@ -88359,270 +86673,6 @@ export namespace Prisma {
88359
86673
  data: XOR<AssignmentUpdateManyMutationInput, AssignmentUncheckedUpdateManyWithoutAssignment_libraryInput>
88360
86674
  }
88361
86675
 
88362
- export type UserCreateWithoutUser_auth_modulesInput = {
88363
- id?: string
88364
- email: string
88365
- password: string
88366
- google_id?: string | null
88367
- refresh_token?: string | null
88368
- created_at?: Date | string
88369
- updated_at?: Date | string
88370
- created_by: string
88371
- updated_by: string
88372
- is_active?: boolean
88373
- is_self_registered?: boolean
88374
- profile_created: boolean
88375
- first_login_status?: $Enums.FirstLoginStatus
88376
- name?: string | null
88377
- phone?: string | null
88378
- description?: string | null
88379
- date_of_birth?: Date | string | null
88380
- designation?: string | null
88381
- location?: string | null
88382
- salary?: string | null
88383
- work_experience?: NullableJsonNullValueInput | InputJsonValue
88384
- education?: NullableJsonNullValueInput | InputJsonValue
88385
- skills?: NullableJsonNullValueInput | InputJsonValue
88386
- notice_period?: string | null
88387
- preferred_work_mode?: string | null
88388
- gender?: string | null
88389
- ethnicity?: string | null
88390
- veteran_status?: string | null
88391
- disability_status?: string | null
88392
- role: UserRoleCreateNestedOneWithoutUsersInput
88393
- permission?: PermissionCreateNestedOneWithoutUserInput
88394
- organisation?: OrganisationCreateNestedOneWithoutInterviewersInput
88395
- applications?: ApplicationCreateNestedManyWithoutCandidateInput
88396
- resume?: ResumeCreateNestedManyWithoutUserInput
88397
- candidate_profile?: CandidateProfileCreateNestedOneWithoutUserInput
88398
- user_profile?: UserProfileCreateNestedOneWithoutUserInput
88399
- job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
88400
- hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
88401
- hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
88402
- approvals?: ApprovalCreateNestedManyWithoutUserInput
88403
- sent_messages?: MessageCreateNestedManyWithoutSenderInput
88404
- received_messages?: MessageCreateNestedManyWithoutReceiverInput
88405
- candidate_interviews?: InterviewCreateNestedManyWithoutCandidateInput
88406
- interviewer_interviews?: InterviewCreateNestedManyWithoutInterviewerInput
88407
- assessment_results?: AssessmentCreateNestedManyWithoutUserInput
88408
- candidate_assessments?: AssessmentCreateNestedManyWithoutCandidateInput
88409
- reviewer_assessments?: AssessmentCreateNestedManyWithoutReviewerInput
88410
- candidate_assignments?: AssignmentCreateNestedManyWithoutCandidateInput
88411
- reviewer_assignments?: AssignmentCreateNestedManyWithoutReviewerInput
88412
- candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
88413
- questions?: QuestionCreateNestedManyWithoutCandidateInput
88414
- ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
88415
- actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
88416
- actions?: ActionCreateNestedManyWithoutUserInput
88417
- calendly?: CalendlyCreateNestedOneWithoutUserInput
88418
- google?: GoogleCreateNestedOneWithoutUserInput
88419
- fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
88420
- created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
88421
- assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
88422
- }
88423
-
88424
- export type UserUncheckedCreateWithoutUser_auth_modulesInput = {
88425
- id?: string
88426
- email: string
88427
- password: string
88428
- role_id: string
88429
- google_id?: string | null
88430
- refresh_token?: string | null
88431
- created_at?: Date | string
88432
- updated_at?: Date | string
88433
- created_by: string
88434
- updated_by: string
88435
- is_active?: boolean
88436
- is_self_registered?: boolean
88437
- permission_id?: string | null
88438
- organisation_id?: string | null
88439
- profile_created: boolean
88440
- first_login_status?: $Enums.FirstLoginStatus
88441
- name?: string | null
88442
- phone?: string | null
88443
- description?: string | null
88444
- date_of_birth?: Date | string | null
88445
- designation?: string | null
88446
- location?: string | null
88447
- salary?: string | null
88448
- work_experience?: NullableJsonNullValueInput | InputJsonValue
88449
- education?: NullableJsonNullValueInput | InputJsonValue
88450
- skills?: NullableJsonNullValueInput | InputJsonValue
88451
- notice_period?: string | null
88452
- preferred_work_mode?: string | null
88453
- gender?: string | null
88454
- ethnicity?: string | null
88455
- veteran_status?: string | null
88456
- disability_status?: string | null
88457
- applications?: ApplicationUncheckedCreateNestedManyWithoutCandidateInput
88458
- resume?: ResumeUncheckedCreateNestedManyWithoutUserInput
88459
- candidate_profile?: CandidateProfileUncheckedCreateNestedOneWithoutUserInput
88460
- user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
88461
- job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
88462
- hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
88463
- hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
88464
- approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
88465
- sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
88466
- received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
88467
- candidate_interviews?: InterviewUncheckedCreateNestedManyWithoutCandidateInput
88468
- interviewer_interviews?: InterviewUncheckedCreateNestedManyWithoutInterviewerInput
88469
- assessment_results?: AssessmentUncheckedCreateNestedManyWithoutUserInput
88470
- candidate_assessments?: AssessmentUncheckedCreateNestedManyWithoutCandidateInput
88471
- reviewer_assessments?: AssessmentUncheckedCreateNestedManyWithoutReviewerInput
88472
- candidate_assignments?: AssignmentUncheckedCreateNestedManyWithoutCandidateInput
88473
- reviewer_assignments?: AssignmentUncheckedCreateNestedManyWithoutReviewerInput
88474
- candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
88475
- questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
88476
- ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
88477
- actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
88478
- actions?: ActionUncheckedCreateNestedManyWithoutUserInput
88479
- calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
88480
- google?: GoogleUncheckedCreateNestedOneWithoutUserInput
88481
- fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
88482
- created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
88483
- assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
88484
- }
88485
-
88486
- export type UserCreateOrConnectWithoutUser_auth_modulesInput = {
88487
- where: UserWhereUniqueInput
88488
- create: XOR<UserCreateWithoutUser_auth_modulesInput, UserUncheckedCreateWithoutUser_auth_modulesInput>
88489
- }
88490
-
88491
- export type UserUpsertWithoutUser_auth_modulesInput = {
88492
- update: XOR<UserUpdateWithoutUser_auth_modulesInput, UserUncheckedUpdateWithoutUser_auth_modulesInput>
88493
- create: XOR<UserCreateWithoutUser_auth_modulesInput, UserUncheckedCreateWithoutUser_auth_modulesInput>
88494
- where?: UserWhereInput
88495
- }
88496
-
88497
- export type UserUpdateToOneWithWhereWithoutUser_auth_modulesInput = {
88498
- where?: UserWhereInput
88499
- data: XOR<UserUpdateWithoutUser_auth_modulesInput, UserUncheckedUpdateWithoutUser_auth_modulesInput>
88500
- }
88501
-
88502
- export type UserUpdateWithoutUser_auth_modulesInput = {
88503
- id?: StringFieldUpdateOperationsInput | string
88504
- email?: StringFieldUpdateOperationsInput | string
88505
- password?: StringFieldUpdateOperationsInput | string
88506
- google_id?: NullableStringFieldUpdateOperationsInput | string | null
88507
- refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
88508
- created_at?: DateTimeFieldUpdateOperationsInput | Date | string
88509
- updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
88510
- created_by?: StringFieldUpdateOperationsInput | string
88511
- updated_by?: StringFieldUpdateOperationsInput | string
88512
- is_active?: BoolFieldUpdateOperationsInput | boolean
88513
- is_self_registered?: BoolFieldUpdateOperationsInput | boolean
88514
- profile_created?: BoolFieldUpdateOperationsInput | boolean
88515
- first_login_status?: EnumFirstLoginStatusFieldUpdateOperationsInput | $Enums.FirstLoginStatus
88516
- name?: NullableStringFieldUpdateOperationsInput | string | null
88517
- phone?: NullableStringFieldUpdateOperationsInput | string | null
88518
- description?: NullableStringFieldUpdateOperationsInput | string | null
88519
- date_of_birth?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
88520
- designation?: NullableStringFieldUpdateOperationsInput | string | null
88521
- location?: NullableStringFieldUpdateOperationsInput | string | null
88522
- salary?: NullableStringFieldUpdateOperationsInput | string | null
88523
- work_experience?: NullableJsonNullValueInput | InputJsonValue
88524
- education?: NullableJsonNullValueInput | InputJsonValue
88525
- skills?: NullableJsonNullValueInput | InputJsonValue
88526
- notice_period?: NullableStringFieldUpdateOperationsInput | string | null
88527
- preferred_work_mode?: NullableStringFieldUpdateOperationsInput | string | null
88528
- gender?: NullableStringFieldUpdateOperationsInput | string | null
88529
- ethnicity?: NullableStringFieldUpdateOperationsInput | string | null
88530
- veteran_status?: NullableStringFieldUpdateOperationsInput | string | null
88531
- disability_status?: NullableStringFieldUpdateOperationsInput | string | null
88532
- role?: UserRoleUpdateOneRequiredWithoutUsersNestedInput
88533
- permission?: PermissionUpdateOneWithoutUserNestedInput
88534
- organisation?: OrganisationUpdateOneWithoutInterviewersNestedInput
88535
- applications?: ApplicationUpdateManyWithoutCandidateNestedInput
88536
- resume?: ResumeUpdateManyWithoutUserNestedInput
88537
- candidate_profile?: CandidateProfileUpdateOneWithoutUserNestedInput
88538
- user_profile?: UserProfileUpdateOneWithoutUserNestedInput
88539
- job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
88540
- hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
88541
- hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
88542
- approvals?: ApprovalUpdateManyWithoutUserNestedInput
88543
- sent_messages?: MessageUpdateManyWithoutSenderNestedInput
88544
- received_messages?: MessageUpdateManyWithoutReceiverNestedInput
88545
- candidate_interviews?: InterviewUpdateManyWithoutCandidateNestedInput
88546
- interviewer_interviews?: InterviewUpdateManyWithoutInterviewerNestedInput
88547
- assessment_results?: AssessmentUpdateManyWithoutUserNestedInput
88548
- candidate_assessments?: AssessmentUpdateManyWithoutCandidateNestedInput
88549
- reviewer_assessments?: AssessmentUpdateManyWithoutReviewerNestedInput
88550
- candidate_assignments?: AssignmentUpdateManyWithoutCandidateNestedInput
88551
- reviewer_assignments?: AssignmentUpdateManyWithoutReviewerNestedInput
88552
- candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
88553
- questions?: QuestionUpdateManyWithoutCandidateNestedInput
88554
- ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
88555
- actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
88556
- actions?: ActionUpdateManyWithoutUserNestedInput
88557
- calendly?: CalendlyUpdateOneWithoutUserNestedInput
88558
- google?: GoogleUpdateOneWithoutUserNestedInput
88559
- fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
88560
- created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
88561
- assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
88562
- }
88563
-
88564
- export type UserUncheckedUpdateWithoutUser_auth_modulesInput = {
88565
- id?: StringFieldUpdateOperationsInput | string
88566
- email?: StringFieldUpdateOperationsInput | string
88567
- password?: StringFieldUpdateOperationsInput | string
88568
- role_id?: StringFieldUpdateOperationsInput | string
88569
- google_id?: NullableStringFieldUpdateOperationsInput | string | null
88570
- refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
88571
- created_at?: DateTimeFieldUpdateOperationsInput | Date | string
88572
- updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
88573
- created_by?: StringFieldUpdateOperationsInput | string
88574
- updated_by?: StringFieldUpdateOperationsInput | string
88575
- is_active?: BoolFieldUpdateOperationsInput | boolean
88576
- is_self_registered?: BoolFieldUpdateOperationsInput | boolean
88577
- permission_id?: NullableStringFieldUpdateOperationsInput | string | null
88578
- organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
88579
- profile_created?: BoolFieldUpdateOperationsInput | boolean
88580
- first_login_status?: EnumFirstLoginStatusFieldUpdateOperationsInput | $Enums.FirstLoginStatus
88581
- name?: NullableStringFieldUpdateOperationsInput | string | null
88582
- phone?: NullableStringFieldUpdateOperationsInput | string | null
88583
- description?: NullableStringFieldUpdateOperationsInput | string | null
88584
- date_of_birth?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
88585
- designation?: NullableStringFieldUpdateOperationsInput | string | null
88586
- location?: NullableStringFieldUpdateOperationsInput | string | null
88587
- salary?: NullableStringFieldUpdateOperationsInput | string | null
88588
- work_experience?: NullableJsonNullValueInput | InputJsonValue
88589
- education?: NullableJsonNullValueInput | InputJsonValue
88590
- skills?: NullableJsonNullValueInput | InputJsonValue
88591
- notice_period?: NullableStringFieldUpdateOperationsInput | string | null
88592
- preferred_work_mode?: NullableStringFieldUpdateOperationsInput | string | null
88593
- gender?: NullableStringFieldUpdateOperationsInput | string | null
88594
- ethnicity?: NullableStringFieldUpdateOperationsInput | string | null
88595
- veteran_status?: NullableStringFieldUpdateOperationsInput | string | null
88596
- disability_status?: NullableStringFieldUpdateOperationsInput | string | null
88597
- applications?: ApplicationUncheckedUpdateManyWithoutCandidateNestedInput
88598
- resume?: ResumeUncheckedUpdateManyWithoutUserNestedInput
88599
- candidate_profile?: CandidateProfileUncheckedUpdateOneWithoutUserNestedInput
88600
- user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
88601
- job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
88602
- hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
88603
- hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
88604
- approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
88605
- sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
88606
- received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
88607
- candidate_interviews?: InterviewUncheckedUpdateManyWithoutCandidateNestedInput
88608
- interviewer_interviews?: InterviewUncheckedUpdateManyWithoutInterviewerNestedInput
88609
- assessment_results?: AssessmentUncheckedUpdateManyWithoutUserNestedInput
88610
- candidate_assessments?: AssessmentUncheckedUpdateManyWithoutCandidateNestedInput
88611
- reviewer_assessments?: AssessmentUncheckedUpdateManyWithoutReviewerNestedInput
88612
- candidate_assignments?: AssignmentUncheckedUpdateManyWithoutCandidateNestedInput
88613
- reviewer_assignments?: AssignmentUncheckedUpdateManyWithoutReviewerNestedInput
88614
- candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
88615
- questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
88616
- ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
88617
- actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
88618
- actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
88619
- calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
88620
- google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
88621
- fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
88622
- created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
88623
- assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
88624
- }
88625
-
88626
86676
  export type JobDescriptionCreateWithoutBudgetInput = {
88627
86677
  id?: string
88628
86678
  status?: $Enums.JobDescriptionStatus
@@ -88838,7 +86888,6 @@ export namespace Prisma {
88838
86888
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
88839
86889
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
88840
86890
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
88841
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
88842
86891
  }
88843
86892
 
88844
86893
  export type UserUncheckedCreateWithoutCalendlyInput = {
@@ -88900,7 +86949,6 @@ export namespace Prisma {
88900
86949
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
88901
86950
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
88902
86951
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
88903
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
88904
86952
  }
88905
86953
 
88906
86954
  export type UserCreateOrConnectWithoutCalendlyInput = {
@@ -88978,7 +87026,6 @@ export namespace Prisma {
88978
87026
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
88979
87027
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
88980
87028
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
88981
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
88982
87029
  }
88983
87030
 
88984
87031
  export type UserUncheckedUpdateWithoutCalendlyInput = {
@@ -89040,7 +87087,6 @@ export namespace Prisma {
89040
87087
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
89041
87088
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
89042
87089
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
89043
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
89044
87090
  }
89045
87091
 
89046
87092
  export type UserCreateWithoutCandidate_profileInput = {
@@ -89102,7 +87148,6 @@ export namespace Prisma {
89102
87148
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
89103
87149
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
89104
87150
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
89105
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
89106
87151
  }
89107
87152
 
89108
87153
  export type UserUncheckedCreateWithoutCandidate_profileInput = {
@@ -89164,7 +87209,6 @@ export namespace Prisma {
89164
87209
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
89165
87210
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
89166
87211
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
89167
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
89168
87212
  }
89169
87213
 
89170
87214
  export type UserCreateOrConnectWithoutCandidate_profileInput = {
@@ -89175,6 +87219,7 @@ export namespace Prisma {
89175
87219
  export type ResumeCreateWithoutCandidate_profileInput = {
89176
87220
  id?: string
89177
87221
  uploaded_resume_path?: string | null
87222
+ file_hash?: string | null
89178
87223
  summary?: NullableJsonNullValueInput | InputJsonValue
89179
87224
  created_at?: Date | string
89180
87225
  updated_at?: Date | string
@@ -89199,6 +87244,7 @@ export namespace Prisma {
89199
87244
  organisation_id?: string | null
89200
87245
  job_description_id?: string | null
89201
87246
  uploaded_resume_path?: string | null
87247
+ file_hash?: string | null
89202
87248
  summary?: NullableJsonNullValueInput | InputJsonValue
89203
87249
  created_at?: Date | string
89204
87250
  updated_at?: Date | string
@@ -89289,7 +87335,6 @@ export namespace Prisma {
89289
87335
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
89290
87336
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
89291
87337
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
89292
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
89293
87338
  }
89294
87339
 
89295
87340
  export type UserUncheckedUpdateWithoutCandidate_profileInput = {
@@ -89351,7 +87396,6 @@ export namespace Prisma {
89351
87396
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
89352
87397
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
89353
87398
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
89354
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
89355
87399
  }
89356
87400
 
89357
87401
  export type ResumeUpsertWithoutCandidate_profileInput = {
@@ -89368,6 +87412,7 @@ export namespace Prisma {
89368
87412
  export type ResumeUpdateWithoutCandidate_profileInput = {
89369
87413
  id?: StringFieldUpdateOperationsInput | string
89370
87414
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
87415
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
89371
87416
  summary?: NullableJsonNullValueInput | InputJsonValue
89372
87417
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
89373
87418
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -89392,6 +87437,7 @@ export namespace Prisma {
89392
87437
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
89393
87438
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
89394
87439
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
87440
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
89395
87441
  summary?: NullableJsonNullValueInput | InputJsonValue
89396
87442
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
89397
87443
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -90406,7 +88452,6 @@ export namespace Prisma {
90406
88452
  google?: GoogleCreateNestedOneWithoutUserInput
90407
88453
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
90408
88454
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
90409
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
90410
88455
  }
90411
88456
 
90412
88457
  export type UserUncheckedCreateWithoutFitChecksInput = {
@@ -90468,7 +88513,6 @@ export namespace Prisma {
90468
88513
  google?: GoogleUncheckedCreateNestedOneWithoutUserInput
90469
88514
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
90470
88515
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
90471
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
90472
88516
  }
90473
88517
 
90474
88518
  export type UserCreateOrConnectWithoutFitChecksInput = {
@@ -90479,6 +88523,7 @@ export namespace Prisma {
90479
88523
  export type ResumeCreateWithoutFit_checkInput = {
90480
88524
  id?: string
90481
88525
  uploaded_resume_path?: string | null
88526
+ file_hash?: string | null
90482
88527
  summary?: NullableJsonNullValueInput | InputJsonValue
90483
88528
  created_at?: Date | string
90484
88529
  updated_at?: Date | string
@@ -90503,6 +88548,7 @@ export namespace Prisma {
90503
88548
  organisation_id?: string | null
90504
88549
  job_description_id?: string | null
90505
88550
  uploaded_resume_path?: string | null
88551
+ file_hash?: string | null
90506
88552
  summary?: NullableJsonNullValueInput | InputJsonValue
90507
88553
  created_at?: Date | string
90508
88554
  updated_at?: Date | string
@@ -90804,7 +88850,6 @@ export namespace Prisma {
90804
88850
  google?: GoogleUpdateOneWithoutUserNestedInput
90805
88851
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
90806
88852
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
90807
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
90808
88853
  }
90809
88854
 
90810
88855
  export type UserUncheckedUpdateWithoutFitChecksInput = {
@@ -90866,7 +88911,6 @@ export namespace Prisma {
90866
88911
  google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
90867
88912
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
90868
88913
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
90869
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
90870
88914
  }
90871
88915
 
90872
88916
  export type ResumeUpsertWithoutFit_checkInput = {
@@ -90883,6 +88927,7 @@ export namespace Prisma {
90883
88927
  export type ResumeUpdateWithoutFit_checkInput = {
90884
88928
  id?: StringFieldUpdateOperationsInput | string
90885
88929
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
88930
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
90886
88931
  summary?: NullableJsonNullValueInput | InputJsonValue
90887
88932
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
90888
88933
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -90907,6 +88952,7 @@ export namespace Prisma {
90907
88952
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
90908
88953
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
90909
88954
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
88955
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
90910
88956
  summary?: NullableJsonNullValueInput | InputJsonValue
90911
88957
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
90912
88958
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -91119,7 +89165,6 @@ export namespace Prisma {
91119
89165
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
91120
89166
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
91121
89167
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
91122
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
91123
89168
  }
91124
89169
 
91125
89170
  export type UserUncheckedCreateWithoutGoogleInput = {
@@ -91181,7 +89226,6 @@ export namespace Prisma {
91181
89226
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
91182
89227
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
91183
89228
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
91184
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
91185
89229
  }
91186
89230
 
91187
89231
  export type UserCreateOrConnectWithoutGoogleInput = {
@@ -91259,7 +89303,6 @@ export namespace Prisma {
91259
89303
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
91260
89304
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
91261
89305
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
91262
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
91263
89306
  }
91264
89307
 
91265
89308
  export type UserUncheckedUpdateWithoutGoogleInput = {
@@ -91321,7 +89364,6 @@ export namespace Prisma {
91321
89364
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
91322
89365
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
91323
89366
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
91324
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
91325
89367
  }
91326
89368
 
91327
89369
  export type OrganisationCreateWithoutIntegration_credentialsInput = {
@@ -91867,7 +89909,6 @@ export namespace Prisma {
91867
89909
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
91868
89910
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
91869
89911
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
91870
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
91871
89912
  }
91872
89913
 
91873
89914
  export type UserUncheckedCreateWithoutCandidate_interviewsInput = {
@@ -91929,7 +89970,6 @@ export namespace Prisma {
91929
89970
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
91930
89971
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
91931
89972
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
91932
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
91933
89973
  }
91934
89974
 
91935
89975
  export type UserCreateOrConnectWithoutCandidate_interviewsInput = {
@@ -91996,7 +90036,6 @@ export namespace Prisma {
91996
90036
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
91997
90037
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
91998
90038
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
91999
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
92000
90039
  }
92001
90040
 
92002
90041
  export type UserUncheckedCreateWithoutInterviewer_interviewsInput = {
@@ -92058,7 +90097,6 @@ export namespace Prisma {
92058
90097
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
92059
90098
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
92060
90099
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
92061
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
92062
90100
  }
92063
90101
 
92064
90102
  export type UserCreateOrConnectWithoutInterviewer_interviewsInput = {
@@ -92223,6 +90261,7 @@ export namespace Prisma {
92223
90261
  export type ResumeCreateWithoutInterviewsInput = {
92224
90262
  id?: string
92225
90263
  uploaded_resume_path?: string | null
90264
+ file_hash?: string | null
92226
90265
  summary?: NullableJsonNullValueInput | InputJsonValue
92227
90266
  created_at?: Date | string
92228
90267
  updated_at?: Date | string
@@ -92247,6 +90286,7 @@ export namespace Prisma {
92247
90286
  organisation_id?: string | null
92248
90287
  job_description_id?: string | null
92249
90288
  uploaded_resume_path?: string | null
90289
+ file_hash?: string | null
92250
90290
  summary?: NullableJsonNullValueInput | InputJsonValue
92251
90291
  created_at?: Date | string
92252
90292
  updated_at?: Date | string
@@ -92706,7 +90746,6 @@ export namespace Prisma {
92706
90746
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
92707
90747
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
92708
90748
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
92709
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
92710
90749
  }
92711
90750
 
92712
90751
  export type UserUncheckedUpdateWithoutCandidate_interviewsInput = {
@@ -92768,7 +90807,6 @@ export namespace Prisma {
92768
90807
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
92769
90808
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
92770
90809
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
92771
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
92772
90810
  }
92773
90811
 
92774
90812
  export type UserUpsertWithoutInterviewer_interviewsInput = {
@@ -92841,7 +90879,6 @@ export namespace Prisma {
92841
90879
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
92842
90880
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
92843
90881
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
92844
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
92845
90882
  }
92846
90883
 
92847
90884
  export type UserUncheckedUpdateWithoutInterviewer_interviewsInput = {
@@ -92903,7 +90940,6 @@ export namespace Prisma {
92903
90940
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
92904
90941
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
92905
90942
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
92906
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
92907
90943
  }
92908
90944
 
92909
90945
  export type OrganisationUpsertWithoutInterviewsInput = {
@@ -93086,6 +91122,7 @@ export namespace Prisma {
93086
91122
  export type ResumeUpdateWithoutInterviewsInput = {
93087
91123
  id?: StringFieldUpdateOperationsInput | string
93088
91124
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
91125
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
93089
91126
  summary?: NullableJsonNullValueInput | InputJsonValue
93090
91127
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
93091
91128
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -93110,6 +91147,7 @@ export namespace Prisma {
93110
91147
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
93111
91148
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
93112
91149
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
91150
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
93113
91151
  summary?: NullableJsonNullValueInput | InputJsonValue
93114
91152
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
93115
91153
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -94345,6 +92383,7 @@ export namespace Prisma {
94345
92383
  export type ResumeCreateWithoutJob_descriptionInput = {
94346
92384
  id?: string
94347
92385
  uploaded_resume_path?: string | null
92386
+ file_hash?: string | null
94348
92387
  summary?: NullableJsonNullValueInput | InputJsonValue
94349
92388
  created_at?: Date | string
94350
92389
  updated_at?: Date | string
@@ -94368,6 +92407,7 @@ export namespace Prisma {
94368
92407
  user_id?: string | null
94369
92408
  organisation_id?: string | null
94370
92409
  uploaded_resume_path?: string | null
92410
+ file_hash?: string | null
94371
92411
  summary?: NullableJsonNullValueInput | InputJsonValue
94372
92412
  created_at?: Date | string
94373
92413
  updated_at?: Date | string
@@ -94502,7 +92542,6 @@ export namespace Prisma {
94502
92542
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
94503
92543
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
94504
92544
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
94505
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
94506
92545
  }
94507
92546
 
94508
92547
  export type UserUncheckedCreateWithoutHiring_manager_job_descriptionsInput = {
@@ -94564,7 +92603,6 @@ export namespace Prisma {
94564
92603
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
94565
92604
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
94566
92605
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
94567
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
94568
92606
  }
94569
92607
 
94570
92608
  export type UserCreateOrConnectWithoutHiring_manager_job_descriptionsInput = {
@@ -94631,7 +92669,6 @@ export namespace Prisma {
94631
92669
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
94632
92670
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
94633
92671
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
94634
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
94635
92672
  }
94636
92673
 
94637
92674
  export type UserUncheckedCreateWithoutJob_descriptionInput = {
@@ -94693,7 +92730,6 @@ export namespace Prisma {
94693
92730
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
94694
92731
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
94695
92732
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
94696
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
94697
92733
  }
94698
92734
 
94699
92735
  export type UserCreateOrConnectWithoutJob_descriptionInput = {
@@ -95183,6 +93219,7 @@ export namespace Prisma {
95183
93219
  organisation_id?: StringNullableFilter<"Resume"> | string | null
95184
93220
  job_description_id?: StringNullableFilter<"Resume"> | string | null
95185
93221
  uploaded_resume_path?: StringNullableFilter<"Resume"> | string | null
93222
+ file_hash?: StringNullableFilter<"Resume"> | string | null
95186
93223
  summary?: JsonNullableFilter<"Resume">
95187
93224
  created_at?: DateTimeFilter<"Resume"> | Date | string
95188
93225
  updated_at?: DateTimeFilter<"Resume"> | Date | string
@@ -95318,7 +93355,6 @@ export namespace Prisma {
95318
93355
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
95319
93356
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
95320
93357
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
95321
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
95322
93358
  }
95323
93359
 
95324
93360
  export type UserUncheckedUpdateWithoutHiring_manager_job_descriptionsInput = {
@@ -95380,7 +93416,6 @@ export namespace Prisma {
95380
93416
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
95381
93417
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
95382
93418
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
95383
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
95384
93419
  }
95385
93420
 
95386
93421
  export type UserUpsertWithWhereUniqueWithoutJob_descriptionInput = {
@@ -95741,7 +93776,6 @@ export namespace Prisma {
95741
93776
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
95742
93777
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
95743
93778
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
95744
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
95745
93779
  }
95746
93780
 
95747
93781
  export type UserUncheckedCreateWithoutHiring_manager_job_profilesInput = {
@@ -95803,7 +93837,6 @@ export namespace Prisma {
95803
93837
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
95804
93838
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
95805
93839
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
95806
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
95807
93840
  }
95808
93841
 
95809
93842
  export type UserCreateOrConnectWithoutHiring_manager_job_profilesInput = {
@@ -95870,7 +93903,6 @@ export namespace Prisma {
95870
93903
  google?: GoogleCreateNestedOneWithoutUserInput
95871
93904
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
95872
93905
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
95873
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
95874
93906
  }
95875
93907
 
95876
93908
  export type UserUncheckedCreateWithoutCreated_job_profilesInput = {
@@ -95932,7 +93964,6 @@ export namespace Prisma {
95932
93964
  google?: GoogleUncheckedCreateNestedOneWithoutUserInput
95933
93965
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
95934
93966
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
95935
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
95936
93967
  }
95937
93968
 
95938
93969
  export type UserCreateOrConnectWithoutCreated_job_profilesInput = {
@@ -95999,7 +94030,6 @@ export namespace Prisma {
95999
94030
  google?: GoogleCreateNestedOneWithoutUserInput
96000
94031
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
96001
94032
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
96002
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
96003
94033
  }
96004
94034
 
96005
94035
  export type UserUncheckedCreateWithoutAssigned_job_profilesInput = {
@@ -96061,7 +94091,6 @@ export namespace Prisma {
96061
94091
  google?: GoogleUncheckedCreateNestedOneWithoutUserInput
96062
94092
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
96063
94093
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
96064
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
96065
94094
  }
96066
94095
 
96067
94096
  export type UserCreateOrConnectWithoutAssigned_job_profilesInput = {
@@ -96304,7 +94333,6 @@ export namespace Prisma {
96304
94333
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
96305
94334
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
96306
94335
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
96307
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
96308
94336
  }
96309
94337
 
96310
94338
  export type UserUncheckedUpdateWithoutHiring_manager_job_profilesInput = {
@@ -96366,7 +94394,6 @@ export namespace Prisma {
96366
94394
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
96367
94395
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
96368
94396
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
96369
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
96370
94397
  }
96371
94398
 
96372
94399
  export type UserUpsertWithoutCreated_job_profilesInput = {
@@ -96439,7 +94466,6 @@ export namespace Prisma {
96439
94466
  google?: GoogleUpdateOneWithoutUserNestedInput
96440
94467
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
96441
94468
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
96442
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
96443
94469
  }
96444
94470
 
96445
94471
  export type UserUncheckedUpdateWithoutCreated_job_profilesInput = {
@@ -96501,7 +94527,6 @@ export namespace Prisma {
96501
94527
  google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
96502
94528
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
96503
94529
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
96504
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
96505
94530
  }
96506
94531
 
96507
94532
  export type UserUpsertWithoutAssigned_job_profilesInput = {
@@ -96574,7 +94599,6 @@ export namespace Prisma {
96574
94599
  google?: GoogleUpdateOneWithoutUserNestedInput
96575
94600
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
96576
94601
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
96577
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
96578
94602
  }
96579
94603
 
96580
94604
  export type UserUncheckedUpdateWithoutAssigned_job_profilesInput = {
@@ -96636,7 +94660,6 @@ export namespace Prisma {
96636
94660
  google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
96637
94661
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
96638
94662
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
96639
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
96640
94663
  }
96641
94664
 
96642
94665
  export type JobDescriptionUpsertWithWhereUniqueWithoutJob_profileInput = {
@@ -96915,7 +94938,6 @@ export namespace Prisma {
96915
94938
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
96916
94939
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
96917
94940
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
96918
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
96919
94941
  }
96920
94942
 
96921
94943
  export type UserUncheckedCreateWithoutSent_messagesInput = {
@@ -96977,7 +94999,6 @@ export namespace Prisma {
96977
94999
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
96978
95000
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
96979
95001
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
96980
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
96981
95002
  }
96982
95003
 
96983
95004
  export type UserCreateOrConnectWithoutSent_messagesInput = {
@@ -97044,7 +95065,6 @@ export namespace Prisma {
97044
95065
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
97045
95066
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
97046
95067
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
97047
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
97048
95068
  }
97049
95069
 
97050
95070
  export type UserUncheckedCreateWithoutReceived_messagesInput = {
@@ -97106,7 +95126,6 @@ export namespace Prisma {
97106
95126
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
97107
95127
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
97108
95128
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
97109
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
97110
95129
  }
97111
95130
 
97112
95131
  export type UserCreateOrConnectWithoutReceived_messagesInput = {
@@ -97184,7 +95203,6 @@ export namespace Prisma {
97184
95203
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
97185
95204
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
97186
95205
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
97187
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
97188
95206
  }
97189
95207
 
97190
95208
  export type UserUncheckedUpdateWithoutSent_messagesInput = {
@@ -97246,7 +95264,6 @@ export namespace Prisma {
97246
95264
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
97247
95265
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
97248
95266
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
97249
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
97250
95267
  }
97251
95268
 
97252
95269
  export type UserUpsertWithoutReceived_messagesInput = {
@@ -97319,7 +95336,6 @@ export namespace Prisma {
97319
95336
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
97320
95337
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
97321
95338
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
97322
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
97323
95339
  }
97324
95340
 
97325
95341
  export type UserUncheckedUpdateWithoutReceived_messagesInput = {
@@ -97381,7 +95397,6 @@ export namespace Prisma {
97381
95397
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
97382
95398
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
97383
95399
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
97384
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
97385
95400
  }
97386
95401
 
97387
95402
  export type JobDescriptionCreateWithoutOngoing_evaluationsInput = {
@@ -97569,7 +95584,6 @@ export namespace Prisma {
97569
95584
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
97570
95585
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
97571
95586
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
97572
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
97573
95587
  }
97574
95588
 
97575
95589
  export type UserUncheckedCreateWithoutOngoing_evaluationsInput = {
@@ -97631,7 +95645,6 @@ export namespace Prisma {
97631
95645
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
97632
95646
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
97633
95647
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
97634
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
97635
95648
  }
97636
95649
 
97637
95650
  export type UserCreateOrConnectWithoutOngoing_evaluationsInput = {
@@ -97642,6 +95655,7 @@ export namespace Prisma {
97642
95655
  export type ResumeCreateWithoutOngoing_evaluationsInput = {
97643
95656
  id?: string
97644
95657
  uploaded_resume_path?: string | null
95658
+ file_hash?: string | null
97645
95659
  summary?: NullableJsonNullValueInput | InputJsonValue
97646
95660
  created_at?: Date | string
97647
95661
  updated_at?: Date | string
@@ -97666,6 +95680,7 @@ export namespace Prisma {
97666
95680
  organisation_id?: string | null
97667
95681
  job_description_id?: string | null
97668
95682
  uploaded_resume_path?: string | null
95683
+ file_hash?: string | null
97669
95684
  summary?: NullableJsonNullValueInput | InputJsonValue
97670
95685
  created_at?: Date | string
97671
95686
  updated_at?: Date | string
@@ -98223,7 +96238,6 @@ export namespace Prisma {
98223
96238
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
98224
96239
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
98225
96240
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
98226
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
98227
96241
  }
98228
96242
 
98229
96243
  export type UserUncheckedUpdateWithoutOngoing_evaluationsInput = {
@@ -98285,7 +96299,6 @@ export namespace Prisma {
98285
96299
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
98286
96300
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
98287
96301
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
98288
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
98289
96302
  }
98290
96303
 
98291
96304
  export type ResumeUpsertWithoutOngoing_evaluationsInput = {
@@ -98302,6 +96315,7 @@ export namespace Prisma {
98302
96315
  export type ResumeUpdateWithoutOngoing_evaluationsInput = {
98303
96316
  id?: StringFieldUpdateOperationsInput | string
98304
96317
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
96318
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
98305
96319
  summary?: NullableJsonNullValueInput | InputJsonValue
98306
96320
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
98307
96321
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -98326,6 +96340,7 @@ export namespace Prisma {
98326
96340
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
98327
96341
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
98328
96342
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
96343
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
98329
96344
  summary?: NullableJsonNullValueInput | InputJsonValue
98330
96345
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
98331
96346
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -98759,7 +96774,6 @@ export namespace Prisma {
98759
96774
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
98760
96775
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
98761
96776
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
98762
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
98763
96777
  }
98764
96778
 
98765
96779
  export type UserUncheckedCreateWithoutOrganisationInput = {
@@ -98821,7 +96835,6 @@ export namespace Prisma {
98821
96835
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
98822
96836
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
98823
96837
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
98824
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
98825
96838
  }
98826
96839
 
98827
96840
  export type UserCreateOrConnectWithoutOrganisationInput = {
@@ -99387,6 +97400,7 @@ export namespace Prisma {
99387
97400
  export type ResumeCreateWithoutOrganisationInput = {
99388
97401
  id?: string
99389
97402
  uploaded_resume_path?: string | null
97403
+ file_hash?: string | null
99390
97404
  summary?: NullableJsonNullValueInput | InputJsonValue
99391
97405
  created_at?: Date | string
99392
97406
  updated_at?: Date | string
@@ -99410,6 +97424,7 @@ export namespace Prisma {
99410
97424
  user_id?: string | null
99411
97425
  job_description_id?: string | null
99412
97426
  uploaded_resume_path?: string | null
97427
+ file_hash?: string | null
99413
97428
  summary?: NullableJsonNullValueInput | InputJsonValue
99414
97429
  created_at?: Date | string
99415
97430
  updated_at?: Date | string
@@ -100230,7 +98245,6 @@ export namespace Prisma {
100230
98245
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
100231
98246
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
100232
98247
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
100233
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
100234
98248
  }
100235
98249
 
100236
98250
  export type UserUncheckedCreateWithoutPermissionInput = {
@@ -100292,7 +98306,6 @@ export namespace Prisma {
100292
98306
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
100293
98307
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
100294
98308
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
100295
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
100296
98309
  }
100297
98310
 
100298
98311
  export type UserCreateOrConnectWithoutPermissionInput = {
@@ -100401,7 +98414,6 @@ export namespace Prisma {
100401
98414
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
100402
98415
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
100403
98416
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
100404
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
100405
98417
  }
100406
98418
 
100407
98419
  export type UserUncheckedUpdateWithoutPermissionInput = {
@@ -100463,7 +98475,6 @@ export namespace Prisma {
100463
98475
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
100464
98476
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
100465
98477
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
100466
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
100467
98478
  }
100468
98479
 
100469
98480
  export type UserRoleUpsertWithoutPermissionInput = {
@@ -100562,7 +98573,6 @@ export namespace Prisma {
100562
98573
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
100563
98574
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
100564
98575
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
100565
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
100566
98576
  }
100567
98577
 
100568
98578
  export type UserUncheckedCreateWithoutQuestionsInput = {
@@ -100624,7 +98634,6 @@ export namespace Prisma {
100624
98634
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
100625
98635
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
100626
98636
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
100627
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
100628
98637
  }
100629
98638
 
100630
98639
  export type UserCreateOrConnectWithoutQuestionsInput = {
@@ -100870,7 +98879,6 @@ export namespace Prisma {
100870
98879
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
100871
98880
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
100872
98881
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
100873
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
100874
98882
  }
100875
98883
 
100876
98884
  export type UserUncheckedUpdateWithoutQuestionsInput = {
@@ -100932,7 +98940,6 @@ export namespace Prisma {
100932
98940
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
100933
98941
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
100934
98942
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
100935
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
100936
98943
  }
100937
98944
 
100938
98945
  export type AssessmentQuestionUpsertWithWhereUniqueWithoutQuestionInput = {
@@ -101148,7 +99155,6 @@ export namespace Prisma {
101148
99155
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
101149
99156
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
101150
99157
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
101151
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
101152
99158
  }
101153
99159
 
101154
99160
  export type UserUncheckedCreateWithoutResumeInput = {
@@ -101210,7 +99216,6 @@ export namespace Prisma {
101210
99216
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
101211
99217
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
101212
99218
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
101213
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
101214
99219
  }
101215
99220
 
101216
99221
  export type UserCreateOrConnectWithoutResumeInput = {
@@ -101823,7 +99828,6 @@ export namespace Prisma {
101823
99828
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
101824
99829
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
101825
99830
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
101826
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
101827
99831
  }
101828
99832
 
101829
99833
  export type UserUncheckedUpdateWithoutResumeInput = {
@@ -101885,7 +99889,6 @@ export namespace Prisma {
101885
99889
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
101886
99890
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
101887
99891
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
101888
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
101889
99892
  }
101890
99893
 
101891
99894
  export type OrganisationUpsertWithoutResumesInput = {
@@ -102205,6 +100208,7 @@ export namespace Prisma {
102205
100208
  export type ResumeCreateWithoutResume_dataInput = {
102206
100209
  id?: string
102207
100210
  uploaded_resume_path?: string | null
100211
+ file_hash?: string | null
102208
100212
  summary?: NullableJsonNullValueInput | InputJsonValue
102209
100213
  created_at?: Date | string
102210
100214
  updated_at?: Date | string
@@ -102229,6 +100233,7 @@ export namespace Prisma {
102229
100233
  organisation_id?: string | null
102230
100234
  job_description_id?: string | null
102231
100235
  uploaded_resume_path?: string | null
100236
+ file_hash?: string | null
102232
100237
  summary?: NullableJsonNullValueInput | InputJsonValue
102233
100238
  created_at?: Date | string
102234
100239
  updated_at?: Date | string
@@ -102263,6 +100268,7 @@ export namespace Prisma {
102263
100268
  export type ResumeUpdateWithoutResume_dataInput = {
102264
100269
  id?: StringFieldUpdateOperationsInput | string
102265
100270
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
100271
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
102266
100272
  summary?: NullableJsonNullValueInput | InputJsonValue
102267
100273
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
102268
100274
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -102287,6 +100293,7 @@ export namespace Prisma {
102287
100293
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
102288
100294
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
102289
100295
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
100296
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
102290
100297
  summary?: NullableJsonNullValueInput | InputJsonValue
102291
100298
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
102292
100299
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -103302,6 +101309,7 @@ export namespace Prisma {
103302
101309
  export type ResumeCreateWithoutUserInput = {
103303
101310
  id?: string
103304
101311
  uploaded_resume_path?: string | null
101312
+ file_hash?: string | null
103305
101313
  summary?: NullableJsonNullValueInput | InputJsonValue
103306
101314
  created_at?: Date | string
103307
101315
  updated_at?: Date | string
@@ -103325,6 +101333,7 @@ export namespace Prisma {
103325
101333
  organisation_id?: string | null
103326
101334
  job_description_id?: string | null
103327
101335
  uploaded_resume_path?: string | null
101336
+ file_hash?: string | null
103328
101337
  summary?: NullableJsonNullValueInput | InputJsonValue
103329
101338
  created_at?: Date | string
103330
101339
  updated_at?: Date | string
@@ -104708,44 +102717,6 @@ export namespace Prisma {
104708
102717
  skipDuplicates?: boolean
104709
102718
  }
104710
102719
 
104711
- export type AuthModuleCreateWithoutUserInput = {
104712
- id?: string
104713
- provider: $Enums.AuthProvider
104714
- provider_account_id: string
104715
- access_token?: string | null
104716
- refresh_token?: string | null
104717
- id_token?: string | null
104718
- expires_at?: Date | string | null
104719
- token_type?: string | null
104720
- scope?: string | null
104721
- created_at?: Date | string
104722
- updated_at?: Date | string
104723
- }
104724
-
104725
- export type AuthModuleUncheckedCreateWithoutUserInput = {
104726
- id?: string
104727
- provider: $Enums.AuthProvider
104728
- provider_account_id: string
104729
- access_token?: string | null
104730
- refresh_token?: string | null
104731
- id_token?: string | null
104732
- expires_at?: Date | string | null
104733
- token_type?: string | null
104734
- scope?: string | null
104735
- created_at?: Date | string
104736
- updated_at?: Date | string
104737
- }
104738
-
104739
- export type AuthModuleCreateOrConnectWithoutUserInput = {
104740
- where: AuthModuleWhereUniqueInput
104741
- create: XOR<AuthModuleCreateWithoutUserInput, AuthModuleUncheckedCreateWithoutUserInput>
104742
- }
104743
-
104744
- export type AuthModuleCreateManyUserInputEnvelope = {
104745
- data: AuthModuleCreateManyUserInput | AuthModuleCreateManyUserInput[]
104746
- skipDuplicates?: boolean
104747
- }
104748
-
104749
102720
  export type UserRoleUpsertWithoutUsersInput = {
104750
102721
  update: XOR<UserRoleUpdateWithoutUsersInput, UserRoleUncheckedUpdateWithoutUsersInput>
104751
102722
  create: XOR<UserRoleCreateWithoutUsersInput, UserRoleUncheckedCreateWithoutUsersInput>
@@ -105448,40 +103419,6 @@ export namespace Prisma {
105448
103419
  data: XOR<JobProfileUpdateManyMutationInput, JobProfileUncheckedUpdateManyWithoutAssigneeInput>
105449
103420
  }
105450
103421
 
105451
- export type AuthModuleUpsertWithWhereUniqueWithoutUserInput = {
105452
- where: AuthModuleWhereUniqueInput
105453
- update: XOR<AuthModuleUpdateWithoutUserInput, AuthModuleUncheckedUpdateWithoutUserInput>
105454
- create: XOR<AuthModuleCreateWithoutUserInput, AuthModuleUncheckedCreateWithoutUserInput>
105455
- }
105456
-
105457
- export type AuthModuleUpdateWithWhereUniqueWithoutUserInput = {
105458
- where: AuthModuleWhereUniqueInput
105459
- data: XOR<AuthModuleUpdateWithoutUserInput, AuthModuleUncheckedUpdateWithoutUserInput>
105460
- }
105461
-
105462
- export type AuthModuleUpdateManyWithWhereWithoutUserInput = {
105463
- where: AuthModuleScalarWhereInput
105464
- data: XOR<AuthModuleUpdateManyMutationInput, AuthModuleUncheckedUpdateManyWithoutUserInput>
105465
- }
105466
-
105467
- export type AuthModuleScalarWhereInput = {
105468
- AND?: AuthModuleScalarWhereInput | AuthModuleScalarWhereInput[]
105469
- OR?: AuthModuleScalarWhereInput[]
105470
- NOT?: AuthModuleScalarWhereInput | AuthModuleScalarWhereInput[]
105471
- id?: StringFilter<"AuthModule"> | string
105472
- user_id?: StringFilter<"AuthModule"> | string
105473
- provider?: EnumAuthProviderFilter<"AuthModule"> | $Enums.AuthProvider
105474
- provider_account_id?: StringFilter<"AuthModule"> | string
105475
- access_token?: StringNullableFilter<"AuthModule"> | string | null
105476
- refresh_token?: StringNullableFilter<"AuthModule"> | string | null
105477
- id_token?: StringNullableFilter<"AuthModule"> | string | null
105478
- expires_at?: DateTimeNullableFilter<"AuthModule"> | Date | string | null
105479
- token_type?: StringNullableFilter<"AuthModule"> | string | null
105480
- scope?: StringNullableFilter<"AuthModule"> | string | null
105481
- created_at?: DateTimeFilter<"AuthModule"> | Date | string
105482
- updated_at?: DateTimeFilter<"AuthModule"> | Date | string
105483
- }
105484
-
105485
103422
  export type UserCreateWithoutUser_profileInput = {
105486
103423
  id?: string
105487
103424
  email: string
@@ -105541,7 +103478,6 @@ export namespace Prisma {
105541
103478
  fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
105542
103479
  created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
105543
103480
  assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
105544
- user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
105545
103481
  }
105546
103482
 
105547
103483
  export type UserUncheckedCreateWithoutUser_profileInput = {
@@ -105603,7 +103539,6 @@ export namespace Prisma {
105603
103539
  fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
105604
103540
  created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
105605
103541
  assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
105606
- user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
105607
103542
  }
105608
103543
 
105609
103544
  export type UserCreateOrConnectWithoutUser_profileInput = {
@@ -105681,7 +103616,6 @@ export namespace Prisma {
105681
103616
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
105682
103617
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
105683
103618
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
105684
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
105685
103619
  }
105686
103620
 
105687
103621
  export type UserUncheckedUpdateWithoutUser_profileInput = {
@@ -105743,7 +103677,6 @@ export namespace Prisma {
105743
103677
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
105744
103678
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
105745
103679
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
105746
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
105747
103680
  }
105748
103681
 
105749
103682
  export type UserCreateManyRoleInput = {
@@ -105839,7 +103772,6 @@ export namespace Prisma {
105839
103772
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
105840
103773
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
105841
103774
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
105842
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
105843
103775
  }
105844
103776
 
105845
103777
  export type UserUncheckedUpdateWithoutRoleInput = {
@@ -105901,7 +103833,6 @@ export namespace Prisma {
105901
103833
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
105902
103834
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
105903
103835
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
105904
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
105905
103836
  }
105906
103837
 
105907
103838
  export type UserUncheckedUpdateManyWithoutRoleInput = {
@@ -107813,6 +105744,7 @@ export namespace Prisma {
107813
105744
  user_id?: string | null
107814
105745
  organisation_id?: string | null
107815
105746
  uploaded_resume_path?: string | null
105747
+ file_hash?: string | null
107816
105748
  summary?: NullableJsonNullValueInput | InputJsonValue
107817
105749
  created_at?: Date | string
107818
105750
  updated_at?: Date | string
@@ -108497,6 +106429,7 @@ export namespace Prisma {
108497
106429
  export type ResumeUpdateWithoutJob_descriptionInput = {
108498
106430
  id?: StringFieldUpdateOperationsInput | string
108499
106431
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
106432
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
108500
106433
  summary?: NullableJsonNullValueInput | InputJsonValue
108501
106434
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
108502
106435
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -108520,6 +106453,7 @@ export namespace Prisma {
108520
106453
  user_id?: NullableStringFieldUpdateOperationsInput | string | null
108521
106454
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
108522
106455
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
106456
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
108523
106457
  summary?: NullableJsonNullValueInput | InputJsonValue
108524
106458
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
108525
106459
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -108541,6 +106475,7 @@ export namespace Prisma {
108541
106475
  user_id?: NullableStringFieldUpdateOperationsInput | string | null
108542
106476
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
108543
106477
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
106478
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
108544
106479
  summary?: NullableJsonNullValueInput | InputJsonValue
108545
106480
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
108546
106481
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -108610,7 +106545,6 @@ export namespace Prisma {
108610
106545
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
108611
106546
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
108612
106547
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
108613
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
108614
106548
  }
108615
106549
 
108616
106550
  export type UserUncheckedUpdateWithoutJob_descriptionInput = {
@@ -108672,7 +106606,6 @@ export namespace Prisma {
108672
106606
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
108673
106607
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
108674
106608
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
108675
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
108676
106609
  }
108677
106610
 
108678
106611
  export type UserUncheckedUpdateManyWithoutJob_descriptionInput = {
@@ -109146,6 +107079,7 @@ export namespace Prisma {
109146
107079
  user_id?: string | null
109147
107080
  job_description_id?: string | null
109148
107081
  uploaded_resume_path?: string | null
107082
+ file_hash?: string | null
109149
107083
  summary?: NullableJsonNullValueInput | InputJsonValue
109150
107084
  created_at?: Date | string
109151
107085
  updated_at?: Date | string
@@ -109336,7 +107270,6 @@ export namespace Prisma {
109336
107270
  fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
109337
107271
  created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
109338
107272
  assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
109339
- user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
109340
107273
  }
109341
107274
 
109342
107275
  export type UserUncheckedUpdateWithoutOrganisationInput = {
@@ -109398,7 +107331,6 @@ export namespace Prisma {
109398
107331
  fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
109399
107332
  created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
109400
107333
  assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
109401
- user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
109402
107334
  }
109403
107335
 
109404
107336
  export type UserUncheckedUpdateManyWithoutOrganisationInput = {
@@ -110096,6 +108028,7 @@ export namespace Prisma {
110096
108028
  export type ResumeUpdateWithoutOrganisationInput = {
110097
108029
  id?: StringFieldUpdateOperationsInput | string
110098
108030
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
108031
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
110099
108032
  summary?: NullableJsonNullValueInput | InputJsonValue
110100
108033
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
110101
108034
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -110119,6 +108052,7 @@ export namespace Prisma {
110119
108052
  user_id?: NullableStringFieldUpdateOperationsInput | string | null
110120
108053
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
110121
108054
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
108055
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
110122
108056
  summary?: NullableJsonNullValueInput | InputJsonValue
110123
108057
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
110124
108058
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -110140,6 +108074,7 @@ export namespace Prisma {
110140
108074
  user_id?: NullableStringFieldUpdateOperationsInput | string | null
110141
108075
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
110142
108076
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
108077
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
110143
108078
  summary?: NullableJsonNullValueInput | InputJsonValue
110144
108079
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
110145
108080
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -111235,6 +109170,7 @@ export namespace Prisma {
111235
109170
  organisation_id?: string | null
111236
109171
  job_description_id?: string | null
111237
109172
  uploaded_resume_path?: string | null
109173
+ file_hash?: string | null
111238
109174
  summary?: NullableJsonNullValueInput | InputJsonValue
111239
109175
  created_at?: Date | string
111240
109176
  updated_at?: Date | string
@@ -111674,20 +109610,6 @@ export namespace Prisma {
111674
109610
  is_active?: boolean
111675
109611
  }
111676
109612
 
111677
- export type AuthModuleCreateManyUserInput = {
111678
- id?: string
111679
- provider: $Enums.AuthProvider
111680
- provider_account_id: string
111681
- access_token?: string | null
111682
- refresh_token?: string | null
111683
- id_token?: string | null
111684
- expires_at?: Date | string | null
111685
- token_type?: string | null
111686
- scope?: string | null
111687
- created_at?: Date | string
111688
- updated_at?: Date | string
111689
- }
111690
-
111691
109613
  export type ApplicationUpdateWithoutCandidateInput = {
111692
109614
  id?: StringFieldUpdateOperationsInput | string
111693
109615
  status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
@@ -111756,6 +109678,7 @@ export namespace Prisma {
111756
109678
  export type ResumeUpdateWithoutUserInput = {
111757
109679
  id?: StringFieldUpdateOperationsInput | string
111758
109680
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
109681
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
111759
109682
  summary?: NullableJsonNullValueInput | InputJsonValue
111760
109683
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
111761
109684
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -111779,6 +109702,7 @@ export namespace Prisma {
111779
109702
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
111780
109703
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
111781
109704
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
109705
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
111782
109706
  summary?: NullableJsonNullValueInput | InputJsonValue
111783
109707
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
111784
109708
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -111800,6 +109724,7 @@ export namespace Prisma {
111800
109724
  organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
111801
109725
  job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
111802
109726
  uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
109727
+ file_hash?: NullableStringFieldUpdateOperationsInput | string | null
111803
109728
  summary?: NullableJsonNullValueInput | InputJsonValue
111804
109729
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
111805
109730
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -113273,48 +111198,6 @@ export namespace Prisma {
113273
111198
  is_active?: BoolFieldUpdateOperationsInput | boolean
113274
111199
  }
113275
111200
 
113276
- export type AuthModuleUpdateWithoutUserInput = {
113277
- id?: StringFieldUpdateOperationsInput | string
113278
- provider?: EnumAuthProviderFieldUpdateOperationsInput | $Enums.AuthProvider
113279
- provider_account_id?: StringFieldUpdateOperationsInput | string
113280
- access_token?: NullableStringFieldUpdateOperationsInput | string | null
113281
- refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
113282
- id_token?: NullableStringFieldUpdateOperationsInput | string | null
113283
- expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
113284
- token_type?: NullableStringFieldUpdateOperationsInput | string | null
113285
- scope?: NullableStringFieldUpdateOperationsInput | string | null
113286
- created_at?: DateTimeFieldUpdateOperationsInput | Date | string
113287
- updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
113288
- }
113289
-
113290
- export type AuthModuleUncheckedUpdateWithoutUserInput = {
113291
- id?: StringFieldUpdateOperationsInput | string
113292
- provider?: EnumAuthProviderFieldUpdateOperationsInput | $Enums.AuthProvider
113293
- provider_account_id?: StringFieldUpdateOperationsInput | string
113294
- access_token?: NullableStringFieldUpdateOperationsInput | string | null
113295
- refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
113296
- id_token?: NullableStringFieldUpdateOperationsInput | string | null
113297
- expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
113298
- token_type?: NullableStringFieldUpdateOperationsInput | string | null
113299
- scope?: NullableStringFieldUpdateOperationsInput | string | null
113300
- created_at?: DateTimeFieldUpdateOperationsInput | Date | string
113301
- updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
113302
- }
113303
-
113304
- export type AuthModuleUncheckedUpdateManyWithoutUserInput = {
113305
- id?: StringFieldUpdateOperationsInput | string
113306
- provider?: EnumAuthProviderFieldUpdateOperationsInput | $Enums.AuthProvider
113307
- provider_account_id?: StringFieldUpdateOperationsInput | string
113308
- access_token?: NullableStringFieldUpdateOperationsInput | string | null
113309
- refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
113310
- id_token?: NullableStringFieldUpdateOperationsInput | string | null
113311
- expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
113312
- token_type?: NullableStringFieldUpdateOperationsInput | string | null
113313
- scope?: NullableStringFieldUpdateOperationsInput | string | null
113314
- created_at?: DateTimeFieldUpdateOperationsInput | Date | string
113315
- updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
113316
- }
113317
-
113318
111201
 
113319
111202
 
113320
111203
  /**