@adaptware/eagles-db 0.5.40 → 0.5.41

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.
Files changed (65) hide show
  1. package/client/edge.js +21 -15
  2. package/client/index-browser.js +14 -9
  3. package/client/index.d.ts +248 -1046
  4. package/client/index.js +26 -20
  5. package/client/package.json +1 -1
  6. package/client/schema.prisma +80 -68
  7. package/client/wasm.js +21 -15
  8. package/package.json +1 -1
  9. package/prisma/schema/applications.prisma +29 -34
  10. package/prisma/schema/assessmentLibrary.prisma +2 -0
  11. package/prisma/schema/document.prisma +0 -1
  12. package/prisma/schema/evaluationPlan.prisma +9 -0
  13. package/prisma/schema/jobApplicationFields.prisma +15 -19
  14. package/prisma/schema/jobApplicationResponse.prisma +5 -7
  15. package/prisma/schema/migrations/20260522120000_ongoing_evaluation_record_kind/migration.sql +25 -0
  16. package/prisma/schema/migrations/20260523120000_replace_record_kind_with_is_committed/migration.sql +24 -0
  17. package/prisma/schema/migrations/20260528120000_drop_job_description_recommendation_config/migration.sql +2 -0
  18. package/prisma/schema/migrations/20260710120000_add_resume_rendered_export_fields/migration.sql +9 -0
  19. package/prisma/schema/migrations/20260714120000_add_job_description_display_html_document/migration.sql +8 -0
  20. package/prisma/schema/migrations/20260716120000_add_offer_letters/migration.sql +183 -0
  21. package/prisma/schema/migrations/20260716140000_offer_schema_refinements/migration.sql +13 -0
  22. package/prisma/schema/migrations/20260716160000_offer_schema_hardening/migration.sql +95 -0
  23. package/prisma/schema/migrations/20260716180000_offer_letter_template_config/migration.sql +2 -0
  24. package/prisma/schema/migrations/20260716190000_add_evaluation_focus_areas/migration.sql +6 -0
  25. package/prisma/schema/migrations/20260717120000_offer_workflow_approval/migration.sql +30 -0
  26. package/prisma/schema/migrations/20260720120000_offer_letter_template_is_draft/migration.sql +5 -0
  27. package/prisma/schema/migrations/20260720140000_offer_status_split/migration.sql +51 -0
  28. package/prisma/schema/migrations/20260720140001_offer_status_split_backfill/migration.sql +37 -0
  29. package/prisma/schema/migrations/20260722120000_offer_draft_edited_html/migration.sql +13 -0
  30. package/prisma/schema/migrations/20260723150000_offer_withdraw_actor_no_show_reason/migration.sql +10 -0
  31. package/prisma/schema/migrations/20260724120000_open_job_offer_accepted_declined_counts/migration.sql +7 -0
  32. package/prisma/schema/migrations/20260811120000_add_integration_provider_razorpay/migration.sql +6 -0
  33. package/prisma/schema/migrations/20260812120000_add_billing_transactions/migration.sql +49 -0
  34. package/prisma/schema/migrations/20260812130000_drop_billing_transaction_gst_snapshots/migration.sql +3 -0
  35. package/prisma/schema/migrations/20260812180000_billing_transaction_invoice_number/migration.sql +5 -0
  36. package/prisma/schema/migrations/20260813120000_payment_webhooks_gst_refunds/migration.sql +79 -0
  37. package/prisma/schema/migrations/20260813140000_platform_gst_profiles/migration.sql +49 -0
  38. package/prisma/schema/migrations/20260813150000_rename_gst_profiles/migration.sql +53 -0
  39. package/prisma/schema/migrations/20260813160000_remove_gst_billing/migration.sql +16 -0
  40. package/prisma/schema/migrations/20260813170000_billing_licensing_unrecoverable/migration.sql +2 -0
  41. package/prisma/schema/migrations/20260813180000_billing_transaction_payment_method/migration.sql +2 -0
  42. package/prisma/schema/migrations/20260814090000_billing_transaction_purchaser_email/migration.sql +2 -0
  43. package/prisma/schema/migrations/20260816100000_billing_product_organisations/migration.sql +35 -0
  44. package/prisma/schema/migrations/20260816120000_merge_billing_product_organisations/migration.sql +25 -0
  45. package/prisma/schema/migrations/20260817120000_billing_payment_mismatch/migration.sql +7 -0
  46. package/prisma/schema/migrations/20260819120000_billing_product_prices/migration.sql +62 -0
  47. package/prisma/schema/migrations/20260819140000_billing_exchange_rates/migration.sql +25 -0
  48. package/prisma/schema/migrations/20260820120000_billing_transaction_failure_category/migration.sql +31 -0
  49. package/prisma/schema/migrations/20260820130000_backfill_billing_transaction_failure_details/migration.sql +23 -0
  50. package/prisma/schema/migrations/20260820140000_drop_billing_product_price_overrides/migration.sql +2 -0
  51. package/prisma/schema/migrations/20260821120000_drop_billing_product_and_mock_licensing/migration.sql +38 -0
  52. package/prisma/schema/migrations/20260824120000_billing_transaction_purchase_display_name/migration.sql +2 -0
  53. package/prisma/schema/migrations/20260831120000_user_communication_email/migration.sql +6 -0
  54. package/prisma/schema/migrations/20260901143000_assessment_question_bank_state/migration.sql +15 -0
  55. package/prisma/schema/migrations/20260902120000_question_category_two_values/migration.sql +16 -0
  56. package/prisma/schema/migrations/20260902143000_question_bank_item_key/migration.sql +17 -0
  57. package/prisma/schema/migrations/20260903120000_split_round_type_assessment/migration.sql +9 -0
  58. package/prisma/schema/migrations/20260904110000_restore_round_type_assessment_enum/migration.sql +5 -0
  59. package/prisma/schema/migrations/20260904120000_revert_wrong_split_assessment_round_types/migration.sql +42 -0
  60. package/prisma/schema/questions.prisma +13 -0
  61. package/prisma/.DS_Store +0 -0
  62. package/prisma/schema/.DS_Store +0 -0
  63. package/prisma/schema/migrations/.DS_Store +0 -0
  64. package/prisma/schema/migrations/20260826160000_add_application_fit_check_report_document/.DS_Store +0 -0
  65. package/prisma/schema/migrations/20260826160000_add_application_fit_check_report_document/migration.sql +0 -13
package/client/index.d.ts CHANGED
@@ -865,6 +865,8 @@ export type CriteriaScope = (typeof CriteriaScope)[keyof typeof CriteriaScope]
865
865
 
866
866
  export const RoundType: {
867
867
  ASSESSMENT: 'ASSESSMENT',
868
+ GENERAL_APTITUDE_ASSESSMENT: 'GENERAL_APTITUDE_ASSESSMENT',
869
+ DOMAIN_KNOWLEDGE_ASSESSMENT: 'DOMAIN_KNOWLEDGE_ASSESSMENT',
868
870
  INTERVIEW: 'INTERVIEW',
869
871
  ASSIGNMENT: 'ASSIGNMENT',
870
872
  SCREENING: 'SCREENING'
@@ -1313,6 +1315,14 @@ export const Difficulty: {
1313
1315
  export type Difficulty = (typeof Difficulty)[keyof typeof Difficulty]
1314
1316
 
1315
1317
 
1318
+ export const QuestionCategory: {
1319
+ GENERAL_APTITUDE: 'GENERAL_APTITUDE',
1320
+ DOMAIN_KNOWLEDGE: 'DOMAIN_KNOWLEDGE'
1321
+ };
1322
+
1323
+ export type QuestionCategory = (typeof QuestionCategory)[keyof typeof QuestionCategory]
1324
+
1325
+
1316
1326
  export const OpenJobClosureType: {
1317
1327
  FILLED: 'FILLED',
1318
1328
  CANCELLED: 'CANCELLED'
@@ -1660,6 +1670,10 @@ export type Difficulty = $Enums.Difficulty
1660
1670
 
1661
1671
  export const Difficulty: typeof $Enums.Difficulty
1662
1672
 
1673
+ export type QuestionCategory = $Enums.QuestionCategory
1674
+
1675
+ export const QuestionCategory: typeof $Enums.QuestionCategory
1676
+
1663
1677
  export type OpenJobClosureType = $Enums.OpenJobClosureType
1664
1678
 
1665
1679
  export const OpenJobClosureType: typeof $Enums.OpenJobClosureType
@@ -22208,8 +22222,6 @@ export namespace Prisma {
22208
22222
  created_by: string | null
22209
22223
  updated_by: string | null
22210
22224
  is_active: boolean | null
22211
- fit_check_report_document_id: string | null
22212
- fit_check_report_updated_flag: boolean | null
22213
22225
  }
22214
22226
 
22215
22227
  export type ApplicationMaxAggregateOutputType = {
@@ -22242,8 +22254,6 @@ export namespace Prisma {
22242
22254
  created_by: string | null
22243
22255
  updated_by: string | null
22244
22256
  is_active: boolean | null
22245
- fit_check_report_document_id: string | null
22246
- fit_check_report_updated_flag: boolean | null
22247
22257
  }
22248
22258
 
22249
22259
  export type ApplicationCountAggregateOutputType = {
@@ -22276,9 +22286,6 @@ export namespace Prisma {
22276
22286
  created_by: number
22277
22287
  updated_by: number
22278
22288
  is_active: number
22279
- fit_check_report_document_id: number
22280
- fit_check_report_updated_flag: number
22281
- fit_check_report_data: number
22282
22289
  _all: number
22283
22290
  }
22284
22291
 
@@ -22323,8 +22330,6 @@ export namespace Prisma {
22323
22330
  created_by?: true
22324
22331
  updated_by?: true
22325
22332
  is_active?: true
22326
- fit_check_report_document_id?: true
22327
- fit_check_report_updated_flag?: true
22328
22333
  }
22329
22334
 
22330
22335
  export type ApplicationMaxAggregateInputType = {
@@ -22357,8 +22362,6 @@ export namespace Prisma {
22357
22362
  created_by?: true
22358
22363
  updated_by?: true
22359
22364
  is_active?: true
22360
- fit_check_report_document_id?: true
22361
- fit_check_report_updated_flag?: true
22362
22365
  }
22363
22366
 
22364
22367
  export type ApplicationCountAggregateInputType = {
@@ -22391,9 +22394,6 @@ export namespace Prisma {
22391
22394
  created_by?: true
22392
22395
  updated_by?: true
22393
22396
  is_active?: true
22394
- fit_check_report_document_id?: true
22395
- fit_check_report_updated_flag?: true
22396
- fit_check_report_data?: true
22397
22397
  _all?: true
22398
22398
  }
22399
22399
 
@@ -22513,9 +22513,6 @@ export namespace Prisma {
22513
22513
  created_by: string
22514
22514
  updated_by: string
22515
22515
  is_active: boolean
22516
- fit_check_report_document_id: string | null
22517
- fit_check_report_updated_flag: boolean
22518
- fit_check_report_data: JsonValue | null
22519
22516
  _count: ApplicationCountAggregateOutputType | null
22520
22517
  _avg: ApplicationAvgAggregateOutputType | null
22521
22518
  _sum: ApplicationSumAggregateOutputType | null
@@ -22567,9 +22564,6 @@ export namespace Prisma {
22567
22564
  created_by?: boolean
22568
22565
  updated_by?: boolean
22569
22566
  is_active?: boolean
22570
- fit_check_report_document_id?: boolean
22571
- fit_check_report_updated_flag?: boolean
22572
- fit_check_report_data?: boolean
22573
22567
  evaluation_plan?: boolean | Application$evaluation_planArgs<ExtArgs>
22574
22568
  candidate?: boolean | UserDefaultArgs<ExtArgs>
22575
22569
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
@@ -22587,7 +22581,6 @@ export namespace Prisma {
22587
22581
  communication_messages?: boolean | Application$communication_messagesArgs<ExtArgs>
22588
22582
  job_application_responses?: boolean | Application$job_application_responsesArgs<ExtArgs>
22589
22583
  offer?: boolean | Application$offerArgs<ExtArgs>
22590
- fit_check_report_document?: boolean | Application$fit_check_report_documentArgs<ExtArgs>
22591
22584
  _count?: boolean | ApplicationCountOutputTypeDefaultArgs<ExtArgs>
22592
22585
  }, ExtArgs["result"]["application"]>
22593
22586
 
@@ -22621,9 +22614,6 @@ export namespace Prisma {
22621
22614
  created_by?: boolean
22622
22615
  updated_by?: boolean
22623
22616
  is_active?: boolean
22624
- fit_check_report_document_id?: boolean
22625
- fit_check_report_updated_flag?: boolean
22626
- fit_check_report_data?: boolean
22627
22617
  evaluation_plan?: boolean | Application$evaluation_planArgs<ExtArgs>
22628
22618
  candidate?: boolean | UserDefaultArgs<ExtArgs>
22629
22619
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
@@ -22631,7 +22621,6 @@ export namespace Prisma {
22631
22621
  job_description?: boolean | JobDescriptionDefaultArgs<ExtArgs>
22632
22622
  recruiter?: boolean | Application$recruiterArgs<ExtArgs>
22633
22623
  source?: boolean | Application$sourceArgs<ExtArgs>
22634
- fit_check_report_document?: boolean | Application$fit_check_report_documentArgs<ExtArgs>
22635
22624
  }, ExtArgs["result"]["application"]>
22636
22625
 
22637
22626
  export type ApplicationSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
@@ -22664,9 +22653,6 @@ export namespace Prisma {
22664
22653
  created_by?: boolean
22665
22654
  updated_by?: boolean
22666
22655
  is_active?: boolean
22667
- fit_check_report_document_id?: boolean
22668
- fit_check_report_updated_flag?: boolean
22669
- fit_check_report_data?: boolean
22670
22656
  evaluation_plan?: boolean | Application$evaluation_planArgs<ExtArgs>
22671
22657
  candidate?: boolean | UserDefaultArgs<ExtArgs>
22672
22658
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
@@ -22674,7 +22660,6 @@ export namespace Prisma {
22674
22660
  job_description?: boolean | JobDescriptionDefaultArgs<ExtArgs>
22675
22661
  recruiter?: boolean | Application$recruiterArgs<ExtArgs>
22676
22662
  source?: boolean | Application$sourceArgs<ExtArgs>
22677
- fit_check_report_document?: boolean | Application$fit_check_report_documentArgs<ExtArgs>
22678
22663
  }, ExtArgs["result"]["application"]>
22679
22664
 
22680
22665
  export type ApplicationSelectScalar = {
@@ -22707,12 +22692,9 @@ export namespace Prisma {
22707
22692
  created_by?: boolean
22708
22693
  updated_by?: boolean
22709
22694
  is_active?: boolean
22710
- fit_check_report_document_id?: boolean
22711
- fit_check_report_updated_flag?: boolean
22712
- fit_check_report_data?: boolean
22713
22695
  }
22714
22696
 
22715
- export type ApplicationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "candidate_id" | "resume_id" | "job_description_id" | "evaluation_plan_id" | "recruiter_id" | "source_id" | "fit_check_score" | "applied_at" | "round_no" | "is_jaf_completed" | "proceed_to_next_round" | "evaluationComment" | "is_flagged" | "flag_comment" | "flagged_at" | "flagged_by" | "unflag_comment" | "unflagged_at" | "unflagged_by" | "fit_check_status" | "status" | "offer_substatus" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "fit_check_report_document_id" | "fit_check_report_updated_flag" | "fit_check_report_data", ExtArgs["result"]["application"]>
22697
+ export type ApplicationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "candidate_id" | "resume_id" | "job_description_id" | "evaluation_plan_id" | "recruiter_id" | "source_id" | "fit_check_score" | "applied_at" | "round_no" | "is_jaf_completed" | "proceed_to_next_round" | "evaluationComment" | "is_flagged" | "flag_comment" | "flagged_at" | "flagged_by" | "unflag_comment" | "unflagged_at" | "unflagged_by" | "fit_check_status" | "status" | "offer_substatus" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["application"]>
22716
22698
  export type ApplicationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
22717
22699
  evaluation_plan?: boolean | Application$evaluation_planArgs<ExtArgs>
22718
22700
  candidate?: boolean | UserDefaultArgs<ExtArgs>
@@ -22731,7 +22713,6 @@ export namespace Prisma {
22731
22713
  communication_messages?: boolean | Application$communication_messagesArgs<ExtArgs>
22732
22714
  job_application_responses?: boolean | Application$job_application_responsesArgs<ExtArgs>
22733
22715
  offer?: boolean | Application$offerArgs<ExtArgs>
22734
- fit_check_report_document?: boolean | Application$fit_check_report_documentArgs<ExtArgs>
22735
22716
  _count?: boolean | ApplicationCountOutputTypeDefaultArgs<ExtArgs>
22736
22717
  }
22737
22718
  export type ApplicationIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -22742,7 +22723,6 @@ export namespace Prisma {
22742
22723
  job_description?: boolean | JobDescriptionDefaultArgs<ExtArgs>
22743
22724
  recruiter?: boolean | Application$recruiterArgs<ExtArgs>
22744
22725
  source?: boolean | Application$sourceArgs<ExtArgs>
22745
- fit_check_report_document?: boolean | Application$fit_check_report_documentArgs<ExtArgs>
22746
22726
  }
22747
22727
  export type ApplicationIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
22748
22728
  evaluation_plan?: boolean | Application$evaluation_planArgs<ExtArgs>
@@ -22752,7 +22732,6 @@ export namespace Prisma {
22752
22732
  job_description?: boolean | JobDescriptionDefaultArgs<ExtArgs>
22753
22733
  recruiter?: boolean | Application$recruiterArgs<ExtArgs>
22754
22734
  source?: boolean | Application$sourceArgs<ExtArgs>
22755
- fit_check_report_document?: boolean | Application$fit_check_report_documentArgs<ExtArgs>
22756
22735
  }
22757
22736
 
22758
22737
  export type $ApplicationPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -22778,7 +22757,6 @@ export namespace Prisma {
22778
22757
  communication_messages: Prisma.$CommunicationMessagePayload<ExtArgs>[]
22779
22758
  job_application_responses: Prisma.$JobApplicationResponsePayload<ExtArgs>[]
22780
22759
  offer: Prisma.$OfferPayload<ExtArgs> | null
22781
- fit_check_report_document: Prisma.$DocumentPayload<ExtArgs> | null
22782
22760
  }
22783
22761
  scalars: $Extensions.GetPayloadResult<{
22784
22762
  /**
@@ -22828,9 +22806,6 @@ export namespace Prisma {
22828
22806
  created_by: string
22829
22807
  updated_by: string
22830
22808
  is_active: boolean
22831
- fit_check_report_document_id: string | null
22832
- fit_check_report_updated_flag: boolean
22833
- fit_check_report_data: Prisma.JsonValue | null
22834
22809
  }, ExtArgs["result"]["application"]>
22835
22810
  composites: {}
22836
22811
  }
@@ -23242,7 +23217,6 @@ export namespace Prisma {
23242
23217
  communication_messages<T extends Application$communication_messagesArgs<ExtArgs> = {}>(args?: Subset<T, Application$communication_messagesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CommunicationMessagePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
23243
23218
  job_application_responses<T extends Application$job_application_responsesArgs<ExtArgs> = {}>(args?: Subset<T, Application$job_application_responsesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$JobApplicationResponsePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
23244
23219
  offer<T extends Application$offerArgs<ExtArgs> = {}>(args?: Subset<T, Application$offerArgs<ExtArgs>>): Prisma__OfferClient<$Result.GetResult<Prisma.$OfferPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
23245
- fit_check_report_document<T extends Application$fit_check_report_documentArgs<ExtArgs> = {}>(args?: Subset<T, Application$fit_check_report_documentArgs<ExtArgs>>): Prisma__DocumentClient<$Result.GetResult<Prisma.$DocumentPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
23246
23220
  /**
23247
23221
  * Attaches callbacks for the resolution and/or rejection of the Promise.
23248
23222
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -23301,9 +23275,6 @@ export namespace Prisma {
23301
23275
  readonly created_by: FieldRef<"Application", 'String'>
23302
23276
  readonly updated_by: FieldRef<"Application", 'String'>
23303
23277
  readonly is_active: FieldRef<"Application", 'Boolean'>
23304
- readonly fit_check_report_document_id: FieldRef<"Application", 'String'>
23305
- readonly fit_check_report_updated_flag: FieldRef<"Application", 'Boolean'>
23306
- readonly fit_check_report_data: FieldRef<"Application", 'Json'>
23307
23278
  }
23308
23279
 
23309
23280
 
@@ -23986,25 +23957,6 @@ export namespace Prisma {
23986
23957
  where?: OfferWhereInput
23987
23958
  }
23988
23959
 
23989
- /**
23990
- * Application.fit_check_report_document
23991
- */
23992
- export type Application$fit_check_report_documentArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
23993
- /**
23994
- * Select specific fields to fetch from the Document
23995
- */
23996
- select?: DocumentSelect<ExtArgs> | null
23997
- /**
23998
- * Omit specific fields from the Document
23999
- */
24000
- omit?: DocumentOmit<ExtArgs> | null
24001
- /**
24002
- * Choose, which related nodes to fetch as well
24003
- */
24004
- include?: DocumentInclude<ExtArgs> | null
24005
- where?: DocumentWhereInput
24006
- }
24007
-
24008
23960
  /**
24009
23961
  * Application without action
24010
23962
  */
@@ -26663,6 +26615,7 @@ export namespace Prisma {
26663
26615
  created_by: number
26664
26616
  updated_by: number
26665
26617
  is_active: number
26618
+ generation_state: number
26666
26619
  _all: number
26667
26620
  }
26668
26621
 
@@ -26719,6 +26672,7 @@ export namespace Prisma {
26719
26672
  created_by?: true
26720
26673
  updated_by?: true
26721
26674
  is_active?: true
26675
+ generation_state?: true
26722
26676
  _all?: true
26723
26677
  }
26724
26678
 
@@ -26820,6 +26774,7 @@ export namespace Prisma {
26820
26774
  created_by: string
26821
26775
  updated_by: string
26822
26776
  is_active: boolean
26777
+ generation_state: JsonValue | null
26823
26778
  _count: AssessmentLibraryCountAggregateOutputType | null
26824
26779
  _avg: AssessmentLibraryAvgAggregateOutputType | null
26825
26780
  _sum: AssessmentLibrarySumAggregateOutputType | null
@@ -26853,6 +26808,7 @@ export namespace Prisma {
26853
26808
  created_by?: boolean
26854
26809
  updated_by?: boolean
26855
26810
  is_active?: boolean
26811
+ generation_state?: boolean
26856
26812
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
26857
26813
  questions?: boolean | AssessmentLibrary$questionsArgs<ExtArgs>
26858
26814
  assessments?: boolean | AssessmentLibrary$assessmentsArgs<ExtArgs>
@@ -26872,6 +26828,7 @@ export namespace Prisma {
26872
26828
  created_by?: boolean
26873
26829
  updated_by?: boolean
26874
26830
  is_active?: boolean
26831
+ generation_state?: boolean
26875
26832
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
26876
26833
  }, ExtArgs["result"]["assessmentLibrary"]>
26877
26834
 
@@ -26887,6 +26844,7 @@ export namespace Prisma {
26887
26844
  created_by?: boolean
26888
26845
  updated_by?: boolean
26889
26846
  is_active?: boolean
26847
+ generation_state?: boolean
26890
26848
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
26891
26849
  }, ExtArgs["result"]["assessmentLibrary"]>
26892
26850
 
@@ -26902,9 +26860,10 @@ export namespace Prisma {
26902
26860
  created_by?: boolean
26903
26861
  updated_by?: boolean
26904
26862
  is_active?: boolean
26863
+ generation_state?: boolean
26905
26864
  }
26906
26865
 
26907
- export type AssessmentLibraryOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "title" | "time_required" | "passing_score" | "max_score" | "organisation_id" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["assessmentLibrary"]>
26866
+ export type AssessmentLibraryOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "title" | "time_required" | "passing_score" | "max_score" | "organisation_id" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "generation_state", ExtArgs["result"]["assessmentLibrary"]>
26908
26867
  export type AssessmentLibraryInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
26909
26868
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
26910
26869
  questions?: boolean | AssessmentLibrary$questionsArgs<ExtArgs>
@@ -26939,6 +26898,10 @@ export namespace Prisma {
26939
26898
  created_by: string
26940
26899
  updated_by: string
26941
26900
  is_active: boolean
26901
+ /**
26902
+ * Frozen question plan, batch cursor, and bank-generation status (JSON).
26903
+ */
26904
+ generation_state: Prisma.JsonValue | null
26942
26905
  }, ExtArgs["result"]["assessmentLibrary"]>
26943
26906
  composites: {}
26944
26907
  }
@@ -27377,6 +27340,7 @@ export namespace Prisma {
27377
27340
  readonly created_by: FieldRef<"AssessmentLibrary", 'String'>
27378
27341
  readonly updated_by: FieldRef<"AssessmentLibrary", 'String'>
27379
27342
  readonly is_active: FieldRef<"AssessmentLibrary", 'Boolean'>
27343
+ readonly generation_state: FieldRef<"AssessmentLibrary", 'Json'>
27380
27344
  }
27381
27345
 
27382
27346
 
@@ -52715,7 +52679,6 @@ export namespace Prisma {
52715
52679
  offer_letters?: boolean | Document$offer_lettersArgs<ExtArgs>
52716
52680
  offer_letter_template_snapshots?: boolean | Document$offer_letter_template_snapshotsArgs<ExtArgs>
52717
52681
  offer_draft_edited_html?: boolean | Document$offer_draft_edited_htmlArgs<ExtArgs>
52718
- application_fit_check_report?: boolean | Document$application_fit_check_reportArgs<ExtArgs>
52719
52682
  _count?: boolean | DocumentCountOutputTypeDefaultArgs<ExtArgs>
52720
52683
  }, ExtArgs["result"]["document"]>
52721
52684
 
@@ -52801,7 +52764,6 @@ export namespace Prisma {
52801
52764
  offer_letters?: boolean | Document$offer_lettersArgs<ExtArgs>
52802
52765
  offer_letter_template_snapshots?: boolean | Document$offer_letter_template_snapshotsArgs<ExtArgs>
52803
52766
  offer_draft_edited_html?: boolean | Document$offer_draft_edited_htmlArgs<ExtArgs>
52804
- application_fit_check_report?: boolean | Document$application_fit_check_reportArgs<ExtArgs>
52805
52767
  _count?: boolean | DocumentCountOutputTypeDefaultArgs<ExtArgs>
52806
52768
  }
52807
52769
  export type DocumentIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -52832,7 +52794,6 @@ export namespace Prisma {
52832
52794
  offer_letters: Prisma.$OfferLetterPayload<ExtArgs>[]
52833
52795
  offer_letter_template_snapshots: Prisma.$OfferLetterPayload<ExtArgs>[]
52834
52796
  offer_draft_edited_html: Prisma.$OfferPayload<ExtArgs>[]
52835
- application_fit_check_report: Prisma.$ApplicationPayload<ExtArgs> | null
52836
52797
  }
52837
52798
  scalars: $Extensions.GetPayloadResult<{
52838
52799
  id: string
@@ -53262,7 +53223,6 @@ export namespace Prisma {
53262
53223
  offer_letters<T extends Document$offer_lettersArgs<ExtArgs> = {}>(args?: Subset<T, Document$offer_lettersArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$OfferLetterPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
53263
53224
  offer_letter_template_snapshots<T extends Document$offer_letter_template_snapshotsArgs<ExtArgs> = {}>(args?: Subset<T, Document$offer_letter_template_snapshotsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$OfferLetterPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
53264
53225
  offer_draft_edited_html<T extends Document$offer_draft_edited_htmlArgs<ExtArgs> = {}>(args?: Subset<T, Document$offer_draft_edited_htmlArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$OfferPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
53265
- application_fit_check_report<T extends Document$application_fit_check_reportArgs<ExtArgs> = {}>(args?: Subset<T, Document$application_fit_check_reportArgs<ExtArgs>>): Prisma__ApplicationClient<$Result.GetResult<Prisma.$ApplicationPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
53266
53226
  /**
53267
53227
  * Attaches callbacks for the resolution and/or rejection of the Promise.
53268
53228
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -54038,25 +53998,6 @@ export namespace Prisma {
54038
53998
  distinct?: OfferScalarFieldEnum | OfferScalarFieldEnum[]
54039
53999
  }
54040
54000
 
54041
- /**
54042
- * Document.application_fit_check_report
54043
- */
54044
- export type Document$application_fit_check_reportArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
54045
- /**
54046
- * Select specific fields to fetch from the Application
54047
- */
54048
- select?: ApplicationSelect<ExtArgs> | null
54049
- /**
54050
- * Omit specific fields from the Application
54051
- */
54052
- omit?: ApplicationOmit<ExtArgs> | null
54053
- /**
54054
- * Choose, which related nodes to fetch as well
54055
- */
54056
- include?: ApplicationInclude<ExtArgs> | null
54057
- where?: ApplicationWhereInput
54058
- }
54059
-
54060
54001
  /**
54061
54002
  * Document without action
54062
54003
  */
@@ -80599,20 +80540,10 @@ export namespace Prisma {
80599
80540
 
80600
80541
  export type AggregateJobApplicationField = {
80601
80542
  _count: JobApplicationFieldCountAggregateOutputType | null
80602
- _avg: JobApplicationFieldAvgAggregateOutputType | null
80603
- _sum: JobApplicationFieldSumAggregateOutputType | null
80604
80543
  _min: JobApplicationFieldMinAggregateOutputType | null
80605
80544
  _max: JobApplicationFieldMaxAggregateOutputType | null
80606
80545
  }
80607
80546
 
80608
- export type JobApplicationFieldAvgAggregateOutputType = {
80609
- order_no: number | null
80610
- }
80611
-
80612
- export type JobApplicationFieldSumAggregateOutputType = {
80613
- order_no: number | null
80614
- }
80615
-
80616
80547
  export type JobApplicationFieldMinAggregateOutputType = {
80617
80548
  id: string | null
80618
80549
  organisation_id: string | null
@@ -80627,7 +80558,6 @@ export namespace Prisma {
80627
80558
  updated_by: string | null
80628
80559
  created_at: Date | null
80629
80560
  updated_at: Date | null
80630
- order_no: number | null
80631
80561
  }
80632
80562
 
80633
80563
  export type JobApplicationFieldMaxAggregateOutputType = {
@@ -80644,7 +80574,6 @@ export namespace Prisma {
80644
80574
  updated_by: string | null
80645
80575
  created_at: Date | null
80646
80576
  updated_at: Date | null
80647
- order_no: number | null
80648
80577
  }
80649
80578
 
80650
80579
  export type JobApplicationFieldCountAggregateOutputType = {
@@ -80662,19 +80591,10 @@ export namespace Prisma {
80662
80591
  updated_by: number
80663
80592
  created_at: number
80664
80593
  updated_at: number
80665
- order_no: number
80666
80594
  _all: number
80667
80595
  }
80668
80596
 
80669
80597
 
80670
- export type JobApplicationFieldAvgAggregateInputType = {
80671
- order_no?: true
80672
- }
80673
-
80674
- export type JobApplicationFieldSumAggregateInputType = {
80675
- order_no?: true
80676
- }
80677
-
80678
80598
  export type JobApplicationFieldMinAggregateInputType = {
80679
80599
  id?: true
80680
80600
  organisation_id?: true
@@ -80689,7 +80609,6 @@ export namespace Prisma {
80689
80609
  updated_by?: true
80690
80610
  created_at?: true
80691
80611
  updated_at?: true
80692
- order_no?: true
80693
80612
  }
80694
80613
 
80695
80614
  export type JobApplicationFieldMaxAggregateInputType = {
@@ -80706,7 +80625,6 @@ export namespace Prisma {
80706
80625
  updated_by?: true
80707
80626
  created_at?: true
80708
80627
  updated_at?: true
80709
- order_no?: true
80710
80628
  }
80711
80629
 
80712
80630
  export type JobApplicationFieldCountAggregateInputType = {
@@ -80724,7 +80642,6 @@ export namespace Prisma {
80724
80642
  updated_by?: true
80725
80643
  created_at?: true
80726
80644
  updated_at?: true
80727
- order_no?: true
80728
80645
  _all?: true
80729
80646
  }
80730
80647
 
@@ -80763,18 +80680,6 @@ export namespace Prisma {
80763
80680
  * Count returned JobApplicationFields
80764
80681
  **/
80765
80682
  _count?: true | JobApplicationFieldCountAggregateInputType
80766
- /**
80767
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
80768
- *
80769
- * Select which fields to average
80770
- **/
80771
- _avg?: JobApplicationFieldAvgAggregateInputType
80772
- /**
80773
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
80774
- *
80775
- * Select which fields to sum
80776
- **/
80777
- _sum?: JobApplicationFieldSumAggregateInputType
80778
80683
  /**
80779
80684
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
80780
80685
  *
@@ -80808,8 +80713,6 @@ export namespace Prisma {
80808
80713
  take?: number
80809
80714
  skip?: number
80810
80715
  _count?: JobApplicationFieldCountAggregateInputType | true
80811
- _avg?: JobApplicationFieldAvgAggregateInputType
80812
- _sum?: JobApplicationFieldSumAggregateInputType
80813
80716
  _min?: JobApplicationFieldMinAggregateInputType
80814
80717
  _max?: JobApplicationFieldMaxAggregateInputType
80815
80718
  }
@@ -80829,10 +80732,7 @@ export namespace Prisma {
80829
80732
  updated_by: string
80830
80733
  created_at: Date
80831
80734
  updated_at: Date
80832
- order_no: number | null
80833
80735
  _count: JobApplicationFieldCountAggregateOutputType | null
80834
- _avg: JobApplicationFieldAvgAggregateOutputType | null
80835
- _sum: JobApplicationFieldSumAggregateOutputType | null
80836
80736
  _min: JobApplicationFieldMinAggregateOutputType | null
80837
80737
  _max: JobApplicationFieldMaxAggregateOutputType | null
80838
80738
  }
@@ -80866,7 +80766,6 @@ export namespace Prisma {
80866
80766
  updated_by?: boolean
80867
80767
  created_at?: boolean
80868
80768
  updated_at?: boolean
80869
- order_no?: boolean
80870
80769
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
80871
80770
  job_application_template?: boolean | JobApplicationTemplateDefaultArgs<ExtArgs>
80872
80771
  job_application_responses?: boolean | JobApplicationField$job_application_responsesArgs<ExtArgs>
@@ -80888,7 +80787,6 @@ export namespace Prisma {
80888
80787
  updated_by?: boolean
80889
80788
  created_at?: boolean
80890
80789
  updated_at?: boolean
80891
- order_no?: boolean
80892
80790
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
80893
80791
  job_application_template?: boolean | JobApplicationTemplateDefaultArgs<ExtArgs>
80894
80792
  }, ExtArgs["result"]["jobApplicationField"]>
@@ -80908,7 +80806,6 @@ export namespace Prisma {
80908
80806
  updated_by?: boolean
80909
80807
  created_at?: boolean
80910
80808
  updated_at?: boolean
80911
- order_no?: boolean
80912
80809
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
80913
80810
  job_application_template?: boolean | JobApplicationTemplateDefaultArgs<ExtArgs>
80914
80811
  }, ExtArgs["result"]["jobApplicationField"]>
@@ -80928,10 +80825,9 @@ export namespace Prisma {
80928
80825
  updated_by?: boolean
80929
80826
  created_at?: boolean
80930
80827
  updated_at?: boolean
80931
- order_no?: boolean
80932
80828
  }
80933
80829
 
80934
- export type JobApplicationFieldOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "template_id" | "field_type" | "label" | "description" | "is_mandatory" | "is_draft" | "options" | "is_active" | "created_by" | "updated_by" | "created_at" | "updated_at" | "order_no", ExtArgs["result"]["jobApplicationField"]>
80830
+ export type JobApplicationFieldOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "template_id" | "field_type" | "label" | "description" | "is_mandatory" | "is_draft" | "options" | "is_active" | "created_by" | "updated_by" | "created_at" | "updated_at", ExtArgs["result"]["jobApplicationField"]>
80935
80831
  export type JobApplicationFieldInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
80936
80832
  organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
80937
80833
  job_application_template?: boolean | JobApplicationTemplateDefaultArgs<ExtArgs>
@@ -80984,10 +80880,6 @@ export namespace Prisma {
80984
80880
  updated_by: string
80985
80881
  created_at: Date
80986
80882
  updated_at: Date
80987
- /**
80988
- * order of question
80989
- */
80990
- order_no: number | null
80991
80883
  }, ExtArgs["result"]["jobApplicationField"]>
80992
80884
  composites: {}
80993
80885
  }
@@ -81428,7 +81320,6 @@ export namespace Prisma {
81428
81320
  readonly updated_by: FieldRef<"JobApplicationField", 'String'>
81429
81321
  readonly created_at: FieldRef<"JobApplicationField", 'DateTime'>
81430
81322
  readonly updated_at: FieldRef<"JobApplicationField", 'DateTime'>
81431
- readonly order_no: FieldRef<"JobApplicationField", 'Int'>
81432
81323
  }
81433
81324
 
81434
81325
 
@@ -81873,20 +81764,10 @@ export namespace Prisma {
81873
81764
 
81874
81765
  export type AggregateJobApplicationResponse = {
81875
81766
  _count: JobApplicationResponseCountAggregateOutputType | null
81876
- _avg: JobApplicationResponseAvgAggregateOutputType | null
81877
- _sum: JobApplicationResponseSumAggregateOutputType | null
81878
81767
  _min: JobApplicationResponseMinAggregateOutputType | null
81879
81768
  _max: JobApplicationResponseMaxAggregateOutputType | null
81880
81769
  }
81881
81770
 
81882
- export type JobApplicationResponseAvgAggregateOutputType = {
81883
- order_no: number | null
81884
- }
81885
-
81886
- export type JobApplicationResponseSumAggregateOutputType = {
81887
- order_no: number | null
81888
- }
81889
-
81890
81771
  export type JobApplicationResponseMinAggregateOutputType = {
81891
81772
  id: string | null
81892
81773
  application_id: string | null
@@ -81904,7 +81785,6 @@ export namespace Prisma {
81904
81785
  created_by: string | null
81905
81786
  updated_by: string | null
81906
81787
  is_active: boolean | null
81907
- order_no: number | null
81908
81788
  }
81909
81789
 
81910
81790
  export type JobApplicationResponseMaxAggregateOutputType = {
@@ -81924,7 +81804,6 @@ export namespace Prisma {
81924
81804
  created_by: string | null
81925
81805
  updated_by: string | null
81926
81806
  is_active: boolean | null
81927
- order_no: number | null
81928
81807
  }
81929
81808
 
81930
81809
  export type JobApplicationResponseCountAggregateOutputType = {
@@ -81946,19 +81825,10 @@ export namespace Prisma {
81946
81825
  created_by: number
81947
81826
  updated_by: number
81948
81827
  is_active: number
81949
- order_no: number
81950
81828
  _all: number
81951
81829
  }
81952
81830
 
81953
81831
 
81954
- export type JobApplicationResponseAvgAggregateInputType = {
81955
- order_no?: true
81956
- }
81957
-
81958
- export type JobApplicationResponseSumAggregateInputType = {
81959
- order_no?: true
81960
- }
81961
-
81962
81832
  export type JobApplicationResponseMinAggregateInputType = {
81963
81833
  id?: true
81964
81834
  application_id?: true
@@ -81976,7 +81846,6 @@ export namespace Prisma {
81976
81846
  created_by?: true
81977
81847
  updated_by?: true
81978
81848
  is_active?: true
81979
- order_no?: true
81980
81849
  }
81981
81850
 
81982
81851
  export type JobApplicationResponseMaxAggregateInputType = {
@@ -81996,7 +81865,6 @@ export namespace Prisma {
81996
81865
  created_by?: true
81997
81866
  updated_by?: true
81998
81867
  is_active?: true
81999
- order_no?: true
82000
81868
  }
82001
81869
 
82002
81870
  export type JobApplicationResponseCountAggregateInputType = {
@@ -82018,7 +81886,6 @@ export namespace Prisma {
82018
81886
  created_by?: true
82019
81887
  updated_by?: true
82020
81888
  is_active?: true
82021
- order_no?: true
82022
81889
  _all?: true
82023
81890
  }
82024
81891
 
@@ -82057,18 +81924,6 @@ export namespace Prisma {
82057
81924
  * Count returned JobApplicationResponses
82058
81925
  **/
82059
81926
  _count?: true | JobApplicationResponseCountAggregateInputType
82060
- /**
82061
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
82062
- *
82063
- * Select which fields to average
82064
- **/
82065
- _avg?: JobApplicationResponseAvgAggregateInputType
82066
- /**
82067
- * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
82068
- *
82069
- * Select which fields to sum
82070
- **/
82071
- _sum?: JobApplicationResponseSumAggregateInputType
82072
81927
  /**
82073
81928
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
82074
81929
  *
@@ -82102,8 +81957,6 @@ export namespace Prisma {
82102
81957
  take?: number
82103
81958
  skip?: number
82104
81959
  _count?: JobApplicationResponseCountAggregateInputType | true
82105
- _avg?: JobApplicationResponseAvgAggregateInputType
82106
- _sum?: JobApplicationResponseSumAggregateInputType
82107
81960
  _min?: JobApplicationResponseMinAggregateInputType
82108
81961
  _max?: JobApplicationResponseMaxAggregateInputType
82109
81962
  }
@@ -82127,10 +81980,7 @@ export namespace Prisma {
82127
81980
  created_by: string
82128
81981
  updated_by: string
82129
81982
  is_active: boolean
82130
- order_no: number | null
82131
81983
  _count: JobApplicationResponseCountAggregateOutputType | null
82132
- _avg: JobApplicationResponseAvgAggregateOutputType | null
82133
- _sum: JobApplicationResponseSumAggregateOutputType | null
82134
81984
  _min: JobApplicationResponseMinAggregateOutputType | null
82135
81985
  _max: JobApplicationResponseMaxAggregateOutputType | null
82136
81986
  }
@@ -82168,7 +82018,6 @@ export namespace Prisma {
82168
82018
  created_by?: boolean
82169
82019
  updated_by?: boolean
82170
82020
  is_active?: boolean
82171
- order_no?: boolean
82172
82021
  application?: boolean | ApplicationDefaultArgs<ExtArgs>
82173
82022
  field?: boolean | JobApplicationResponse$fieldArgs<ExtArgs>
82174
82023
  document?: boolean | JobApplicationResponse$documentArgs<ExtArgs>
@@ -82193,7 +82042,6 @@ export namespace Prisma {
82193
82042
  created_by?: boolean
82194
82043
  updated_by?: boolean
82195
82044
  is_active?: boolean
82196
- order_no?: boolean
82197
82045
  application?: boolean | ApplicationDefaultArgs<ExtArgs>
82198
82046
  field?: boolean | JobApplicationResponse$fieldArgs<ExtArgs>
82199
82047
  document?: boolean | JobApplicationResponse$documentArgs<ExtArgs>
@@ -82218,7 +82066,6 @@ export namespace Prisma {
82218
82066
  created_by?: boolean
82219
82067
  updated_by?: boolean
82220
82068
  is_active?: boolean
82221
- order_no?: boolean
82222
82069
  application?: boolean | ApplicationDefaultArgs<ExtArgs>
82223
82070
  field?: boolean | JobApplicationResponse$fieldArgs<ExtArgs>
82224
82071
  document?: boolean | JobApplicationResponse$documentArgs<ExtArgs>
@@ -82243,10 +82090,9 @@ export namespace Prisma {
82243
82090
  created_by?: boolean
82244
82091
  updated_by?: boolean
82245
82092
  is_active?: boolean
82246
- order_no?: boolean
82247
82093
  }
82248
82094
 
82249
- export type JobApplicationResponseOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "application_id" | "job_application_field_id" | "document_id" | "response" | "field_type" | "label" | "description" | "is_mandatory" | "is_draft" | "is_submitted" | "options" | "updated_by_organisation" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "order_no", ExtArgs["result"]["jobApplicationResponse"]>
82095
+ export type JobApplicationResponseOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "application_id" | "job_application_field_id" | "document_id" | "response" | "field_type" | "label" | "description" | "is_mandatory" | "is_draft" | "is_submitted" | "options" | "updated_by_organisation" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["jobApplicationResponse"]>
82250
82096
  export type JobApplicationResponseInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
82251
82097
  application?: boolean | ApplicationDefaultArgs<ExtArgs>
82252
82098
  field?: boolean | JobApplicationResponse$fieldArgs<ExtArgs>
@@ -82307,7 +82153,6 @@ export namespace Prisma {
82307
82153
  created_by: string
82308
82154
  updated_by: string
82309
82155
  is_active: boolean
82310
- order_no: number | null
82311
82156
  }, ExtArgs["result"]["jobApplicationResponse"]>
82312
82157
  composites: {}
82313
82158
  }
@@ -82752,7 +82597,6 @@ export namespace Prisma {
82752
82597
  readonly created_by: FieldRef<"JobApplicationResponse", 'String'>
82753
82598
  readonly updated_by: FieldRef<"JobApplicationResponse", 'String'>
82754
82599
  readonly is_active: FieldRef<"JobApplicationResponse", 'Boolean'>
82755
- readonly order_no: FieldRef<"JobApplicationResponse", 'Int'>
82756
82600
  }
82757
82601
 
82758
82602
 
@@ -122457,6 +122301,8 @@ export namespace Prisma {
122457
122301
  evaluation_plan_id: string | null
122458
122302
  candidate_id: string | null
122459
122303
  skill: string | null
122304
+ category: $Enums.QuestionCategory | null
122305
+ bank_item_key: string | null
122460
122306
  question: string | null
122461
122307
  answer: string | null
122462
122308
  max_score: number | null
@@ -122474,6 +122320,8 @@ export namespace Prisma {
122474
122320
  evaluation_plan_id: string | null
122475
122321
  candidate_id: string | null
122476
122322
  skill: string | null
122323
+ category: $Enums.QuestionCategory | null
122324
+ bank_item_key: string | null
122477
122325
  question: string | null
122478
122326
  answer: string | null
122479
122327
  max_score: number | null
@@ -122491,6 +122339,8 @@ export namespace Prisma {
122491
122339
  evaluation_plan_id: number
122492
122340
  candidate_id: number
122493
122341
  skill: number
122342
+ category: number
122343
+ bank_item_key: number
122494
122344
  question: number
122495
122345
  answer: number
122496
122346
  options: number
@@ -122519,6 +122369,8 @@ export namespace Prisma {
122519
122369
  evaluation_plan_id?: true
122520
122370
  candidate_id?: true
122521
122371
  skill?: true
122372
+ category?: true
122373
+ bank_item_key?: true
122522
122374
  question?: true
122523
122375
  answer?: true
122524
122376
  max_score?: true
@@ -122536,6 +122388,8 @@ export namespace Prisma {
122536
122388
  evaluation_plan_id?: true
122537
122389
  candidate_id?: true
122538
122390
  skill?: true
122391
+ category?: true
122392
+ bank_item_key?: true
122539
122393
  question?: true
122540
122394
  answer?: true
122541
122395
  max_score?: true
@@ -122553,6 +122407,8 @@ export namespace Prisma {
122553
122407
  evaluation_plan_id?: true
122554
122408
  candidate_id?: true
122555
122409
  skill?: true
122410
+ category?: true
122411
+ bank_item_key?: true
122556
122412
  question?: true
122557
122413
  answer?: true
122558
122414
  options?: true
@@ -122658,6 +122514,8 @@ export namespace Prisma {
122658
122514
  evaluation_plan_id: string | null
122659
122515
  candidate_id: string | null
122660
122516
  skill: string | null
122517
+ category: $Enums.QuestionCategory | null
122518
+ bank_item_key: string | null
122661
122519
  question: string
122662
122520
  answer: string
122663
122521
  options: string[]
@@ -122695,6 +122553,8 @@ export namespace Prisma {
122695
122553
  evaluation_plan_id?: boolean
122696
122554
  candidate_id?: boolean
122697
122555
  skill?: boolean
122556
+ category?: boolean
122557
+ bank_item_key?: boolean
122698
122558
  question?: boolean
122699
122559
  answer?: boolean
122700
122560
  options?: boolean
@@ -122719,6 +122579,8 @@ export namespace Prisma {
122719
122579
  evaluation_plan_id?: boolean
122720
122580
  candidate_id?: boolean
122721
122581
  skill?: boolean
122582
+ category?: boolean
122583
+ bank_item_key?: boolean
122722
122584
  question?: boolean
122723
122585
  answer?: boolean
122724
122586
  options?: boolean
@@ -122740,6 +122602,8 @@ export namespace Prisma {
122740
122602
  evaluation_plan_id?: boolean
122741
122603
  candidate_id?: boolean
122742
122604
  skill?: boolean
122605
+ category?: boolean
122606
+ bank_item_key?: boolean
122743
122607
  question?: boolean
122744
122608
  answer?: boolean
122745
122609
  options?: boolean
@@ -122761,6 +122625,8 @@ export namespace Prisma {
122761
122625
  evaluation_plan_id?: boolean
122762
122626
  candidate_id?: boolean
122763
122627
  skill?: boolean
122628
+ category?: boolean
122629
+ bank_item_key?: boolean
122764
122630
  question?: boolean
122765
122631
  answer?: boolean
122766
122632
  options?: boolean
@@ -122773,7 +122639,7 @@ export namespace Prisma {
122773
122639
  is_active?: boolean
122774
122640
  }
122775
122641
 
122776
- export type QuestionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "assessment_library_id" | "evaluation_plan_id" | "candidate_id" | "skill" | "question" | "answer" | "options" | "max_score" | "difficulty" | "created_by" | "updated_by" | "created_at" | "updated_at" | "is_active", ExtArgs["result"]["question"]>
122642
+ export type QuestionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "assessment_library_id" | "evaluation_plan_id" | "candidate_id" | "skill" | "category" | "bank_item_key" | "question" | "answer" | "options" | "max_score" | "difficulty" | "created_by" | "updated_by" | "created_at" | "updated_at" | "is_active", ExtArgs["result"]["question"]>
122777
122643
  export type QuestionInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
122778
122644
  candidate?: boolean | Question$candidateArgs<ExtArgs>
122779
122645
  assessments?: boolean | Question$assessmentsArgs<ExtArgs>
@@ -122808,6 +122674,11 @@ export namespace Prisma {
122808
122674
  evaluation_plan_id: string | null
122809
122675
  candidate_id: string | null
122810
122676
  skill: string | null
122677
+ category: $Enums.QuestionCategory | null
122678
+ /**
122679
+ * Stable idempotency key for reusable bank rows: `{generationSeed}:{planSlot}`.
122680
+ */
122681
+ bank_item_key: string | null
122811
122682
  question: string
122812
122683
  answer: string
122813
122684
  options: string[]
@@ -123251,6 +123122,8 @@ export namespace Prisma {
123251
123122
  readonly evaluation_plan_id: FieldRef<"Question", 'String'>
123252
123123
  readonly candidate_id: FieldRef<"Question", 'String'>
123253
123124
  readonly skill: FieldRef<"Question", 'String'>
123125
+ readonly category: FieldRef<"Question", 'QuestionCategory'>
123126
+ readonly bank_item_key: FieldRef<"Question", 'String'>
123254
123127
  readonly question: FieldRef<"Question", 'String'>
123255
123128
  readonly answer: FieldRef<"Question", 'String'>
123256
123129
  readonly options: FieldRef<"Question", 'String[]'>
@@ -150751,10 +150624,7 @@ export namespace Prisma {
150751
150624
  updated_at: 'updated_at',
150752
150625
  created_by: 'created_by',
150753
150626
  updated_by: 'updated_by',
150754
- is_active: 'is_active',
150755
- fit_check_report_document_id: 'fit_check_report_document_id',
150756
- fit_check_report_updated_flag: 'fit_check_report_updated_flag',
150757
- fit_check_report_data: 'fit_check_report_data'
150627
+ is_active: 'is_active'
150758
150628
  };
150759
150629
 
150760
150630
  export type ApplicationScalarFieldEnum = (typeof ApplicationScalarFieldEnum)[keyof typeof ApplicationScalarFieldEnum]
@@ -150811,7 +150681,8 @@ export namespace Prisma {
150811
150681
  updated_at: 'updated_at',
150812
150682
  created_by: 'created_by',
150813
150683
  updated_by: 'updated_by',
150814
- is_active: 'is_active'
150684
+ is_active: 'is_active',
150685
+ generation_state: 'generation_state'
150815
150686
  };
150816
150687
 
150817
150688
  export type AssessmentLibraryScalarFieldEnum = (typeof AssessmentLibraryScalarFieldEnum)[keyof typeof AssessmentLibraryScalarFieldEnum]
@@ -151871,8 +151742,7 @@ export namespace Prisma {
151871
151742
  created_by: 'created_by',
151872
151743
  updated_by: 'updated_by',
151873
151744
  created_at: 'created_at',
151874
- updated_at: 'updated_at',
151875
- order_no: 'order_no'
151745
+ updated_at: 'updated_at'
151876
151746
  };
151877
151747
 
151878
151748
  export type JobApplicationFieldScalarFieldEnum = (typeof JobApplicationFieldScalarFieldEnum)[keyof typeof JobApplicationFieldScalarFieldEnum]
@@ -151896,8 +151766,7 @@ export namespace Prisma {
151896
151766
  updated_at: 'updated_at',
151897
151767
  created_by: 'created_by',
151898
151768
  updated_by: 'updated_by',
151899
- is_active: 'is_active',
151900
- order_no: 'order_no'
151769
+ is_active: 'is_active'
151901
151770
  };
151902
151771
 
151903
151772
  export type JobApplicationResponseScalarFieldEnum = (typeof JobApplicationResponseScalarFieldEnum)[keyof typeof JobApplicationResponseScalarFieldEnum]
@@ -152607,6 +152476,8 @@ export namespace Prisma {
152607
152476
  evaluation_plan_id: 'evaluation_plan_id',
152608
152477
  candidate_id: 'candidate_id',
152609
152478
  skill: 'skill',
152479
+ category: 'category',
152480
+ bank_item_key: 'bank_item_key',
152610
152481
  question: 'question',
152611
152482
  answer: 'answer',
152612
152483
  options: 'options',
@@ -154171,6 +154042,20 @@ export namespace Prisma {
154171
154042
 
154172
154043
 
154173
154044
 
154045
+ /**
154046
+ * Reference to a field of type 'QuestionCategory'
154047
+ */
154048
+ export type EnumQuestionCategoryFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'QuestionCategory'>
154049
+
154050
+
154051
+
154052
+ /**
154053
+ * Reference to a field of type 'QuestionCategory[]'
154054
+ */
154055
+ export type ListEnumQuestionCategoryFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'QuestionCategory[]'>
154056
+
154057
+
154058
+
154174
154059
  /**
154175
154060
  * Reference to a field of type 'Difficulty'
154176
154061
  */
@@ -155088,9 +154973,6 @@ export namespace Prisma {
155088
154973
  created_by?: StringFilter<"Application"> | string
155089
154974
  updated_by?: StringFilter<"Application"> | string
155090
154975
  is_active?: BoolFilter<"Application"> | boolean
155091
- fit_check_report_document_id?: StringNullableFilter<"Application"> | string | null
155092
- fit_check_report_updated_flag?: BoolFilter<"Application"> | boolean
155093
- fit_check_report_data?: JsonNullableFilter<"Application">
155094
154976
  evaluation_plan?: XOR<EvaluationPlanNullableScalarRelationFilter, EvaluationPlanWhereInput> | null
155095
154977
  candidate?: XOR<UserScalarRelationFilter, UserWhereInput>
155096
154978
  organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
@@ -155108,7 +154990,6 @@ export namespace Prisma {
155108
154990
  communication_messages?: CommunicationMessageListRelationFilter
155109
154991
  job_application_responses?: JobApplicationResponseListRelationFilter
155110
154992
  offer?: XOR<OfferNullableScalarRelationFilter, OfferWhereInput> | null
155111
- fit_check_report_document?: XOR<DocumentNullableScalarRelationFilter, DocumentWhereInput> | null
155112
154993
  }
155113
154994
 
155114
154995
  export type ApplicationOrderByWithRelationInput = {
@@ -155141,9 +155022,6 @@ export namespace Prisma {
155141
155022
  created_by?: SortOrder
155142
155023
  updated_by?: SortOrder
155143
155024
  is_active?: SortOrder
155144
- fit_check_report_document_id?: SortOrderInput | SortOrder
155145
- fit_check_report_updated_flag?: SortOrder
155146
- fit_check_report_data?: SortOrderInput | SortOrder
155147
155025
  evaluation_plan?: EvaluationPlanOrderByWithRelationInput
155148
155026
  candidate?: UserOrderByWithRelationInput
155149
155027
  organisation?: OrganisationOrderByWithRelationInput
@@ -155161,12 +155039,10 @@ export namespace Prisma {
155161
155039
  communication_messages?: CommunicationMessageOrderByRelationAggregateInput
155162
155040
  job_application_responses?: JobApplicationResponseOrderByRelationAggregateInput
155163
155041
  offer?: OfferOrderByWithRelationInput
155164
- fit_check_report_document?: DocumentOrderByWithRelationInput
155165
155042
  }
155166
155043
 
155167
155044
  export type ApplicationWhereUniqueInput = Prisma.AtLeast<{
155168
155045
  id?: string
155169
- fit_check_report_document_id?: string
155170
155046
  candidate_id_job_description_id?: ApplicationCandidate_idJob_description_idCompoundUniqueInput
155171
155047
  AND?: ApplicationWhereInput | ApplicationWhereInput[]
155172
155048
  OR?: ApplicationWhereInput[]
@@ -155199,8 +155075,6 @@ export namespace Prisma {
155199
155075
  created_by?: StringFilter<"Application"> | string
155200
155076
  updated_by?: StringFilter<"Application"> | string
155201
155077
  is_active?: BoolFilter<"Application"> | boolean
155202
- fit_check_report_updated_flag?: BoolFilter<"Application"> | boolean
155203
- fit_check_report_data?: JsonNullableFilter<"Application">
155204
155078
  evaluation_plan?: XOR<EvaluationPlanNullableScalarRelationFilter, EvaluationPlanWhereInput> | null
155205
155079
  candidate?: XOR<UserScalarRelationFilter, UserWhereInput>
155206
155080
  organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
@@ -155218,8 +155092,7 @@ export namespace Prisma {
155218
155092
  communication_messages?: CommunicationMessageListRelationFilter
155219
155093
  job_application_responses?: JobApplicationResponseListRelationFilter
155220
155094
  offer?: XOR<OfferNullableScalarRelationFilter, OfferWhereInput> | null
155221
- fit_check_report_document?: XOR<DocumentNullableScalarRelationFilter, DocumentWhereInput> | null
155222
- }, "id" | "fit_check_report_document_id" | "candidate_id_job_description_id">
155095
+ }, "id" | "candidate_id_job_description_id">
155223
155096
 
155224
155097
  export type ApplicationOrderByWithAggregationInput = {
155225
155098
  id?: SortOrder
@@ -155251,9 +155124,6 @@ export namespace Prisma {
155251
155124
  created_by?: SortOrder
155252
155125
  updated_by?: SortOrder
155253
155126
  is_active?: SortOrder
155254
- fit_check_report_document_id?: SortOrderInput | SortOrder
155255
- fit_check_report_updated_flag?: SortOrder
155256
- fit_check_report_data?: SortOrderInput | SortOrder
155257
155127
  _count?: ApplicationCountOrderByAggregateInput
155258
155128
  _avg?: ApplicationAvgOrderByAggregateInput
155259
155129
  _max?: ApplicationMaxOrderByAggregateInput
@@ -155294,9 +155164,6 @@ export namespace Prisma {
155294
155164
  created_by?: StringWithAggregatesFilter<"Application"> | string
155295
155165
  updated_by?: StringWithAggregatesFilter<"Application"> | string
155296
155166
  is_active?: BoolWithAggregatesFilter<"Application"> | boolean
155297
- fit_check_report_document_id?: StringNullableWithAggregatesFilter<"Application"> | string | null
155298
- fit_check_report_updated_flag?: BoolWithAggregatesFilter<"Application"> | boolean
155299
- fit_check_report_data?: JsonNullableWithAggregatesFilter<"Application">
155300
155167
  }
155301
155168
 
155302
155169
  export type ApprovalWhereInput = {
@@ -155544,6 +155411,7 @@ export namespace Prisma {
155544
155411
  created_by?: StringFilter<"AssessmentLibrary"> | string
155545
155412
  updated_by?: StringFilter<"AssessmentLibrary"> | string
155546
155413
  is_active?: BoolFilter<"AssessmentLibrary"> | boolean
155414
+ generation_state?: JsonNullableFilter<"AssessmentLibrary">
155547
155415
  organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
155548
155416
  questions?: QuestionListRelationFilter
155549
155417
  assessments?: AssessmentListRelationFilter
@@ -155562,6 +155430,7 @@ export namespace Prisma {
155562
155430
  created_by?: SortOrder
155563
155431
  updated_by?: SortOrder
155564
155432
  is_active?: SortOrder
155433
+ generation_state?: SortOrderInput | SortOrder
155565
155434
  organisation?: OrganisationOrderByWithRelationInput
155566
155435
  questions?: QuestionOrderByRelationAggregateInput
155567
155436
  assessments?: AssessmentOrderByRelationAggregateInput
@@ -155583,6 +155452,7 @@ export namespace Prisma {
155583
155452
  created_by?: StringFilter<"AssessmentLibrary"> | string
155584
155453
  updated_by?: StringFilter<"AssessmentLibrary"> | string
155585
155454
  is_active?: BoolFilter<"AssessmentLibrary"> | boolean
155455
+ generation_state?: JsonNullableFilter<"AssessmentLibrary">
155586
155456
  organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
155587
155457
  questions?: QuestionListRelationFilter
155588
155458
  assessments?: AssessmentListRelationFilter
@@ -155601,6 +155471,7 @@ export namespace Prisma {
155601
155471
  created_by?: SortOrder
155602
155472
  updated_by?: SortOrder
155603
155473
  is_active?: SortOrder
155474
+ generation_state?: SortOrderInput | SortOrder
155604
155475
  _count?: AssessmentLibraryCountOrderByAggregateInput
155605
155476
  _avg?: AssessmentLibraryAvgOrderByAggregateInput
155606
155477
  _max?: AssessmentLibraryMaxOrderByAggregateInput
@@ -155623,6 +155494,7 @@ export namespace Prisma {
155623
155494
  created_by?: StringWithAggregatesFilter<"AssessmentLibrary"> | string
155624
155495
  updated_by?: StringWithAggregatesFilter<"AssessmentLibrary"> | string
155625
155496
  is_active?: BoolWithAggregatesFilter<"AssessmentLibrary"> | boolean
155497
+ generation_state?: JsonNullableWithAggregatesFilter<"AssessmentLibrary">
155626
155498
  }
155627
155499
 
155628
155500
  export type AssessmentQuestionWhereInput = {
@@ -158189,7 +158061,6 @@ export namespace Prisma {
158189
158061
  offer_letters?: OfferLetterListRelationFilter
158190
158062
  offer_letter_template_snapshots?: OfferLetterListRelationFilter
158191
158063
  offer_draft_edited_html?: OfferListRelationFilter
158192
- application_fit_check_report?: XOR<ApplicationNullableScalarRelationFilter, ApplicationWhereInput> | null
158193
158064
  }
158194
158065
 
158195
158066
  export type DocumentOrderByWithRelationInput = {
@@ -158226,7 +158097,6 @@ export namespace Prisma {
158226
158097
  offer_letters?: OfferLetterOrderByRelationAggregateInput
158227
158098
  offer_letter_template_snapshots?: OfferLetterOrderByRelationAggregateInput
158228
158099
  offer_draft_edited_html?: OfferOrderByRelationAggregateInput
158229
- application_fit_check_report?: ApplicationOrderByWithRelationInput
158230
158100
  }
158231
158101
 
158232
158102
  export type DocumentWhereUniqueInput = Prisma.AtLeast<{
@@ -158266,7 +158136,6 @@ export namespace Prisma {
158266
158136
  offer_letters?: OfferLetterListRelationFilter
158267
158137
  offer_letter_template_snapshots?: OfferLetterListRelationFilter
158268
158138
  offer_draft_edited_html?: OfferListRelationFilter
158269
- application_fit_check_report?: XOR<ApplicationNullableScalarRelationFilter, ApplicationWhereInput> | null
158270
158139
  }, "id">
158271
158140
 
158272
158141
  export type DocumentOrderByWithAggregationInput = {
@@ -161138,7 +161007,6 @@ export namespace Prisma {
161138
161007
  updated_by?: StringFilter<"JobApplicationField"> | string
161139
161008
  created_at?: DateTimeFilter<"JobApplicationField"> | Date | string
161140
161009
  updated_at?: DateTimeFilter<"JobApplicationField"> | Date | string
161141
- order_no?: IntNullableFilter<"JobApplicationField"> | number | null
161142
161010
  organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
161143
161011
  job_application_template?: XOR<JobApplicationTemplateScalarRelationFilter, JobApplicationTemplateWhereInput>
161144
161012
  job_application_responses?: JobApplicationResponseListRelationFilter
@@ -161159,7 +161027,6 @@ export namespace Prisma {
161159
161027
  updated_by?: SortOrder
161160
161028
  created_at?: SortOrder
161161
161029
  updated_at?: SortOrder
161162
- order_no?: SortOrderInput | SortOrder
161163
161030
  organisation?: OrganisationOrderByWithRelationInput
161164
161031
  job_application_template?: JobApplicationTemplateOrderByWithRelationInput
161165
161032
  job_application_responses?: JobApplicationResponseOrderByRelationAggregateInput
@@ -161183,7 +161050,6 @@ export namespace Prisma {
161183
161050
  updated_by?: StringFilter<"JobApplicationField"> | string
161184
161051
  created_at?: DateTimeFilter<"JobApplicationField"> | Date | string
161185
161052
  updated_at?: DateTimeFilter<"JobApplicationField"> | Date | string
161186
- order_no?: IntNullableFilter<"JobApplicationField"> | number | null
161187
161053
  organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
161188
161054
  job_application_template?: XOR<JobApplicationTemplateScalarRelationFilter, JobApplicationTemplateWhereInput>
161189
161055
  job_application_responses?: JobApplicationResponseListRelationFilter
@@ -161204,12 +161070,9 @@ export namespace Prisma {
161204
161070
  updated_by?: SortOrder
161205
161071
  created_at?: SortOrder
161206
161072
  updated_at?: SortOrder
161207
- order_no?: SortOrderInput | SortOrder
161208
161073
  _count?: JobApplicationFieldCountOrderByAggregateInput
161209
- _avg?: JobApplicationFieldAvgOrderByAggregateInput
161210
161074
  _max?: JobApplicationFieldMaxOrderByAggregateInput
161211
161075
  _min?: JobApplicationFieldMinOrderByAggregateInput
161212
- _sum?: JobApplicationFieldSumOrderByAggregateInput
161213
161076
  }
161214
161077
 
161215
161078
  export type JobApplicationFieldScalarWhereWithAggregatesInput = {
@@ -161230,7 +161093,6 @@ export namespace Prisma {
161230
161093
  updated_by?: StringWithAggregatesFilter<"JobApplicationField"> | string
161231
161094
  created_at?: DateTimeWithAggregatesFilter<"JobApplicationField"> | Date | string
161232
161095
  updated_at?: DateTimeWithAggregatesFilter<"JobApplicationField"> | Date | string
161233
- order_no?: IntNullableWithAggregatesFilter<"JobApplicationField"> | number | null
161234
161096
  }
161235
161097
 
161236
161098
  export type JobApplicationResponseWhereInput = {
@@ -161255,7 +161117,6 @@ export namespace Prisma {
161255
161117
  created_by?: StringFilter<"JobApplicationResponse"> | string
161256
161118
  updated_by?: StringFilter<"JobApplicationResponse"> | string
161257
161119
  is_active?: BoolFilter<"JobApplicationResponse"> | boolean
161258
- order_no?: IntNullableFilter<"JobApplicationResponse"> | number | null
161259
161120
  application?: XOR<ApplicationScalarRelationFilter, ApplicationWhereInput>
161260
161121
  field?: XOR<JobApplicationFieldNullableScalarRelationFilter, JobApplicationFieldWhereInput> | null
161261
161122
  document?: XOR<DocumentNullableScalarRelationFilter, DocumentWhereInput> | null
@@ -161280,7 +161141,6 @@ export namespace Prisma {
161280
161141
  created_by?: SortOrder
161281
161142
  updated_by?: SortOrder
161282
161143
  is_active?: SortOrder
161283
- order_no?: SortOrderInput | SortOrder
161284
161144
  application?: ApplicationOrderByWithRelationInput
161285
161145
  field?: JobApplicationFieldOrderByWithRelationInput
161286
161146
  document?: DocumentOrderByWithRelationInput
@@ -161308,7 +161168,6 @@ export namespace Prisma {
161308
161168
  created_by?: StringFilter<"JobApplicationResponse"> | string
161309
161169
  updated_by?: StringFilter<"JobApplicationResponse"> | string
161310
161170
  is_active?: BoolFilter<"JobApplicationResponse"> | boolean
161311
- order_no?: IntNullableFilter<"JobApplicationResponse"> | number | null
161312
161171
  application?: XOR<ApplicationScalarRelationFilter, ApplicationWhereInput>
161313
161172
  field?: XOR<JobApplicationFieldNullableScalarRelationFilter, JobApplicationFieldWhereInput> | null
161314
161173
  document?: XOR<DocumentNullableScalarRelationFilter, DocumentWhereInput> | null
@@ -161333,12 +161192,9 @@ export namespace Prisma {
161333
161192
  created_by?: SortOrder
161334
161193
  updated_by?: SortOrder
161335
161194
  is_active?: SortOrder
161336
- order_no?: SortOrderInput | SortOrder
161337
161195
  _count?: JobApplicationResponseCountOrderByAggregateInput
161338
- _avg?: JobApplicationResponseAvgOrderByAggregateInput
161339
161196
  _max?: JobApplicationResponseMaxOrderByAggregateInput
161340
161197
  _min?: JobApplicationResponseMinOrderByAggregateInput
161341
- _sum?: JobApplicationResponseSumOrderByAggregateInput
161342
161198
  }
161343
161199
 
161344
161200
  export type JobApplicationResponseScalarWhereWithAggregatesInput = {
@@ -161363,7 +161219,6 @@ export namespace Prisma {
161363
161219
  created_by?: StringWithAggregatesFilter<"JobApplicationResponse"> | string
161364
161220
  updated_by?: StringWithAggregatesFilter<"JobApplicationResponse"> | string
161365
161221
  is_active?: BoolWithAggregatesFilter<"JobApplicationResponse"> | boolean
161366
- order_no?: IntNullableWithAggregatesFilter<"JobApplicationResponse"> | number | null
161367
161222
  }
161368
161223
 
161369
161224
  export type JobApplicationTemplateWhereInput = {
@@ -165237,6 +165092,8 @@ export namespace Prisma {
165237
165092
  evaluation_plan_id?: StringNullableFilter<"Question"> | string | null
165238
165093
  candidate_id?: StringNullableFilter<"Question"> | string | null
165239
165094
  skill?: StringNullableFilter<"Question"> | string | null
165095
+ category?: EnumQuestionCategoryNullableFilter<"Question"> | $Enums.QuestionCategory | null
165096
+ bank_item_key?: StringNullableFilter<"Question"> | string | null
165240
165097
  question?: StringFilter<"Question"> | string
165241
165098
  answer?: StringFilter<"Question"> | string
165242
165099
  options?: StringNullableListFilter<"Question">
@@ -165260,6 +165117,8 @@ export namespace Prisma {
165260
165117
  evaluation_plan_id?: SortOrderInput | SortOrder
165261
165118
  candidate_id?: SortOrderInput | SortOrder
165262
165119
  skill?: SortOrderInput | SortOrder
165120
+ category?: SortOrderInput | SortOrder
165121
+ bank_item_key?: SortOrderInput | SortOrder
165263
165122
  question?: SortOrder
165264
165123
  answer?: SortOrder
165265
165124
  options?: SortOrder
@@ -165279,6 +165138,7 @@ export namespace Prisma {
165279
165138
 
165280
165139
  export type QuestionWhereUniqueInput = Prisma.AtLeast<{
165281
165140
  id?: string
165141
+ assessment_library_id_bank_item_key?: QuestionAssessment_library_idBank_item_keyCompoundUniqueInput
165282
165142
  AND?: QuestionWhereInput | QuestionWhereInput[]
165283
165143
  OR?: QuestionWhereInput[]
165284
165144
  NOT?: QuestionWhereInput | QuestionWhereInput[]
@@ -165286,6 +165146,8 @@ export namespace Prisma {
165286
165146
  evaluation_plan_id?: StringNullableFilter<"Question"> | string | null
165287
165147
  candidate_id?: StringNullableFilter<"Question"> | string | null
165288
165148
  skill?: StringNullableFilter<"Question"> | string | null
165149
+ category?: EnumQuestionCategoryNullableFilter<"Question"> | $Enums.QuestionCategory | null
165150
+ bank_item_key?: StringNullableFilter<"Question"> | string | null
165289
165151
  question?: StringFilter<"Question"> | string
165290
165152
  answer?: StringFilter<"Question"> | string
165291
165153
  options?: StringNullableListFilter<"Question">
@@ -165301,7 +165163,7 @@ export namespace Prisma {
165301
165163
  assessmentLibrary?: XOR<AssessmentLibraryNullableScalarRelationFilter, AssessmentLibraryWhereInput> | null
165302
165164
  evaluationPlan?: XOR<EvaluationPlanNullableScalarRelationFilter, EvaluationPlanWhereInput> | null
165303
165165
  candidateResponse?: CandidateQuestionResponseListRelationFilter
165304
- }, "id">
165166
+ }, "id" | "assessment_library_id_bank_item_key">
165305
165167
 
165306
165168
  export type QuestionOrderByWithAggregationInput = {
165307
165169
  id?: SortOrder
@@ -165309,6 +165171,8 @@ export namespace Prisma {
165309
165171
  evaluation_plan_id?: SortOrderInput | SortOrder
165310
165172
  candidate_id?: SortOrderInput | SortOrder
165311
165173
  skill?: SortOrderInput | SortOrder
165174
+ category?: SortOrderInput | SortOrder
165175
+ bank_item_key?: SortOrderInput | SortOrder
165312
165176
  question?: SortOrder
165313
165177
  answer?: SortOrder
165314
165178
  options?: SortOrder
@@ -165335,6 +165199,8 @@ export namespace Prisma {
165335
165199
  evaluation_plan_id?: StringNullableWithAggregatesFilter<"Question"> | string | null
165336
165200
  candidate_id?: StringNullableWithAggregatesFilter<"Question"> | string | null
165337
165201
  skill?: StringNullableWithAggregatesFilter<"Question"> | string | null
165202
+ category?: EnumQuestionCategoryNullableWithAggregatesFilter<"Question"> | $Enums.QuestionCategory | null
165203
+ bank_item_key?: StringNullableWithAggregatesFilter<"Question"> | string | null
165338
165204
  question?: StringWithAggregatesFilter<"Question"> | string
165339
165205
  answer?: StringWithAggregatesFilter<"Question"> | string
165340
165206
  options?: StringNullableListFilter<"Question">
@@ -168697,8 +168563,6 @@ export namespace Prisma {
168697
168563
  created_by: string
168698
168564
  updated_by: string
168699
168565
  is_active?: boolean
168700
- fit_check_report_updated_flag?: boolean
168701
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
168702
168566
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
168703
168567
  candidate: UserCreateNestedOneWithoutApplicationsInput
168704
168568
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
@@ -168716,7 +168580,6 @@ export namespace Prisma {
168716
168580
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
168717
168581
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
168718
168582
  offer?: OfferCreateNestedOneWithoutApplicationInput
168719
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
168720
168583
  }
168721
168584
 
168722
168585
  export type ApplicationUncheckedCreateInput = {
@@ -168749,9 +168612,6 @@ export namespace Prisma {
168749
168612
  created_by: string
168750
168613
  updated_by: string
168751
168614
  is_active?: boolean
168752
- fit_check_report_document_id?: string | null
168753
- fit_check_report_updated_flag?: boolean
168754
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
168755
168615
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
168756
168616
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
168757
168617
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
@@ -168787,8 +168647,6 @@ export namespace Prisma {
168787
168647
  created_by?: StringFieldUpdateOperationsInput | string
168788
168648
  updated_by?: StringFieldUpdateOperationsInput | string
168789
168649
  is_active?: BoolFieldUpdateOperationsInput | boolean
168790
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
168791
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
168792
168650
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
168793
168651
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
168794
168652
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
@@ -168806,7 +168664,6 @@ export namespace Prisma {
168806
168664
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
168807
168665
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
168808
168666
  offer?: OfferUpdateOneWithoutApplicationNestedInput
168809
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
168810
168667
  }
168811
168668
 
168812
168669
  export type ApplicationUncheckedUpdateInput = {
@@ -168839,9 +168696,6 @@ export namespace Prisma {
168839
168696
  created_by?: StringFieldUpdateOperationsInput | string
168840
168697
  updated_by?: StringFieldUpdateOperationsInput | string
168841
168698
  is_active?: BoolFieldUpdateOperationsInput | boolean
168842
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
168843
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
168844
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
168845
168699
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
168846
168700
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
168847
168701
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
@@ -168884,9 +168738,6 @@ export namespace Prisma {
168884
168738
  created_by: string
168885
168739
  updated_by: string
168886
168740
  is_active?: boolean
168887
- fit_check_report_document_id?: string | null
168888
- fit_check_report_updated_flag?: boolean
168889
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
168890
168741
  }
168891
168742
 
168892
168743
  export type ApplicationUpdateManyMutationInput = {
@@ -168912,8 +168763,6 @@ export namespace Prisma {
168912
168763
  created_by?: StringFieldUpdateOperationsInput | string
168913
168764
  updated_by?: StringFieldUpdateOperationsInput | string
168914
168765
  is_active?: BoolFieldUpdateOperationsInput | boolean
168915
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
168916
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
168917
168766
  }
168918
168767
 
168919
168768
  export type ApplicationUncheckedUpdateManyInput = {
@@ -168946,9 +168795,6 @@ export namespace Prisma {
168946
168795
  created_by?: StringFieldUpdateOperationsInput | string
168947
168796
  updated_by?: StringFieldUpdateOperationsInput | string
168948
168797
  is_active?: BoolFieldUpdateOperationsInput | boolean
168949
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
168950
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
168951
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
168952
168798
  }
168953
168799
 
168954
168800
  export type ApprovalCreateInput = {
@@ -169204,6 +169050,7 @@ export namespace Prisma {
169204
169050
  created_by: string
169205
169051
  updated_by: string
169206
169052
  is_active?: boolean
169053
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
169207
169054
  organisation: OrganisationCreateNestedOneWithoutAssessment_libraryInput
169208
169055
  questions?: QuestionCreateNestedManyWithoutAssessmentLibraryInput
169209
169056
  assessments?: AssessmentCreateNestedManyWithoutAssessment_libraryInput
@@ -169222,6 +169069,7 @@ export namespace Prisma {
169222
169069
  created_by: string
169223
169070
  updated_by: string
169224
169071
  is_active?: boolean
169072
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
169225
169073
  questions?: QuestionUncheckedCreateNestedManyWithoutAssessmentLibraryInput
169226
169074
  assessments?: AssessmentUncheckedCreateNestedManyWithoutAssessment_libraryInput
169227
169075
  evaluation_Plans?: EvaluationPlanUncheckedCreateNestedManyWithoutAssessmentInput
@@ -169238,6 +169086,7 @@ export namespace Prisma {
169238
169086
  created_by?: StringFieldUpdateOperationsInput | string
169239
169087
  updated_by?: StringFieldUpdateOperationsInput | string
169240
169088
  is_active?: BoolFieldUpdateOperationsInput | boolean
169089
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
169241
169090
  organisation?: OrganisationUpdateOneRequiredWithoutAssessment_libraryNestedInput
169242
169091
  questions?: QuestionUpdateManyWithoutAssessmentLibraryNestedInput
169243
169092
  assessments?: AssessmentUpdateManyWithoutAssessment_libraryNestedInput
@@ -169256,6 +169105,7 @@ export namespace Prisma {
169256
169105
  created_by?: StringFieldUpdateOperationsInput | string
169257
169106
  updated_by?: StringFieldUpdateOperationsInput | string
169258
169107
  is_active?: BoolFieldUpdateOperationsInput | boolean
169108
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
169259
169109
  questions?: QuestionUncheckedUpdateManyWithoutAssessmentLibraryNestedInput
169260
169110
  assessments?: AssessmentUncheckedUpdateManyWithoutAssessment_libraryNestedInput
169261
169111
  evaluation_Plans?: EvaluationPlanUncheckedUpdateManyWithoutAssessmentNestedInput
@@ -169273,6 +169123,7 @@ export namespace Prisma {
169273
169123
  created_by: string
169274
169124
  updated_by: string
169275
169125
  is_active?: boolean
169126
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
169276
169127
  }
169277
169128
 
169278
169129
  export type AssessmentLibraryUpdateManyMutationInput = {
@@ -169286,6 +169137,7 @@ export namespace Prisma {
169286
169137
  created_by?: StringFieldUpdateOperationsInput | string
169287
169138
  updated_by?: StringFieldUpdateOperationsInput | string
169288
169139
  is_active?: BoolFieldUpdateOperationsInput | boolean
169140
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
169289
169141
  }
169290
169142
 
169291
169143
  export type AssessmentLibraryUncheckedUpdateManyInput = {
@@ -169300,6 +169152,7 @@ export namespace Prisma {
169300
169152
  created_by?: StringFieldUpdateOperationsInput | string
169301
169153
  updated_by?: StringFieldUpdateOperationsInput | string
169302
169154
  is_active?: BoolFieldUpdateOperationsInput | boolean
169155
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
169303
169156
  }
169304
169157
 
169305
169158
  export type AssessmentQuestionCreateInput = {
@@ -172326,7 +172179,6 @@ export namespace Prisma {
172326
172179
  offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
172327
172180
  offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
172328
172181
  offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
172329
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
172330
172182
  }
172331
172183
 
172332
172184
  export type DocumentUncheckedCreateInput = {
@@ -172361,7 +172213,6 @@ export namespace Prisma {
172361
172213
  offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
172362
172214
  offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
172363
172215
  offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
172364
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
172365
172216
  }
172366
172217
 
172367
172218
  export type DocumentUpdateInput = {
@@ -172396,7 +172247,6 @@ export namespace Prisma {
172396
172247
  offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
172397
172248
  offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
172398
172249
  offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
172399
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
172400
172250
  }
172401
172251
 
172402
172252
  export type DocumentUncheckedUpdateInput = {
@@ -172431,7 +172281,6 @@ export namespace Prisma {
172431
172281
  offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
172432
172282
  offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
172433
172283
  offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
172434
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
172435
172284
  }
172436
172285
 
172437
172286
  export type DocumentCreateManyInput = {
@@ -175866,7 +175715,6 @@ export namespace Prisma {
175866
175715
  updated_by: string
175867
175716
  created_at?: Date | string
175868
175717
  updated_at?: Date | string
175869
- order_no?: number | null
175870
175718
  organisation: OrganisationCreateNestedOneWithoutJob_application_fieldsInput
175871
175719
  job_application_template: JobApplicationTemplateCreateNestedOneWithoutFieldsInput
175872
175720
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutFieldInput
@@ -175887,7 +175735,6 @@ export namespace Prisma {
175887
175735
  updated_by: string
175888
175736
  created_at?: Date | string
175889
175737
  updated_at?: Date | string
175890
- order_no?: number | null
175891
175738
  job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutFieldInput
175892
175739
  }
175893
175740
 
@@ -175904,7 +175751,6 @@ export namespace Prisma {
175904
175751
  updated_by?: StringFieldUpdateOperationsInput | string
175905
175752
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
175906
175753
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
175907
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
175908
175754
  organisation?: OrganisationUpdateOneRequiredWithoutJob_application_fieldsNestedInput
175909
175755
  job_application_template?: JobApplicationTemplateUpdateOneRequiredWithoutFieldsNestedInput
175910
175756
  job_application_responses?: JobApplicationResponseUpdateManyWithoutFieldNestedInput
@@ -175925,7 +175771,6 @@ export namespace Prisma {
175925
175771
  updated_by?: StringFieldUpdateOperationsInput | string
175926
175772
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
175927
175773
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
175928
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
175929
175774
  job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutFieldNestedInput
175930
175775
  }
175931
175776
 
@@ -175944,7 +175789,6 @@ export namespace Prisma {
175944
175789
  updated_by: string
175945
175790
  created_at?: Date | string
175946
175791
  updated_at?: Date | string
175947
- order_no?: number | null
175948
175792
  }
175949
175793
 
175950
175794
  export type JobApplicationFieldUpdateManyMutationInput = {
@@ -175960,7 +175804,6 @@ export namespace Prisma {
175960
175804
  updated_by?: StringFieldUpdateOperationsInput | string
175961
175805
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
175962
175806
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
175963
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
175964
175807
  }
175965
175808
 
175966
175809
  export type JobApplicationFieldUncheckedUpdateManyInput = {
@@ -175978,7 +175821,6 @@ export namespace Prisma {
175978
175821
  updated_by?: StringFieldUpdateOperationsInput | string
175979
175822
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
175980
175823
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
175981
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
175982
175824
  }
175983
175825
 
175984
175826
  export type JobApplicationResponseCreateInput = {
@@ -175997,7 +175839,6 @@ export namespace Prisma {
175997
175839
  created_by: string
175998
175840
  updated_by: string
175999
175841
  is_active?: boolean
176000
- order_no?: number | null
176001
175842
  application: ApplicationCreateNestedOneWithoutJob_application_responsesInput
176002
175843
  field?: JobApplicationFieldCreateNestedOneWithoutJob_application_responsesInput
176003
175844
  document?: DocumentCreateNestedOneWithoutJob_application_responsesInput
@@ -176022,7 +175863,6 @@ export namespace Prisma {
176022
175863
  created_by: string
176023
175864
  updated_by: string
176024
175865
  is_active?: boolean
176025
- order_no?: number | null
176026
175866
  }
176027
175867
 
176028
175868
  export type JobApplicationResponseUpdateInput = {
@@ -176041,7 +175881,6 @@ export namespace Prisma {
176041
175881
  created_by?: StringFieldUpdateOperationsInput | string
176042
175882
  updated_by?: StringFieldUpdateOperationsInput | string
176043
175883
  is_active?: BoolFieldUpdateOperationsInput | boolean
176044
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
176045
175884
  application?: ApplicationUpdateOneRequiredWithoutJob_application_responsesNestedInput
176046
175885
  field?: JobApplicationFieldUpdateOneWithoutJob_application_responsesNestedInput
176047
175886
  document?: DocumentUpdateOneWithoutJob_application_responsesNestedInput
@@ -176066,7 +175905,6 @@ export namespace Prisma {
176066
175905
  created_by?: StringFieldUpdateOperationsInput | string
176067
175906
  updated_by?: StringFieldUpdateOperationsInput | string
176068
175907
  is_active?: BoolFieldUpdateOperationsInput | boolean
176069
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
176070
175908
  }
176071
175909
 
176072
175910
  export type JobApplicationResponseCreateManyInput = {
@@ -176088,7 +175926,6 @@ export namespace Prisma {
176088
175926
  created_by: string
176089
175927
  updated_by: string
176090
175928
  is_active?: boolean
176091
- order_no?: number | null
176092
175929
  }
176093
175930
 
176094
175931
  export type JobApplicationResponseUpdateManyMutationInput = {
@@ -176107,7 +175944,6 @@ export namespace Prisma {
176107
175944
  created_by?: StringFieldUpdateOperationsInput | string
176108
175945
  updated_by?: StringFieldUpdateOperationsInput | string
176109
175946
  is_active?: BoolFieldUpdateOperationsInput | boolean
176110
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
176111
175947
  }
176112
175948
 
176113
175949
  export type JobApplicationResponseUncheckedUpdateManyInput = {
@@ -176129,7 +175965,6 @@ export namespace Prisma {
176129
175965
  created_by?: StringFieldUpdateOperationsInput | string
176130
175966
  updated_by?: StringFieldUpdateOperationsInput | string
176131
175967
  is_active?: BoolFieldUpdateOperationsInput | boolean
176132
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
176133
175968
  }
176134
175969
 
176135
175970
  export type JobApplicationTemplateCreateInput = {
@@ -180665,6 +180500,8 @@ export namespace Prisma {
180665
180500
  export type QuestionCreateInput = {
180666
180501
  id?: string
180667
180502
  skill?: string | null
180503
+ category?: $Enums.QuestionCategory | null
180504
+ bank_item_key?: string | null
180668
180505
  question: string
180669
180506
  answer: string
180670
180507
  options?: QuestionCreateoptionsInput | string[]
@@ -180688,6 +180525,8 @@ export namespace Prisma {
180688
180525
  evaluation_plan_id?: string | null
180689
180526
  candidate_id?: string | null
180690
180527
  skill?: string | null
180528
+ category?: $Enums.QuestionCategory | null
180529
+ bank_item_key?: string | null
180691
180530
  question: string
180692
180531
  answer: string
180693
180532
  options?: QuestionCreateoptionsInput | string[]
@@ -180705,6 +180544,8 @@ export namespace Prisma {
180705
180544
  export type QuestionUpdateInput = {
180706
180545
  id?: StringFieldUpdateOperationsInput | string
180707
180546
  skill?: NullableStringFieldUpdateOperationsInput | string | null
180547
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
180548
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
180708
180549
  question?: StringFieldUpdateOperationsInput | string
180709
180550
  answer?: StringFieldUpdateOperationsInput | string
180710
180551
  options?: QuestionUpdateoptionsInput | string[]
@@ -180728,6 +180569,8 @@ export namespace Prisma {
180728
180569
  evaluation_plan_id?: NullableStringFieldUpdateOperationsInput | string | null
180729
180570
  candidate_id?: NullableStringFieldUpdateOperationsInput | string | null
180730
180571
  skill?: NullableStringFieldUpdateOperationsInput | string | null
180572
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
180573
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
180731
180574
  question?: StringFieldUpdateOperationsInput | string
180732
180575
  answer?: StringFieldUpdateOperationsInput | string
180733
180576
  options?: QuestionUpdateoptionsInput | string[]
@@ -180748,6 +180591,8 @@ export namespace Prisma {
180748
180591
  evaluation_plan_id?: string | null
180749
180592
  candidate_id?: string | null
180750
180593
  skill?: string | null
180594
+ category?: $Enums.QuestionCategory | null
180595
+ bank_item_key?: string | null
180751
180596
  question: string
180752
180597
  answer: string
180753
180598
  options?: QuestionCreateoptionsInput | string[]
@@ -180763,6 +180608,8 @@ export namespace Prisma {
180763
180608
  export type QuestionUpdateManyMutationInput = {
180764
180609
  id?: StringFieldUpdateOperationsInput | string
180765
180610
  skill?: NullableStringFieldUpdateOperationsInput | string | null
180611
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
180612
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
180766
180613
  question?: StringFieldUpdateOperationsInput | string
180767
180614
  answer?: StringFieldUpdateOperationsInput | string
180768
180615
  options?: QuestionUpdateoptionsInput | string[]
@@ -180781,6 +180628,8 @@ export namespace Prisma {
180781
180628
  evaluation_plan_id?: NullableStringFieldUpdateOperationsInput | string | null
180782
180629
  candidate_id?: NullableStringFieldUpdateOperationsInput | string | null
180783
180630
  skill?: NullableStringFieldUpdateOperationsInput | string | null
180631
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
180632
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
180784
180633
  question?: StringFieldUpdateOperationsInput | string
180785
180634
  answer?: StringFieldUpdateOperationsInput | string
180786
180635
  options?: QuestionUpdateoptionsInput | string[]
@@ -184631,11 +184480,6 @@ export namespace Prisma {
184631
184480
  isNot?: OfferWhereInput | null
184632
184481
  }
184633
184482
 
184634
- export type DocumentNullableScalarRelationFilter = {
184635
- is?: DocumentWhereInput | null
184636
- isNot?: DocumentWhereInput | null
184637
- }
184638
-
184639
184483
  export type InterviewOrderByRelationAggregateInput = {
184640
184484
  _count?: SortOrder
184641
184485
  }
@@ -184703,9 +184547,6 @@ export namespace Prisma {
184703
184547
  created_by?: SortOrder
184704
184548
  updated_by?: SortOrder
184705
184549
  is_active?: SortOrder
184706
- fit_check_report_document_id?: SortOrder
184707
- fit_check_report_updated_flag?: SortOrder
184708
- fit_check_report_data?: SortOrder
184709
184550
  }
184710
184551
 
184711
184552
  export type ApplicationAvgOrderByAggregateInput = {
@@ -184743,8 +184584,6 @@ export namespace Prisma {
184743
184584
  created_by?: SortOrder
184744
184585
  updated_by?: SortOrder
184745
184586
  is_active?: SortOrder
184746
- fit_check_report_document_id?: SortOrder
184747
- fit_check_report_updated_flag?: SortOrder
184748
184587
  }
184749
184588
 
184750
184589
  export type ApplicationMinOrderByAggregateInput = {
@@ -184777,8 +184616,6 @@ export namespace Prisma {
184777
184616
  created_by?: SortOrder
184778
184617
  updated_by?: SortOrder
184779
184618
  is_active?: SortOrder
184780
- fit_check_report_document_id?: SortOrder
184781
- fit_check_report_updated_flag?: SortOrder
184782
184619
  }
184783
184620
 
184784
184621
  export type ApplicationSumOrderByAggregateInput = {
@@ -185009,6 +184846,7 @@ export namespace Prisma {
185009
184846
  created_by?: SortOrder
185010
184847
  updated_by?: SortOrder
185011
184848
  is_active?: SortOrder
184849
+ generation_state?: SortOrder
185012
184850
  }
185013
184851
 
185014
184852
  export type AssessmentLibraryAvgOrderByAggregateInput = {
@@ -185453,6 +185291,11 @@ export namespace Prisma {
185453
185291
  isNot?: ApplicationWhereInput | null
185454
185292
  }
185455
185293
 
185294
+ export type DocumentNullableScalarRelationFilter = {
185295
+ is?: DocumentWhereInput | null
185296
+ isNot?: DocumentWhereInput | null
185297
+ }
185298
+
185456
185299
  export type AssignmentCandidate_idOngoing_evaluation_idCompoundUniqueInput = {
185457
185300
  candidate_id: string
185458
185301
  ongoing_evaluation_id: string
@@ -189358,11 +189201,6 @@ export namespace Prisma {
189358
189201
  updated_by?: SortOrder
189359
189202
  created_at?: SortOrder
189360
189203
  updated_at?: SortOrder
189361
- order_no?: SortOrder
189362
- }
189363
-
189364
- export type JobApplicationFieldAvgOrderByAggregateInput = {
189365
- order_no?: SortOrder
189366
189204
  }
189367
189205
 
189368
189206
  export type JobApplicationFieldMaxOrderByAggregateInput = {
@@ -189379,7 +189217,6 @@ export namespace Prisma {
189379
189217
  updated_by?: SortOrder
189380
189218
  created_at?: SortOrder
189381
189219
  updated_at?: SortOrder
189382
- order_no?: SortOrder
189383
189220
  }
189384
189221
 
189385
189222
  export type JobApplicationFieldMinOrderByAggregateInput = {
@@ -189396,11 +189233,6 @@ export namespace Prisma {
189396
189233
  updated_by?: SortOrder
189397
189234
  created_at?: SortOrder
189398
189235
  updated_at?: SortOrder
189399
- order_no?: SortOrder
189400
- }
189401
-
189402
- export type JobApplicationFieldSumOrderByAggregateInput = {
189403
- order_no?: SortOrder
189404
189236
  }
189405
189237
 
189406
189238
  export type EnumJobApplicationFieldTypeWithAggregatesFilter<$PrismaModel = never> = {
@@ -189444,11 +189276,6 @@ export namespace Prisma {
189444
189276
  created_by?: SortOrder
189445
189277
  updated_by?: SortOrder
189446
189278
  is_active?: SortOrder
189447
- order_no?: SortOrder
189448
- }
189449
-
189450
- export type JobApplicationResponseAvgOrderByAggregateInput = {
189451
- order_no?: SortOrder
189452
189279
  }
189453
189280
 
189454
189281
  export type JobApplicationResponseMaxOrderByAggregateInput = {
@@ -189468,7 +189295,6 @@ export namespace Prisma {
189468
189295
  created_by?: SortOrder
189469
189296
  updated_by?: SortOrder
189470
189297
  is_active?: SortOrder
189471
- order_no?: SortOrder
189472
189298
  }
189473
189299
 
189474
189300
  export type JobApplicationResponseMinOrderByAggregateInput = {
@@ -189488,11 +189314,6 @@ export namespace Prisma {
189488
189314
  created_by?: SortOrder
189489
189315
  updated_by?: SortOrder
189490
189316
  is_active?: SortOrder
189491
- order_no?: SortOrder
189492
- }
189493
-
189494
- export type JobApplicationResponseSumOrderByAggregateInput = {
189495
- order_no?: SortOrder
189496
189317
  }
189497
189318
 
189498
189319
  export type EnumJobApplicationFieldTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
@@ -192460,6 +192281,13 @@ export namespace Prisma {
192460
192281
  _max?: NestedEnumAsyncOperationStatusFilter<$PrismaModel>
192461
192282
  }
192462
192283
 
192284
+ export type EnumQuestionCategoryNullableFilter<$PrismaModel = never> = {
192285
+ equals?: $Enums.QuestionCategory | EnumQuestionCategoryFieldRefInput<$PrismaModel> | null
192286
+ in?: $Enums.QuestionCategory[] | ListEnumQuestionCategoryFieldRefInput<$PrismaModel> | null
192287
+ notIn?: $Enums.QuestionCategory[] | ListEnumQuestionCategoryFieldRefInput<$PrismaModel> | null
192288
+ not?: NestedEnumQuestionCategoryNullableFilter<$PrismaModel> | $Enums.QuestionCategory | null
192289
+ }
192290
+
192463
192291
  export type EnumDifficultyNullableFilter<$PrismaModel = never> = {
192464
192292
  equals?: $Enums.Difficulty | EnumDifficultyFieldRefInput<$PrismaModel> | null
192465
192293
  in?: $Enums.Difficulty[] | ListEnumDifficultyFieldRefInput<$PrismaModel> | null
@@ -192467,12 +192295,19 @@ export namespace Prisma {
192467
192295
  not?: NestedEnumDifficultyNullableFilter<$PrismaModel> | $Enums.Difficulty | null
192468
192296
  }
192469
192297
 
192298
+ export type QuestionAssessment_library_idBank_item_keyCompoundUniqueInput = {
192299
+ assessment_library_id: string
192300
+ bank_item_key: string
192301
+ }
192302
+
192470
192303
  export type QuestionCountOrderByAggregateInput = {
192471
192304
  id?: SortOrder
192472
192305
  assessment_library_id?: SortOrder
192473
192306
  evaluation_plan_id?: SortOrder
192474
192307
  candidate_id?: SortOrder
192475
192308
  skill?: SortOrder
192309
+ category?: SortOrder
192310
+ bank_item_key?: SortOrder
192476
192311
  question?: SortOrder
192477
192312
  answer?: SortOrder
192478
192313
  options?: SortOrder
@@ -192495,6 +192330,8 @@ export namespace Prisma {
192495
192330
  evaluation_plan_id?: SortOrder
192496
192331
  candidate_id?: SortOrder
192497
192332
  skill?: SortOrder
192333
+ category?: SortOrder
192334
+ bank_item_key?: SortOrder
192498
192335
  question?: SortOrder
192499
192336
  answer?: SortOrder
192500
192337
  max_score?: SortOrder
@@ -192512,6 +192349,8 @@ export namespace Prisma {
192512
192349
  evaluation_plan_id?: SortOrder
192513
192350
  candidate_id?: SortOrder
192514
192351
  skill?: SortOrder
192352
+ category?: SortOrder
192353
+ bank_item_key?: SortOrder
192515
192354
  question?: SortOrder
192516
192355
  answer?: SortOrder
192517
192356
  max_score?: SortOrder
@@ -192527,6 +192366,16 @@ export namespace Prisma {
192527
192366
  max_score?: SortOrder
192528
192367
  }
192529
192368
 
192369
+ export type EnumQuestionCategoryNullableWithAggregatesFilter<$PrismaModel = never> = {
192370
+ equals?: $Enums.QuestionCategory | EnumQuestionCategoryFieldRefInput<$PrismaModel> | null
192371
+ in?: $Enums.QuestionCategory[] | ListEnumQuestionCategoryFieldRefInput<$PrismaModel> | null
192372
+ notIn?: $Enums.QuestionCategory[] | ListEnumQuestionCategoryFieldRefInput<$PrismaModel> | null
192373
+ not?: NestedEnumQuestionCategoryNullableWithAggregatesFilter<$PrismaModel> | $Enums.QuestionCategory | null
192374
+ _count?: NestedIntNullableFilter<$PrismaModel>
192375
+ _min?: NestedEnumQuestionCategoryNullableFilter<$PrismaModel>
192376
+ _max?: NestedEnumQuestionCategoryNullableFilter<$PrismaModel>
192377
+ }
192378
+
192530
192379
  export type EnumDifficultyNullableWithAggregatesFilter<$PrismaModel = never> = {
192531
192380
  equals?: $Enums.Difficulty | EnumDifficultyFieldRefInput<$PrismaModel> | null
192532
192381
  in?: $Enums.Difficulty[] | ListEnumDifficultyFieldRefInput<$PrismaModel> | null
@@ -194442,12 +194291,6 @@ export namespace Prisma {
194442
194291
  connect?: OfferWhereUniqueInput
194443
194292
  }
194444
194293
 
194445
- export type DocumentCreateNestedOneWithoutApplication_fit_check_reportInput = {
194446
- create?: XOR<DocumentCreateWithoutApplication_fit_check_reportInput, DocumentUncheckedCreateWithoutApplication_fit_check_reportInput>
194447
- connectOrCreate?: DocumentCreateOrConnectWithoutApplication_fit_check_reportInput
194448
- connect?: DocumentWhereUniqueInput
194449
- }
194450
-
194451
194294
  export type FitCheckUncheckedCreateNestedOneWithoutApplicationInput = {
194452
194295
  create?: XOR<FitCheckCreateWithoutApplicationInput, FitCheckUncheckedCreateWithoutApplicationInput>
194453
194296
  connectOrCreate?: FitCheckCreateOrConnectWithoutApplicationInput
@@ -194726,16 +194569,6 @@ export namespace Prisma {
194726
194569
  update?: XOR<XOR<OfferUpdateToOneWithWhereWithoutApplicationInput, OfferUpdateWithoutApplicationInput>, OfferUncheckedUpdateWithoutApplicationInput>
194727
194570
  }
194728
194571
 
194729
- export type DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput = {
194730
- create?: XOR<DocumentCreateWithoutApplication_fit_check_reportInput, DocumentUncheckedCreateWithoutApplication_fit_check_reportInput>
194731
- connectOrCreate?: DocumentCreateOrConnectWithoutApplication_fit_check_reportInput
194732
- upsert?: DocumentUpsertWithoutApplication_fit_check_reportInput
194733
- disconnect?: DocumentWhereInput | boolean
194734
- delete?: DocumentWhereInput | boolean
194735
- connect?: DocumentWhereUniqueInput
194736
- update?: XOR<XOR<DocumentUpdateToOneWithWhereWithoutApplication_fit_check_reportInput, DocumentUpdateWithoutApplication_fit_check_reportInput>, DocumentUncheckedUpdateWithoutApplication_fit_check_reportInput>
194737
- }
194738
-
194739
194572
  export type FitCheckUncheckedUpdateOneWithoutApplicationNestedInput = {
194740
194573
  create?: XOR<FitCheckCreateWithoutApplicationInput, FitCheckUncheckedCreateWithoutApplicationInput>
194741
194574
  connectOrCreate?: FitCheckCreateOrConnectWithoutApplicationInput
@@ -196480,12 +196313,6 @@ export namespace Prisma {
196480
196313
  connect?: OfferWhereUniqueInput | OfferWhereUniqueInput[]
196481
196314
  }
196482
196315
 
196483
- export type ApplicationCreateNestedOneWithoutFit_check_report_documentInput = {
196484
- create?: XOR<ApplicationCreateWithoutFit_check_report_documentInput, ApplicationUncheckedCreateWithoutFit_check_report_documentInput>
196485
- connectOrCreate?: ApplicationCreateOrConnectWithoutFit_check_report_documentInput
196486
- connect?: ApplicationWhereUniqueInput
196487
- }
196488
-
196489
196316
  export type ResumeUncheckedCreateNestedOneWithoutDocumentInput = {
196490
196317
  create?: XOR<ResumeCreateWithoutDocumentInput, ResumeUncheckedCreateWithoutDocumentInput>
196491
196318
  connectOrCreate?: ResumeCreateOrConnectWithoutDocumentInput
@@ -196576,12 +196403,6 @@ export namespace Prisma {
196576
196403
  connect?: OfferWhereUniqueInput | OfferWhereUniqueInput[]
196577
196404
  }
196578
196405
 
196579
- export type ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput = {
196580
- create?: XOR<ApplicationCreateWithoutFit_check_report_documentInput, ApplicationUncheckedCreateWithoutFit_check_report_documentInput>
196581
- connectOrCreate?: ApplicationCreateOrConnectWithoutFit_check_report_documentInput
196582
- connect?: ApplicationWhereUniqueInput
196583
- }
196584
-
196585
196406
  export type NullableBigIntFieldUpdateOperationsInput = {
196586
196407
  set?: bigint | number | null
196587
196408
  increment?: bigint | number
@@ -196774,16 +196595,6 @@ export namespace Prisma {
196774
196595
  deleteMany?: OfferScalarWhereInput | OfferScalarWhereInput[]
196775
196596
  }
196776
196597
 
196777
- export type ApplicationUpdateOneWithoutFit_check_report_documentNestedInput = {
196778
- create?: XOR<ApplicationCreateWithoutFit_check_report_documentInput, ApplicationUncheckedCreateWithoutFit_check_report_documentInput>
196779
- connectOrCreate?: ApplicationCreateOrConnectWithoutFit_check_report_documentInput
196780
- upsert?: ApplicationUpsertWithoutFit_check_report_documentInput
196781
- disconnect?: ApplicationWhereInput | boolean
196782
- delete?: ApplicationWhereInput | boolean
196783
- connect?: ApplicationWhereUniqueInput
196784
- update?: XOR<XOR<ApplicationUpdateToOneWithWhereWithoutFit_check_report_documentInput, ApplicationUpdateWithoutFit_check_report_documentInput>, ApplicationUncheckedUpdateWithoutFit_check_report_documentInput>
196785
- }
196786
-
196787
196598
  export type ResumeUncheckedUpdateOneWithoutDocumentNestedInput = {
196788
196599
  create?: XOR<ResumeCreateWithoutDocumentInput, ResumeUncheckedCreateWithoutDocumentInput>
196789
196600
  connectOrCreate?: ResumeCreateOrConnectWithoutDocumentInput
@@ -196948,16 +196759,6 @@ export namespace Prisma {
196948
196759
  deleteMany?: OfferScalarWhereInput | OfferScalarWhereInput[]
196949
196760
  }
196950
196761
 
196951
- export type ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput = {
196952
- create?: XOR<ApplicationCreateWithoutFit_check_report_documentInput, ApplicationUncheckedCreateWithoutFit_check_report_documentInput>
196953
- connectOrCreate?: ApplicationCreateOrConnectWithoutFit_check_report_documentInput
196954
- upsert?: ApplicationUpsertWithoutFit_check_report_documentInput
196955
- disconnect?: ApplicationWhereInput | boolean
196956
- delete?: ApplicationWhereInput | boolean
196957
- connect?: ApplicationWhereUniqueInput
196958
- update?: XOR<XOR<ApplicationUpdateToOneWithWhereWithoutFit_check_report_documentInput, ApplicationUpdateWithoutFit_check_report_documentInput>, ApplicationUncheckedUpdateWithoutFit_check_report_documentInput>
196959
- }
196960
-
196961
196762
  export type OrganisationCreateNestedOneWithoutEvaluation_criteriaInput = {
196962
196763
  create?: XOR<OrganisationCreateWithoutEvaluation_criteriaInput, OrganisationUncheckedCreateWithoutEvaluation_criteriaInput>
196963
196764
  connectOrCreate?: OrganisationCreateOrConnectWithoutEvaluation_criteriaInput
@@ -202763,6 +202564,10 @@ export namespace Prisma {
202763
202564
  connect?: CandidateQuestionResponseWhereUniqueInput | CandidateQuestionResponseWhereUniqueInput[]
202764
202565
  }
202765
202566
 
202567
+ export type NullableEnumQuestionCategoryFieldUpdateOperationsInput = {
202568
+ set?: $Enums.QuestionCategory | null
202569
+ }
202570
+
202766
202571
  export type QuestionUpdateoptionsInput = {
202767
202572
  set?: string[]
202768
202573
  push?: string | string[]
@@ -206926,6 +206731,13 @@ export namespace Prisma {
206926
206731
  _max?: NestedEnumAsyncOperationStatusFilter<$PrismaModel>
206927
206732
  }
206928
206733
 
206734
+ export type NestedEnumQuestionCategoryNullableFilter<$PrismaModel = never> = {
206735
+ equals?: $Enums.QuestionCategory | EnumQuestionCategoryFieldRefInput<$PrismaModel> | null
206736
+ in?: $Enums.QuestionCategory[] | ListEnumQuestionCategoryFieldRefInput<$PrismaModel> | null
206737
+ notIn?: $Enums.QuestionCategory[] | ListEnumQuestionCategoryFieldRefInput<$PrismaModel> | null
206738
+ not?: NestedEnumQuestionCategoryNullableFilter<$PrismaModel> | $Enums.QuestionCategory | null
206739
+ }
206740
+
206929
206741
  export type NestedEnumDifficultyNullableFilter<$PrismaModel = never> = {
206930
206742
  equals?: $Enums.Difficulty | EnumDifficultyFieldRefInput<$PrismaModel> | null
206931
206743
  in?: $Enums.Difficulty[] | ListEnumDifficultyFieldRefInput<$PrismaModel> | null
@@ -206933,6 +206745,16 @@ export namespace Prisma {
206933
206745
  not?: NestedEnumDifficultyNullableFilter<$PrismaModel> | $Enums.Difficulty | null
206934
206746
  }
206935
206747
 
206748
+ export type NestedEnumQuestionCategoryNullableWithAggregatesFilter<$PrismaModel = never> = {
206749
+ equals?: $Enums.QuestionCategory | EnumQuestionCategoryFieldRefInput<$PrismaModel> | null
206750
+ in?: $Enums.QuestionCategory[] | ListEnumQuestionCategoryFieldRefInput<$PrismaModel> | null
206751
+ notIn?: $Enums.QuestionCategory[] | ListEnumQuestionCategoryFieldRefInput<$PrismaModel> | null
206752
+ not?: NestedEnumQuestionCategoryNullableWithAggregatesFilter<$PrismaModel> | $Enums.QuestionCategory | null
206753
+ _count?: NestedIntNullableFilter<$PrismaModel>
206754
+ _min?: NestedEnumQuestionCategoryNullableFilter<$PrismaModel>
206755
+ _max?: NestedEnumQuestionCategoryNullableFilter<$PrismaModel>
206756
+ }
206757
+
206936
206758
  export type NestedEnumDifficultyNullableWithAggregatesFilter<$PrismaModel = never> = {
206937
206759
  equals?: $Enums.Difficulty | EnumDifficultyFieldRefInput<$PrismaModel> | null
206938
206760
  in?: $Enums.Difficulty[] | ListEnumDifficultyFieldRefInput<$PrismaModel> | null
@@ -207048,6 +206870,8 @@ export namespace Prisma {
207048
206870
  export type QuestionCreateWithoutCandidateResponseInput = {
207049
206871
  id?: string
207050
206872
  skill?: string | null
206873
+ category?: $Enums.QuestionCategory | null
206874
+ bank_item_key?: string | null
207051
206875
  question: string
207052
206876
  answer: string
207053
206877
  options?: QuestionCreateoptionsInput | string[]
@@ -207070,6 +206894,8 @@ export namespace Prisma {
207070
206894
  evaluation_plan_id?: string | null
207071
206895
  candidate_id?: string | null
207072
206896
  skill?: string | null
206897
+ category?: $Enums.QuestionCategory | null
206898
+ bank_item_key?: string | null
207073
206899
  question: string
207074
206900
  answer: string
207075
206901
  options?: QuestionCreateoptionsInput | string[]
@@ -207316,6 +207142,8 @@ export namespace Prisma {
207316
207142
  export type QuestionUpdateWithoutCandidateResponseInput = {
207317
207143
  id?: StringFieldUpdateOperationsInput | string
207318
207144
  skill?: NullableStringFieldUpdateOperationsInput | string | null
207145
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
207146
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
207319
207147
  question?: StringFieldUpdateOperationsInput | string
207320
207148
  answer?: StringFieldUpdateOperationsInput | string
207321
207149
  options?: QuestionUpdateoptionsInput | string[]
@@ -207338,6 +207166,8 @@ export namespace Prisma {
207338
207166
  evaluation_plan_id?: NullableStringFieldUpdateOperationsInput | string | null
207339
207167
  candidate_id?: NullableStringFieldUpdateOperationsInput | string | null
207340
207168
  skill?: NullableStringFieldUpdateOperationsInput | string | null
207169
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
207170
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
207341
207171
  question?: StringFieldUpdateOperationsInput | string
207342
207172
  answer?: StringFieldUpdateOperationsInput | string
207343
207173
  options?: QuestionUpdateoptionsInput | string[]
@@ -209218,8 +209048,6 @@ export namespace Prisma {
209218
209048
  created_by: string
209219
209049
  updated_by: string
209220
209050
  is_active?: boolean
209221
- fit_check_report_updated_flag?: boolean
209222
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
209223
209051
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
209224
209052
  candidate: UserCreateNestedOneWithoutApplicationsInput
209225
209053
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
@@ -209236,7 +209064,6 @@ export namespace Prisma {
209236
209064
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
209237
209065
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
209238
209066
  offer?: OfferCreateNestedOneWithoutApplicationInput
209239
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
209240
209067
  }
209241
209068
 
209242
209069
  export type ApplicationUncheckedCreateWithoutActivity_logsInput = {
@@ -209269,9 +209096,6 @@ export namespace Prisma {
209269
209096
  created_by: string
209270
209097
  updated_by: string
209271
209098
  is_active?: boolean
209272
- fit_check_report_document_id?: string | null
209273
- fit_check_report_updated_flag?: boolean
209274
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
209275
209099
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
209276
209100
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
209277
209101
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
@@ -209489,8 +209313,6 @@ export namespace Prisma {
209489
209313
  created_by?: StringFieldUpdateOperationsInput | string
209490
209314
  updated_by?: StringFieldUpdateOperationsInput | string
209491
209315
  is_active?: BoolFieldUpdateOperationsInput | boolean
209492
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
209493
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
209494
209316
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
209495
209317
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
209496
209318
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
@@ -209507,7 +209329,6 @@ export namespace Prisma {
209507
209329
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
209508
209330
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
209509
209331
  offer?: OfferUpdateOneWithoutApplicationNestedInput
209510
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
209511
209332
  }
209512
209333
 
209513
209334
  export type ApplicationUncheckedUpdateWithoutActivity_logsInput = {
@@ -209540,9 +209361,6 @@ export namespace Prisma {
209540
209361
  created_by?: StringFieldUpdateOperationsInput | string
209541
209362
  updated_by?: StringFieldUpdateOperationsInput | string
209542
209363
  is_active?: BoolFieldUpdateOperationsInput | boolean
209543
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
209544
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
209545
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
209546
209364
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
209547
209365
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
209548
209366
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
@@ -210802,7 +210620,6 @@ export namespace Prisma {
210802
210620
  created_by: string
210803
210621
  updated_by: string
210804
210622
  is_active?: boolean
210805
- order_no?: number | null
210806
210623
  field?: JobApplicationFieldCreateNestedOneWithoutJob_application_responsesInput
210807
210624
  document?: DocumentCreateNestedOneWithoutJob_application_responsesInput
210808
210625
  }
@@ -210825,7 +210642,6 @@ export namespace Prisma {
210825
210642
  created_by: string
210826
210643
  updated_by: string
210827
210644
  is_active?: boolean
210828
- order_no?: number | null
210829
210645
  }
210830
210646
 
210831
210647
  export type JobApplicationResponseCreateOrConnectWithoutApplicationInput = {
@@ -210901,79 +210717,6 @@ export namespace Prisma {
210901
210717
  create: XOR<OfferCreateWithoutApplicationInput, OfferUncheckedCreateWithoutApplicationInput>
210902
210718
  }
210903
210719
 
210904
- export type DocumentCreateWithoutApplication_fit_check_reportInput = {
210905
- id?: string
210906
- original_file_name: string
210907
- stored_file_name: string
210908
- file_extension?: string | null
210909
- s3_bucket?: string | null
210910
- s3_key?: string | null
210911
- mime_type?: string | null
210912
- file_size?: bigint | number | null
210913
- file_hash?: string | null
210914
- metadata?: NullableJsonNullValueInput | InputJsonValue
210915
- created_at?: Date | string
210916
- updated_at?: Date | string
210917
- created_by: string
210918
- updated_by: string
210919
- is_active?: boolean
210920
- organisation?: OrganisationCreateNestedOneWithoutDocumentsInput
210921
- candidate?: UserCreateNestedOneWithoutDocumentsInput
210922
- resume?: ResumeCreateNestedOneWithoutDocumentInput
210923
- resume_rendered_export?: ResumeCreateNestedOneWithoutRendered_export_documentInput
210924
- job_description_source?: JobDescriptionCreateNestedOneWithoutSource_documentInput
210925
- job_description_rendered?: JobDescriptionCreateNestedOneWithoutRendered_jd_documentInput
210926
- job_description_display_html?: JobDescriptionCreateNestedOneWithoutDisplay_html_documentInput
210927
- interview_recording?: InterviewCreateNestedOneWithoutRecording_documentInput
210928
- job_application_responses?: JobApplicationResponseCreateNestedManyWithoutDocumentInput
210929
- assignment_solution?: AssignmentCreateNestedOneWithoutSolution_documentInput
210930
- assignment_zip?: AssignmentCreateNestedOneWithoutZip_documentInput
210931
- offer_letter_template_docx?: OfferLetterTemplateCreateNestedManyWithoutDocumentInput
210932
- offer_letter_template_html?: OfferLetterTemplateCreateNestedManyWithoutHtml_documentInput
210933
- offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
210934
- offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
210935
- offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
210936
- }
210937
-
210938
- export type DocumentUncheckedCreateWithoutApplication_fit_check_reportInput = {
210939
- id?: string
210940
- organisation_id?: string | null
210941
- candidate_id?: string | null
210942
- original_file_name: string
210943
- stored_file_name: string
210944
- file_extension?: string | null
210945
- s3_bucket?: string | null
210946
- s3_key?: string | null
210947
- mime_type?: string | null
210948
- file_size?: bigint | number | null
210949
- file_hash?: string | null
210950
- metadata?: NullableJsonNullValueInput | InputJsonValue
210951
- created_at?: Date | string
210952
- updated_at?: Date | string
210953
- created_by: string
210954
- updated_by: string
210955
- is_active?: boolean
210956
- resume?: ResumeUncheckedCreateNestedOneWithoutDocumentInput
210957
- resume_rendered_export?: ResumeUncheckedCreateNestedOneWithoutRendered_export_documentInput
210958
- job_description_source?: JobDescriptionUncheckedCreateNestedOneWithoutSource_documentInput
210959
- job_description_rendered?: JobDescriptionUncheckedCreateNestedOneWithoutRendered_jd_documentInput
210960
- job_description_display_html?: JobDescriptionUncheckedCreateNestedOneWithoutDisplay_html_documentInput
210961
- interview_recording?: InterviewUncheckedCreateNestedOneWithoutRecording_documentInput
210962
- job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutDocumentInput
210963
- assignment_solution?: AssignmentUncheckedCreateNestedOneWithoutSolution_documentInput
210964
- assignment_zip?: AssignmentUncheckedCreateNestedOneWithoutZip_documentInput
210965
- offer_letter_template_docx?: OfferLetterTemplateUncheckedCreateNestedManyWithoutDocumentInput
210966
- offer_letter_template_html?: OfferLetterTemplateUncheckedCreateNestedManyWithoutHtml_documentInput
210967
- offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
210968
- offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
210969
- offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
210970
- }
210971
-
210972
- export type DocumentCreateOrConnectWithoutApplication_fit_check_reportInput = {
210973
- where: DocumentWhereUniqueInput
210974
- create: XOR<DocumentCreateWithoutApplication_fit_check_reportInput, DocumentUncheckedCreateWithoutApplication_fit_check_reportInput>
210975
- }
210976
-
210977
210720
  export type EvaluationPlanUpsertWithoutApplicationsInput = {
210978
210721
  update: XOR<EvaluationPlanUpdateWithoutApplicationsInput, EvaluationPlanUncheckedUpdateWithoutApplicationsInput>
210979
210722
  create: XOR<EvaluationPlanCreateWithoutApplicationsInput, EvaluationPlanUncheckedCreateWithoutApplicationsInput>
@@ -212159,7 +211902,6 @@ export namespace Prisma {
212159
211902
  created_by?: StringFilter<"JobApplicationResponse"> | string
212160
211903
  updated_by?: StringFilter<"JobApplicationResponse"> | string
212161
211904
  is_active?: BoolFilter<"JobApplicationResponse"> | boolean
212162
- order_no?: IntNullableFilter<"JobApplicationResponse"> | number | null
212163
211905
  }
212164
211906
 
212165
211907
  export type OfferUpsertWithoutApplicationInput = {
@@ -212231,85 +211973,6 @@ export namespace Prisma {
212231
211973
  letters?: OfferLetterUncheckedUpdateManyWithoutOfferNestedInput
212232
211974
  }
212233
211975
 
212234
- export type DocumentUpsertWithoutApplication_fit_check_reportInput = {
212235
- update: XOR<DocumentUpdateWithoutApplication_fit_check_reportInput, DocumentUncheckedUpdateWithoutApplication_fit_check_reportInput>
212236
- create: XOR<DocumentCreateWithoutApplication_fit_check_reportInput, DocumentUncheckedCreateWithoutApplication_fit_check_reportInput>
212237
- where?: DocumentWhereInput
212238
- }
212239
-
212240
- export type DocumentUpdateToOneWithWhereWithoutApplication_fit_check_reportInput = {
212241
- where?: DocumentWhereInput
212242
- data: XOR<DocumentUpdateWithoutApplication_fit_check_reportInput, DocumentUncheckedUpdateWithoutApplication_fit_check_reportInput>
212243
- }
212244
-
212245
- export type DocumentUpdateWithoutApplication_fit_check_reportInput = {
212246
- id?: StringFieldUpdateOperationsInput | string
212247
- original_file_name?: StringFieldUpdateOperationsInput | string
212248
- stored_file_name?: StringFieldUpdateOperationsInput | string
212249
- file_extension?: NullableStringFieldUpdateOperationsInput | string | null
212250
- s3_bucket?: NullableStringFieldUpdateOperationsInput | string | null
212251
- s3_key?: NullableStringFieldUpdateOperationsInput | string | null
212252
- mime_type?: NullableStringFieldUpdateOperationsInput | string | null
212253
- file_size?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null
212254
- file_hash?: NullableStringFieldUpdateOperationsInput | string | null
212255
- metadata?: NullableJsonNullValueInput | InputJsonValue
212256
- created_at?: DateTimeFieldUpdateOperationsInput | Date | string
212257
- updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
212258
- created_by?: StringFieldUpdateOperationsInput | string
212259
- updated_by?: StringFieldUpdateOperationsInput | string
212260
- is_active?: BoolFieldUpdateOperationsInput | boolean
212261
- organisation?: OrganisationUpdateOneWithoutDocumentsNestedInput
212262
- candidate?: UserUpdateOneWithoutDocumentsNestedInput
212263
- resume?: ResumeUpdateOneWithoutDocumentNestedInput
212264
- resume_rendered_export?: ResumeUpdateOneWithoutRendered_export_documentNestedInput
212265
- job_description_source?: JobDescriptionUpdateOneWithoutSource_documentNestedInput
212266
- job_description_rendered?: JobDescriptionUpdateOneWithoutRendered_jd_documentNestedInput
212267
- job_description_display_html?: JobDescriptionUpdateOneWithoutDisplay_html_documentNestedInput
212268
- interview_recording?: InterviewUpdateOneWithoutRecording_documentNestedInput
212269
- job_application_responses?: JobApplicationResponseUpdateManyWithoutDocumentNestedInput
212270
- assignment_solution?: AssignmentUpdateOneWithoutSolution_documentNestedInput
212271
- assignment_zip?: AssignmentUpdateOneWithoutZip_documentNestedInput
212272
- offer_letter_template_docx?: OfferLetterTemplateUpdateManyWithoutDocumentNestedInput
212273
- offer_letter_template_html?: OfferLetterTemplateUpdateManyWithoutHtml_documentNestedInput
212274
- offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
212275
- offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
212276
- offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
212277
- }
212278
-
212279
- export type DocumentUncheckedUpdateWithoutApplication_fit_check_reportInput = {
212280
- id?: StringFieldUpdateOperationsInput | string
212281
- organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
212282
- candidate_id?: NullableStringFieldUpdateOperationsInput | string | null
212283
- original_file_name?: StringFieldUpdateOperationsInput | string
212284
- stored_file_name?: StringFieldUpdateOperationsInput | string
212285
- file_extension?: NullableStringFieldUpdateOperationsInput | string | null
212286
- s3_bucket?: NullableStringFieldUpdateOperationsInput | string | null
212287
- s3_key?: NullableStringFieldUpdateOperationsInput | string | null
212288
- mime_type?: NullableStringFieldUpdateOperationsInput | string | null
212289
- file_size?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null
212290
- file_hash?: NullableStringFieldUpdateOperationsInput | string | null
212291
- metadata?: NullableJsonNullValueInput | InputJsonValue
212292
- created_at?: DateTimeFieldUpdateOperationsInput | Date | string
212293
- updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
212294
- created_by?: StringFieldUpdateOperationsInput | string
212295
- updated_by?: StringFieldUpdateOperationsInput | string
212296
- is_active?: BoolFieldUpdateOperationsInput | boolean
212297
- resume?: ResumeUncheckedUpdateOneWithoutDocumentNestedInput
212298
- resume_rendered_export?: ResumeUncheckedUpdateOneWithoutRendered_export_documentNestedInput
212299
- job_description_source?: JobDescriptionUncheckedUpdateOneWithoutSource_documentNestedInput
212300
- job_description_rendered?: JobDescriptionUncheckedUpdateOneWithoutRendered_jd_documentNestedInput
212301
- job_description_display_html?: JobDescriptionUncheckedUpdateOneWithoutDisplay_html_documentNestedInput
212302
- interview_recording?: InterviewUncheckedUpdateOneWithoutRecording_documentNestedInput
212303
- job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutDocumentNestedInput
212304
- assignment_solution?: AssignmentUncheckedUpdateOneWithoutSolution_documentNestedInput
212305
- assignment_zip?: AssignmentUncheckedUpdateOneWithoutZip_documentNestedInput
212306
- offer_letter_template_docx?: OfferLetterTemplateUncheckedUpdateManyWithoutDocumentNestedInput
212307
- offer_letter_template_html?: OfferLetterTemplateUncheckedUpdateManyWithoutHtml_documentNestedInput
212308
- offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
212309
- offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
212310
- offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
212311
- }
212312
-
212313
211976
  export type JobDescriptionCreateWithoutApprovalsInput = {
212314
211977
  id?: string
212315
211978
  status?: $Enums.JobDescriptionStatus
@@ -213153,6 +212816,7 @@ export namespace Prisma {
213153
212816
  created_by: string
213154
212817
  updated_by: string
213155
212818
  is_active?: boolean
212819
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
213156
212820
  organisation: OrganisationCreateNestedOneWithoutAssessment_libraryInput
213157
212821
  questions?: QuestionCreateNestedManyWithoutAssessmentLibraryInput
213158
212822
  evaluation_Plans?: EvaluationPlanCreateNestedManyWithoutAssessmentInput
@@ -213170,6 +212834,7 @@ export namespace Prisma {
213170
212834
  created_by: string
213171
212835
  updated_by: string
213172
212836
  is_active?: boolean
212837
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
213173
212838
  questions?: QuestionUncheckedCreateNestedManyWithoutAssessmentLibraryInput
213174
212839
  evaluation_Plans?: EvaluationPlanUncheckedCreateNestedManyWithoutAssessmentInput
213175
212840
  }
@@ -213966,6 +213631,7 @@ export namespace Prisma {
213966
213631
  created_by?: StringFieldUpdateOperationsInput | string
213967
213632
  updated_by?: StringFieldUpdateOperationsInput | string
213968
213633
  is_active?: BoolFieldUpdateOperationsInput | boolean
213634
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
213969
213635
  organisation?: OrganisationUpdateOneRequiredWithoutAssessment_libraryNestedInput
213970
213636
  questions?: QuestionUpdateManyWithoutAssessmentLibraryNestedInput
213971
213637
  evaluation_Plans?: EvaluationPlanUpdateManyWithoutAssessmentNestedInput
@@ -213983,6 +213649,7 @@ export namespace Prisma {
213983
213649
  created_by?: StringFieldUpdateOperationsInput | string
213984
213650
  updated_by?: StringFieldUpdateOperationsInput | string
213985
213651
  is_active?: BoolFieldUpdateOperationsInput | boolean
213652
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
213986
213653
  questions?: QuestionUncheckedUpdateManyWithoutAssessmentLibraryNestedInput
213987
213654
  evaluation_Plans?: EvaluationPlanUncheckedUpdateManyWithoutAssessmentNestedInput
213988
213655
  }
@@ -214923,6 +214590,8 @@ export namespace Prisma {
214923
214590
  export type QuestionCreateWithoutAssessmentLibraryInput = {
214924
214591
  id?: string
214925
214592
  skill?: string | null
214593
+ category?: $Enums.QuestionCategory | null
214594
+ bank_item_key?: string | null
214926
214595
  question: string
214927
214596
  answer: string
214928
214597
  options?: QuestionCreateoptionsInput | string[]
@@ -214944,6 +214613,8 @@ export namespace Prisma {
214944
214613
  evaluation_plan_id?: string | null
214945
214614
  candidate_id?: string | null
214946
214615
  skill?: string | null
214616
+ category?: $Enums.QuestionCategory | null
214617
+ bank_item_key?: string | null
214947
214618
  question: string
214948
214619
  answer: string
214949
214620
  options?: QuestionCreateoptionsInput | string[]
@@ -215270,6 +214941,8 @@ export namespace Prisma {
215270
214941
  evaluation_plan_id?: StringNullableFilter<"Question"> | string | null
215271
214942
  candidate_id?: StringNullableFilter<"Question"> | string | null
215272
214943
  skill?: StringNullableFilter<"Question"> | string | null
214944
+ category?: EnumQuestionCategoryNullableFilter<"Question"> | $Enums.QuestionCategory | null
214945
+ bank_item_key?: StringNullableFilter<"Question"> | string | null
215273
214946
  question?: StringFilter<"Question"> | string
215274
214947
  answer?: StringFilter<"Question"> | string
215275
214948
  options?: StringNullableListFilter<"Question">
@@ -215428,6 +215101,8 @@ export namespace Prisma {
215428
215101
  export type QuestionCreateWithoutAssessmentsInput = {
215429
215102
  id?: string
215430
215103
  skill?: string | null
215104
+ category?: $Enums.QuestionCategory | null
215105
+ bank_item_key?: string | null
215431
215106
  question: string
215432
215107
  answer: string
215433
215108
  options?: QuestionCreateoptionsInput | string[]
@@ -215450,6 +215125,8 @@ export namespace Prisma {
215450
215125
  evaluation_plan_id?: string | null
215451
215126
  candidate_id?: string | null
215452
215127
  skill?: string | null
215128
+ category?: $Enums.QuestionCategory | null
215129
+ bank_item_key?: string | null
215453
215130
  question: string
215454
215131
  answer: string
215455
215132
  options?: QuestionCreateoptionsInput | string[]
@@ -215541,6 +215218,8 @@ export namespace Prisma {
215541
215218
  export type QuestionUpdateWithoutAssessmentsInput = {
215542
215219
  id?: StringFieldUpdateOperationsInput | string
215543
215220
  skill?: NullableStringFieldUpdateOperationsInput | string | null
215221
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
215222
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
215544
215223
  question?: StringFieldUpdateOperationsInput | string
215545
215224
  answer?: StringFieldUpdateOperationsInput | string
215546
215225
  options?: QuestionUpdateoptionsInput | string[]
@@ -215563,6 +215242,8 @@ export namespace Prisma {
215563
215242
  evaluation_plan_id?: NullableStringFieldUpdateOperationsInput | string | null
215564
215243
  candidate_id?: NullableStringFieldUpdateOperationsInput | string | null
215565
215244
  skill?: NullableStringFieldUpdateOperationsInput | string | null
215245
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
215246
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
215566
215247
  question?: StringFieldUpdateOperationsInput | string
215567
215248
  answer?: StringFieldUpdateOperationsInput | string
215568
215249
  options?: QuestionUpdateoptionsInput | string[]
@@ -216200,8 +215881,6 @@ export namespace Prisma {
216200
215881
  created_by: string
216201
215882
  updated_by: string
216202
215883
  is_active?: boolean
216203
- fit_check_report_updated_flag?: boolean
216204
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
216205
215884
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
216206
215885
  candidate: UserCreateNestedOneWithoutApplicationsInput
216207
215886
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
@@ -216218,7 +215897,6 @@ export namespace Prisma {
216218
215897
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
216219
215898
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
216220
215899
  offer?: OfferCreateNestedOneWithoutApplicationInput
216221
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
216222
215900
  }
216223
215901
 
216224
215902
  export type ApplicationUncheckedCreateWithoutAssignmentsInput = {
@@ -216251,9 +215929,6 @@ export namespace Prisma {
216251
215929
  created_by: string
216252
215930
  updated_by: string
216253
215931
  is_active?: boolean
216254
- fit_check_report_document_id?: string | null
216255
- fit_check_report_updated_flag?: boolean
216256
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
216257
215932
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
216258
215933
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
216259
215934
  ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
@@ -216388,7 +216063,6 @@ export namespace Prisma {
216388
216063
  offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
216389
216064
  offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
216390
216065
  offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
216391
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
216392
216066
  }
216393
216067
 
216394
216068
  export type DocumentUncheckedCreateWithoutAssignment_solutionInput = {
@@ -216422,7 +216096,6 @@ export namespace Prisma {
216422
216096
  offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
216423
216097
  offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
216424
216098
  offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
216425
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
216426
216099
  }
216427
216100
 
216428
216101
  export type DocumentCreateOrConnectWithoutAssignment_solutionInput = {
@@ -216461,7 +216134,6 @@ export namespace Prisma {
216461
216134
  offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
216462
216135
  offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
216463
216136
  offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
216464
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
216465
216137
  }
216466
216138
 
216467
216139
  export type DocumentUncheckedCreateWithoutAssignment_zipInput = {
@@ -216495,7 +216167,6 @@ export namespace Prisma {
216495
216167
  offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
216496
216168
  offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
216497
216169
  offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
216498
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
216499
216170
  }
216500
216171
 
216501
216172
  export type DocumentCreateOrConnectWithoutAssignment_zipInput = {
@@ -217168,8 +216839,6 @@ export namespace Prisma {
217168
216839
  created_by?: StringFieldUpdateOperationsInput | string
217169
216840
  updated_by?: StringFieldUpdateOperationsInput | string
217170
216841
  is_active?: BoolFieldUpdateOperationsInput | boolean
217171
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
217172
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
217173
216842
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
217174
216843
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
217175
216844
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
@@ -217186,7 +216855,6 @@ export namespace Prisma {
217186
216855
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
217187
216856
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
217188
216857
  offer?: OfferUpdateOneWithoutApplicationNestedInput
217189
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
217190
216858
  }
217191
216859
 
217192
216860
  export type ApplicationUncheckedUpdateWithoutAssignmentsInput = {
@@ -217219,9 +216887,6 @@ export namespace Prisma {
217219
216887
  created_by?: StringFieldUpdateOperationsInput | string
217220
216888
  updated_by?: StringFieldUpdateOperationsInput | string
217221
216889
  is_active?: BoolFieldUpdateOperationsInput | boolean
217222
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
217223
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
217224
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
217225
216890
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
217226
216891
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
217227
216892
  ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
@@ -217368,7 +217033,6 @@ export namespace Prisma {
217368
217033
  offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
217369
217034
  offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
217370
217035
  offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
217371
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
217372
217036
  }
217373
217037
 
217374
217038
  export type DocumentUncheckedUpdateWithoutAssignment_solutionInput = {
@@ -217402,7 +217066,6 @@ export namespace Prisma {
217402
217066
  offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
217403
217067
  offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
217404
217068
  offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
217405
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
217406
217069
  }
217407
217070
 
217408
217071
  export type DocumentUpsertWithoutAssignment_zipInput = {
@@ -217447,7 +217110,6 @@ export namespace Prisma {
217447
217110
  offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
217448
217111
  offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
217449
217112
  offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
217450
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
217451
217113
  }
217452
217114
 
217453
217115
  export type DocumentUncheckedUpdateWithoutAssignment_zipInput = {
@@ -217481,7 +217143,6 @@ export namespace Prisma {
217481
217143
  offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
217482
217144
  offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
217483
217145
  offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
217484
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
217485
217146
  }
217486
217147
 
217487
217148
  export type OrganisationCreateWithoutAssignment_libraryInput = {
@@ -220292,8 +219953,6 @@ export namespace Prisma {
220292
219953
  created_by: string
220293
219954
  updated_by: string
220294
219955
  is_active?: boolean
220295
- fit_check_report_updated_flag?: boolean
220296
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
220297
219956
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
220298
219957
  candidate: UserCreateNestedOneWithoutApplicationsInput
220299
219958
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
@@ -220310,7 +219969,6 @@ export namespace Prisma {
220310
219969
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
220311
219970
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
220312
219971
  offer?: OfferCreateNestedOneWithoutApplicationInput
220313
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
220314
219972
  }
220315
219973
 
220316
219974
  export type ApplicationUncheckedCreateWithoutConversationsInput = {
@@ -220343,9 +220001,6 @@ export namespace Prisma {
220343
220001
  created_by: string
220344
220002
  updated_by: string
220345
220003
  is_active?: boolean
220346
- fit_check_report_document_id?: string | null
220347
- fit_check_report_updated_flag?: boolean
220348
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
220349
220004
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
220350
220005
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
220351
220006
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
@@ -220753,8 +220408,6 @@ export namespace Prisma {
220753
220408
  created_by?: StringFieldUpdateOperationsInput | string
220754
220409
  updated_by?: StringFieldUpdateOperationsInput | string
220755
220410
  is_active?: BoolFieldUpdateOperationsInput | boolean
220756
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
220757
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
220758
220411
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
220759
220412
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
220760
220413
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
@@ -220771,7 +220424,6 @@ export namespace Prisma {
220771
220424
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
220772
220425
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
220773
220426
  offer?: OfferUpdateOneWithoutApplicationNestedInput
220774
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
220775
220427
  }
220776
220428
 
220777
220429
  export type ApplicationUncheckedUpdateWithoutConversationsInput = {
@@ -220804,9 +220456,6 @@ export namespace Prisma {
220804
220456
  created_by?: StringFieldUpdateOperationsInput | string
220805
220457
  updated_by?: StringFieldUpdateOperationsInput | string
220806
220458
  is_active?: BoolFieldUpdateOperationsInput | boolean
220807
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
220808
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
220809
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
220810
220459
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
220811
220460
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
220812
220461
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
@@ -221195,8 +220844,6 @@ export namespace Prisma {
221195
220844
  created_by: string
221196
220845
  updated_by: string
221197
220846
  is_active?: boolean
221198
- fit_check_report_updated_flag?: boolean
221199
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
221200
220847
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
221201
220848
  candidate: UserCreateNestedOneWithoutApplicationsInput
221202
220849
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
@@ -221213,7 +220860,6 @@ export namespace Prisma {
221213
220860
  conversations?: ConversationCreateNestedManyWithoutApplicationInput
221214
220861
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
221215
220862
  offer?: OfferCreateNestedOneWithoutApplicationInput
221216
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
221217
220863
  }
221218
220864
 
221219
220865
  export type ApplicationUncheckedCreateWithoutCommunication_messagesInput = {
@@ -221246,9 +220892,6 @@ export namespace Prisma {
221246
220892
  created_by: string
221247
220893
  updated_by: string
221248
220894
  is_active?: boolean
221249
- fit_check_report_document_id?: string | null
221250
- fit_check_report_updated_flag?: boolean
221251
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
221252
220895
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
221253
220896
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
221254
220897
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
@@ -221649,8 +221292,6 @@ export namespace Prisma {
221649
221292
  created_by?: StringFieldUpdateOperationsInput | string
221650
221293
  updated_by?: StringFieldUpdateOperationsInput | string
221651
221294
  is_active?: BoolFieldUpdateOperationsInput | boolean
221652
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
221653
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
221654
221295
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
221655
221296
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
221656
221297
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
@@ -221667,7 +221308,6 @@ export namespace Prisma {
221667
221308
  conversations?: ConversationUpdateManyWithoutApplicationNestedInput
221668
221309
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
221669
221310
  offer?: OfferUpdateOneWithoutApplicationNestedInput
221670
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
221671
221311
  }
221672
221312
 
221673
221313
  export type ApplicationUncheckedUpdateWithoutCommunication_messagesInput = {
@@ -221700,9 +221340,6 @@ export namespace Prisma {
221700
221340
  created_by?: StringFieldUpdateOperationsInput | string
221701
221341
  updated_by?: StringFieldUpdateOperationsInput | string
221702
221342
  is_active?: BoolFieldUpdateOperationsInput | boolean
221703
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
221704
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
221705
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
221706
221343
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
221707
221344
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
221708
221345
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
@@ -224633,7 +224270,6 @@ export namespace Prisma {
224633
224270
  created_by: string
224634
224271
  updated_by: string
224635
224272
  is_active?: boolean
224636
- order_no?: number | null
224637
224273
  application: ApplicationCreateNestedOneWithoutJob_application_responsesInput
224638
224274
  field?: JobApplicationFieldCreateNestedOneWithoutJob_application_responsesInput
224639
224275
  }
@@ -224656,7 +224292,6 @@ export namespace Prisma {
224656
224292
  created_by: string
224657
224293
  updated_by: string
224658
224294
  is_active?: boolean
224659
- order_no?: number | null
224660
224295
  }
224661
224296
 
224662
224297
  export type JobApplicationResponseCreateOrConnectWithoutDocumentInput = {
@@ -225047,99 +224682,6 @@ export namespace Prisma {
225047
224682
  skipDuplicates?: boolean
225048
224683
  }
225049
224684
 
225050
- export type ApplicationCreateWithoutFit_check_report_documentInput = {
225051
- id?: string
225052
- fit_check_score?: number | null
225053
- applied_at?: Date | string
225054
- round_no?: number
225055
- is_jaf_completed?: boolean
225056
- proceed_to_next_round?: boolean | null
225057
- evaluationComment?: string | null
225058
- is_flagged?: boolean
225059
- flag_comment?: string | null
225060
- flagged_at?: Date | string | null
225061
- flagged_by?: string | null
225062
- unflag_comment?: string | null
225063
- unflagged_at?: Date | string | null
225064
- unflagged_by?: string | null
225065
- fit_check_status?: $Enums.FitCheckStatus | null
225066
- status?: $Enums.ApplicationStatus
225067
- offer_substatus?: $Enums.ApplicationOfferSubstatus | null
225068
- created_at?: Date | string
225069
- updated_at?: Date | string
225070
- created_by: string
225071
- updated_by: string
225072
- is_active?: boolean
225073
- fit_check_report_updated_flag?: boolean
225074
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
225075
- evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
225076
- candidate: UserCreateNestedOneWithoutApplicationsInput
225077
- organisation: OrganisationCreateNestedOneWithoutApplicationsInput
225078
- resume: ResumeCreateNestedOneWithoutApplicationsInput
225079
- job_description: JobDescriptionCreateNestedOneWithoutApplicationsInput
225080
- fit_check?: FitCheckCreateNestedOneWithoutApplicationInput
225081
- recruiter?: UserCreateNestedOneWithoutRecruiter_applicationsInput
225082
- source?: SourceCreateNestedOneWithoutApplicationsInput
225083
- interviews?: InterviewCreateNestedManyWithoutApplicationInput
225084
- assignments?: AssignmentCreateNestedManyWithoutApplicationInput
225085
- ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutApplicationInput
225086
- activity_logs?: ActivityLogCreateNestedManyWithoutApplicationInput
225087
- notes?: NotesCreateNestedManyWithoutApplicationInput
225088
- conversations?: ConversationCreateNestedManyWithoutApplicationInput
225089
- communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
225090
- job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
225091
- offer?: OfferCreateNestedOneWithoutApplicationInput
225092
- }
225093
-
225094
- export type ApplicationUncheckedCreateWithoutFit_check_report_documentInput = {
225095
- id?: string
225096
- organisation_id: string
225097
- candidate_id: string
225098
- resume_id: string
225099
- job_description_id: string
225100
- evaluation_plan_id?: string | null
225101
- recruiter_id?: string | null
225102
- source_id?: string | null
225103
- fit_check_score?: number | null
225104
- applied_at?: Date | string
225105
- round_no?: number
225106
- is_jaf_completed?: boolean
225107
- proceed_to_next_round?: boolean | null
225108
- evaluationComment?: string | null
225109
- is_flagged?: boolean
225110
- flag_comment?: string | null
225111
- flagged_at?: Date | string | null
225112
- flagged_by?: string | null
225113
- unflag_comment?: string | null
225114
- unflagged_at?: Date | string | null
225115
- unflagged_by?: string | null
225116
- fit_check_status?: $Enums.FitCheckStatus | null
225117
- status?: $Enums.ApplicationStatus
225118
- offer_substatus?: $Enums.ApplicationOfferSubstatus | null
225119
- created_at?: Date | string
225120
- updated_at?: Date | string
225121
- created_by: string
225122
- updated_by: string
225123
- is_active?: boolean
225124
- fit_check_report_updated_flag?: boolean
225125
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
225126
- fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
225127
- interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
225128
- assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
225129
- ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
225130
- activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutApplicationInput
225131
- notes?: NotesUncheckedCreateNestedManyWithoutApplicationInput
225132
- conversations?: ConversationUncheckedCreateNestedManyWithoutApplicationInput
225133
- communication_messages?: CommunicationMessageUncheckedCreateNestedManyWithoutApplicationInput
225134
- job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutApplicationInput
225135
- offer?: OfferUncheckedCreateNestedOneWithoutApplicationInput
225136
- }
225137
-
225138
- export type ApplicationCreateOrConnectWithoutFit_check_report_documentInput = {
225139
- where: ApplicationWhereUniqueInput
225140
- create: XOR<ApplicationCreateWithoutFit_check_report_documentInput, ApplicationUncheckedCreateWithoutFit_check_report_documentInput>
225141
- }
225142
-
225143
224685
  export type OrganisationUpsertWithoutDocumentsInput = {
225144
224686
  update: XOR<OrganisationUpdateWithoutDocumentsInput, OrganisationUncheckedUpdateWithoutDocumentsInput>
225145
224687
  create: XOR<OrganisationCreateWithoutDocumentsInput, OrganisationUncheckedCreateWithoutDocumentsInput>
@@ -226338,105 +225880,6 @@ export namespace Prisma {
226338
225880
  updated_at?: DateTimeFilter<"Offer"> | Date | string
226339
225881
  }
226340
225882
 
226341
- export type ApplicationUpsertWithoutFit_check_report_documentInput = {
226342
- update: XOR<ApplicationUpdateWithoutFit_check_report_documentInput, ApplicationUncheckedUpdateWithoutFit_check_report_documentInput>
226343
- create: XOR<ApplicationCreateWithoutFit_check_report_documentInput, ApplicationUncheckedCreateWithoutFit_check_report_documentInput>
226344
- where?: ApplicationWhereInput
226345
- }
226346
-
226347
- export type ApplicationUpdateToOneWithWhereWithoutFit_check_report_documentInput = {
226348
- where?: ApplicationWhereInput
226349
- data: XOR<ApplicationUpdateWithoutFit_check_report_documentInput, ApplicationUncheckedUpdateWithoutFit_check_report_documentInput>
226350
- }
226351
-
226352
- export type ApplicationUpdateWithoutFit_check_report_documentInput = {
226353
- id?: StringFieldUpdateOperationsInput | string
226354
- fit_check_score?: NullableFloatFieldUpdateOperationsInput | number | null
226355
- applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
226356
- round_no?: IntFieldUpdateOperationsInput | number
226357
- is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
226358
- proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
226359
- evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
226360
- is_flagged?: BoolFieldUpdateOperationsInput | boolean
226361
- flag_comment?: NullableStringFieldUpdateOperationsInput | string | null
226362
- flagged_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
226363
- flagged_by?: NullableStringFieldUpdateOperationsInput | string | null
226364
- unflag_comment?: NullableStringFieldUpdateOperationsInput | string | null
226365
- unflagged_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
226366
- unflagged_by?: NullableStringFieldUpdateOperationsInput | string | null
226367
- fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
226368
- status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
226369
- offer_substatus?: NullableEnumApplicationOfferSubstatusFieldUpdateOperationsInput | $Enums.ApplicationOfferSubstatus | null
226370
- created_at?: DateTimeFieldUpdateOperationsInput | Date | string
226371
- updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
226372
- created_by?: StringFieldUpdateOperationsInput | string
226373
- updated_by?: StringFieldUpdateOperationsInput | string
226374
- is_active?: BoolFieldUpdateOperationsInput | boolean
226375
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
226376
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
226377
- evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
226378
- candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
226379
- organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
226380
- resume?: ResumeUpdateOneRequiredWithoutApplicationsNestedInput
226381
- job_description?: JobDescriptionUpdateOneRequiredWithoutApplicationsNestedInput
226382
- fit_check?: FitCheckUpdateOneWithoutApplicationNestedInput
226383
- recruiter?: UserUpdateOneWithoutRecruiter_applicationsNestedInput
226384
- source?: SourceUpdateOneWithoutApplicationsNestedInput
226385
- interviews?: InterviewUpdateManyWithoutApplicationNestedInput
226386
- assignments?: AssignmentUpdateManyWithoutApplicationNestedInput
226387
- ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutApplicationNestedInput
226388
- activity_logs?: ActivityLogUpdateManyWithoutApplicationNestedInput
226389
- notes?: NotesUpdateManyWithoutApplicationNestedInput
226390
- conversations?: ConversationUpdateManyWithoutApplicationNestedInput
226391
- communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
226392
- job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
226393
- offer?: OfferUpdateOneWithoutApplicationNestedInput
226394
- }
226395
-
226396
- export type ApplicationUncheckedUpdateWithoutFit_check_report_documentInput = {
226397
- id?: StringFieldUpdateOperationsInput | string
226398
- organisation_id?: StringFieldUpdateOperationsInput | string
226399
- candidate_id?: StringFieldUpdateOperationsInput | string
226400
- resume_id?: StringFieldUpdateOperationsInput | string
226401
- job_description_id?: StringFieldUpdateOperationsInput | string
226402
- evaluation_plan_id?: NullableStringFieldUpdateOperationsInput | string | null
226403
- recruiter_id?: NullableStringFieldUpdateOperationsInput | string | null
226404
- source_id?: NullableStringFieldUpdateOperationsInput | string | null
226405
- fit_check_score?: NullableFloatFieldUpdateOperationsInput | number | null
226406
- applied_at?: DateTimeFieldUpdateOperationsInput | Date | string
226407
- round_no?: IntFieldUpdateOperationsInput | number
226408
- is_jaf_completed?: BoolFieldUpdateOperationsInput | boolean
226409
- proceed_to_next_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
226410
- evaluationComment?: NullableStringFieldUpdateOperationsInput | string | null
226411
- is_flagged?: BoolFieldUpdateOperationsInput | boolean
226412
- flag_comment?: NullableStringFieldUpdateOperationsInput | string | null
226413
- flagged_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
226414
- flagged_by?: NullableStringFieldUpdateOperationsInput | string | null
226415
- unflag_comment?: NullableStringFieldUpdateOperationsInput | string | null
226416
- unflagged_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
226417
- unflagged_by?: NullableStringFieldUpdateOperationsInput | string | null
226418
- fit_check_status?: NullableEnumFitCheckStatusFieldUpdateOperationsInput | $Enums.FitCheckStatus | null
226419
- status?: EnumApplicationStatusFieldUpdateOperationsInput | $Enums.ApplicationStatus
226420
- offer_substatus?: NullableEnumApplicationOfferSubstatusFieldUpdateOperationsInput | $Enums.ApplicationOfferSubstatus | null
226421
- created_at?: DateTimeFieldUpdateOperationsInput | Date | string
226422
- updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
226423
- created_by?: StringFieldUpdateOperationsInput | string
226424
- updated_by?: StringFieldUpdateOperationsInput | string
226425
- is_active?: BoolFieldUpdateOperationsInput | boolean
226426
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
226427
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
226428
- fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
226429
- interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
226430
- assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
226431
- ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
226432
- activity_logs?: ActivityLogUncheckedUpdateManyWithoutApplicationNestedInput
226433
- notes?: NotesUncheckedUpdateManyWithoutApplicationNestedInput
226434
- conversations?: ConversationUncheckedUpdateManyWithoutApplicationNestedInput
226435
- communication_messages?: CommunicationMessageUncheckedUpdateManyWithoutApplicationNestedInput
226436
- job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutApplicationNestedInput
226437
- offer?: OfferUncheckedUpdateOneWithoutApplicationNestedInput
226438
- }
226439
-
226440
225883
  export type OrganisationCreateWithoutEvaluation_criteriaInput = {
226441
225884
  id?: string
226442
225885
  name: string
@@ -226829,6 +226272,8 @@ export namespace Prisma {
226829
226272
  export type QuestionCreateWithoutEvaluationPlanInput = {
226830
226273
  id?: string
226831
226274
  skill?: string | null
226275
+ category?: $Enums.QuestionCategory | null
226276
+ bank_item_key?: string | null
226832
226277
  question: string
226833
226278
  answer: string
226834
226279
  options?: QuestionCreateoptionsInput | string[]
@@ -226850,6 +226295,8 @@ export namespace Prisma {
226850
226295
  assessment_library_id?: string | null
226851
226296
  candidate_id?: string | null
226852
226297
  skill?: string | null
226298
+ category?: $Enums.QuestionCategory | null
226299
+ bank_item_key?: string | null
226853
226300
  question: string
226854
226301
  answer: string
226855
226302
  options?: QuestionCreateoptionsInput | string[]
@@ -227019,8 +226466,6 @@ export namespace Prisma {
227019
226466
  created_by: string
227020
226467
  updated_by: string
227021
226468
  is_active?: boolean
227022
- fit_check_report_updated_flag?: boolean
227023
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
227024
226469
  candidate: UserCreateNestedOneWithoutApplicationsInput
227025
226470
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
227026
226471
  resume: ResumeCreateNestedOneWithoutApplicationsInput
@@ -227037,7 +226482,6 @@ export namespace Prisma {
227037
226482
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
227038
226483
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
227039
226484
  offer?: OfferCreateNestedOneWithoutApplicationInput
227040
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
227041
226485
  }
227042
226486
 
227043
226487
  export type ApplicationUncheckedCreateWithoutEvaluation_planInput = {
@@ -227069,9 +226513,6 @@ export namespace Prisma {
227069
226513
  created_by: string
227070
226514
  updated_by: string
227071
226515
  is_active?: boolean
227072
- fit_check_report_document_id?: string | null
227073
- fit_check_report_updated_flag?: boolean
227074
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
227075
226516
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
227076
226517
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
227077
226518
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
@@ -227105,6 +226546,7 @@ export namespace Prisma {
227105
226546
  created_by: string
227106
226547
  updated_by: string
227107
226548
  is_active?: boolean
226549
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
227108
226550
  organisation: OrganisationCreateNestedOneWithoutAssessment_libraryInput
227109
226551
  questions?: QuestionCreateNestedManyWithoutAssessmentLibraryInput
227110
226552
  assessments?: AssessmentCreateNestedManyWithoutAssessment_libraryInput
@@ -227122,6 +226564,7 @@ export namespace Prisma {
227122
226564
  created_by: string
227123
226565
  updated_by: string
227124
226566
  is_active?: boolean
226567
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
227125
226568
  questions?: QuestionUncheckedCreateNestedManyWithoutAssessmentLibraryInput
227126
226569
  assessments?: AssessmentUncheckedCreateNestedManyWithoutAssessment_libraryInput
227127
226570
  }
@@ -227452,9 +226895,6 @@ export namespace Prisma {
227452
226895
  created_by?: StringFilter<"Application"> | string
227453
226896
  updated_by?: StringFilter<"Application"> | string
227454
226897
  is_active?: BoolFilter<"Application"> | boolean
227455
- fit_check_report_document_id?: StringNullableFilter<"Application"> | string | null
227456
- fit_check_report_updated_flag?: BoolFilter<"Application"> | boolean
227457
- fit_check_report_data?: JsonNullableFilter<"Application">
227458
226898
  }
227459
226899
 
227460
226900
  export type AssessmentLibraryUpsertWithoutEvaluation_PlansInput = {
@@ -227479,6 +226919,7 @@ export namespace Prisma {
227479
226919
  created_by?: StringFieldUpdateOperationsInput | string
227480
226920
  updated_by?: StringFieldUpdateOperationsInput | string
227481
226921
  is_active?: BoolFieldUpdateOperationsInput | boolean
226922
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
227482
226923
  organisation?: OrganisationUpdateOneRequiredWithoutAssessment_libraryNestedInput
227483
226924
  questions?: QuestionUpdateManyWithoutAssessmentLibraryNestedInput
227484
226925
  assessments?: AssessmentUpdateManyWithoutAssessment_libraryNestedInput
@@ -227496,6 +226937,7 @@ export namespace Prisma {
227496
226937
  created_by?: StringFieldUpdateOperationsInput | string
227497
226938
  updated_by?: StringFieldUpdateOperationsInput | string
227498
226939
  is_active?: BoolFieldUpdateOperationsInput | boolean
226940
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
227499
226941
  questions?: QuestionUncheckedUpdateManyWithoutAssessmentLibraryNestedInput
227500
226942
  assessments?: AssessmentUncheckedUpdateManyWithoutAssessment_libraryNestedInput
227501
226943
  }
@@ -228280,8 +227722,6 @@ export namespace Prisma {
228280
227722
  created_by: string
228281
227723
  updated_by: string
228282
227724
  is_active?: boolean
228283
- fit_check_report_updated_flag?: boolean
228284
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
228285
227725
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
228286
227726
  candidate: UserCreateNestedOneWithoutApplicationsInput
228287
227727
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
@@ -228298,7 +227738,6 @@ export namespace Prisma {
228298
227738
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
228299
227739
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
228300
227740
  offer?: OfferCreateNestedOneWithoutApplicationInput
228301
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
228302
227741
  }
228303
227742
 
228304
227743
  export type ApplicationUncheckedCreateWithoutFit_checkInput = {
@@ -228331,9 +227770,6 @@ export namespace Prisma {
228331
227770
  created_by: string
228332
227771
  updated_by: string
228333
227772
  is_active?: boolean
228334
- fit_check_report_document_id?: string | null
228335
- fit_check_report_updated_flag?: boolean
228336
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
228337
227773
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
228338
227774
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
228339
227775
  ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
@@ -228870,8 +228306,6 @@ export namespace Prisma {
228870
228306
  created_by?: StringFieldUpdateOperationsInput | string
228871
228307
  updated_by?: StringFieldUpdateOperationsInput | string
228872
228308
  is_active?: BoolFieldUpdateOperationsInput | boolean
228873
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
228874
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
228875
228309
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
228876
228310
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
228877
228311
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
@@ -228888,7 +228322,6 @@ export namespace Prisma {
228888
228322
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
228889
228323
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
228890
228324
  offer?: OfferUpdateOneWithoutApplicationNestedInput
228891
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
228892
228325
  }
228893
228326
 
228894
228327
  export type ApplicationUncheckedUpdateWithoutFit_checkInput = {
@@ -228921,9 +228354,6 @@ export namespace Prisma {
228921
228354
  created_by?: StringFieldUpdateOperationsInput | string
228922
228355
  updated_by?: StringFieldUpdateOperationsInput | string
228923
228356
  is_active?: BoolFieldUpdateOperationsInput | boolean
228924
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
228925
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
228926
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
228927
228357
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
228928
228358
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
228929
228359
  ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
@@ -232456,7 +231886,6 @@ export namespace Prisma {
232456
231886
  offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
232457
231887
  offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
232458
231888
  offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
232459
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
232460
231889
  }
232461
231890
 
232462
231891
  export type DocumentUncheckedCreateWithoutInterview_recordingInput = {
@@ -232490,7 +231919,6 @@ export namespace Prisma {
232490
231919
  offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
232491
231920
  offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
232492
231921
  offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
232493
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
232494
231922
  }
232495
231923
 
232496
231924
  export type DocumentCreateOrConnectWithoutInterview_recordingInput = {
@@ -232756,8 +232184,6 @@ export namespace Prisma {
232756
232184
  created_by: string
232757
232185
  updated_by: string
232758
232186
  is_active?: boolean
232759
- fit_check_report_updated_flag?: boolean
232760
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
232761
232187
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
232762
232188
  candidate: UserCreateNestedOneWithoutApplicationsInput
232763
232189
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
@@ -232774,7 +232200,6 @@ export namespace Prisma {
232774
232200
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
232775
232201
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
232776
232202
  offer?: OfferCreateNestedOneWithoutApplicationInput
232777
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
232778
232203
  }
232779
232204
 
232780
232205
  export type ApplicationUncheckedCreateWithoutInterviewsInput = {
@@ -232807,9 +232232,6 @@ export namespace Prisma {
232807
232232
  created_by: string
232808
232233
  updated_by: string
232809
232234
  is_active?: boolean
232810
- fit_check_report_document_id?: string | null
232811
- fit_check_report_updated_flag?: boolean
232812
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
232813
232235
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
232814
232236
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
232815
232237
  ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
@@ -233655,7 +233077,6 @@ export namespace Prisma {
233655
233077
  offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
233656
233078
  offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
233657
233079
  offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
233658
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
233659
233080
  }
233660
233081
 
233661
233082
  export type DocumentUncheckedUpdateWithoutInterview_recordingInput = {
@@ -233689,7 +233110,6 @@ export namespace Prisma {
233689
233110
  offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
233690
233111
  offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
233691
233112
  offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
233692
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
233693
233113
  }
233694
233114
 
233695
233115
  export type JobDescriptionUpsertWithoutInterviewsInput = {
@@ -233979,8 +233399,6 @@ export namespace Prisma {
233979
233399
  created_by?: StringFieldUpdateOperationsInput | string
233980
233400
  updated_by?: StringFieldUpdateOperationsInput | string
233981
233401
  is_active?: BoolFieldUpdateOperationsInput | boolean
233982
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
233983
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
233984
233402
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
233985
233403
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
233986
233404
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
@@ -233997,7 +233415,6 @@ export namespace Prisma {
233997
233415
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
233998
233416
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
233999
233417
  offer?: OfferUpdateOneWithoutApplicationNestedInput
234000
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
234001
233418
  }
234002
233419
 
234003
233420
  export type ApplicationUncheckedUpdateWithoutInterviewsInput = {
@@ -234030,9 +233447,6 @@ export namespace Prisma {
234030
233447
  created_by?: StringFieldUpdateOperationsInput | string
234031
233448
  updated_by?: StringFieldUpdateOperationsInput | string
234032
233449
  is_active?: BoolFieldUpdateOperationsInput | boolean
234033
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
234034
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
234035
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
234036
233450
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
234037
233451
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
234038
233452
  ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
@@ -234776,7 +234190,6 @@ export namespace Prisma {
234776
234190
  created_by: string
234777
234191
  updated_by: string
234778
234192
  is_active?: boolean
234779
- order_no?: number | null
234780
234193
  application: ApplicationCreateNestedOneWithoutJob_application_responsesInput
234781
234194
  document?: DocumentCreateNestedOneWithoutJob_application_responsesInput
234782
234195
  }
@@ -234799,7 +234212,6 @@ export namespace Prisma {
234799
234212
  created_by: string
234800
234213
  updated_by: string
234801
234214
  is_active?: boolean
234802
- order_no?: number | null
234803
234215
  }
234804
234216
 
234805
234217
  export type JobApplicationResponseCreateOrConnectWithoutFieldInput = {
@@ -235033,8 +234445,6 @@ export namespace Prisma {
235033
234445
  created_by: string
235034
234446
  updated_by: string
235035
234447
  is_active?: boolean
235036
- fit_check_report_updated_flag?: boolean
235037
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
235038
234448
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
235039
234449
  candidate: UserCreateNestedOneWithoutApplicationsInput
235040
234450
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
@@ -235051,7 +234461,6 @@ export namespace Prisma {
235051
234461
  conversations?: ConversationCreateNestedManyWithoutApplicationInput
235052
234462
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
235053
234463
  offer?: OfferCreateNestedOneWithoutApplicationInput
235054
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
235055
234464
  }
235056
234465
 
235057
234466
  export type ApplicationUncheckedCreateWithoutJob_application_responsesInput = {
@@ -235084,9 +234493,6 @@ export namespace Prisma {
235084
234493
  created_by: string
235085
234494
  updated_by: string
235086
234495
  is_active?: boolean
235087
- fit_check_report_document_id?: string | null
235088
- fit_check_report_updated_flag?: boolean
235089
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
235090
234496
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
235091
234497
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
235092
234498
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
@@ -235116,7 +234522,6 @@ export namespace Prisma {
235116
234522
  updated_by: string
235117
234523
  created_at?: Date | string
235118
234524
  updated_at?: Date | string
235119
- order_no?: number | null
235120
234525
  organisation: OrganisationCreateNestedOneWithoutJob_application_fieldsInput
235121
234526
  job_application_template: JobApplicationTemplateCreateNestedOneWithoutFieldsInput
235122
234527
  }
@@ -235136,7 +234541,6 @@ export namespace Prisma {
235136
234541
  updated_by: string
235137
234542
  created_at?: Date | string
235138
234543
  updated_at?: Date | string
235139
- order_no?: number | null
235140
234544
  }
235141
234545
 
235142
234546
  export type JobApplicationFieldCreateOrConnectWithoutJob_application_responsesInput = {
@@ -235175,7 +234579,6 @@ export namespace Prisma {
235175
234579
  offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
235176
234580
  offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
235177
234581
  offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
235178
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
235179
234582
  }
235180
234583
 
235181
234584
  export type DocumentUncheckedCreateWithoutJob_application_responsesInput = {
@@ -235209,7 +234612,6 @@ export namespace Prisma {
235209
234612
  offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
235210
234613
  offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
235211
234614
  offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
235212
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
235213
234615
  }
235214
234616
 
235215
234617
  export type DocumentCreateOrConnectWithoutJob_application_responsesInput = {
@@ -235251,8 +234653,6 @@ export namespace Prisma {
235251
234653
  created_by?: StringFieldUpdateOperationsInput | string
235252
234654
  updated_by?: StringFieldUpdateOperationsInput | string
235253
234655
  is_active?: BoolFieldUpdateOperationsInput | boolean
235254
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
235255
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
235256
234656
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
235257
234657
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
235258
234658
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
@@ -235269,7 +234669,6 @@ export namespace Prisma {
235269
234669
  conversations?: ConversationUpdateManyWithoutApplicationNestedInput
235270
234670
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
235271
234671
  offer?: OfferUpdateOneWithoutApplicationNestedInput
235272
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
235273
234672
  }
235274
234673
 
235275
234674
  export type ApplicationUncheckedUpdateWithoutJob_application_responsesInput = {
@@ -235302,9 +234701,6 @@ export namespace Prisma {
235302
234701
  created_by?: StringFieldUpdateOperationsInput | string
235303
234702
  updated_by?: StringFieldUpdateOperationsInput | string
235304
234703
  is_active?: BoolFieldUpdateOperationsInput | boolean
235305
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
235306
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
235307
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
235308
234704
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
235309
234705
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
235310
234706
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
@@ -235340,7 +234736,6 @@ export namespace Prisma {
235340
234736
  updated_by?: StringFieldUpdateOperationsInput | string
235341
234737
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
235342
234738
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
235343
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
235344
234739
  organisation?: OrganisationUpdateOneRequiredWithoutJob_application_fieldsNestedInput
235345
234740
  job_application_template?: JobApplicationTemplateUpdateOneRequiredWithoutFieldsNestedInput
235346
234741
  }
@@ -235360,7 +234755,6 @@ export namespace Prisma {
235360
234755
  updated_by?: StringFieldUpdateOperationsInput | string
235361
234756
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
235362
234757
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
235363
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
235364
234758
  }
235365
234759
 
235366
234760
  export type DocumentUpsertWithoutJob_application_responsesInput = {
@@ -235405,7 +234799,6 @@ export namespace Prisma {
235405
234799
  offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
235406
234800
  offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
235407
234801
  offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
235408
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
235409
234802
  }
235410
234803
 
235411
234804
  export type DocumentUncheckedUpdateWithoutJob_application_responsesInput = {
@@ -235439,7 +234832,6 @@ export namespace Prisma {
235439
234832
  offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
235440
234833
  offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
235441
234834
  offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
235442
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
235443
234835
  }
235444
234836
 
235445
234837
  export type OrganisationCreateWithoutJob_application_templatesInput = {
@@ -235701,7 +235093,6 @@ export namespace Prisma {
235701
235093
  updated_by: string
235702
235094
  created_at?: Date | string
235703
235095
  updated_at?: Date | string
235704
- order_no?: number | null
235705
235096
  organisation: OrganisationCreateNestedOneWithoutJob_application_fieldsInput
235706
235097
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutFieldInput
235707
235098
  }
@@ -235720,7 +235111,6 @@ export namespace Prisma {
235720
235111
  updated_by: string
235721
235112
  created_at?: Date | string
235722
235113
  updated_at?: Date | string
235723
- order_no?: number | null
235724
235114
  job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutFieldInput
235725
235115
  }
235726
235116
 
@@ -236026,7 +235416,6 @@ export namespace Prisma {
236026
235416
  updated_by?: StringFilter<"JobApplicationField"> | string
236027
235417
  created_at?: DateTimeFilter<"JobApplicationField"> | Date | string
236028
235418
  updated_at?: DateTimeFilter<"JobApplicationField"> | Date | string
236029
- order_no?: IntNullableFilter<"JobApplicationField"> | number | null
236030
235419
  }
236031
235420
 
236032
235421
  export type DocumentCreateWithoutJob_description_renderedInput = {
@@ -236060,7 +235449,6 @@ export namespace Prisma {
236060
235449
  offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
236061
235450
  offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
236062
235451
  offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
236063
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
236064
235452
  }
236065
235453
 
236066
235454
  export type DocumentUncheckedCreateWithoutJob_description_renderedInput = {
@@ -236094,7 +235482,6 @@ export namespace Prisma {
236094
235482
  offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
236095
235483
  offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
236096
235484
  offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
236097
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
236098
235485
  }
236099
235486
 
236100
235487
  export type DocumentCreateOrConnectWithoutJob_description_renderedInput = {
@@ -236133,7 +235520,6 @@ export namespace Prisma {
236133
235520
  offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
236134
235521
  offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
236135
235522
  offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
236136
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
236137
235523
  }
236138
235524
 
236139
235525
  export type DocumentUncheckedCreateWithoutJob_description_display_htmlInput = {
@@ -236167,7 +235553,6 @@ export namespace Prisma {
236167
235553
  offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
236168
235554
  offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
236169
235555
  offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
236170
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
236171
235556
  }
236172
235557
 
236173
235558
  export type DocumentCreateOrConnectWithoutJob_description_display_htmlInput = {
@@ -236459,7 +235844,6 @@ export namespace Prisma {
236459
235844
  offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
236460
235845
  offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
236461
235846
  offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
236462
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
236463
235847
  }
236464
235848
 
236465
235849
  export type DocumentUncheckedCreateWithoutJob_description_sourceInput = {
@@ -236493,7 +235877,6 @@ export namespace Prisma {
236493
235877
  offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
236494
235878
  offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
236495
235879
  offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
236496
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
236497
235880
  }
236498
235881
 
236499
235882
  export type DocumentCreateOrConnectWithoutJob_description_sourceInput = {
@@ -236524,8 +235907,6 @@ export namespace Prisma {
236524
235907
  created_by: string
236525
235908
  updated_by: string
236526
235909
  is_active?: boolean
236527
- fit_check_report_updated_flag?: boolean
236528
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
236529
235910
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
236530
235911
  candidate: UserCreateNestedOneWithoutApplicationsInput
236531
235912
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
@@ -236542,7 +235923,6 @@ export namespace Prisma {
236542
235923
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
236543
235924
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
236544
235925
  offer?: OfferCreateNestedOneWithoutApplicationInput
236545
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
236546
235926
  }
236547
235927
 
236548
235928
  export type ApplicationUncheckedCreateWithoutJob_descriptionInput = {
@@ -236574,9 +235954,6 @@ export namespace Prisma {
236574
235954
  created_by: string
236575
235955
  updated_by: string
236576
235956
  is_active?: boolean
236577
- fit_check_report_document_id?: string | null
236578
- fit_check_report_updated_flag?: boolean
236579
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
236580
235957
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
236581
235958
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
236582
235959
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
@@ -238088,7 +237465,6 @@ export namespace Prisma {
238088
237465
  offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
238089
237466
  offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
238090
237467
  offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
238091
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
238092
237468
  }
238093
237469
 
238094
237470
  export type DocumentUncheckedUpdateWithoutJob_description_renderedInput = {
@@ -238122,7 +237498,6 @@ export namespace Prisma {
238122
237498
  offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
238123
237499
  offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
238124
237500
  offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
238125
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
238126
237501
  }
238127
237502
 
238128
237503
  export type DocumentUpsertWithoutJob_description_display_htmlInput = {
@@ -238167,7 +237542,6 @@ export namespace Prisma {
238167
237542
  offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
238168
237543
  offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
238169
237544
  offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
238170
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
238171
237545
  }
238172
237546
 
238173
237547
  export type DocumentUncheckedUpdateWithoutJob_description_display_htmlInput = {
@@ -238201,7 +237575,6 @@ export namespace Prisma {
238201
237575
  offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
238202
237576
  offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
238203
237577
  offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
238204
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
238205
237578
  }
238206
237579
 
238207
237580
  export type JobProfileUpsertWithoutJob_descriptionsInput = {
@@ -238517,7 +237890,6 @@ export namespace Prisma {
238517
237890
  offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
238518
237891
  offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
238519
237892
  offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
238520
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
238521
237893
  }
238522
237894
 
238523
237895
  export type DocumentUncheckedUpdateWithoutJob_description_sourceInput = {
@@ -238551,7 +237923,6 @@ export namespace Prisma {
238551
237923
  offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
238552
237924
  offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
238553
237925
  offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
238554
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
238555
237926
  }
238556
237927
 
238557
237928
  export type ApplicationUpsertWithWhereUniqueWithoutJob_descriptionInput = {
@@ -244965,8 +244336,6 @@ export namespace Prisma {
244965
244336
  created_by: string
244966
244337
  updated_by: string
244967
244338
  is_active?: boolean
244968
- fit_check_report_updated_flag?: boolean
244969
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
244970
244339
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
244971
244340
  candidate: UserCreateNestedOneWithoutApplicationsInput
244972
244341
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
@@ -244983,7 +244352,6 @@ export namespace Prisma {
244983
244352
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
244984
244353
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
244985
244354
  offer?: OfferCreateNestedOneWithoutApplicationInput
244986
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
244987
244355
  }
244988
244356
 
244989
244357
  export type ApplicationUncheckedCreateWithoutNotesInput = {
@@ -245016,9 +244384,6 @@ export namespace Prisma {
245016
244384
  created_by: string
245017
244385
  updated_by: string
245018
244386
  is_active?: boolean
245019
- fit_check_report_document_id?: string | null
245020
- fit_check_report_updated_flag?: boolean
245021
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
245022
244387
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
245023
244388
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
245024
244389
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
@@ -245230,8 +244595,6 @@ export namespace Prisma {
245230
244595
  created_by?: StringFieldUpdateOperationsInput | string
245231
244596
  updated_by?: StringFieldUpdateOperationsInput | string
245232
244597
  is_active?: BoolFieldUpdateOperationsInput | boolean
245233
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
245234
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
245235
244598
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
245236
244599
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
245237
244600
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
@@ -245248,7 +244611,6 @@ export namespace Prisma {
245248
244611
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
245249
244612
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
245250
244613
  offer?: OfferUpdateOneWithoutApplicationNestedInput
245251
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
245252
244614
  }
245253
244615
 
245254
244616
  export type ApplicationUncheckedUpdateWithoutNotesInput = {
@@ -245281,9 +244643,6 @@ export namespace Prisma {
245281
244643
  created_by?: StringFieldUpdateOperationsInput | string
245282
244644
  updated_by?: StringFieldUpdateOperationsInput | string
245283
244645
  is_active?: BoolFieldUpdateOperationsInput | boolean
245284
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
245285
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
245286
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
245287
244646
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
245288
244647
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
245289
244648
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
@@ -245739,7 +245098,6 @@ export namespace Prisma {
245739
245098
  offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
245740
245099
  offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
245741
245100
  offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
245742
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
245743
245101
  }
245744
245102
 
245745
245103
  export type DocumentUncheckedCreateWithoutOffer_letter_template_docxInput = {
@@ -245773,7 +245131,6 @@ export namespace Prisma {
245773
245131
  offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
245774
245132
  offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
245775
245133
  offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
245776
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
245777
245134
  }
245778
245135
 
245779
245136
  export type DocumentCreateOrConnectWithoutOffer_letter_template_docxInput = {
@@ -245812,7 +245169,6 @@ export namespace Prisma {
245812
245169
  offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
245813
245170
  offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
245814
245171
  offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
245815
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
245816
245172
  }
245817
245173
 
245818
245174
  export type DocumentUncheckedCreateWithoutOffer_letter_template_htmlInput = {
@@ -245846,7 +245202,6 @@ export namespace Prisma {
245846
245202
  offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
245847
245203
  offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
245848
245204
  offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
245849
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
245850
245205
  }
245851
245206
 
245852
245207
  export type DocumentCreateOrConnectWithoutOffer_letter_template_htmlInput = {
@@ -246268,7 +245623,6 @@ export namespace Prisma {
246268
245623
  offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
246269
245624
  offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
246270
245625
  offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
246271
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
246272
245626
  }
246273
245627
 
246274
245628
  export type DocumentUncheckedUpdateWithoutOffer_letter_template_docxInput = {
@@ -246302,7 +245656,6 @@ export namespace Prisma {
246302
245656
  offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
246303
245657
  offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
246304
245658
  offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
246305
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
246306
245659
  }
246307
245660
 
246308
245661
  export type DocumentUpsertWithoutOffer_letter_template_htmlInput = {
@@ -246347,7 +245700,6 @@ export namespace Prisma {
246347
245700
  offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
246348
245701
  offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
246349
245702
  offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
246350
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
246351
245703
  }
246352
245704
 
246353
245705
  export type DocumentUncheckedUpdateWithoutOffer_letter_template_htmlInput = {
@@ -246381,7 +245733,6 @@ export namespace Prisma {
246381
245733
  offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
246382
245734
  offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
246383
245735
  offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
246384
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
246385
245736
  }
246386
245737
 
246387
245738
  export type OfferUpsertWithWhereUniqueWithoutTemplateInput = {
@@ -246439,8 +245790,6 @@ export namespace Prisma {
246439
245790
  created_by: string
246440
245791
  updated_by: string
246441
245792
  is_active?: boolean
246442
- fit_check_report_updated_flag?: boolean
246443
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
246444
245793
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
246445
245794
  candidate: UserCreateNestedOneWithoutApplicationsInput
246446
245795
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
@@ -246457,7 +245806,6 @@ export namespace Prisma {
246457
245806
  conversations?: ConversationCreateNestedManyWithoutApplicationInput
246458
245807
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
246459
245808
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
246460
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
246461
245809
  }
246462
245810
 
246463
245811
  export type ApplicationUncheckedCreateWithoutOfferInput = {
@@ -246490,9 +245838,6 @@ export namespace Prisma {
246490
245838
  created_by: string
246491
245839
  updated_by: string
246492
245840
  is_active?: boolean
246493
- fit_check_report_document_id?: string | null
246494
- fit_check_report_updated_flag?: boolean
246495
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
246496
245841
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
246497
245842
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
246498
245843
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
@@ -246994,7 +246339,6 @@ export namespace Prisma {
246994
246339
  offer_letter_template_html?: OfferLetterTemplateCreateNestedManyWithoutHtml_documentInput
246995
246340
  offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
246996
246341
  offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
246997
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
246998
246342
  }
246999
246343
 
247000
246344
  export type DocumentUncheckedCreateWithoutOffer_draft_edited_htmlInput = {
@@ -247028,7 +246372,6 @@ export namespace Prisma {
247028
246372
  offer_letter_template_html?: OfferLetterTemplateUncheckedCreateNestedManyWithoutHtml_documentInput
247029
246373
  offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
247030
246374
  offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
247031
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
247032
246375
  }
247033
246376
 
247034
246377
  export type DocumentCreateOrConnectWithoutOffer_draft_edited_htmlInput = {
@@ -247157,8 +246500,6 @@ export namespace Prisma {
247157
246500
  created_by?: StringFieldUpdateOperationsInput | string
247158
246501
  updated_by?: StringFieldUpdateOperationsInput | string
247159
246502
  is_active?: BoolFieldUpdateOperationsInput | boolean
247160
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
247161
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
247162
246503
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
247163
246504
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
247164
246505
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
@@ -247175,7 +246516,6 @@ export namespace Prisma {
247175
246516
  conversations?: ConversationUpdateManyWithoutApplicationNestedInput
247176
246517
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
247177
246518
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
247178
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
247179
246519
  }
247180
246520
 
247181
246521
  export type ApplicationUncheckedUpdateWithoutOfferInput = {
@@ -247208,9 +246548,6 @@ export namespace Prisma {
247208
246548
  created_by?: StringFieldUpdateOperationsInput | string
247209
246549
  updated_by?: StringFieldUpdateOperationsInput | string
247210
246550
  is_active?: BoolFieldUpdateOperationsInput | boolean
247211
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
247212
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
247213
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
247214
246551
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
247215
246552
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
247216
246553
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
@@ -247742,7 +247079,6 @@ export namespace Prisma {
247742
247079
  offer_letter_template_html?: OfferLetterTemplateUpdateManyWithoutHtml_documentNestedInput
247743
247080
  offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
247744
247081
  offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
247745
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
247746
247082
  }
247747
247083
 
247748
247084
  export type DocumentUncheckedUpdateWithoutOffer_draft_edited_htmlInput = {
@@ -247776,7 +247112,6 @@ export namespace Prisma {
247776
247112
  offer_letter_template_html?: OfferLetterTemplateUncheckedUpdateManyWithoutHtml_documentNestedInput
247777
247113
  offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
247778
247114
  offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
247779
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
247780
247115
  }
247781
247116
 
247782
247117
  export type OfferLetterUpsertWithoutCurrent_for_offerInput = {
@@ -248004,7 +247339,6 @@ export namespace Prisma {
248004
247339
  offer_letter_template_html?: OfferLetterTemplateCreateNestedManyWithoutHtml_documentInput
248005
247340
  offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
248006
247341
  offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
248007
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
248008
247342
  }
248009
247343
 
248010
247344
  export type DocumentUncheckedCreateWithoutOffer_lettersInput = {
@@ -248038,7 +247372,6 @@ export namespace Prisma {
248038
247372
  offer_letter_template_html?: OfferLetterTemplateUncheckedCreateNestedManyWithoutHtml_documentInput
248039
247373
  offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
248040
247374
  offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
248041
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
248042
247375
  }
248043
247376
 
248044
247377
  export type DocumentCreateOrConnectWithoutOffer_lettersInput = {
@@ -248124,7 +247457,6 @@ export namespace Prisma {
248124
247457
  offer_letter_template_html?: OfferLetterTemplateCreateNestedManyWithoutHtml_documentInput
248125
247458
  offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
248126
247459
  offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
248127
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
248128
247460
  }
248129
247461
 
248130
247462
  export type DocumentUncheckedCreateWithoutOffer_letter_template_snapshotsInput = {
@@ -248158,7 +247490,6 @@ export namespace Prisma {
248158
247490
  offer_letter_template_html?: OfferLetterTemplateUncheckedCreateNestedManyWithoutHtml_documentInput
248159
247491
  offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
248160
247492
  offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
248161
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
248162
247493
  }
248163
247494
 
248164
247495
  export type DocumentCreateOrConnectWithoutOffer_letter_template_snapshotsInput = {
@@ -248293,7 +247624,6 @@ export namespace Prisma {
248293
247624
  offer_letter_template_html?: OfferLetterTemplateUpdateManyWithoutHtml_documentNestedInput
248294
247625
  offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
248295
247626
  offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
248296
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
248297
247627
  }
248298
247628
 
248299
247629
  export type DocumentUncheckedUpdateWithoutOffer_lettersInput = {
@@ -248327,7 +247657,6 @@ export namespace Prisma {
248327
247657
  offer_letter_template_html?: OfferLetterTemplateUncheckedUpdateManyWithoutHtml_documentNestedInput
248328
247658
  offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
248329
247659
  offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
248330
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
248331
247660
  }
248332
247661
 
248333
247662
  export type OfferLetterTemplateUpsertWithoutOffer_lettersInput = {
@@ -248425,7 +247754,6 @@ export namespace Prisma {
248425
247754
  offer_letter_template_html?: OfferLetterTemplateUpdateManyWithoutHtml_documentNestedInput
248426
247755
  offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
248427
247756
  offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
248428
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
248429
247757
  }
248430
247758
 
248431
247759
  export type DocumentUncheckedUpdateWithoutOffer_letter_template_snapshotsInput = {
@@ -248459,7 +247787,6 @@ export namespace Prisma {
248459
247787
  offer_letter_template_html?: OfferLetterTemplateUncheckedUpdateManyWithoutHtml_documentNestedInput
248460
247788
  offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
248461
247789
  offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
248462
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
248463
247790
  }
248464
247791
 
248465
247792
  export type JobDescriptionCreateWithoutOngoing_evaluationsInput = {
@@ -248594,8 +247921,6 @@ export namespace Prisma {
248594
247921
  created_by: string
248595
247922
  updated_by: string
248596
247923
  is_active?: boolean
248597
- fit_check_report_updated_flag?: boolean
248598
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
248599
247924
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
248600
247925
  candidate: UserCreateNestedOneWithoutApplicationsInput
248601
247926
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
@@ -248612,7 +247937,6 @@ export namespace Prisma {
248612
247937
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
248613
247938
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
248614
247939
  offer?: OfferCreateNestedOneWithoutApplicationInput
248615
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
248616
247940
  }
248617
247941
 
248618
247942
  export type ApplicationUncheckedCreateWithoutOngoing_evaluationsInput = {
@@ -248645,9 +247969,6 @@ export namespace Prisma {
248645
247969
  created_by: string
248646
247970
  updated_by: string
248647
247971
  is_active?: boolean
248648
- fit_check_report_document_id?: string | null
248649
- fit_check_report_updated_flag?: boolean
248650
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
248651
247972
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
248652
247973
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
248653
247974
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
@@ -249464,8 +248785,6 @@ export namespace Prisma {
249464
248785
  created_by?: StringFieldUpdateOperationsInput | string
249465
248786
  updated_by?: StringFieldUpdateOperationsInput | string
249466
248787
  is_active?: BoolFieldUpdateOperationsInput | boolean
249467
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
249468
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
249469
248788
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
249470
248789
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
249471
248790
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
@@ -249482,7 +248801,6 @@ export namespace Prisma {
249482
248801
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
249483
248802
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
249484
248803
  offer?: OfferUpdateOneWithoutApplicationNestedInput
249485
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
249486
248804
  }
249487
248805
 
249488
248806
  export type ApplicationUncheckedUpdateWithoutOngoing_evaluationsInput = {
@@ -249515,9 +248833,6 @@ export namespace Prisma {
249515
248833
  created_by?: StringFieldUpdateOperationsInput | string
249516
248834
  updated_by?: StringFieldUpdateOperationsInput | string
249517
248835
  is_active?: BoolFieldUpdateOperationsInput | boolean
249518
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
249519
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
249520
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
249521
248836
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
249522
248837
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
249523
248838
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
@@ -250411,8 +249726,6 @@ export namespace Prisma {
250411
249726
  created_by: string
250412
249727
  updated_by: string
250413
249728
  is_active?: boolean
250414
- fit_check_report_updated_flag?: boolean
250415
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
250416
249729
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
250417
249730
  candidate: UserCreateNestedOneWithoutApplicationsInput
250418
249731
  resume: ResumeCreateNestedOneWithoutApplicationsInput
@@ -250429,7 +249742,6 @@ export namespace Prisma {
250429
249742
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
250430
249743
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
250431
249744
  offer?: OfferCreateNestedOneWithoutApplicationInput
250432
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
250433
249745
  }
250434
249746
 
250435
249747
  export type ApplicationUncheckedCreateWithoutOrganisationInput = {
@@ -250461,9 +249773,6 @@ export namespace Prisma {
250461
249773
  created_by: string
250462
249774
  updated_by: string
250463
249775
  is_active?: boolean
250464
- fit_check_report_document_id?: string | null
250465
- fit_check_report_updated_flag?: boolean
250466
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
250467
249776
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
250468
249777
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
250469
249778
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
@@ -250725,6 +250034,7 @@ export namespace Prisma {
250725
250034
  created_by: string
250726
250035
  updated_by: string
250727
250036
  is_active?: boolean
250037
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
250728
250038
  questions?: QuestionCreateNestedManyWithoutAssessmentLibraryInput
250729
250039
  assessments?: AssessmentCreateNestedManyWithoutAssessment_libraryInput
250730
250040
  evaluation_Plans?: EvaluationPlanCreateNestedManyWithoutAssessmentInput
@@ -250741,6 +250051,7 @@ export namespace Prisma {
250741
250051
  created_by: string
250742
250052
  updated_by: string
250743
250053
  is_active?: boolean
250054
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
250744
250055
  questions?: QuestionUncheckedCreateNestedManyWithoutAssessmentLibraryInput
250745
250056
  assessments?: AssessmentUncheckedCreateNestedManyWithoutAssessment_libraryInput
250746
250057
  evaluation_Plans?: EvaluationPlanUncheckedCreateNestedManyWithoutAssessmentInput
@@ -251753,7 +251064,6 @@ export namespace Prisma {
251753
251064
  updated_by: string
251754
251065
  created_at?: Date | string
251755
251066
  updated_at?: Date | string
251756
- order_no?: number | null
251757
251067
  job_application_template: JobApplicationTemplateCreateNestedOneWithoutFieldsInput
251758
251068
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutFieldInput
251759
251069
  }
@@ -251772,7 +251082,6 @@ export namespace Prisma {
251772
251082
  updated_by: string
251773
251083
  created_at?: Date | string
251774
251084
  updated_at?: Date | string
251775
- order_no?: number | null
251776
251085
  job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutFieldInput
251777
251086
  }
251778
251087
 
@@ -251817,7 +251126,6 @@ export namespace Prisma {
251817
251126
  offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
251818
251127
  offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
251819
251128
  offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
251820
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
251821
251129
  }
251822
251130
 
251823
251131
  export type DocumentUncheckedCreateWithoutOrganisationInput = {
@@ -251851,7 +251159,6 @@ export namespace Prisma {
251851
251159
  offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
251852
251160
  offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
251853
251161
  offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
251854
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
251855
251162
  }
251856
251163
 
251857
251164
  export type DocumentCreateOrConnectWithoutOrganisationInput = {
@@ -252751,6 +252058,7 @@ export namespace Prisma {
252751
252058
  created_by?: StringFilter<"AssessmentLibrary"> | string
252752
252059
  updated_by?: StringFilter<"AssessmentLibrary"> | string
252753
252060
  is_active?: BoolFilter<"AssessmentLibrary"> | boolean
252061
+ generation_state?: JsonNullableFilter<"AssessmentLibrary">
252754
252062
  }
252755
252063
 
252756
252064
  export type AssignmentLibraryUpsertWithWhereUniqueWithoutOrganisationInput = {
@@ -254517,6 +253825,7 @@ export namespace Prisma {
254517
253825
  created_by: string
254518
253826
  updated_by: string
254519
253827
  is_active?: boolean
253828
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
254520
253829
  organisation: OrganisationCreateNestedOneWithoutAssessment_libraryInput
254521
253830
  assessments?: AssessmentCreateNestedManyWithoutAssessment_libraryInput
254522
253831
  evaluation_Plans?: EvaluationPlanCreateNestedManyWithoutAssessmentInput
@@ -254534,6 +253843,7 @@ export namespace Prisma {
254534
253843
  created_by: string
254535
253844
  updated_by: string
254536
253845
  is_active?: boolean
253846
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
254537
253847
  assessments?: AssessmentUncheckedCreateNestedManyWithoutAssessment_libraryInput
254538
253848
  evaluation_Plans?: EvaluationPlanUncheckedCreateNestedManyWithoutAssessmentInput
254539
253849
  }
@@ -254855,6 +254165,7 @@ export namespace Prisma {
254855
254165
  created_by?: StringFieldUpdateOperationsInput | string
254856
254166
  updated_by?: StringFieldUpdateOperationsInput | string
254857
254167
  is_active?: BoolFieldUpdateOperationsInput | boolean
254168
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
254858
254169
  organisation?: OrganisationUpdateOneRequiredWithoutAssessment_libraryNestedInput
254859
254170
  assessments?: AssessmentUpdateManyWithoutAssessment_libraryNestedInput
254860
254171
  evaluation_Plans?: EvaluationPlanUpdateManyWithoutAssessmentNestedInput
@@ -254872,6 +254183,7 @@ export namespace Prisma {
254872
254183
  created_by?: StringFieldUpdateOperationsInput | string
254873
254184
  updated_by?: StringFieldUpdateOperationsInput | string
254874
254185
  is_active?: BoolFieldUpdateOperationsInput | boolean
254186
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
254875
254187
  assessments?: AssessmentUncheckedUpdateManyWithoutAssessment_libraryNestedInput
254876
254188
  evaluation_Plans?: EvaluationPlanUncheckedUpdateManyWithoutAssessmentNestedInput
254877
254189
  }
@@ -255864,7 +255176,6 @@ export namespace Prisma {
255864
255176
  offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
255865
255177
  offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
255866
255178
  offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
255867
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
255868
255179
  }
255869
255180
 
255870
255181
  export type DocumentUncheckedCreateWithoutResumeInput = {
@@ -255898,7 +255209,6 @@ export namespace Prisma {
255898
255209
  offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
255899
255210
  offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
255900
255211
  offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
255901
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
255902
255212
  }
255903
255213
 
255904
255214
  export type DocumentCreateOrConnectWithoutResumeInput = {
@@ -255937,7 +255247,6 @@ export namespace Prisma {
255937
255247
  offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
255938
255248
  offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
255939
255249
  offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
255940
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
255941
255250
  }
255942
255251
 
255943
255252
  export type DocumentUncheckedCreateWithoutResume_rendered_exportInput = {
@@ -255971,7 +255280,6 @@ export namespace Prisma {
255971
255280
  offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
255972
255281
  offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
255973
255282
  offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
255974
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
255975
255283
  }
255976
255284
 
255977
255285
  export type DocumentCreateOrConnectWithoutResume_rendered_exportInput = {
@@ -256002,8 +255310,6 @@ export namespace Prisma {
256002
255310
  created_by: string
256003
255311
  updated_by: string
256004
255312
  is_active?: boolean
256005
- fit_check_report_updated_flag?: boolean
256006
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
256007
255313
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
256008
255314
  candidate: UserCreateNestedOneWithoutApplicationsInput
256009
255315
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
@@ -256020,7 +255326,6 @@ export namespace Prisma {
256020
255326
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
256021
255327
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
256022
255328
  offer?: OfferCreateNestedOneWithoutApplicationInput
256023
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
256024
255329
  }
256025
255330
 
256026
255331
  export type ApplicationUncheckedCreateWithoutResumeInput = {
@@ -256052,9 +255357,6 @@ export namespace Prisma {
256052
255357
  created_by: string
256053
255358
  updated_by: string
256054
255359
  is_active?: boolean
256055
- fit_check_report_document_id?: string | null
256056
- fit_check_report_updated_flag?: boolean
256057
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
256058
255360
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
256059
255361
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
256060
255362
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
@@ -256891,7 +256193,6 @@ export namespace Prisma {
256891
256193
  offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
256892
256194
  offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
256893
256195
  offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
256894
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
256895
256196
  }
256896
256197
 
256897
256198
  export type DocumentUncheckedUpdateWithoutResumeInput = {
@@ -256925,7 +256226,6 @@ export namespace Prisma {
256925
256226
  offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
256926
256227
  offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
256927
256228
  offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
256928
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
256929
256229
  }
256930
256230
 
256931
256231
  export type DocumentUpsertWithoutResume_rendered_exportInput = {
@@ -256970,7 +256270,6 @@ export namespace Prisma {
256970
256270
  offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
256971
256271
  offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
256972
256272
  offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
256973
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
256974
256273
  }
256975
256274
 
256976
256275
  export type DocumentUncheckedUpdateWithoutResume_rendered_exportInput = {
@@ -257004,7 +256303,6 @@ export namespace Prisma {
257004
256303
  offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
257005
256304
  offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
257006
256305
  offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
257007
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
257008
256306
  }
257009
256307
 
257010
256308
  export type ApplicationUpsertWithWhereUniqueWithoutResumeInput = {
@@ -257504,8 +256802,6 @@ export namespace Prisma {
257504
256802
  created_by: string
257505
256803
  updated_by: string
257506
256804
  is_active?: boolean
257507
- fit_check_report_updated_flag?: boolean
257508
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
257509
256805
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
257510
256806
  candidate: UserCreateNestedOneWithoutApplicationsInput
257511
256807
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
@@ -257522,7 +256818,6 @@ export namespace Prisma {
257522
256818
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
257523
256819
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
257524
256820
  offer?: OfferCreateNestedOneWithoutApplicationInput
257525
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
257526
256821
  }
257527
256822
 
257528
256823
  export type ApplicationUncheckedCreateWithoutSourceInput = {
@@ -257554,9 +256849,6 @@ export namespace Prisma {
257554
256849
  created_by: string
257555
256850
  updated_by: string
257556
256851
  is_active?: boolean
257557
- fit_check_report_document_id?: string | null
257558
- fit_check_report_updated_flag?: boolean
257559
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
257560
256852
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
257561
256853
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
257562
256854
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
@@ -259957,8 +259249,6 @@ export namespace Prisma {
259957
259249
  created_by: string
259958
259250
  updated_by: string
259959
259251
  is_active?: boolean
259960
- fit_check_report_updated_flag?: boolean
259961
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
259962
259252
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
259963
259253
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
259964
259254
  resume: ResumeCreateNestedOneWithoutApplicationsInput
@@ -259975,7 +259265,6 @@ export namespace Prisma {
259975
259265
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
259976
259266
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
259977
259267
  offer?: OfferCreateNestedOneWithoutApplicationInput
259978
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
259979
259268
  }
259980
259269
 
259981
259270
  export type ApplicationUncheckedCreateWithoutCandidateInput = {
@@ -260007,9 +259296,6 @@ export namespace Prisma {
260007
259296
  created_by: string
260008
259297
  updated_by: string
260009
259298
  is_active?: boolean
260010
- fit_check_report_document_id?: string | null
260011
- fit_check_report_updated_flag?: boolean
260012
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
260013
259299
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
260014
259300
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
260015
259301
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
@@ -261150,6 +260436,8 @@ export namespace Prisma {
261150
260436
  export type QuestionCreateWithoutCandidateInput = {
261151
260437
  id?: string
261152
260438
  skill?: string | null
260439
+ category?: $Enums.QuestionCategory | null
260440
+ bank_item_key?: string | null
261153
260441
  question: string
261154
260442
  answer: string
261155
260443
  options?: QuestionCreateoptionsInput | string[]
@@ -261171,6 +260459,8 @@ export namespace Prisma {
261171
260459
  assessment_library_id?: string | null
261172
260460
  evaluation_plan_id?: string | null
261173
260461
  skill?: string | null
260462
+ category?: $Enums.QuestionCategory | null
260463
+ bank_item_key?: string | null
261174
260464
  question: string
261175
260465
  answer: string
261176
260466
  options?: QuestionCreateoptionsInput | string[]
@@ -261790,8 +261080,6 @@ export namespace Prisma {
261790
261080
  created_by: string
261791
261081
  updated_by: string
261792
261082
  is_active?: boolean
261793
- fit_check_report_updated_flag?: boolean
261794
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
261795
261083
  evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
261796
261084
  candidate: UserCreateNestedOneWithoutApplicationsInput
261797
261085
  organisation: OrganisationCreateNestedOneWithoutApplicationsInput
@@ -261808,7 +261096,6 @@ export namespace Prisma {
261808
261096
  communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
261809
261097
  job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
261810
261098
  offer?: OfferCreateNestedOneWithoutApplicationInput
261811
- fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
261812
261099
  }
261813
261100
 
261814
261101
  export type ApplicationUncheckedCreateWithoutRecruiterInput = {
@@ -261840,9 +261127,6 @@ export namespace Prisma {
261840
261127
  created_by: string
261841
261128
  updated_by: string
261842
261129
  is_active?: boolean
261843
- fit_check_report_document_id?: string | null
261844
- fit_check_report_updated_flag?: boolean
261845
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
261846
261130
  fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
261847
261131
  interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
261848
261132
  assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
@@ -261896,7 +261180,6 @@ export namespace Prisma {
261896
261180
  offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
261897
261181
  offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
261898
261182
  offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
261899
- application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
261900
261183
  }
261901
261184
 
261902
261185
  export type DocumentUncheckedCreateWithoutCandidateInput = {
@@ -261930,7 +261213,6 @@ export namespace Prisma {
261930
261213
  offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
261931
261214
  offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
261932
261215
  offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
261933
- application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
261934
261216
  }
261935
261217
 
261936
261218
  export type DocumentCreateOrConnectWithoutCandidateInput = {
@@ -264465,7 +263747,6 @@ export namespace Prisma {
264465
263747
  created_by: string
264466
263748
  updated_by: string
264467
263749
  is_active?: boolean
264468
- order_no?: number | null
264469
263750
  }
264470
263751
 
264471
263752
  export type InterviewUpdateWithoutApplicationInput = {
@@ -265057,7 +264338,6 @@ export namespace Prisma {
265057
264338
  created_by?: StringFieldUpdateOperationsInput | string
265058
264339
  updated_by?: StringFieldUpdateOperationsInput | string
265059
264340
  is_active?: BoolFieldUpdateOperationsInput | boolean
265060
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
265061
264341
  field?: JobApplicationFieldUpdateOneWithoutJob_application_responsesNestedInput
265062
264342
  document?: DocumentUpdateOneWithoutJob_application_responsesNestedInput
265063
264343
  }
@@ -265080,7 +264360,6 @@ export namespace Prisma {
265080
264360
  created_by?: StringFieldUpdateOperationsInput | string
265081
264361
  updated_by?: StringFieldUpdateOperationsInput | string
265082
264362
  is_active?: BoolFieldUpdateOperationsInput | boolean
265083
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
265084
264363
  }
265085
264364
 
265086
264365
  export type JobApplicationResponseUncheckedUpdateManyWithoutApplicationInput = {
@@ -265101,7 +264380,6 @@ export namespace Prisma {
265101
264380
  created_by?: StringFieldUpdateOperationsInput | string
265102
264381
  updated_by?: StringFieldUpdateOperationsInput | string
265103
264382
  is_active?: BoolFieldUpdateOperationsInput | boolean
265104
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
265105
264383
  }
265106
264384
 
265107
264385
  export type AssessmentQuestionCreateManyAssessmentInput = {
@@ -265185,6 +264463,8 @@ export namespace Prisma {
265185
264463
  evaluation_plan_id?: string | null
265186
264464
  candidate_id?: string | null
265187
264465
  skill?: string | null
264466
+ category?: $Enums.QuestionCategory | null
264467
+ bank_item_key?: string | null
265188
264468
  question: string
265189
264469
  answer: string
265190
264470
  options?: QuestionCreateoptionsInput | string[]
@@ -265250,6 +264530,8 @@ export namespace Prisma {
265250
264530
  export type QuestionUpdateWithoutAssessmentLibraryInput = {
265251
264531
  id?: StringFieldUpdateOperationsInput | string
265252
264532
  skill?: NullableStringFieldUpdateOperationsInput | string | null
264533
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
264534
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
265253
264535
  question?: StringFieldUpdateOperationsInput | string
265254
264536
  answer?: StringFieldUpdateOperationsInput | string
265255
264537
  options?: QuestionUpdateoptionsInput | string[]
@@ -265271,6 +264553,8 @@ export namespace Prisma {
265271
264553
  evaluation_plan_id?: NullableStringFieldUpdateOperationsInput | string | null
265272
264554
  candidate_id?: NullableStringFieldUpdateOperationsInput | string | null
265273
264555
  skill?: NullableStringFieldUpdateOperationsInput | string | null
264556
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
264557
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
265274
264558
  question?: StringFieldUpdateOperationsInput | string
265275
264559
  answer?: StringFieldUpdateOperationsInput | string
265276
264560
  options?: QuestionUpdateoptionsInput | string[]
@@ -265290,6 +264574,8 @@ export namespace Prisma {
265290
264574
  evaluation_plan_id?: NullableStringFieldUpdateOperationsInput | string | null
265291
264575
  candidate_id?: NullableStringFieldUpdateOperationsInput | string | null
265292
264576
  skill?: NullableStringFieldUpdateOperationsInput | string | null
264577
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
264578
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
265293
264579
  question?: StringFieldUpdateOperationsInput | string
265294
264580
  answer?: StringFieldUpdateOperationsInput | string
265295
264581
  options?: QuestionUpdateoptionsInput | string[]
@@ -266788,7 +266074,6 @@ export namespace Prisma {
266788
266074
  created_by: string
266789
266075
  updated_by: string
266790
266076
  is_active?: boolean
266791
- order_no?: number | null
266792
266077
  }
266793
266078
 
266794
266079
  export type OfferLetterTemplateCreateManyDocumentInput = {
@@ -266907,7 +266192,6 @@ export namespace Prisma {
266907
266192
  created_by?: StringFieldUpdateOperationsInput | string
266908
266193
  updated_by?: StringFieldUpdateOperationsInput | string
266909
266194
  is_active?: BoolFieldUpdateOperationsInput | boolean
266910
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
266911
266195
  application?: ApplicationUpdateOneRequiredWithoutJob_application_responsesNestedInput
266912
266196
  field?: JobApplicationFieldUpdateOneWithoutJob_application_responsesNestedInput
266913
266197
  }
@@ -266930,7 +266214,6 @@ export namespace Prisma {
266930
266214
  created_by?: StringFieldUpdateOperationsInput | string
266931
266215
  updated_by?: StringFieldUpdateOperationsInput | string
266932
266216
  is_active?: BoolFieldUpdateOperationsInput | boolean
266933
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
266934
266217
  }
266935
266218
 
266936
266219
  export type JobApplicationResponseUncheckedUpdateManyWithoutDocumentInput = {
@@ -266951,7 +266234,6 @@ export namespace Prisma {
266951
266234
  created_by?: StringFieldUpdateOperationsInput | string
266952
266235
  updated_by?: StringFieldUpdateOperationsInput | string
266953
266236
  is_active?: BoolFieldUpdateOperationsInput | boolean
266954
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
266955
266237
  }
266956
266238
 
266957
266239
  export type OfferLetterTemplateUpdateWithoutDocumentInput = {
@@ -267273,6 +266555,8 @@ export namespace Prisma {
267273
266555
  assessment_library_id?: string | null
267274
266556
  candidate_id?: string | null
267275
266557
  skill?: string | null
266558
+ category?: $Enums.QuestionCategory | null
266559
+ bank_item_key?: string | null
267276
266560
  question: string
267277
266561
  answer: string
267278
266562
  options?: QuestionCreateoptionsInput | string[]
@@ -267363,9 +266647,6 @@ export namespace Prisma {
267363
266647
  created_by: string
267364
266648
  updated_by: string
267365
266649
  is_active?: boolean
267366
- fit_check_report_document_id?: string | null
267367
- fit_check_report_updated_flag?: boolean
267368
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
267369
266650
  }
267370
266651
 
267371
266652
  export type OngoingEvaluationCreateManyEvaluation_planInput = {
@@ -267411,6 +266692,8 @@ export namespace Prisma {
267411
266692
  export type QuestionUpdateWithoutEvaluationPlanInput = {
267412
266693
  id?: StringFieldUpdateOperationsInput | string
267413
266694
  skill?: NullableStringFieldUpdateOperationsInput | string | null
266695
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
266696
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
267414
266697
  question?: StringFieldUpdateOperationsInput | string
267415
266698
  answer?: StringFieldUpdateOperationsInput | string
267416
266699
  options?: QuestionUpdateoptionsInput | string[]
@@ -267432,6 +266715,8 @@ export namespace Prisma {
267432
266715
  assessment_library_id?: NullableStringFieldUpdateOperationsInput | string | null
267433
266716
  candidate_id?: NullableStringFieldUpdateOperationsInput | string | null
267434
266717
  skill?: NullableStringFieldUpdateOperationsInput | string | null
266718
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
266719
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
267435
266720
  question?: StringFieldUpdateOperationsInput | string
267436
266721
  answer?: StringFieldUpdateOperationsInput | string
267437
266722
  options?: QuestionUpdateoptionsInput | string[]
@@ -267451,6 +266736,8 @@ export namespace Prisma {
267451
266736
  assessment_library_id?: NullableStringFieldUpdateOperationsInput | string | null
267452
266737
  candidate_id?: NullableStringFieldUpdateOperationsInput | string | null
267453
266738
  skill?: NullableStringFieldUpdateOperationsInput | string | null
266739
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
266740
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
267454
266741
  question?: StringFieldUpdateOperationsInput | string
267455
266742
  answer?: StringFieldUpdateOperationsInput | string
267456
266743
  options?: QuestionUpdateoptionsInput | string[]
@@ -267647,8 +266934,6 @@ export namespace Prisma {
267647
266934
  created_by?: StringFieldUpdateOperationsInput | string
267648
266935
  updated_by?: StringFieldUpdateOperationsInput | string
267649
266936
  is_active?: BoolFieldUpdateOperationsInput | boolean
267650
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
267651
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
267652
266937
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
267653
266938
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
267654
266939
  resume?: ResumeUpdateOneRequiredWithoutApplicationsNestedInput
@@ -267665,7 +266950,6 @@ export namespace Prisma {
267665
266950
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
267666
266951
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
267667
266952
  offer?: OfferUpdateOneWithoutApplicationNestedInput
267668
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
267669
266953
  }
267670
266954
 
267671
266955
  export type ApplicationUncheckedUpdateWithoutEvaluation_planInput = {
@@ -267697,9 +266981,6 @@ export namespace Prisma {
267697
266981
  created_by?: StringFieldUpdateOperationsInput | string
267698
266982
  updated_by?: StringFieldUpdateOperationsInput | string
267699
266983
  is_active?: BoolFieldUpdateOperationsInput | boolean
267700
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
267701
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
267702
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
267703
266984
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
267704
266985
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
267705
266986
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
@@ -267741,9 +267022,6 @@ export namespace Prisma {
267741
267022
  created_by?: StringFieldUpdateOperationsInput | string
267742
267023
  updated_by?: StringFieldUpdateOperationsInput | string
267743
267024
  is_active?: BoolFieldUpdateOperationsInput | boolean
267744
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
267745
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
267746
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
267747
267025
  }
267748
267026
 
267749
267027
  export type OngoingEvaluationUpdateWithoutEvaluation_planInput = {
@@ -268774,7 +268052,6 @@ export namespace Prisma {
268774
268052
  created_by: string
268775
268053
  updated_by: string
268776
268054
  is_active?: boolean
268777
- order_no?: number | null
268778
268055
  }
268779
268056
 
268780
268057
  export type JobApplicationResponseUpdateWithoutFieldInput = {
@@ -268793,7 +268070,6 @@ export namespace Prisma {
268793
268070
  created_by?: StringFieldUpdateOperationsInput | string
268794
268071
  updated_by?: StringFieldUpdateOperationsInput | string
268795
268072
  is_active?: BoolFieldUpdateOperationsInput | boolean
268796
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
268797
268073
  application?: ApplicationUpdateOneRequiredWithoutJob_application_responsesNestedInput
268798
268074
  document?: DocumentUpdateOneWithoutJob_application_responsesNestedInput
268799
268075
  }
@@ -268816,7 +268092,6 @@ export namespace Prisma {
268816
268092
  created_by?: StringFieldUpdateOperationsInput | string
268817
268093
  updated_by?: StringFieldUpdateOperationsInput | string
268818
268094
  is_active?: BoolFieldUpdateOperationsInput | boolean
268819
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
268820
268095
  }
268821
268096
 
268822
268097
  export type JobApplicationResponseUncheckedUpdateManyWithoutFieldInput = {
@@ -268837,7 +268112,6 @@ export namespace Prisma {
268837
268112
  created_by?: StringFieldUpdateOperationsInput | string
268838
268113
  updated_by?: StringFieldUpdateOperationsInput | string
268839
268114
  is_active?: BoolFieldUpdateOperationsInput | boolean
268840
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
268841
268115
  }
268842
268116
 
268843
268117
  export type JobApplicationFieldCreateManyJob_application_templateInput = {
@@ -268854,7 +268128,6 @@ export namespace Prisma {
268854
268128
  updated_by: string
268855
268129
  created_at?: Date | string
268856
268130
  updated_at?: Date | string
268857
- order_no?: number | null
268858
268131
  }
268859
268132
 
268860
268133
  export type JobApplicationFieldUpdateWithoutJob_application_templateInput = {
@@ -268870,7 +268143,6 @@ export namespace Prisma {
268870
268143
  updated_by?: StringFieldUpdateOperationsInput | string
268871
268144
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
268872
268145
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
268873
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
268874
268146
  organisation?: OrganisationUpdateOneRequiredWithoutJob_application_fieldsNestedInput
268875
268147
  job_application_responses?: JobApplicationResponseUpdateManyWithoutFieldNestedInput
268876
268148
  }
@@ -268889,7 +268161,6 @@ export namespace Prisma {
268889
268161
  updated_by?: StringFieldUpdateOperationsInput | string
268890
268162
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
268891
268163
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
268892
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
268893
268164
  job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutFieldNestedInput
268894
268165
  }
268895
268166
 
@@ -268907,7 +268178,6 @@ export namespace Prisma {
268907
268178
  updated_by?: StringFieldUpdateOperationsInput | string
268908
268179
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
268909
268180
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
268910
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
268911
268181
  }
268912
268182
 
268913
268183
  export type ApplicationCreateManyJob_descriptionInput = {
@@ -268939,9 +268209,6 @@ export namespace Prisma {
268939
268209
  created_by: string
268940
268210
  updated_by: string
268941
268211
  is_active?: boolean
268942
- fit_check_report_document_id?: string | null
268943
- fit_check_report_updated_flag?: boolean
268944
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
268945
268212
  }
268946
268213
 
268947
268214
  export type InterviewCreateManyJob_descriptionInput = {
@@ -269344,8 +268611,6 @@ export namespace Prisma {
269344
268611
  created_by?: StringFieldUpdateOperationsInput | string
269345
268612
  updated_by?: StringFieldUpdateOperationsInput | string
269346
268613
  is_active?: BoolFieldUpdateOperationsInput | boolean
269347
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
269348
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
269349
268614
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
269350
268615
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
269351
268616
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
@@ -269362,7 +268627,6 @@ export namespace Prisma {
269362
268627
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
269363
268628
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
269364
268629
  offer?: OfferUpdateOneWithoutApplicationNestedInput
269365
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
269366
268630
  }
269367
268631
 
269368
268632
  export type ApplicationUncheckedUpdateWithoutJob_descriptionInput = {
@@ -269394,9 +268658,6 @@ export namespace Prisma {
269394
268658
  created_by?: StringFieldUpdateOperationsInput | string
269395
268659
  updated_by?: StringFieldUpdateOperationsInput | string
269396
268660
  is_active?: BoolFieldUpdateOperationsInput | boolean
269397
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
269398
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
269399
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
269400
268661
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
269401
268662
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
269402
268663
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
@@ -269438,9 +268699,6 @@ export namespace Prisma {
269438
268699
  created_by?: StringFieldUpdateOperationsInput | string
269439
268700
  updated_by?: StringFieldUpdateOperationsInput | string
269440
268701
  is_active?: BoolFieldUpdateOperationsInput | boolean
269441
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
269442
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
269443
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
269444
268702
  }
269445
268703
 
269446
268704
  export type InterviewUpdateWithoutJob_descriptionInput = {
@@ -271822,9 +271080,6 @@ export namespace Prisma {
271822
271080
  created_by: string
271823
271081
  updated_by: string
271824
271082
  is_active?: boolean
271825
- fit_check_report_document_id?: string | null
271826
- fit_check_report_updated_flag?: boolean
271827
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
271828
271083
  }
271829
271084
 
271830
271085
  export type UserRoleCreateManyOrganisationInput = {
@@ -271914,6 +271169,7 @@ export namespace Prisma {
271914
271169
  created_by: string
271915
271170
  updated_by: string
271916
271171
  is_active?: boolean
271172
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
271917
271173
  }
271918
271174
 
271919
271175
  export type AssignmentLibraryCreateManyOrganisationInput = {
@@ -272304,7 +271560,6 @@ export namespace Prisma {
272304
271560
  updated_by: string
272305
271561
  created_at?: Date | string
272306
271562
  updated_at?: Date | string
272307
- order_no?: number | null
272308
271563
  }
272309
271564
 
272310
271565
  export type DocumentCreateManyOrganisationInput = {
@@ -272834,8 +272089,6 @@ export namespace Prisma {
272834
272089
  created_by?: StringFieldUpdateOperationsInput | string
272835
272090
  updated_by?: StringFieldUpdateOperationsInput | string
272836
272091
  is_active?: BoolFieldUpdateOperationsInput | boolean
272837
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
272838
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
272839
272092
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
272840
272093
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
272841
272094
  resume?: ResumeUpdateOneRequiredWithoutApplicationsNestedInput
@@ -272852,7 +272105,6 @@ export namespace Prisma {
272852
272105
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
272853
272106
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
272854
272107
  offer?: OfferUpdateOneWithoutApplicationNestedInput
272855
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
272856
272108
  }
272857
272109
 
272858
272110
  export type ApplicationUncheckedUpdateWithoutOrganisationInput = {
@@ -272884,9 +272136,6 @@ export namespace Prisma {
272884
272136
  created_by?: StringFieldUpdateOperationsInput | string
272885
272137
  updated_by?: StringFieldUpdateOperationsInput | string
272886
272138
  is_active?: BoolFieldUpdateOperationsInput | boolean
272887
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
272888
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
272889
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
272890
272139
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
272891
272140
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
272892
272141
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
@@ -272928,9 +272177,6 @@ export namespace Prisma {
272928
272177
  created_by?: StringFieldUpdateOperationsInput | string
272929
272178
  updated_by?: StringFieldUpdateOperationsInput | string
272930
272179
  is_active?: BoolFieldUpdateOperationsInput | boolean
272931
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
272932
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
272933
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
272934
272180
  }
272935
272181
 
272936
272182
  export type UserRoleUpdateWithoutOrganisationInput = {
@@ -273218,6 +272464,7 @@ export namespace Prisma {
273218
272464
  created_by?: StringFieldUpdateOperationsInput | string
273219
272465
  updated_by?: StringFieldUpdateOperationsInput | string
273220
272466
  is_active?: BoolFieldUpdateOperationsInput | boolean
272467
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
273221
272468
  questions?: QuestionUpdateManyWithoutAssessmentLibraryNestedInput
273222
272469
  assessments?: AssessmentUpdateManyWithoutAssessment_libraryNestedInput
273223
272470
  evaluation_Plans?: EvaluationPlanUpdateManyWithoutAssessmentNestedInput
@@ -273234,6 +272481,7 @@ export namespace Prisma {
273234
272481
  created_by?: StringFieldUpdateOperationsInput | string
273235
272482
  updated_by?: StringFieldUpdateOperationsInput | string
273236
272483
  is_active?: BoolFieldUpdateOperationsInput | boolean
272484
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
273237
272485
  questions?: QuestionUncheckedUpdateManyWithoutAssessmentLibraryNestedInput
273238
272486
  assessments?: AssessmentUncheckedUpdateManyWithoutAssessment_libraryNestedInput
273239
272487
  evaluation_Plans?: EvaluationPlanUncheckedUpdateManyWithoutAssessmentNestedInput
@@ -273250,6 +272498,7 @@ export namespace Prisma {
273250
272498
  created_by?: StringFieldUpdateOperationsInput | string
273251
272499
  updated_by?: StringFieldUpdateOperationsInput | string
273252
272500
  is_active?: BoolFieldUpdateOperationsInput | boolean
272501
+ generation_state?: NullableJsonNullValueInput | InputJsonValue
273253
272502
  }
273254
272503
 
273255
272504
  export type AssignmentLibraryUpdateWithoutOrganisationInput = {
@@ -274433,7 +273682,6 @@ export namespace Prisma {
274433
273682
  updated_by?: StringFieldUpdateOperationsInput | string
274434
273683
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
274435
273684
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
274436
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
274437
273685
  job_application_template?: JobApplicationTemplateUpdateOneRequiredWithoutFieldsNestedInput
274438
273686
  job_application_responses?: JobApplicationResponseUpdateManyWithoutFieldNestedInput
274439
273687
  }
@@ -274452,7 +273700,6 @@ export namespace Prisma {
274452
273700
  updated_by?: StringFieldUpdateOperationsInput | string
274453
273701
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
274454
273702
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
274455
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
274456
273703
  job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutFieldNestedInput
274457
273704
  }
274458
273705
 
@@ -274470,7 +273717,6 @@ export namespace Prisma {
274470
273717
  updated_by?: StringFieldUpdateOperationsInput | string
274471
273718
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
274472
273719
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
274473
- order_no?: NullableIntFieldUpdateOperationsInput | number | null
274474
273720
  }
274475
273721
 
274476
273722
  export type DocumentUpdateWithoutOrganisationInput = {
@@ -274504,7 +273750,6 @@ export namespace Prisma {
274504
273750
  offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
274505
273751
  offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
274506
273752
  offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
274507
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
274508
273753
  }
274509
273754
 
274510
273755
  export type DocumentUncheckedUpdateWithoutOrganisationInput = {
@@ -274538,7 +273783,6 @@ export namespace Prisma {
274538
273783
  offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
274539
273784
  offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
274540
273785
  offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
274541
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
274542
273786
  }
274543
273787
 
274544
273788
  export type DocumentUncheckedUpdateManyWithoutOrganisationInput = {
@@ -275581,9 +274825,6 @@ export namespace Prisma {
275581
274825
  created_by: string
275582
274826
  updated_by: string
275583
274827
  is_active?: boolean
275584
- fit_check_report_document_id?: string | null
275585
- fit_check_report_updated_flag?: boolean
275586
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
275587
274828
  }
275588
274829
 
275589
274830
  export type InterviewCreateManyResumeInput = {
@@ -275730,8 +274971,6 @@ export namespace Prisma {
275730
274971
  created_by?: StringFieldUpdateOperationsInput | string
275731
274972
  updated_by?: StringFieldUpdateOperationsInput | string
275732
274973
  is_active?: BoolFieldUpdateOperationsInput | boolean
275733
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
275734
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
275735
274974
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
275736
274975
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
275737
274976
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
@@ -275748,7 +274987,6 @@ export namespace Prisma {
275748
274987
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
275749
274988
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
275750
274989
  offer?: OfferUpdateOneWithoutApplicationNestedInput
275751
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
275752
274990
  }
275753
274991
 
275754
274992
  export type ApplicationUncheckedUpdateWithoutResumeInput = {
@@ -275780,9 +275018,6 @@ export namespace Prisma {
275780
275018
  created_by?: StringFieldUpdateOperationsInput | string
275781
275019
  updated_by?: StringFieldUpdateOperationsInput | string
275782
275020
  is_active?: BoolFieldUpdateOperationsInput | boolean
275783
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
275784
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
275785
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
275786
275021
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
275787
275022
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
275788
275023
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
@@ -275824,9 +275059,6 @@ export namespace Prisma {
275824
275059
  created_by?: StringFieldUpdateOperationsInput | string
275825
275060
  updated_by?: StringFieldUpdateOperationsInput | string
275826
275061
  is_active?: BoolFieldUpdateOperationsInput | boolean
275827
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
275828
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
275829
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
275830
275062
  }
275831
275063
 
275832
275064
  export type InterviewUpdateWithoutResumeInput = {
@@ -276249,9 +275481,6 @@ export namespace Prisma {
276249
275481
  created_by: string
276250
275482
  updated_by: string
276251
275483
  is_active?: boolean
276252
- fit_check_report_document_id?: string | null
276253
- fit_check_report_updated_flag?: boolean
276254
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
276255
275484
  }
276256
275485
 
276257
275486
  export type SourceUpdateWithoutParentInput = {
@@ -276317,8 +275546,6 @@ export namespace Prisma {
276317
275546
  created_by?: StringFieldUpdateOperationsInput | string
276318
275547
  updated_by?: StringFieldUpdateOperationsInput | string
276319
275548
  is_active?: BoolFieldUpdateOperationsInput | boolean
276320
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
276321
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
276322
275549
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
276323
275550
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
276324
275551
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
@@ -276335,7 +275562,6 @@ export namespace Prisma {
276335
275562
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
276336
275563
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
276337
275564
  offer?: OfferUpdateOneWithoutApplicationNestedInput
276338
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
276339
275565
  }
276340
275566
 
276341
275567
  export type ApplicationUncheckedUpdateWithoutSourceInput = {
@@ -276367,9 +275593,6 @@ export namespace Prisma {
276367
275593
  created_by?: StringFieldUpdateOperationsInput | string
276368
275594
  updated_by?: StringFieldUpdateOperationsInput | string
276369
275595
  is_active?: BoolFieldUpdateOperationsInput | boolean
276370
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
276371
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
276372
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
276373
275596
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
276374
275597
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
276375
275598
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
@@ -276411,9 +275634,6 @@ export namespace Prisma {
276411
275634
  created_by?: StringFieldUpdateOperationsInput | string
276412
275635
  updated_by?: StringFieldUpdateOperationsInput | string
276413
275636
  is_active?: BoolFieldUpdateOperationsInput | boolean
276414
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
276415
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
276416
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
276417
275637
  }
276418
275638
 
276419
275639
  export type TranscriptCreateManySuggestionInput = {
@@ -276645,9 +275865,6 @@ export namespace Prisma {
276645
275865
  created_by: string
276646
275866
  updated_by: string
276647
275867
  is_active?: boolean
276648
- fit_check_report_document_id?: string | null
276649
- fit_check_report_updated_flag?: boolean
276650
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
276651
275868
  }
276652
275869
 
276653
275870
  export type ResumeCreateManyUserInput = {
@@ -276997,6 +276214,8 @@ export namespace Prisma {
276997
276214
  assessment_library_id?: string | null
276998
276215
  evaluation_plan_id?: string | null
276999
276216
  skill?: string | null
276217
+ category?: $Enums.QuestionCategory | null
276218
+ bank_item_key?: string | null
277000
276219
  question: string
277001
276220
  answer: string
277002
276221
  options?: QuestionCreateoptionsInput | string[]
@@ -277240,9 +276459,6 @@ export namespace Prisma {
277240
276459
  created_by: string
277241
276460
  updated_by: string
277242
276461
  is_active?: boolean
277243
- fit_check_report_document_id?: string | null
277244
- fit_check_report_updated_flag?: boolean
277245
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
277246
276462
  }
277247
276463
 
277248
276464
  export type DocumentCreateManyCandidateInput = {
@@ -277326,8 +276542,6 @@ export namespace Prisma {
277326
276542
  created_by?: StringFieldUpdateOperationsInput | string
277327
276543
  updated_by?: StringFieldUpdateOperationsInput | string
277328
276544
  is_active?: BoolFieldUpdateOperationsInput | boolean
277329
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
277330
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
277331
276545
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
277332
276546
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
277333
276547
  resume?: ResumeUpdateOneRequiredWithoutApplicationsNestedInput
@@ -277344,7 +276558,6 @@ export namespace Prisma {
277344
276558
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
277345
276559
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
277346
276560
  offer?: OfferUpdateOneWithoutApplicationNestedInput
277347
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
277348
276561
  }
277349
276562
 
277350
276563
  export type ApplicationUncheckedUpdateWithoutCandidateInput = {
@@ -277376,9 +276589,6 @@ export namespace Prisma {
277376
276589
  created_by?: StringFieldUpdateOperationsInput | string
277377
276590
  updated_by?: StringFieldUpdateOperationsInput | string
277378
276591
  is_active?: BoolFieldUpdateOperationsInput | boolean
277379
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
277380
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
277381
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
277382
276592
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
277383
276593
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
277384
276594
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
@@ -277420,9 +276630,6 @@ export namespace Prisma {
277420
276630
  created_by?: StringFieldUpdateOperationsInput | string
277421
276631
  updated_by?: StringFieldUpdateOperationsInput | string
277422
276632
  is_active?: BoolFieldUpdateOperationsInput | boolean
277423
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
277424
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
277425
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
277426
276633
  }
277427
276634
 
277428
276635
  export type ResumeUpdateWithoutUserInput = {
@@ -278692,6 +277899,8 @@ export namespace Prisma {
278692
277899
  export type QuestionUpdateWithoutCandidateInput = {
278693
277900
  id?: StringFieldUpdateOperationsInput | string
278694
277901
  skill?: NullableStringFieldUpdateOperationsInput | string | null
277902
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
277903
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
278695
277904
  question?: StringFieldUpdateOperationsInput | string
278696
277905
  answer?: StringFieldUpdateOperationsInput | string
278697
277906
  options?: QuestionUpdateoptionsInput | string[]
@@ -278713,6 +277922,8 @@ export namespace Prisma {
278713
277922
  assessment_library_id?: NullableStringFieldUpdateOperationsInput | string | null
278714
277923
  evaluation_plan_id?: NullableStringFieldUpdateOperationsInput | string | null
278715
277924
  skill?: NullableStringFieldUpdateOperationsInput | string | null
277925
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
277926
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
278716
277927
  question?: StringFieldUpdateOperationsInput | string
278717
277928
  answer?: StringFieldUpdateOperationsInput | string
278718
277929
  options?: QuestionUpdateoptionsInput | string[]
@@ -278732,6 +277943,8 @@ export namespace Prisma {
278732
277943
  assessment_library_id?: NullableStringFieldUpdateOperationsInput | string | null
278733
277944
  evaluation_plan_id?: NullableStringFieldUpdateOperationsInput | string | null
278734
277945
  skill?: NullableStringFieldUpdateOperationsInput | string | null
277946
+ category?: NullableEnumQuestionCategoryFieldUpdateOperationsInput | $Enums.QuestionCategory | null
277947
+ bank_item_key?: NullableStringFieldUpdateOperationsInput | string | null
278735
277948
  question?: StringFieldUpdateOperationsInput | string
278736
277949
  answer?: StringFieldUpdateOperationsInput | string
278737
277950
  options?: QuestionUpdateoptionsInput | string[]
@@ -279379,8 +278592,6 @@ export namespace Prisma {
279379
278592
  created_by?: StringFieldUpdateOperationsInput | string
279380
278593
  updated_by?: StringFieldUpdateOperationsInput | string
279381
278594
  is_active?: BoolFieldUpdateOperationsInput | boolean
279382
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
279383
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
279384
278595
  evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
279385
278596
  candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
279386
278597
  organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
@@ -279397,7 +278608,6 @@ export namespace Prisma {
279397
278608
  communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
279398
278609
  job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
279399
278610
  offer?: OfferUpdateOneWithoutApplicationNestedInput
279400
- fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
279401
278611
  }
279402
278612
 
279403
278613
  export type ApplicationUncheckedUpdateWithoutRecruiterInput = {
@@ -279429,9 +278639,6 @@ export namespace Prisma {
279429
278639
  created_by?: StringFieldUpdateOperationsInput | string
279430
278640
  updated_by?: StringFieldUpdateOperationsInput | string
279431
278641
  is_active?: BoolFieldUpdateOperationsInput | boolean
279432
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
279433
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
279434
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
279435
278642
  fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
279436
278643
  interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
279437
278644
  assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
@@ -279473,9 +278680,6 @@ export namespace Prisma {
279473
278680
  created_by?: StringFieldUpdateOperationsInput | string
279474
278681
  updated_by?: StringFieldUpdateOperationsInput | string
279475
278682
  is_active?: BoolFieldUpdateOperationsInput | boolean
279476
- fit_check_report_document_id?: NullableStringFieldUpdateOperationsInput | string | null
279477
- fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
279478
- fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
279479
278683
  }
279480
278684
 
279481
278685
  export type DocumentUpdateWithoutCandidateInput = {
@@ -279509,7 +278713,6 @@ export namespace Prisma {
279509
278713
  offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
279510
278714
  offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
279511
278715
  offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
279512
- application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
279513
278716
  }
279514
278717
 
279515
278718
  export type DocumentUncheckedUpdateWithoutCandidateInput = {
@@ -279543,7 +278746,6 @@ export namespace Prisma {
279543
278746
  offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
279544
278747
  offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
279545
278748
  offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
279546
- application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
279547
278749
  }
279548
278750
 
279549
278751
  export type DocumentUncheckedUpdateManyWithoutCandidateInput = {