@adaptware/eagles-db 0.5.37 → 0.5.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/edge.js +15 -10
- package/client/index-browser.js +8 -3
- package/client/index.d.ts +1042 -12
- package/client/index.js +20 -15
- package/client/package.json +1 -1
- package/client/schema.prisma +68 -56
- package/client/wasm.js +15 -10
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/schema/.DS_Store +0 -0
- package/prisma/schema/applications.prisma +34 -29
- package/prisma/schema/document.prisma +1 -0
- package/prisma/schema/jobApplicationFields.prisma +19 -15
- package/prisma/schema/jobApplicationResponse.prisma +7 -5
- package/prisma/schema/migrations/.DS_Store +0 -0
- package/prisma/schema/migrations/20260826160000_add_application_fit_check_report_document/.DS_Store +0 -0
- package/prisma/schema/migrations/20260826160000_add_application_fit_check_report_document/migration.sql +13 -0
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/prisma/migrations/20260519120000_migrate_shortlisted_to_selected/migration.sql +0 -2
package/client/index.d.ts
CHANGED
|
@@ -22208,6 +22208,8 @@ export namespace Prisma {
|
|
|
22208
22208
|
created_by: string | null
|
|
22209
22209
|
updated_by: string | null
|
|
22210
22210
|
is_active: boolean | null
|
|
22211
|
+
fit_check_report_document_id: string | null
|
|
22212
|
+
fit_check_report_updated_flag: boolean | null
|
|
22211
22213
|
}
|
|
22212
22214
|
|
|
22213
22215
|
export type ApplicationMaxAggregateOutputType = {
|
|
@@ -22240,6 +22242,8 @@ export namespace Prisma {
|
|
|
22240
22242
|
created_by: string | null
|
|
22241
22243
|
updated_by: string | null
|
|
22242
22244
|
is_active: boolean | null
|
|
22245
|
+
fit_check_report_document_id: string | null
|
|
22246
|
+
fit_check_report_updated_flag: boolean | null
|
|
22243
22247
|
}
|
|
22244
22248
|
|
|
22245
22249
|
export type ApplicationCountAggregateOutputType = {
|
|
@@ -22272,6 +22276,9 @@ export namespace Prisma {
|
|
|
22272
22276
|
created_by: number
|
|
22273
22277
|
updated_by: number
|
|
22274
22278
|
is_active: number
|
|
22279
|
+
fit_check_report_document_id: number
|
|
22280
|
+
fit_check_report_updated_flag: number
|
|
22281
|
+
fit_check_report_data: number
|
|
22275
22282
|
_all: number
|
|
22276
22283
|
}
|
|
22277
22284
|
|
|
@@ -22316,6 +22323,8 @@ export namespace Prisma {
|
|
|
22316
22323
|
created_by?: true
|
|
22317
22324
|
updated_by?: true
|
|
22318
22325
|
is_active?: true
|
|
22326
|
+
fit_check_report_document_id?: true
|
|
22327
|
+
fit_check_report_updated_flag?: true
|
|
22319
22328
|
}
|
|
22320
22329
|
|
|
22321
22330
|
export type ApplicationMaxAggregateInputType = {
|
|
@@ -22348,6 +22357,8 @@ export namespace Prisma {
|
|
|
22348
22357
|
created_by?: true
|
|
22349
22358
|
updated_by?: true
|
|
22350
22359
|
is_active?: true
|
|
22360
|
+
fit_check_report_document_id?: true
|
|
22361
|
+
fit_check_report_updated_flag?: true
|
|
22351
22362
|
}
|
|
22352
22363
|
|
|
22353
22364
|
export type ApplicationCountAggregateInputType = {
|
|
@@ -22380,6 +22391,9 @@ export namespace Prisma {
|
|
|
22380
22391
|
created_by?: true
|
|
22381
22392
|
updated_by?: true
|
|
22382
22393
|
is_active?: true
|
|
22394
|
+
fit_check_report_document_id?: true
|
|
22395
|
+
fit_check_report_updated_flag?: true
|
|
22396
|
+
fit_check_report_data?: true
|
|
22383
22397
|
_all?: true
|
|
22384
22398
|
}
|
|
22385
22399
|
|
|
@@ -22499,6 +22513,9 @@ export namespace Prisma {
|
|
|
22499
22513
|
created_by: string
|
|
22500
22514
|
updated_by: string
|
|
22501
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
|
|
22502
22519
|
_count: ApplicationCountAggregateOutputType | null
|
|
22503
22520
|
_avg: ApplicationAvgAggregateOutputType | null
|
|
22504
22521
|
_sum: ApplicationSumAggregateOutputType | null
|
|
@@ -22550,6 +22567,9 @@ export namespace Prisma {
|
|
|
22550
22567
|
created_by?: boolean
|
|
22551
22568
|
updated_by?: boolean
|
|
22552
22569
|
is_active?: boolean
|
|
22570
|
+
fit_check_report_document_id?: boolean
|
|
22571
|
+
fit_check_report_updated_flag?: boolean
|
|
22572
|
+
fit_check_report_data?: boolean
|
|
22553
22573
|
evaluation_plan?: boolean | Application$evaluation_planArgs<ExtArgs>
|
|
22554
22574
|
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
22555
22575
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
@@ -22567,6 +22587,7 @@ export namespace Prisma {
|
|
|
22567
22587
|
communication_messages?: boolean | Application$communication_messagesArgs<ExtArgs>
|
|
22568
22588
|
job_application_responses?: boolean | Application$job_application_responsesArgs<ExtArgs>
|
|
22569
22589
|
offer?: boolean | Application$offerArgs<ExtArgs>
|
|
22590
|
+
fit_check_report_document?: boolean | Application$fit_check_report_documentArgs<ExtArgs>
|
|
22570
22591
|
_count?: boolean | ApplicationCountOutputTypeDefaultArgs<ExtArgs>
|
|
22571
22592
|
}, ExtArgs["result"]["application"]>
|
|
22572
22593
|
|
|
@@ -22600,6 +22621,9 @@ export namespace Prisma {
|
|
|
22600
22621
|
created_by?: boolean
|
|
22601
22622
|
updated_by?: boolean
|
|
22602
22623
|
is_active?: boolean
|
|
22624
|
+
fit_check_report_document_id?: boolean
|
|
22625
|
+
fit_check_report_updated_flag?: boolean
|
|
22626
|
+
fit_check_report_data?: boolean
|
|
22603
22627
|
evaluation_plan?: boolean | Application$evaluation_planArgs<ExtArgs>
|
|
22604
22628
|
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
22605
22629
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
@@ -22607,6 +22631,7 @@ export namespace Prisma {
|
|
|
22607
22631
|
job_description?: boolean | JobDescriptionDefaultArgs<ExtArgs>
|
|
22608
22632
|
recruiter?: boolean | Application$recruiterArgs<ExtArgs>
|
|
22609
22633
|
source?: boolean | Application$sourceArgs<ExtArgs>
|
|
22634
|
+
fit_check_report_document?: boolean | Application$fit_check_report_documentArgs<ExtArgs>
|
|
22610
22635
|
}, ExtArgs["result"]["application"]>
|
|
22611
22636
|
|
|
22612
22637
|
export type ApplicationSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -22639,6 +22664,9 @@ export namespace Prisma {
|
|
|
22639
22664
|
created_by?: boolean
|
|
22640
22665
|
updated_by?: boolean
|
|
22641
22666
|
is_active?: boolean
|
|
22667
|
+
fit_check_report_document_id?: boolean
|
|
22668
|
+
fit_check_report_updated_flag?: boolean
|
|
22669
|
+
fit_check_report_data?: boolean
|
|
22642
22670
|
evaluation_plan?: boolean | Application$evaluation_planArgs<ExtArgs>
|
|
22643
22671
|
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
22644
22672
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
@@ -22646,6 +22674,7 @@ export namespace Prisma {
|
|
|
22646
22674
|
job_description?: boolean | JobDescriptionDefaultArgs<ExtArgs>
|
|
22647
22675
|
recruiter?: boolean | Application$recruiterArgs<ExtArgs>
|
|
22648
22676
|
source?: boolean | Application$sourceArgs<ExtArgs>
|
|
22677
|
+
fit_check_report_document?: boolean | Application$fit_check_report_documentArgs<ExtArgs>
|
|
22649
22678
|
}, ExtArgs["result"]["application"]>
|
|
22650
22679
|
|
|
22651
22680
|
export type ApplicationSelectScalar = {
|
|
@@ -22678,9 +22707,12 @@ export namespace Prisma {
|
|
|
22678
22707
|
created_by?: boolean
|
|
22679
22708
|
updated_by?: boolean
|
|
22680
22709
|
is_active?: boolean
|
|
22710
|
+
fit_check_report_document_id?: boolean
|
|
22711
|
+
fit_check_report_updated_flag?: boolean
|
|
22712
|
+
fit_check_report_data?: boolean
|
|
22681
22713
|
}
|
|
22682
22714
|
|
|
22683
|
-
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"]>
|
|
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"]>
|
|
22684
22716
|
export type ApplicationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
22685
22717
|
evaluation_plan?: boolean | Application$evaluation_planArgs<ExtArgs>
|
|
22686
22718
|
candidate?: boolean | UserDefaultArgs<ExtArgs>
|
|
@@ -22699,6 +22731,7 @@ export namespace Prisma {
|
|
|
22699
22731
|
communication_messages?: boolean | Application$communication_messagesArgs<ExtArgs>
|
|
22700
22732
|
job_application_responses?: boolean | Application$job_application_responsesArgs<ExtArgs>
|
|
22701
22733
|
offer?: boolean | Application$offerArgs<ExtArgs>
|
|
22734
|
+
fit_check_report_document?: boolean | Application$fit_check_report_documentArgs<ExtArgs>
|
|
22702
22735
|
_count?: boolean | ApplicationCountOutputTypeDefaultArgs<ExtArgs>
|
|
22703
22736
|
}
|
|
22704
22737
|
export type ApplicationIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -22709,6 +22742,7 @@ export namespace Prisma {
|
|
|
22709
22742
|
job_description?: boolean | JobDescriptionDefaultArgs<ExtArgs>
|
|
22710
22743
|
recruiter?: boolean | Application$recruiterArgs<ExtArgs>
|
|
22711
22744
|
source?: boolean | Application$sourceArgs<ExtArgs>
|
|
22745
|
+
fit_check_report_document?: boolean | Application$fit_check_report_documentArgs<ExtArgs>
|
|
22712
22746
|
}
|
|
22713
22747
|
export type ApplicationIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
22714
22748
|
evaluation_plan?: boolean | Application$evaluation_planArgs<ExtArgs>
|
|
@@ -22718,6 +22752,7 @@ export namespace Prisma {
|
|
|
22718
22752
|
job_description?: boolean | JobDescriptionDefaultArgs<ExtArgs>
|
|
22719
22753
|
recruiter?: boolean | Application$recruiterArgs<ExtArgs>
|
|
22720
22754
|
source?: boolean | Application$sourceArgs<ExtArgs>
|
|
22755
|
+
fit_check_report_document?: boolean | Application$fit_check_report_documentArgs<ExtArgs>
|
|
22721
22756
|
}
|
|
22722
22757
|
|
|
22723
22758
|
export type $ApplicationPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -22743,6 +22778,7 @@ export namespace Prisma {
|
|
|
22743
22778
|
communication_messages: Prisma.$CommunicationMessagePayload<ExtArgs>[]
|
|
22744
22779
|
job_application_responses: Prisma.$JobApplicationResponsePayload<ExtArgs>[]
|
|
22745
22780
|
offer: Prisma.$OfferPayload<ExtArgs> | null
|
|
22781
|
+
fit_check_report_document: Prisma.$DocumentPayload<ExtArgs> | null
|
|
22746
22782
|
}
|
|
22747
22783
|
scalars: $Extensions.GetPayloadResult<{
|
|
22748
22784
|
/**
|
|
@@ -22792,6 +22828,9 @@ export namespace Prisma {
|
|
|
22792
22828
|
created_by: string
|
|
22793
22829
|
updated_by: string
|
|
22794
22830
|
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
|
|
22795
22834
|
}, ExtArgs["result"]["application"]>
|
|
22796
22835
|
composites: {}
|
|
22797
22836
|
}
|
|
@@ -23203,6 +23242,7 @@ export namespace Prisma {
|
|
|
23203
23242
|
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>
|
|
23204
23243
|
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>
|
|
23205
23244
|
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>
|
|
23206
23246
|
/**
|
|
23207
23247
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
23208
23248
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -23261,6 +23301,9 @@ export namespace Prisma {
|
|
|
23261
23301
|
readonly created_by: FieldRef<"Application", 'String'>
|
|
23262
23302
|
readonly updated_by: FieldRef<"Application", 'String'>
|
|
23263
23303
|
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'>
|
|
23264
23307
|
}
|
|
23265
23308
|
|
|
23266
23309
|
|
|
@@ -23943,6 +23986,25 @@ export namespace Prisma {
|
|
|
23943
23986
|
where?: OfferWhereInput
|
|
23944
23987
|
}
|
|
23945
23988
|
|
|
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
|
+
|
|
23946
24008
|
/**
|
|
23947
24009
|
* Application without action
|
|
23948
24010
|
*/
|
|
@@ -52653,6 +52715,7 @@ export namespace Prisma {
|
|
|
52653
52715
|
offer_letters?: boolean | Document$offer_lettersArgs<ExtArgs>
|
|
52654
52716
|
offer_letter_template_snapshots?: boolean | Document$offer_letter_template_snapshotsArgs<ExtArgs>
|
|
52655
52717
|
offer_draft_edited_html?: boolean | Document$offer_draft_edited_htmlArgs<ExtArgs>
|
|
52718
|
+
application_fit_check_report?: boolean | Document$application_fit_check_reportArgs<ExtArgs>
|
|
52656
52719
|
_count?: boolean | DocumentCountOutputTypeDefaultArgs<ExtArgs>
|
|
52657
52720
|
}, ExtArgs["result"]["document"]>
|
|
52658
52721
|
|
|
@@ -52738,6 +52801,7 @@ export namespace Prisma {
|
|
|
52738
52801
|
offer_letters?: boolean | Document$offer_lettersArgs<ExtArgs>
|
|
52739
52802
|
offer_letter_template_snapshots?: boolean | Document$offer_letter_template_snapshotsArgs<ExtArgs>
|
|
52740
52803
|
offer_draft_edited_html?: boolean | Document$offer_draft_edited_htmlArgs<ExtArgs>
|
|
52804
|
+
application_fit_check_report?: boolean | Document$application_fit_check_reportArgs<ExtArgs>
|
|
52741
52805
|
_count?: boolean | DocumentCountOutputTypeDefaultArgs<ExtArgs>
|
|
52742
52806
|
}
|
|
52743
52807
|
export type DocumentIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -52768,6 +52832,7 @@ export namespace Prisma {
|
|
|
52768
52832
|
offer_letters: Prisma.$OfferLetterPayload<ExtArgs>[]
|
|
52769
52833
|
offer_letter_template_snapshots: Prisma.$OfferLetterPayload<ExtArgs>[]
|
|
52770
52834
|
offer_draft_edited_html: Prisma.$OfferPayload<ExtArgs>[]
|
|
52835
|
+
application_fit_check_report: Prisma.$ApplicationPayload<ExtArgs> | null
|
|
52771
52836
|
}
|
|
52772
52837
|
scalars: $Extensions.GetPayloadResult<{
|
|
52773
52838
|
id: string
|
|
@@ -53197,6 +53262,7 @@ export namespace Prisma {
|
|
|
53197
53262
|
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>
|
|
53198
53263
|
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>
|
|
53199
53264
|
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>
|
|
53200
53266
|
/**
|
|
53201
53267
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
53202
53268
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -53972,6 +54038,25 @@ export namespace Prisma {
|
|
|
53972
54038
|
distinct?: OfferScalarFieldEnum | OfferScalarFieldEnum[]
|
|
53973
54039
|
}
|
|
53974
54040
|
|
|
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
|
+
|
|
53975
54060
|
/**
|
|
53976
54061
|
* Document without action
|
|
53977
54062
|
*/
|
|
@@ -80514,10 +80599,20 @@ export namespace Prisma {
|
|
|
80514
80599
|
|
|
80515
80600
|
export type AggregateJobApplicationField = {
|
|
80516
80601
|
_count: JobApplicationFieldCountAggregateOutputType | null
|
|
80602
|
+
_avg: JobApplicationFieldAvgAggregateOutputType | null
|
|
80603
|
+
_sum: JobApplicationFieldSumAggregateOutputType | null
|
|
80517
80604
|
_min: JobApplicationFieldMinAggregateOutputType | null
|
|
80518
80605
|
_max: JobApplicationFieldMaxAggregateOutputType | null
|
|
80519
80606
|
}
|
|
80520
80607
|
|
|
80608
|
+
export type JobApplicationFieldAvgAggregateOutputType = {
|
|
80609
|
+
order_no: number | null
|
|
80610
|
+
}
|
|
80611
|
+
|
|
80612
|
+
export type JobApplicationFieldSumAggregateOutputType = {
|
|
80613
|
+
order_no: number | null
|
|
80614
|
+
}
|
|
80615
|
+
|
|
80521
80616
|
export type JobApplicationFieldMinAggregateOutputType = {
|
|
80522
80617
|
id: string | null
|
|
80523
80618
|
organisation_id: string | null
|
|
@@ -80532,6 +80627,7 @@ export namespace Prisma {
|
|
|
80532
80627
|
updated_by: string | null
|
|
80533
80628
|
created_at: Date | null
|
|
80534
80629
|
updated_at: Date | null
|
|
80630
|
+
order_no: number | null
|
|
80535
80631
|
}
|
|
80536
80632
|
|
|
80537
80633
|
export type JobApplicationFieldMaxAggregateOutputType = {
|
|
@@ -80548,6 +80644,7 @@ export namespace Prisma {
|
|
|
80548
80644
|
updated_by: string | null
|
|
80549
80645
|
created_at: Date | null
|
|
80550
80646
|
updated_at: Date | null
|
|
80647
|
+
order_no: number | null
|
|
80551
80648
|
}
|
|
80552
80649
|
|
|
80553
80650
|
export type JobApplicationFieldCountAggregateOutputType = {
|
|
@@ -80565,10 +80662,19 @@ export namespace Prisma {
|
|
|
80565
80662
|
updated_by: number
|
|
80566
80663
|
created_at: number
|
|
80567
80664
|
updated_at: number
|
|
80665
|
+
order_no: number
|
|
80568
80666
|
_all: number
|
|
80569
80667
|
}
|
|
80570
80668
|
|
|
80571
80669
|
|
|
80670
|
+
export type JobApplicationFieldAvgAggregateInputType = {
|
|
80671
|
+
order_no?: true
|
|
80672
|
+
}
|
|
80673
|
+
|
|
80674
|
+
export type JobApplicationFieldSumAggregateInputType = {
|
|
80675
|
+
order_no?: true
|
|
80676
|
+
}
|
|
80677
|
+
|
|
80572
80678
|
export type JobApplicationFieldMinAggregateInputType = {
|
|
80573
80679
|
id?: true
|
|
80574
80680
|
organisation_id?: true
|
|
@@ -80583,6 +80689,7 @@ export namespace Prisma {
|
|
|
80583
80689
|
updated_by?: true
|
|
80584
80690
|
created_at?: true
|
|
80585
80691
|
updated_at?: true
|
|
80692
|
+
order_no?: true
|
|
80586
80693
|
}
|
|
80587
80694
|
|
|
80588
80695
|
export type JobApplicationFieldMaxAggregateInputType = {
|
|
@@ -80599,6 +80706,7 @@ export namespace Prisma {
|
|
|
80599
80706
|
updated_by?: true
|
|
80600
80707
|
created_at?: true
|
|
80601
80708
|
updated_at?: true
|
|
80709
|
+
order_no?: true
|
|
80602
80710
|
}
|
|
80603
80711
|
|
|
80604
80712
|
export type JobApplicationFieldCountAggregateInputType = {
|
|
@@ -80616,6 +80724,7 @@ export namespace Prisma {
|
|
|
80616
80724
|
updated_by?: true
|
|
80617
80725
|
created_at?: true
|
|
80618
80726
|
updated_at?: true
|
|
80727
|
+
order_no?: true
|
|
80619
80728
|
_all?: true
|
|
80620
80729
|
}
|
|
80621
80730
|
|
|
@@ -80654,6 +80763,18 @@ export namespace Prisma {
|
|
|
80654
80763
|
* Count returned JobApplicationFields
|
|
80655
80764
|
**/
|
|
80656
80765
|
_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
|
|
80657
80778
|
/**
|
|
80658
80779
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
80659
80780
|
*
|
|
@@ -80687,6 +80808,8 @@ export namespace Prisma {
|
|
|
80687
80808
|
take?: number
|
|
80688
80809
|
skip?: number
|
|
80689
80810
|
_count?: JobApplicationFieldCountAggregateInputType | true
|
|
80811
|
+
_avg?: JobApplicationFieldAvgAggregateInputType
|
|
80812
|
+
_sum?: JobApplicationFieldSumAggregateInputType
|
|
80690
80813
|
_min?: JobApplicationFieldMinAggregateInputType
|
|
80691
80814
|
_max?: JobApplicationFieldMaxAggregateInputType
|
|
80692
80815
|
}
|
|
@@ -80706,7 +80829,10 @@ export namespace Prisma {
|
|
|
80706
80829
|
updated_by: string
|
|
80707
80830
|
created_at: Date
|
|
80708
80831
|
updated_at: Date
|
|
80832
|
+
order_no: number | null
|
|
80709
80833
|
_count: JobApplicationFieldCountAggregateOutputType | null
|
|
80834
|
+
_avg: JobApplicationFieldAvgAggregateOutputType | null
|
|
80835
|
+
_sum: JobApplicationFieldSumAggregateOutputType | null
|
|
80710
80836
|
_min: JobApplicationFieldMinAggregateOutputType | null
|
|
80711
80837
|
_max: JobApplicationFieldMaxAggregateOutputType | null
|
|
80712
80838
|
}
|
|
@@ -80740,6 +80866,7 @@ export namespace Prisma {
|
|
|
80740
80866
|
updated_by?: boolean
|
|
80741
80867
|
created_at?: boolean
|
|
80742
80868
|
updated_at?: boolean
|
|
80869
|
+
order_no?: boolean
|
|
80743
80870
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
80744
80871
|
job_application_template?: boolean | JobApplicationTemplateDefaultArgs<ExtArgs>
|
|
80745
80872
|
job_application_responses?: boolean | JobApplicationField$job_application_responsesArgs<ExtArgs>
|
|
@@ -80761,6 +80888,7 @@ export namespace Prisma {
|
|
|
80761
80888
|
updated_by?: boolean
|
|
80762
80889
|
created_at?: boolean
|
|
80763
80890
|
updated_at?: boolean
|
|
80891
|
+
order_no?: boolean
|
|
80764
80892
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
80765
80893
|
job_application_template?: boolean | JobApplicationTemplateDefaultArgs<ExtArgs>
|
|
80766
80894
|
}, ExtArgs["result"]["jobApplicationField"]>
|
|
@@ -80780,6 +80908,7 @@ export namespace Prisma {
|
|
|
80780
80908
|
updated_by?: boolean
|
|
80781
80909
|
created_at?: boolean
|
|
80782
80910
|
updated_at?: boolean
|
|
80911
|
+
order_no?: boolean
|
|
80783
80912
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
80784
80913
|
job_application_template?: boolean | JobApplicationTemplateDefaultArgs<ExtArgs>
|
|
80785
80914
|
}, ExtArgs["result"]["jobApplicationField"]>
|
|
@@ -80799,9 +80928,10 @@ export namespace Prisma {
|
|
|
80799
80928
|
updated_by?: boolean
|
|
80800
80929
|
created_at?: boolean
|
|
80801
80930
|
updated_at?: boolean
|
|
80931
|
+
order_no?: boolean
|
|
80802
80932
|
}
|
|
80803
80933
|
|
|
80804
|
-
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"]>
|
|
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"]>
|
|
80805
80935
|
export type JobApplicationFieldInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
80806
80936
|
organisation?: boolean | OrganisationDefaultArgs<ExtArgs>
|
|
80807
80937
|
job_application_template?: boolean | JobApplicationTemplateDefaultArgs<ExtArgs>
|
|
@@ -80854,6 +80984,10 @@ export namespace Prisma {
|
|
|
80854
80984
|
updated_by: string
|
|
80855
80985
|
created_at: Date
|
|
80856
80986
|
updated_at: Date
|
|
80987
|
+
/**
|
|
80988
|
+
* order of question
|
|
80989
|
+
*/
|
|
80990
|
+
order_no: number | null
|
|
80857
80991
|
}, ExtArgs["result"]["jobApplicationField"]>
|
|
80858
80992
|
composites: {}
|
|
80859
80993
|
}
|
|
@@ -81294,6 +81428,7 @@ export namespace Prisma {
|
|
|
81294
81428
|
readonly updated_by: FieldRef<"JobApplicationField", 'String'>
|
|
81295
81429
|
readonly created_at: FieldRef<"JobApplicationField", 'DateTime'>
|
|
81296
81430
|
readonly updated_at: FieldRef<"JobApplicationField", 'DateTime'>
|
|
81431
|
+
readonly order_no: FieldRef<"JobApplicationField", 'Int'>
|
|
81297
81432
|
}
|
|
81298
81433
|
|
|
81299
81434
|
|
|
@@ -81738,10 +81873,20 @@ export namespace Prisma {
|
|
|
81738
81873
|
|
|
81739
81874
|
export type AggregateJobApplicationResponse = {
|
|
81740
81875
|
_count: JobApplicationResponseCountAggregateOutputType | null
|
|
81876
|
+
_avg: JobApplicationResponseAvgAggregateOutputType | null
|
|
81877
|
+
_sum: JobApplicationResponseSumAggregateOutputType | null
|
|
81741
81878
|
_min: JobApplicationResponseMinAggregateOutputType | null
|
|
81742
81879
|
_max: JobApplicationResponseMaxAggregateOutputType | null
|
|
81743
81880
|
}
|
|
81744
81881
|
|
|
81882
|
+
export type JobApplicationResponseAvgAggregateOutputType = {
|
|
81883
|
+
order_no: number | null
|
|
81884
|
+
}
|
|
81885
|
+
|
|
81886
|
+
export type JobApplicationResponseSumAggregateOutputType = {
|
|
81887
|
+
order_no: number | null
|
|
81888
|
+
}
|
|
81889
|
+
|
|
81745
81890
|
export type JobApplicationResponseMinAggregateOutputType = {
|
|
81746
81891
|
id: string | null
|
|
81747
81892
|
application_id: string | null
|
|
@@ -81759,6 +81904,7 @@ export namespace Prisma {
|
|
|
81759
81904
|
created_by: string | null
|
|
81760
81905
|
updated_by: string | null
|
|
81761
81906
|
is_active: boolean | null
|
|
81907
|
+
order_no: number | null
|
|
81762
81908
|
}
|
|
81763
81909
|
|
|
81764
81910
|
export type JobApplicationResponseMaxAggregateOutputType = {
|
|
@@ -81778,6 +81924,7 @@ export namespace Prisma {
|
|
|
81778
81924
|
created_by: string | null
|
|
81779
81925
|
updated_by: string | null
|
|
81780
81926
|
is_active: boolean | null
|
|
81927
|
+
order_no: number | null
|
|
81781
81928
|
}
|
|
81782
81929
|
|
|
81783
81930
|
export type JobApplicationResponseCountAggregateOutputType = {
|
|
@@ -81799,10 +81946,19 @@ export namespace Prisma {
|
|
|
81799
81946
|
created_by: number
|
|
81800
81947
|
updated_by: number
|
|
81801
81948
|
is_active: number
|
|
81949
|
+
order_no: number
|
|
81802
81950
|
_all: number
|
|
81803
81951
|
}
|
|
81804
81952
|
|
|
81805
81953
|
|
|
81954
|
+
export type JobApplicationResponseAvgAggregateInputType = {
|
|
81955
|
+
order_no?: true
|
|
81956
|
+
}
|
|
81957
|
+
|
|
81958
|
+
export type JobApplicationResponseSumAggregateInputType = {
|
|
81959
|
+
order_no?: true
|
|
81960
|
+
}
|
|
81961
|
+
|
|
81806
81962
|
export type JobApplicationResponseMinAggregateInputType = {
|
|
81807
81963
|
id?: true
|
|
81808
81964
|
application_id?: true
|
|
@@ -81820,6 +81976,7 @@ export namespace Prisma {
|
|
|
81820
81976
|
created_by?: true
|
|
81821
81977
|
updated_by?: true
|
|
81822
81978
|
is_active?: true
|
|
81979
|
+
order_no?: true
|
|
81823
81980
|
}
|
|
81824
81981
|
|
|
81825
81982
|
export type JobApplicationResponseMaxAggregateInputType = {
|
|
@@ -81839,6 +81996,7 @@ export namespace Prisma {
|
|
|
81839
81996
|
created_by?: true
|
|
81840
81997
|
updated_by?: true
|
|
81841
81998
|
is_active?: true
|
|
81999
|
+
order_no?: true
|
|
81842
82000
|
}
|
|
81843
82001
|
|
|
81844
82002
|
export type JobApplicationResponseCountAggregateInputType = {
|
|
@@ -81860,6 +82018,7 @@ export namespace Prisma {
|
|
|
81860
82018
|
created_by?: true
|
|
81861
82019
|
updated_by?: true
|
|
81862
82020
|
is_active?: true
|
|
82021
|
+
order_no?: true
|
|
81863
82022
|
_all?: true
|
|
81864
82023
|
}
|
|
81865
82024
|
|
|
@@ -81898,6 +82057,18 @@ export namespace Prisma {
|
|
|
81898
82057
|
* Count returned JobApplicationResponses
|
|
81899
82058
|
**/
|
|
81900
82059
|
_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
|
|
81901
82072
|
/**
|
|
81902
82073
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
81903
82074
|
*
|
|
@@ -81931,6 +82102,8 @@ export namespace Prisma {
|
|
|
81931
82102
|
take?: number
|
|
81932
82103
|
skip?: number
|
|
81933
82104
|
_count?: JobApplicationResponseCountAggregateInputType | true
|
|
82105
|
+
_avg?: JobApplicationResponseAvgAggregateInputType
|
|
82106
|
+
_sum?: JobApplicationResponseSumAggregateInputType
|
|
81934
82107
|
_min?: JobApplicationResponseMinAggregateInputType
|
|
81935
82108
|
_max?: JobApplicationResponseMaxAggregateInputType
|
|
81936
82109
|
}
|
|
@@ -81954,7 +82127,10 @@ export namespace Prisma {
|
|
|
81954
82127
|
created_by: string
|
|
81955
82128
|
updated_by: string
|
|
81956
82129
|
is_active: boolean
|
|
82130
|
+
order_no: number | null
|
|
81957
82131
|
_count: JobApplicationResponseCountAggregateOutputType | null
|
|
82132
|
+
_avg: JobApplicationResponseAvgAggregateOutputType | null
|
|
82133
|
+
_sum: JobApplicationResponseSumAggregateOutputType | null
|
|
81958
82134
|
_min: JobApplicationResponseMinAggregateOutputType | null
|
|
81959
82135
|
_max: JobApplicationResponseMaxAggregateOutputType | null
|
|
81960
82136
|
}
|
|
@@ -81992,6 +82168,7 @@ export namespace Prisma {
|
|
|
81992
82168
|
created_by?: boolean
|
|
81993
82169
|
updated_by?: boolean
|
|
81994
82170
|
is_active?: boolean
|
|
82171
|
+
order_no?: boolean
|
|
81995
82172
|
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
81996
82173
|
field?: boolean | JobApplicationResponse$fieldArgs<ExtArgs>
|
|
81997
82174
|
document?: boolean | JobApplicationResponse$documentArgs<ExtArgs>
|
|
@@ -82016,6 +82193,7 @@ export namespace Prisma {
|
|
|
82016
82193
|
created_by?: boolean
|
|
82017
82194
|
updated_by?: boolean
|
|
82018
82195
|
is_active?: boolean
|
|
82196
|
+
order_no?: boolean
|
|
82019
82197
|
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
82020
82198
|
field?: boolean | JobApplicationResponse$fieldArgs<ExtArgs>
|
|
82021
82199
|
document?: boolean | JobApplicationResponse$documentArgs<ExtArgs>
|
|
@@ -82040,6 +82218,7 @@ export namespace Prisma {
|
|
|
82040
82218
|
created_by?: boolean
|
|
82041
82219
|
updated_by?: boolean
|
|
82042
82220
|
is_active?: boolean
|
|
82221
|
+
order_no?: boolean
|
|
82043
82222
|
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
82044
82223
|
field?: boolean | JobApplicationResponse$fieldArgs<ExtArgs>
|
|
82045
82224
|
document?: boolean | JobApplicationResponse$documentArgs<ExtArgs>
|
|
@@ -82064,9 +82243,10 @@ export namespace Prisma {
|
|
|
82064
82243
|
created_by?: boolean
|
|
82065
82244
|
updated_by?: boolean
|
|
82066
82245
|
is_active?: boolean
|
|
82246
|
+
order_no?: boolean
|
|
82067
82247
|
}
|
|
82068
82248
|
|
|
82069
|
-
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"]>
|
|
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"]>
|
|
82070
82250
|
export type JobApplicationResponseInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
82071
82251
|
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
82072
82252
|
field?: boolean | JobApplicationResponse$fieldArgs<ExtArgs>
|
|
@@ -82127,6 +82307,7 @@ export namespace Prisma {
|
|
|
82127
82307
|
created_by: string
|
|
82128
82308
|
updated_by: string
|
|
82129
82309
|
is_active: boolean
|
|
82310
|
+
order_no: number | null
|
|
82130
82311
|
}, ExtArgs["result"]["jobApplicationResponse"]>
|
|
82131
82312
|
composites: {}
|
|
82132
82313
|
}
|
|
@@ -82571,6 +82752,7 @@ export namespace Prisma {
|
|
|
82571
82752
|
readonly created_by: FieldRef<"JobApplicationResponse", 'String'>
|
|
82572
82753
|
readonly updated_by: FieldRef<"JobApplicationResponse", 'String'>
|
|
82573
82754
|
readonly is_active: FieldRef<"JobApplicationResponse", 'Boolean'>
|
|
82755
|
+
readonly order_no: FieldRef<"JobApplicationResponse", 'Int'>
|
|
82574
82756
|
}
|
|
82575
82757
|
|
|
82576
82758
|
|
|
@@ -150569,7 +150751,10 @@ export namespace Prisma {
|
|
|
150569
150751
|
updated_at: 'updated_at',
|
|
150570
150752
|
created_by: 'created_by',
|
|
150571
150753
|
updated_by: 'updated_by',
|
|
150572
|
-
is_active: 'is_active'
|
|
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'
|
|
150573
150758
|
};
|
|
150574
150759
|
|
|
150575
150760
|
export type ApplicationScalarFieldEnum = (typeof ApplicationScalarFieldEnum)[keyof typeof ApplicationScalarFieldEnum]
|
|
@@ -151686,7 +151871,8 @@ export namespace Prisma {
|
|
|
151686
151871
|
created_by: 'created_by',
|
|
151687
151872
|
updated_by: 'updated_by',
|
|
151688
151873
|
created_at: 'created_at',
|
|
151689
|
-
updated_at: 'updated_at'
|
|
151874
|
+
updated_at: 'updated_at',
|
|
151875
|
+
order_no: 'order_no'
|
|
151690
151876
|
};
|
|
151691
151877
|
|
|
151692
151878
|
export type JobApplicationFieldScalarFieldEnum = (typeof JobApplicationFieldScalarFieldEnum)[keyof typeof JobApplicationFieldScalarFieldEnum]
|
|
@@ -151710,7 +151896,8 @@ export namespace Prisma {
|
|
|
151710
151896
|
updated_at: 'updated_at',
|
|
151711
151897
|
created_by: 'created_by',
|
|
151712
151898
|
updated_by: 'updated_by',
|
|
151713
|
-
is_active: 'is_active'
|
|
151899
|
+
is_active: 'is_active',
|
|
151900
|
+
order_no: 'order_no'
|
|
151714
151901
|
};
|
|
151715
151902
|
|
|
151716
151903
|
export type JobApplicationResponseScalarFieldEnum = (typeof JobApplicationResponseScalarFieldEnum)[keyof typeof JobApplicationResponseScalarFieldEnum]
|
|
@@ -154901,6 +155088,9 @@ export namespace Prisma {
|
|
|
154901
155088
|
created_by?: StringFilter<"Application"> | string
|
|
154902
155089
|
updated_by?: StringFilter<"Application"> | string
|
|
154903
155090
|
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">
|
|
154904
155094
|
evaluation_plan?: XOR<EvaluationPlanNullableScalarRelationFilter, EvaluationPlanWhereInput> | null
|
|
154905
155095
|
candidate?: XOR<UserScalarRelationFilter, UserWhereInput>
|
|
154906
155096
|
organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
|
|
@@ -154918,6 +155108,7 @@ export namespace Prisma {
|
|
|
154918
155108
|
communication_messages?: CommunicationMessageListRelationFilter
|
|
154919
155109
|
job_application_responses?: JobApplicationResponseListRelationFilter
|
|
154920
155110
|
offer?: XOR<OfferNullableScalarRelationFilter, OfferWhereInput> | null
|
|
155111
|
+
fit_check_report_document?: XOR<DocumentNullableScalarRelationFilter, DocumentWhereInput> | null
|
|
154921
155112
|
}
|
|
154922
155113
|
|
|
154923
155114
|
export type ApplicationOrderByWithRelationInput = {
|
|
@@ -154950,6 +155141,9 @@ export namespace Prisma {
|
|
|
154950
155141
|
created_by?: SortOrder
|
|
154951
155142
|
updated_by?: SortOrder
|
|
154952
155143
|
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
|
|
154953
155147
|
evaluation_plan?: EvaluationPlanOrderByWithRelationInput
|
|
154954
155148
|
candidate?: UserOrderByWithRelationInput
|
|
154955
155149
|
organisation?: OrganisationOrderByWithRelationInput
|
|
@@ -154967,10 +155161,12 @@ export namespace Prisma {
|
|
|
154967
155161
|
communication_messages?: CommunicationMessageOrderByRelationAggregateInput
|
|
154968
155162
|
job_application_responses?: JobApplicationResponseOrderByRelationAggregateInput
|
|
154969
155163
|
offer?: OfferOrderByWithRelationInput
|
|
155164
|
+
fit_check_report_document?: DocumentOrderByWithRelationInput
|
|
154970
155165
|
}
|
|
154971
155166
|
|
|
154972
155167
|
export type ApplicationWhereUniqueInput = Prisma.AtLeast<{
|
|
154973
155168
|
id?: string
|
|
155169
|
+
fit_check_report_document_id?: string
|
|
154974
155170
|
candidate_id_job_description_id?: ApplicationCandidate_idJob_description_idCompoundUniqueInput
|
|
154975
155171
|
AND?: ApplicationWhereInput | ApplicationWhereInput[]
|
|
154976
155172
|
OR?: ApplicationWhereInput[]
|
|
@@ -155003,6 +155199,8 @@ export namespace Prisma {
|
|
|
155003
155199
|
created_by?: StringFilter<"Application"> | string
|
|
155004
155200
|
updated_by?: StringFilter<"Application"> | string
|
|
155005
155201
|
is_active?: BoolFilter<"Application"> | boolean
|
|
155202
|
+
fit_check_report_updated_flag?: BoolFilter<"Application"> | boolean
|
|
155203
|
+
fit_check_report_data?: JsonNullableFilter<"Application">
|
|
155006
155204
|
evaluation_plan?: XOR<EvaluationPlanNullableScalarRelationFilter, EvaluationPlanWhereInput> | null
|
|
155007
155205
|
candidate?: XOR<UserScalarRelationFilter, UserWhereInput>
|
|
155008
155206
|
organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
|
|
@@ -155020,7 +155218,8 @@ export namespace Prisma {
|
|
|
155020
155218
|
communication_messages?: CommunicationMessageListRelationFilter
|
|
155021
155219
|
job_application_responses?: JobApplicationResponseListRelationFilter
|
|
155022
155220
|
offer?: XOR<OfferNullableScalarRelationFilter, OfferWhereInput> | null
|
|
155023
|
-
|
|
155221
|
+
fit_check_report_document?: XOR<DocumentNullableScalarRelationFilter, DocumentWhereInput> | null
|
|
155222
|
+
}, "id" | "fit_check_report_document_id" | "candidate_id_job_description_id">
|
|
155024
155223
|
|
|
155025
155224
|
export type ApplicationOrderByWithAggregationInput = {
|
|
155026
155225
|
id?: SortOrder
|
|
@@ -155052,6 +155251,9 @@ export namespace Prisma {
|
|
|
155052
155251
|
created_by?: SortOrder
|
|
155053
155252
|
updated_by?: SortOrder
|
|
155054
155253
|
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
|
|
155055
155257
|
_count?: ApplicationCountOrderByAggregateInput
|
|
155056
155258
|
_avg?: ApplicationAvgOrderByAggregateInput
|
|
155057
155259
|
_max?: ApplicationMaxOrderByAggregateInput
|
|
@@ -155092,6 +155294,9 @@ export namespace Prisma {
|
|
|
155092
155294
|
created_by?: StringWithAggregatesFilter<"Application"> | string
|
|
155093
155295
|
updated_by?: StringWithAggregatesFilter<"Application"> | string
|
|
155094
155296
|
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">
|
|
155095
155300
|
}
|
|
155096
155301
|
|
|
155097
155302
|
export type ApprovalWhereInput = {
|
|
@@ -157984,6 +158189,7 @@ export namespace Prisma {
|
|
|
157984
158189
|
offer_letters?: OfferLetterListRelationFilter
|
|
157985
158190
|
offer_letter_template_snapshots?: OfferLetterListRelationFilter
|
|
157986
158191
|
offer_draft_edited_html?: OfferListRelationFilter
|
|
158192
|
+
application_fit_check_report?: XOR<ApplicationNullableScalarRelationFilter, ApplicationWhereInput> | null
|
|
157987
158193
|
}
|
|
157988
158194
|
|
|
157989
158195
|
export type DocumentOrderByWithRelationInput = {
|
|
@@ -158020,6 +158226,7 @@ export namespace Prisma {
|
|
|
158020
158226
|
offer_letters?: OfferLetterOrderByRelationAggregateInput
|
|
158021
158227
|
offer_letter_template_snapshots?: OfferLetterOrderByRelationAggregateInput
|
|
158022
158228
|
offer_draft_edited_html?: OfferOrderByRelationAggregateInput
|
|
158229
|
+
application_fit_check_report?: ApplicationOrderByWithRelationInput
|
|
158023
158230
|
}
|
|
158024
158231
|
|
|
158025
158232
|
export type DocumentWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -158059,6 +158266,7 @@ export namespace Prisma {
|
|
|
158059
158266
|
offer_letters?: OfferLetterListRelationFilter
|
|
158060
158267
|
offer_letter_template_snapshots?: OfferLetterListRelationFilter
|
|
158061
158268
|
offer_draft_edited_html?: OfferListRelationFilter
|
|
158269
|
+
application_fit_check_report?: XOR<ApplicationNullableScalarRelationFilter, ApplicationWhereInput> | null
|
|
158062
158270
|
}, "id">
|
|
158063
158271
|
|
|
158064
158272
|
export type DocumentOrderByWithAggregationInput = {
|
|
@@ -160930,6 +161138,7 @@ export namespace Prisma {
|
|
|
160930
161138
|
updated_by?: StringFilter<"JobApplicationField"> | string
|
|
160931
161139
|
created_at?: DateTimeFilter<"JobApplicationField"> | Date | string
|
|
160932
161140
|
updated_at?: DateTimeFilter<"JobApplicationField"> | Date | string
|
|
161141
|
+
order_no?: IntNullableFilter<"JobApplicationField"> | number | null
|
|
160933
161142
|
organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
|
|
160934
161143
|
job_application_template?: XOR<JobApplicationTemplateScalarRelationFilter, JobApplicationTemplateWhereInput>
|
|
160935
161144
|
job_application_responses?: JobApplicationResponseListRelationFilter
|
|
@@ -160950,6 +161159,7 @@ export namespace Prisma {
|
|
|
160950
161159
|
updated_by?: SortOrder
|
|
160951
161160
|
created_at?: SortOrder
|
|
160952
161161
|
updated_at?: SortOrder
|
|
161162
|
+
order_no?: SortOrderInput | SortOrder
|
|
160953
161163
|
organisation?: OrganisationOrderByWithRelationInput
|
|
160954
161164
|
job_application_template?: JobApplicationTemplateOrderByWithRelationInput
|
|
160955
161165
|
job_application_responses?: JobApplicationResponseOrderByRelationAggregateInput
|
|
@@ -160973,6 +161183,7 @@ export namespace Prisma {
|
|
|
160973
161183
|
updated_by?: StringFilter<"JobApplicationField"> | string
|
|
160974
161184
|
created_at?: DateTimeFilter<"JobApplicationField"> | Date | string
|
|
160975
161185
|
updated_at?: DateTimeFilter<"JobApplicationField"> | Date | string
|
|
161186
|
+
order_no?: IntNullableFilter<"JobApplicationField"> | number | null
|
|
160976
161187
|
organisation?: XOR<OrganisationScalarRelationFilter, OrganisationWhereInput>
|
|
160977
161188
|
job_application_template?: XOR<JobApplicationTemplateScalarRelationFilter, JobApplicationTemplateWhereInput>
|
|
160978
161189
|
job_application_responses?: JobApplicationResponseListRelationFilter
|
|
@@ -160993,9 +161204,12 @@ export namespace Prisma {
|
|
|
160993
161204
|
updated_by?: SortOrder
|
|
160994
161205
|
created_at?: SortOrder
|
|
160995
161206
|
updated_at?: SortOrder
|
|
161207
|
+
order_no?: SortOrderInput | SortOrder
|
|
160996
161208
|
_count?: JobApplicationFieldCountOrderByAggregateInput
|
|
161209
|
+
_avg?: JobApplicationFieldAvgOrderByAggregateInput
|
|
160997
161210
|
_max?: JobApplicationFieldMaxOrderByAggregateInput
|
|
160998
161211
|
_min?: JobApplicationFieldMinOrderByAggregateInput
|
|
161212
|
+
_sum?: JobApplicationFieldSumOrderByAggregateInput
|
|
160999
161213
|
}
|
|
161000
161214
|
|
|
161001
161215
|
export type JobApplicationFieldScalarWhereWithAggregatesInput = {
|
|
@@ -161016,6 +161230,7 @@ export namespace Prisma {
|
|
|
161016
161230
|
updated_by?: StringWithAggregatesFilter<"JobApplicationField"> | string
|
|
161017
161231
|
created_at?: DateTimeWithAggregatesFilter<"JobApplicationField"> | Date | string
|
|
161018
161232
|
updated_at?: DateTimeWithAggregatesFilter<"JobApplicationField"> | Date | string
|
|
161233
|
+
order_no?: IntNullableWithAggregatesFilter<"JobApplicationField"> | number | null
|
|
161019
161234
|
}
|
|
161020
161235
|
|
|
161021
161236
|
export type JobApplicationResponseWhereInput = {
|
|
@@ -161040,6 +161255,7 @@ export namespace Prisma {
|
|
|
161040
161255
|
created_by?: StringFilter<"JobApplicationResponse"> | string
|
|
161041
161256
|
updated_by?: StringFilter<"JobApplicationResponse"> | string
|
|
161042
161257
|
is_active?: BoolFilter<"JobApplicationResponse"> | boolean
|
|
161258
|
+
order_no?: IntNullableFilter<"JobApplicationResponse"> | number | null
|
|
161043
161259
|
application?: XOR<ApplicationScalarRelationFilter, ApplicationWhereInput>
|
|
161044
161260
|
field?: XOR<JobApplicationFieldNullableScalarRelationFilter, JobApplicationFieldWhereInput> | null
|
|
161045
161261
|
document?: XOR<DocumentNullableScalarRelationFilter, DocumentWhereInput> | null
|
|
@@ -161064,6 +161280,7 @@ export namespace Prisma {
|
|
|
161064
161280
|
created_by?: SortOrder
|
|
161065
161281
|
updated_by?: SortOrder
|
|
161066
161282
|
is_active?: SortOrder
|
|
161283
|
+
order_no?: SortOrderInput | SortOrder
|
|
161067
161284
|
application?: ApplicationOrderByWithRelationInput
|
|
161068
161285
|
field?: JobApplicationFieldOrderByWithRelationInput
|
|
161069
161286
|
document?: DocumentOrderByWithRelationInput
|
|
@@ -161091,6 +161308,7 @@ export namespace Prisma {
|
|
|
161091
161308
|
created_by?: StringFilter<"JobApplicationResponse"> | string
|
|
161092
161309
|
updated_by?: StringFilter<"JobApplicationResponse"> | string
|
|
161093
161310
|
is_active?: BoolFilter<"JobApplicationResponse"> | boolean
|
|
161311
|
+
order_no?: IntNullableFilter<"JobApplicationResponse"> | number | null
|
|
161094
161312
|
application?: XOR<ApplicationScalarRelationFilter, ApplicationWhereInput>
|
|
161095
161313
|
field?: XOR<JobApplicationFieldNullableScalarRelationFilter, JobApplicationFieldWhereInput> | null
|
|
161096
161314
|
document?: XOR<DocumentNullableScalarRelationFilter, DocumentWhereInput> | null
|
|
@@ -161115,9 +161333,12 @@ export namespace Prisma {
|
|
|
161115
161333
|
created_by?: SortOrder
|
|
161116
161334
|
updated_by?: SortOrder
|
|
161117
161335
|
is_active?: SortOrder
|
|
161336
|
+
order_no?: SortOrderInput | SortOrder
|
|
161118
161337
|
_count?: JobApplicationResponseCountOrderByAggregateInput
|
|
161338
|
+
_avg?: JobApplicationResponseAvgOrderByAggregateInput
|
|
161119
161339
|
_max?: JobApplicationResponseMaxOrderByAggregateInput
|
|
161120
161340
|
_min?: JobApplicationResponseMinOrderByAggregateInput
|
|
161341
|
+
_sum?: JobApplicationResponseSumOrderByAggregateInput
|
|
161121
161342
|
}
|
|
161122
161343
|
|
|
161123
161344
|
export type JobApplicationResponseScalarWhereWithAggregatesInput = {
|
|
@@ -161142,6 +161363,7 @@ export namespace Prisma {
|
|
|
161142
161363
|
created_by?: StringWithAggregatesFilter<"JobApplicationResponse"> | string
|
|
161143
161364
|
updated_by?: StringWithAggregatesFilter<"JobApplicationResponse"> | string
|
|
161144
161365
|
is_active?: BoolWithAggregatesFilter<"JobApplicationResponse"> | boolean
|
|
161366
|
+
order_no?: IntNullableWithAggregatesFilter<"JobApplicationResponse"> | number | null
|
|
161145
161367
|
}
|
|
161146
161368
|
|
|
161147
161369
|
export type JobApplicationTemplateWhereInput = {
|
|
@@ -168475,6 +168697,8 @@ export namespace Prisma {
|
|
|
168475
168697
|
created_by: string
|
|
168476
168698
|
updated_by: string
|
|
168477
168699
|
is_active?: boolean
|
|
168700
|
+
fit_check_report_updated_flag?: boolean
|
|
168701
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
168478
168702
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
168479
168703
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
168480
168704
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
@@ -168492,6 +168716,7 @@ export namespace Prisma {
|
|
|
168492
168716
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
168493
168717
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
168494
168718
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
168719
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
168495
168720
|
}
|
|
168496
168721
|
|
|
168497
168722
|
export type ApplicationUncheckedCreateInput = {
|
|
@@ -168524,6 +168749,9 @@ export namespace Prisma {
|
|
|
168524
168749
|
created_by: string
|
|
168525
168750
|
updated_by: string
|
|
168526
168751
|
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
|
|
168527
168755
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
168528
168756
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
168529
168757
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -168559,6 +168787,8 @@ export namespace Prisma {
|
|
|
168559
168787
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
168560
168788
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
168561
168789
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
168790
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
168791
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
168562
168792
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
168563
168793
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
168564
168794
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -168576,6 +168806,7 @@ export namespace Prisma {
|
|
|
168576
168806
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
168577
168807
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
168578
168808
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
168809
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
168579
168810
|
}
|
|
168580
168811
|
|
|
168581
168812
|
export type ApplicationUncheckedUpdateInput = {
|
|
@@ -168608,6 +168839,9 @@ export namespace Prisma {
|
|
|
168608
168839
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
168609
168840
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
168610
168841
|
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
|
|
168611
168845
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
168612
168846
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
168613
168847
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -168650,6 +168884,9 @@ export namespace Prisma {
|
|
|
168650
168884
|
created_by: string
|
|
168651
168885
|
updated_by: string
|
|
168652
168886
|
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
|
|
168653
168890
|
}
|
|
168654
168891
|
|
|
168655
168892
|
export type ApplicationUpdateManyMutationInput = {
|
|
@@ -168675,6 +168912,8 @@ export namespace Prisma {
|
|
|
168675
168912
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
168676
168913
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
168677
168914
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
168915
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
168916
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
168678
168917
|
}
|
|
168679
168918
|
|
|
168680
168919
|
export type ApplicationUncheckedUpdateManyInput = {
|
|
@@ -168707,6 +168946,9 @@ export namespace Prisma {
|
|
|
168707
168946
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
168708
168947
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
168709
168948
|
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
|
|
168710
168952
|
}
|
|
168711
168953
|
|
|
168712
168954
|
export type ApprovalCreateInput = {
|
|
@@ -172084,6 +172326,7 @@ export namespace Prisma {
|
|
|
172084
172326
|
offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
|
|
172085
172327
|
offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
|
|
172086
172328
|
offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
172329
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
172087
172330
|
}
|
|
172088
172331
|
|
|
172089
172332
|
export type DocumentUncheckedCreateInput = {
|
|
@@ -172118,6 +172361,7 @@ export namespace Prisma {
|
|
|
172118
172361
|
offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
|
|
172119
172362
|
offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
|
|
172120
172363
|
offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
172364
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
172121
172365
|
}
|
|
172122
172366
|
|
|
172123
172367
|
export type DocumentUpdateInput = {
|
|
@@ -172152,6 +172396,7 @@ export namespace Prisma {
|
|
|
172152
172396
|
offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
|
|
172153
172397
|
offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
|
|
172154
172398
|
offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
172399
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
172155
172400
|
}
|
|
172156
172401
|
|
|
172157
172402
|
export type DocumentUncheckedUpdateInput = {
|
|
@@ -172186,6 +172431,7 @@ export namespace Prisma {
|
|
|
172186
172431
|
offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
|
|
172187
172432
|
offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
|
|
172188
172433
|
offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
172434
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
172189
172435
|
}
|
|
172190
172436
|
|
|
172191
172437
|
export type DocumentCreateManyInput = {
|
|
@@ -175620,6 +175866,7 @@ export namespace Prisma {
|
|
|
175620
175866
|
updated_by: string
|
|
175621
175867
|
created_at?: Date | string
|
|
175622
175868
|
updated_at?: Date | string
|
|
175869
|
+
order_no?: number | null
|
|
175623
175870
|
organisation: OrganisationCreateNestedOneWithoutJob_application_fieldsInput
|
|
175624
175871
|
job_application_template: JobApplicationTemplateCreateNestedOneWithoutFieldsInput
|
|
175625
175872
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutFieldInput
|
|
@@ -175640,6 +175887,7 @@ export namespace Prisma {
|
|
|
175640
175887
|
updated_by: string
|
|
175641
175888
|
created_at?: Date | string
|
|
175642
175889
|
updated_at?: Date | string
|
|
175890
|
+
order_no?: number | null
|
|
175643
175891
|
job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutFieldInput
|
|
175644
175892
|
}
|
|
175645
175893
|
|
|
@@ -175656,6 +175904,7 @@ export namespace Prisma {
|
|
|
175656
175904
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
175657
175905
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
175658
175906
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
175907
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
175659
175908
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_application_fieldsNestedInput
|
|
175660
175909
|
job_application_template?: JobApplicationTemplateUpdateOneRequiredWithoutFieldsNestedInput
|
|
175661
175910
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutFieldNestedInput
|
|
@@ -175676,6 +175925,7 @@ export namespace Prisma {
|
|
|
175676
175925
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
175677
175926
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
175678
175927
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
175928
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
175679
175929
|
job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutFieldNestedInput
|
|
175680
175930
|
}
|
|
175681
175931
|
|
|
@@ -175694,6 +175944,7 @@ export namespace Prisma {
|
|
|
175694
175944
|
updated_by: string
|
|
175695
175945
|
created_at?: Date | string
|
|
175696
175946
|
updated_at?: Date | string
|
|
175947
|
+
order_no?: number | null
|
|
175697
175948
|
}
|
|
175698
175949
|
|
|
175699
175950
|
export type JobApplicationFieldUpdateManyMutationInput = {
|
|
@@ -175709,6 +175960,7 @@ export namespace Prisma {
|
|
|
175709
175960
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
175710
175961
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
175711
175962
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
175963
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
175712
175964
|
}
|
|
175713
175965
|
|
|
175714
175966
|
export type JobApplicationFieldUncheckedUpdateManyInput = {
|
|
@@ -175726,6 +175978,7 @@ export namespace Prisma {
|
|
|
175726
175978
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
175727
175979
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
175728
175980
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
175981
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
175729
175982
|
}
|
|
175730
175983
|
|
|
175731
175984
|
export type JobApplicationResponseCreateInput = {
|
|
@@ -175744,6 +175997,7 @@ export namespace Prisma {
|
|
|
175744
175997
|
created_by: string
|
|
175745
175998
|
updated_by: string
|
|
175746
175999
|
is_active?: boolean
|
|
176000
|
+
order_no?: number | null
|
|
175747
176001
|
application: ApplicationCreateNestedOneWithoutJob_application_responsesInput
|
|
175748
176002
|
field?: JobApplicationFieldCreateNestedOneWithoutJob_application_responsesInput
|
|
175749
176003
|
document?: DocumentCreateNestedOneWithoutJob_application_responsesInput
|
|
@@ -175768,6 +176022,7 @@ export namespace Prisma {
|
|
|
175768
176022
|
created_by: string
|
|
175769
176023
|
updated_by: string
|
|
175770
176024
|
is_active?: boolean
|
|
176025
|
+
order_no?: number | null
|
|
175771
176026
|
}
|
|
175772
176027
|
|
|
175773
176028
|
export type JobApplicationResponseUpdateInput = {
|
|
@@ -175786,6 +176041,7 @@ export namespace Prisma {
|
|
|
175786
176041
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
175787
176042
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
175788
176043
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
176044
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
175789
176045
|
application?: ApplicationUpdateOneRequiredWithoutJob_application_responsesNestedInput
|
|
175790
176046
|
field?: JobApplicationFieldUpdateOneWithoutJob_application_responsesNestedInput
|
|
175791
176047
|
document?: DocumentUpdateOneWithoutJob_application_responsesNestedInput
|
|
@@ -175810,6 +176066,7 @@ export namespace Prisma {
|
|
|
175810
176066
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
175811
176067
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
175812
176068
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
176069
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
175813
176070
|
}
|
|
175814
176071
|
|
|
175815
176072
|
export type JobApplicationResponseCreateManyInput = {
|
|
@@ -175831,6 +176088,7 @@ export namespace Prisma {
|
|
|
175831
176088
|
created_by: string
|
|
175832
176089
|
updated_by: string
|
|
175833
176090
|
is_active?: boolean
|
|
176091
|
+
order_no?: number | null
|
|
175834
176092
|
}
|
|
175835
176093
|
|
|
175836
176094
|
export type JobApplicationResponseUpdateManyMutationInput = {
|
|
@@ -175849,6 +176107,7 @@ export namespace Prisma {
|
|
|
175849
176107
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
175850
176108
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
175851
176109
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
176110
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
175852
176111
|
}
|
|
175853
176112
|
|
|
175854
176113
|
export type JobApplicationResponseUncheckedUpdateManyInput = {
|
|
@@ -175870,6 +176129,7 @@ export namespace Prisma {
|
|
|
175870
176129
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
175871
176130
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
175872
176131
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
176132
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
175873
176133
|
}
|
|
175874
176134
|
|
|
175875
176135
|
export type JobApplicationTemplateCreateInput = {
|
|
@@ -184371,6 +184631,11 @@ export namespace Prisma {
|
|
|
184371
184631
|
isNot?: OfferWhereInput | null
|
|
184372
184632
|
}
|
|
184373
184633
|
|
|
184634
|
+
export type DocumentNullableScalarRelationFilter = {
|
|
184635
|
+
is?: DocumentWhereInput | null
|
|
184636
|
+
isNot?: DocumentWhereInput | null
|
|
184637
|
+
}
|
|
184638
|
+
|
|
184374
184639
|
export type InterviewOrderByRelationAggregateInput = {
|
|
184375
184640
|
_count?: SortOrder
|
|
184376
184641
|
}
|
|
@@ -184438,6 +184703,9 @@ export namespace Prisma {
|
|
|
184438
184703
|
created_by?: SortOrder
|
|
184439
184704
|
updated_by?: SortOrder
|
|
184440
184705
|
is_active?: SortOrder
|
|
184706
|
+
fit_check_report_document_id?: SortOrder
|
|
184707
|
+
fit_check_report_updated_flag?: SortOrder
|
|
184708
|
+
fit_check_report_data?: SortOrder
|
|
184441
184709
|
}
|
|
184442
184710
|
|
|
184443
184711
|
export type ApplicationAvgOrderByAggregateInput = {
|
|
@@ -184475,6 +184743,8 @@ export namespace Prisma {
|
|
|
184475
184743
|
created_by?: SortOrder
|
|
184476
184744
|
updated_by?: SortOrder
|
|
184477
184745
|
is_active?: SortOrder
|
|
184746
|
+
fit_check_report_document_id?: SortOrder
|
|
184747
|
+
fit_check_report_updated_flag?: SortOrder
|
|
184478
184748
|
}
|
|
184479
184749
|
|
|
184480
184750
|
export type ApplicationMinOrderByAggregateInput = {
|
|
@@ -184507,6 +184777,8 @@ export namespace Prisma {
|
|
|
184507
184777
|
created_by?: SortOrder
|
|
184508
184778
|
updated_by?: SortOrder
|
|
184509
184779
|
is_active?: SortOrder
|
|
184780
|
+
fit_check_report_document_id?: SortOrder
|
|
184781
|
+
fit_check_report_updated_flag?: SortOrder
|
|
184510
184782
|
}
|
|
184511
184783
|
|
|
184512
184784
|
export type ApplicationSumOrderByAggregateInput = {
|
|
@@ -185181,11 +185453,6 @@ export namespace Prisma {
|
|
|
185181
185453
|
isNot?: ApplicationWhereInput | null
|
|
185182
185454
|
}
|
|
185183
185455
|
|
|
185184
|
-
export type DocumentNullableScalarRelationFilter = {
|
|
185185
|
-
is?: DocumentWhereInput | null
|
|
185186
|
-
isNot?: DocumentWhereInput | null
|
|
185187
|
-
}
|
|
185188
|
-
|
|
185189
185456
|
export type AssignmentCandidate_idOngoing_evaluation_idCompoundUniqueInput = {
|
|
185190
185457
|
candidate_id: string
|
|
185191
185458
|
ongoing_evaluation_id: string
|
|
@@ -189091,6 +189358,11 @@ export namespace Prisma {
|
|
|
189091
189358
|
updated_by?: SortOrder
|
|
189092
189359
|
created_at?: SortOrder
|
|
189093
189360
|
updated_at?: SortOrder
|
|
189361
|
+
order_no?: SortOrder
|
|
189362
|
+
}
|
|
189363
|
+
|
|
189364
|
+
export type JobApplicationFieldAvgOrderByAggregateInput = {
|
|
189365
|
+
order_no?: SortOrder
|
|
189094
189366
|
}
|
|
189095
189367
|
|
|
189096
189368
|
export type JobApplicationFieldMaxOrderByAggregateInput = {
|
|
@@ -189107,6 +189379,7 @@ export namespace Prisma {
|
|
|
189107
189379
|
updated_by?: SortOrder
|
|
189108
189380
|
created_at?: SortOrder
|
|
189109
189381
|
updated_at?: SortOrder
|
|
189382
|
+
order_no?: SortOrder
|
|
189110
189383
|
}
|
|
189111
189384
|
|
|
189112
189385
|
export type JobApplicationFieldMinOrderByAggregateInput = {
|
|
@@ -189123,6 +189396,11 @@ export namespace Prisma {
|
|
|
189123
189396
|
updated_by?: SortOrder
|
|
189124
189397
|
created_at?: SortOrder
|
|
189125
189398
|
updated_at?: SortOrder
|
|
189399
|
+
order_no?: SortOrder
|
|
189400
|
+
}
|
|
189401
|
+
|
|
189402
|
+
export type JobApplicationFieldSumOrderByAggregateInput = {
|
|
189403
|
+
order_no?: SortOrder
|
|
189126
189404
|
}
|
|
189127
189405
|
|
|
189128
189406
|
export type EnumJobApplicationFieldTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -189166,6 +189444,11 @@ export namespace Prisma {
|
|
|
189166
189444
|
created_by?: SortOrder
|
|
189167
189445
|
updated_by?: SortOrder
|
|
189168
189446
|
is_active?: SortOrder
|
|
189447
|
+
order_no?: SortOrder
|
|
189448
|
+
}
|
|
189449
|
+
|
|
189450
|
+
export type JobApplicationResponseAvgOrderByAggregateInput = {
|
|
189451
|
+
order_no?: SortOrder
|
|
189169
189452
|
}
|
|
189170
189453
|
|
|
189171
189454
|
export type JobApplicationResponseMaxOrderByAggregateInput = {
|
|
@@ -189185,6 +189468,7 @@ export namespace Prisma {
|
|
|
189185
189468
|
created_by?: SortOrder
|
|
189186
189469
|
updated_by?: SortOrder
|
|
189187
189470
|
is_active?: SortOrder
|
|
189471
|
+
order_no?: SortOrder
|
|
189188
189472
|
}
|
|
189189
189473
|
|
|
189190
189474
|
export type JobApplicationResponseMinOrderByAggregateInput = {
|
|
@@ -189204,6 +189488,11 @@ export namespace Prisma {
|
|
|
189204
189488
|
created_by?: SortOrder
|
|
189205
189489
|
updated_by?: SortOrder
|
|
189206
189490
|
is_active?: SortOrder
|
|
189491
|
+
order_no?: SortOrder
|
|
189492
|
+
}
|
|
189493
|
+
|
|
189494
|
+
export type JobApplicationResponseSumOrderByAggregateInput = {
|
|
189495
|
+
order_no?: SortOrder
|
|
189207
189496
|
}
|
|
189208
189497
|
|
|
189209
189498
|
export type EnumJobApplicationFieldTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -194153,6 +194442,12 @@ export namespace Prisma {
|
|
|
194153
194442
|
connect?: OfferWhereUniqueInput
|
|
194154
194443
|
}
|
|
194155
194444
|
|
|
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
|
+
|
|
194156
194451
|
export type FitCheckUncheckedCreateNestedOneWithoutApplicationInput = {
|
|
194157
194452
|
create?: XOR<FitCheckCreateWithoutApplicationInput, FitCheckUncheckedCreateWithoutApplicationInput>
|
|
194158
194453
|
connectOrCreate?: FitCheckCreateOrConnectWithoutApplicationInput
|
|
@@ -194431,6 +194726,16 @@ export namespace Prisma {
|
|
|
194431
194726
|
update?: XOR<XOR<OfferUpdateToOneWithWhereWithoutApplicationInput, OfferUpdateWithoutApplicationInput>, OfferUncheckedUpdateWithoutApplicationInput>
|
|
194432
194727
|
}
|
|
194433
194728
|
|
|
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
|
+
|
|
194434
194739
|
export type FitCheckUncheckedUpdateOneWithoutApplicationNestedInput = {
|
|
194435
194740
|
create?: XOR<FitCheckCreateWithoutApplicationInput, FitCheckUncheckedCreateWithoutApplicationInput>
|
|
194436
194741
|
connectOrCreate?: FitCheckCreateOrConnectWithoutApplicationInput
|
|
@@ -196175,6 +196480,12 @@ export namespace Prisma {
|
|
|
196175
196480
|
connect?: OfferWhereUniqueInput | OfferWhereUniqueInput[]
|
|
196176
196481
|
}
|
|
196177
196482
|
|
|
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
|
+
|
|
196178
196489
|
export type ResumeUncheckedCreateNestedOneWithoutDocumentInput = {
|
|
196179
196490
|
create?: XOR<ResumeCreateWithoutDocumentInput, ResumeUncheckedCreateWithoutDocumentInput>
|
|
196180
196491
|
connectOrCreate?: ResumeCreateOrConnectWithoutDocumentInput
|
|
@@ -196265,6 +196576,12 @@ export namespace Prisma {
|
|
|
196265
196576
|
connect?: OfferWhereUniqueInput | OfferWhereUniqueInput[]
|
|
196266
196577
|
}
|
|
196267
196578
|
|
|
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
|
+
|
|
196268
196585
|
export type NullableBigIntFieldUpdateOperationsInput = {
|
|
196269
196586
|
set?: bigint | number | null
|
|
196270
196587
|
increment?: bigint | number
|
|
@@ -196457,6 +196774,16 @@ export namespace Prisma {
|
|
|
196457
196774
|
deleteMany?: OfferScalarWhereInput | OfferScalarWhereInput[]
|
|
196458
196775
|
}
|
|
196459
196776
|
|
|
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
|
+
|
|
196460
196787
|
export type ResumeUncheckedUpdateOneWithoutDocumentNestedInput = {
|
|
196461
196788
|
create?: XOR<ResumeCreateWithoutDocumentInput, ResumeUncheckedCreateWithoutDocumentInput>
|
|
196462
196789
|
connectOrCreate?: ResumeCreateOrConnectWithoutDocumentInput
|
|
@@ -196621,6 +196948,16 @@ export namespace Prisma {
|
|
|
196621
196948
|
deleteMany?: OfferScalarWhereInput | OfferScalarWhereInput[]
|
|
196622
196949
|
}
|
|
196623
196950
|
|
|
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
|
+
|
|
196624
196961
|
export type OrganisationCreateNestedOneWithoutEvaluation_criteriaInput = {
|
|
196625
196962
|
create?: XOR<OrganisationCreateWithoutEvaluation_criteriaInput, OrganisationUncheckedCreateWithoutEvaluation_criteriaInput>
|
|
196626
196963
|
connectOrCreate?: OrganisationCreateOrConnectWithoutEvaluation_criteriaInput
|
|
@@ -208881,6 +209218,8 @@ export namespace Prisma {
|
|
|
208881
209218
|
created_by: string
|
|
208882
209219
|
updated_by: string
|
|
208883
209220
|
is_active?: boolean
|
|
209221
|
+
fit_check_report_updated_flag?: boolean
|
|
209222
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
208884
209223
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
208885
209224
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
208886
209225
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
@@ -208897,6 +209236,7 @@ export namespace Prisma {
|
|
|
208897
209236
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
208898
209237
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
208899
209238
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
209239
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
208900
209240
|
}
|
|
208901
209241
|
|
|
208902
209242
|
export type ApplicationUncheckedCreateWithoutActivity_logsInput = {
|
|
@@ -208929,6 +209269,9 @@ export namespace Prisma {
|
|
|
208929
209269
|
created_by: string
|
|
208930
209270
|
updated_by: string
|
|
208931
209271
|
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
|
|
208932
209275
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
208933
209276
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
208934
209277
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -209146,6 +209489,8 @@ export namespace Prisma {
|
|
|
209146
209489
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
209147
209490
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
209148
209491
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
209492
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
209493
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
209149
209494
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
209150
209495
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
209151
209496
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -209162,6 +209507,7 @@ export namespace Prisma {
|
|
|
209162
209507
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
209163
209508
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
209164
209509
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
209510
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
209165
209511
|
}
|
|
209166
209512
|
|
|
209167
209513
|
export type ApplicationUncheckedUpdateWithoutActivity_logsInput = {
|
|
@@ -209194,6 +209540,9 @@ export namespace Prisma {
|
|
|
209194
209540
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
209195
209541
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
209196
209542
|
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
|
|
209197
209546
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
209198
209547
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
209199
209548
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -210453,6 +210802,7 @@ export namespace Prisma {
|
|
|
210453
210802
|
created_by: string
|
|
210454
210803
|
updated_by: string
|
|
210455
210804
|
is_active?: boolean
|
|
210805
|
+
order_no?: number | null
|
|
210456
210806
|
field?: JobApplicationFieldCreateNestedOneWithoutJob_application_responsesInput
|
|
210457
210807
|
document?: DocumentCreateNestedOneWithoutJob_application_responsesInput
|
|
210458
210808
|
}
|
|
@@ -210475,6 +210825,7 @@ export namespace Prisma {
|
|
|
210475
210825
|
created_by: string
|
|
210476
210826
|
updated_by: string
|
|
210477
210827
|
is_active?: boolean
|
|
210828
|
+
order_no?: number | null
|
|
210478
210829
|
}
|
|
210479
210830
|
|
|
210480
210831
|
export type JobApplicationResponseCreateOrConnectWithoutApplicationInput = {
|
|
@@ -210550,6 +210901,79 @@ export namespace Prisma {
|
|
|
210550
210901
|
create: XOR<OfferCreateWithoutApplicationInput, OfferUncheckedCreateWithoutApplicationInput>
|
|
210551
210902
|
}
|
|
210552
210903
|
|
|
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
|
+
|
|
210553
210977
|
export type EvaluationPlanUpsertWithoutApplicationsInput = {
|
|
210554
210978
|
update: XOR<EvaluationPlanUpdateWithoutApplicationsInput, EvaluationPlanUncheckedUpdateWithoutApplicationsInput>
|
|
210555
210979
|
create: XOR<EvaluationPlanCreateWithoutApplicationsInput, EvaluationPlanUncheckedCreateWithoutApplicationsInput>
|
|
@@ -211735,6 +212159,7 @@ export namespace Prisma {
|
|
|
211735
212159
|
created_by?: StringFilter<"JobApplicationResponse"> | string
|
|
211736
212160
|
updated_by?: StringFilter<"JobApplicationResponse"> | string
|
|
211737
212161
|
is_active?: BoolFilter<"JobApplicationResponse"> | boolean
|
|
212162
|
+
order_no?: IntNullableFilter<"JobApplicationResponse"> | number | null
|
|
211738
212163
|
}
|
|
211739
212164
|
|
|
211740
212165
|
export type OfferUpsertWithoutApplicationInput = {
|
|
@@ -211806,6 +212231,85 @@ export namespace Prisma {
|
|
|
211806
212231
|
letters?: OfferLetterUncheckedUpdateManyWithoutOfferNestedInput
|
|
211807
212232
|
}
|
|
211808
212233
|
|
|
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
|
+
|
|
211809
212313
|
export type JobDescriptionCreateWithoutApprovalsInput = {
|
|
211810
212314
|
id?: string
|
|
211811
212315
|
status?: $Enums.JobDescriptionStatus
|
|
@@ -215696,6 +216200,8 @@ export namespace Prisma {
|
|
|
215696
216200
|
created_by: string
|
|
215697
216201
|
updated_by: string
|
|
215698
216202
|
is_active?: boolean
|
|
216203
|
+
fit_check_report_updated_flag?: boolean
|
|
216204
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
215699
216205
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
215700
216206
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
215701
216207
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
@@ -215712,6 +216218,7 @@ export namespace Prisma {
|
|
|
215712
216218
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
215713
216219
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
215714
216220
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
216221
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
215715
216222
|
}
|
|
215716
216223
|
|
|
215717
216224
|
export type ApplicationUncheckedCreateWithoutAssignmentsInput = {
|
|
@@ -215744,6 +216251,9 @@ export namespace Prisma {
|
|
|
215744
216251
|
created_by: string
|
|
215745
216252
|
updated_by: string
|
|
215746
216253
|
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
|
|
215747
216257
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
215748
216258
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
215749
216259
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -215878,6 +216388,7 @@ export namespace Prisma {
|
|
|
215878
216388
|
offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
|
|
215879
216389
|
offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
|
|
215880
216390
|
offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
216391
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
215881
216392
|
}
|
|
215882
216393
|
|
|
215883
216394
|
export type DocumentUncheckedCreateWithoutAssignment_solutionInput = {
|
|
@@ -215911,6 +216422,7 @@ export namespace Prisma {
|
|
|
215911
216422
|
offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
|
|
215912
216423
|
offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
|
|
215913
216424
|
offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
216425
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
215914
216426
|
}
|
|
215915
216427
|
|
|
215916
216428
|
export type DocumentCreateOrConnectWithoutAssignment_solutionInput = {
|
|
@@ -215949,6 +216461,7 @@ export namespace Prisma {
|
|
|
215949
216461
|
offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
|
|
215950
216462
|
offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
|
|
215951
216463
|
offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
216464
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
215952
216465
|
}
|
|
215953
216466
|
|
|
215954
216467
|
export type DocumentUncheckedCreateWithoutAssignment_zipInput = {
|
|
@@ -215982,6 +216495,7 @@ export namespace Prisma {
|
|
|
215982
216495
|
offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
|
|
215983
216496
|
offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
|
|
215984
216497
|
offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
216498
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
215985
216499
|
}
|
|
215986
216500
|
|
|
215987
216501
|
export type DocumentCreateOrConnectWithoutAssignment_zipInput = {
|
|
@@ -216654,6 +217168,8 @@ export namespace Prisma {
|
|
|
216654
217168
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
216655
217169
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
216656
217170
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
217171
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
217172
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
216657
217173
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
216658
217174
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
216659
217175
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -216670,6 +217186,7 @@ export namespace Prisma {
|
|
|
216670
217186
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
216671
217187
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
216672
217188
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
217189
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
216673
217190
|
}
|
|
216674
217191
|
|
|
216675
217192
|
export type ApplicationUncheckedUpdateWithoutAssignmentsInput = {
|
|
@@ -216702,6 +217219,9 @@ export namespace Prisma {
|
|
|
216702
217219
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
216703
217220
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
216704
217221
|
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
|
|
216705
217225
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
216706
217226
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
216707
217227
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -216848,6 +217368,7 @@ export namespace Prisma {
|
|
|
216848
217368
|
offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
|
|
216849
217369
|
offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
|
|
216850
217370
|
offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
217371
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
216851
217372
|
}
|
|
216852
217373
|
|
|
216853
217374
|
export type DocumentUncheckedUpdateWithoutAssignment_solutionInput = {
|
|
@@ -216881,6 +217402,7 @@ export namespace Prisma {
|
|
|
216881
217402
|
offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
|
|
216882
217403
|
offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
|
|
216883
217404
|
offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
217405
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
216884
217406
|
}
|
|
216885
217407
|
|
|
216886
217408
|
export type DocumentUpsertWithoutAssignment_zipInput = {
|
|
@@ -216925,6 +217447,7 @@ export namespace Prisma {
|
|
|
216925
217447
|
offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
|
|
216926
217448
|
offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
|
|
216927
217449
|
offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
217450
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
216928
217451
|
}
|
|
216929
217452
|
|
|
216930
217453
|
export type DocumentUncheckedUpdateWithoutAssignment_zipInput = {
|
|
@@ -216958,6 +217481,7 @@ export namespace Prisma {
|
|
|
216958
217481
|
offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
|
|
216959
217482
|
offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
|
|
216960
217483
|
offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
217484
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
216961
217485
|
}
|
|
216962
217486
|
|
|
216963
217487
|
export type OrganisationCreateWithoutAssignment_libraryInput = {
|
|
@@ -219768,6 +220292,8 @@ export namespace Prisma {
|
|
|
219768
220292
|
created_by: string
|
|
219769
220293
|
updated_by: string
|
|
219770
220294
|
is_active?: boolean
|
|
220295
|
+
fit_check_report_updated_flag?: boolean
|
|
220296
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
219771
220297
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
219772
220298
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
219773
220299
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
@@ -219784,6 +220310,7 @@ export namespace Prisma {
|
|
|
219784
220310
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
219785
220311
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
219786
220312
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
220313
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
219787
220314
|
}
|
|
219788
220315
|
|
|
219789
220316
|
export type ApplicationUncheckedCreateWithoutConversationsInput = {
|
|
@@ -219816,6 +220343,9 @@ export namespace Prisma {
|
|
|
219816
220343
|
created_by: string
|
|
219817
220344
|
updated_by: string
|
|
219818
220345
|
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
|
|
219819
220349
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
219820
220350
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
219821
220351
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -220223,6 +220753,8 @@ export namespace Prisma {
|
|
|
220223
220753
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
220224
220754
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
220225
220755
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
220756
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
220757
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
220226
220758
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
220227
220759
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
220228
220760
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -220239,6 +220771,7 @@ export namespace Prisma {
|
|
|
220239
220771
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
220240
220772
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
220241
220773
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
220774
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
220242
220775
|
}
|
|
220243
220776
|
|
|
220244
220777
|
export type ApplicationUncheckedUpdateWithoutConversationsInput = {
|
|
@@ -220271,6 +220804,9 @@ export namespace Prisma {
|
|
|
220271
220804
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
220272
220805
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
220273
220806
|
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
|
|
220274
220810
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
220275
220811
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
220276
220812
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -220659,6 +221195,8 @@ export namespace Prisma {
|
|
|
220659
221195
|
created_by: string
|
|
220660
221196
|
updated_by: string
|
|
220661
221197
|
is_active?: boolean
|
|
221198
|
+
fit_check_report_updated_flag?: boolean
|
|
221199
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
220662
221200
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
220663
221201
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
220664
221202
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
@@ -220675,6 +221213,7 @@ export namespace Prisma {
|
|
|
220675
221213
|
conversations?: ConversationCreateNestedManyWithoutApplicationInput
|
|
220676
221214
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
220677
221215
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
221216
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
220678
221217
|
}
|
|
220679
221218
|
|
|
220680
221219
|
export type ApplicationUncheckedCreateWithoutCommunication_messagesInput = {
|
|
@@ -220707,6 +221246,9 @@ export namespace Prisma {
|
|
|
220707
221246
|
created_by: string
|
|
220708
221247
|
updated_by: string
|
|
220709
221248
|
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
|
|
220710
221252
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
220711
221253
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
220712
221254
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -221107,6 +221649,8 @@ export namespace Prisma {
|
|
|
221107
221649
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
221108
221650
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
221109
221651
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
221652
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
221653
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
221110
221654
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
221111
221655
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
221112
221656
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -221123,6 +221667,7 @@ export namespace Prisma {
|
|
|
221123
221667
|
conversations?: ConversationUpdateManyWithoutApplicationNestedInput
|
|
221124
221668
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
221125
221669
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
221670
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
221126
221671
|
}
|
|
221127
221672
|
|
|
221128
221673
|
export type ApplicationUncheckedUpdateWithoutCommunication_messagesInput = {
|
|
@@ -221155,6 +221700,9 @@ export namespace Prisma {
|
|
|
221155
221700
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
221156
221701
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
221157
221702
|
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
|
|
221158
221706
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
221159
221707
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
221160
221708
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -224085,6 +224633,7 @@ export namespace Prisma {
|
|
|
224085
224633
|
created_by: string
|
|
224086
224634
|
updated_by: string
|
|
224087
224635
|
is_active?: boolean
|
|
224636
|
+
order_no?: number | null
|
|
224088
224637
|
application: ApplicationCreateNestedOneWithoutJob_application_responsesInput
|
|
224089
224638
|
field?: JobApplicationFieldCreateNestedOneWithoutJob_application_responsesInput
|
|
224090
224639
|
}
|
|
@@ -224107,6 +224656,7 @@ export namespace Prisma {
|
|
|
224107
224656
|
created_by: string
|
|
224108
224657
|
updated_by: string
|
|
224109
224658
|
is_active?: boolean
|
|
224659
|
+
order_no?: number | null
|
|
224110
224660
|
}
|
|
224111
224661
|
|
|
224112
224662
|
export type JobApplicationResponseCreateOrConnectWithoutDocumentInput = {
|
|
@@ -224497,6 +225047,99 @@ export namespace Prisma {
|
|
|
224497
225047
|
skipDuplicates?: boolean
|
|
224498
225048
|
}
|
|
224499
225049
|
|
|
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
|
+
|
|
224500
225143
|
export type OrganisationUpsertWithoutDocumentsInput = {
|
|
224501
225144
|
update: XOR<OrganisationUpdateWithoutDocumentsInput, OrganisationUncheckedUpdateWithoutDocumentsInput>
|
|
224502
225145
|
create: XOR<OrganisationCreateWithoutDocumentsInput, OrganisationUncheckedCreateWithoutDocumentsInput>
|
|
@@ -225695,6 +226338,105 @@ export namespace Prisma {
|
|
|
225695
226338
|
updated_at?: DateTimeFilter<"Offer"> | Date | string
|
|
225696
226339
|
}
|
|
225697
226340
|
|
|
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
|
+
|
|
225698
226440
|
export type OrganisationCreateWithoutEvaluation_criteriaInput = {
|
|
225699
226441
|
id?: string
|
|
225700
226442
|
name: string
|
|
@@ -226277,6 +227019,8 @@ export namespace Prisma {
|
|
|
226277
227019
|
created_by: string
|
|
226278
227020
|
updated_by: string
|
|
226279
227021
|
is_active?: boolean
|
|
227022
|
+
fit_check_report_updated_flag?: boolean
|
|
227023
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
226280
227024
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
226281
227025
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
226282
227026
|
resume: ResumeCreateNestedOneWithoutApplicationsInput
|
|
@@ -226293,6 +227037,7 @@ export namespace Prisma {
|
|
|
226293
227037
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
226294
227038
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
226295
227039
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
227040
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
226296
227041
|
}
|
|
226297
227042
|
|
|
226298
227043
|
export type ApplicationUncheckedCreateWithoutEvaluation_planInput = {
|
|
@@ -226324,6 +227069,9 @@ export namespace Prisma {
|
|
|
226324
227069
|
created_by: string
|
|
226325
227070
|
updated_by: string
|
|
226326
227071
|
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
|
|
226327
227075
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
226328
227076
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
226329
227077
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -226704,6 +227452,9 @@ export namespace Prisma {
|
|
|
226704
227452
|
created_by?: StringFilter<"Application"> | string
|
|
226705
227453
|
updated_by?: StringFilter<"Application"> | string
|
|
226706
227454
|
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">
|
|
226707
227458
|
}
|
|
226708
227459
|
|
|
226709
227460
|
export type AssessmentLibraryUpsertWithoutEvaluation_PlansInput = {
|
|
@@ -227529,6 +228280,8 @@ export namespace Prisma {
|
|
|
227529
228280
|
created_by: string
|
|
227530
228281
|
updated_by: string
|
|
227531
228282
|
is_active?: boolean
|
|
228283
|
+
fit_check_report_updated_flag?: boolean
|
|
228284
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
227532
228285
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
227533
228286
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
227534
228287
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
@@ -227545,6 +228298,7 @@ export namespace Prisma {
|
|
|
227545
228298
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
227546
228299
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
227547
228300
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
228301
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
227548
228302
|
}
|
|
227549
228303
|
|
|
227550
228304
|
export type ApplicationUncheckedCreateWithoutFit_checkInput = {
|
|
@@ -227577,6 +228331,9 @@ export namespace Prisma {
|
|
|
227577
228331
|
created_by: string
|
|
227578
228332
|
updated_by: string
|
|
227579
228333
|
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
|
|
227580
228337
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
227581
228338
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
227582
228339
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -228113,6 +228870,8 @@ export namespace Prisma {
|
|
|
228113
228870
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
228114
228871
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
228115
228872
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
228873
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
228874
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
228116
228875
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
228117
228876
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
228118
228877
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -228129,6 +228888,7 @@ export namespace Prisma {
|
|
|
228129
228888
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
228130
228889
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
228131
228890
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
228891
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
228132
228892
|
}
|
|
228133
228893
|
|
|
228134
228894
|
export type ApplicationUncheckedUpdateWithoutFit_checkInput = {
|
|
@@ -228161,6 +228921,9 @@ export namespace Prisma {
|
|
|
228161
228921
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
228162
228922
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
228163
228923
|
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
|
|
228164
228927
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
228165
228928
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
228166
228929
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -231693,6 +232456,7 @@ export namespace Prisma {
|
|
|
231693
232456
|
offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
|
|
231694
232457
|
offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
|
|
231695
232458
|
offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
232459
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
231696
232460
|
}
|
|
231697
232461
|
|
|
231698
232462
|
export type DocumentUncheckedCreateWithoutInterview_recordingInput = {
|
|
@@ -231726,6 +232490,7 @@ export namespace Prisma {
|
|
|
231726
232490
|
offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
|
|
231727
232491
|
offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
|
|
231728
232492
|
offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
232493
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
231729
232494
|
}
|
|
231730
232495
|
|
|
231731
232496
|
export type DocumentCreateOrConnectWithoutInterview_recordingInput = {
|
|
@@ -231991,6 +232756,8 @@ export namespace Prisma {
|
|
|
231991
232756
|
created_by: string
|
|
231992
232757
|
updated_by: string
|
|
231993
232758
|
is_active?: boolean
|
|
232759
|
+
fit_check_report_updated_flag?: boolean
|
|
232760
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
231994
232761
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
231995
232762
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
231996
232763
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
@@ -232007,6 +232774,7 @@ export namespace Prisma {
|
|
|
232007
232774
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
232008
232775
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
232009
232776
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
232777
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
232010
232778
|
}
|
|
232011
232779
|
|
|
232012
232780
|
export type ApplicationUncheckedCreateWithoutInterviewsInput = {
|
|
@@ -232039,6 +232807,9 @@ export namespace Prisma {
|
|
|
232039
232807
|
created_by: string
|
|
232040
232808
|
updated_by: string
|
|
232041
232809
|
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
|
|
232042
232813
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
232043
232814
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
232044
232815
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -232884,6 +233655,7 @@ export namespace Prisma {
|
|
|
232884
233655
|
offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
|
|
232885
233656
|
offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
|
|
232886
233657
|
offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
233658
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
232887
233659
|
}
|
|
232888
233660
|
|
|
232889
233661
|
export type DocumentUncheckedUpdateWithoutInterview_recordingInput = {
|
|
@@ -232917,6 +233689,7 @@ export namespace Prisma {
|
|
|
232917
233689
|
offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
|
|
232918
233690
|
offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
|
|
232919
233691
|
offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
233692
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
232920
233693
|
}
|
|
232921
233694
|
|
|
232922
233695
|
export type JobDescriptionUpsertWithoutInterviewsInput = {
|
|
@@ -233206,6 +233979,8 @@ export namespace Prisma {
|
|
|
233206
233979
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
233207
233980
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
233208
233981
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
233982
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
233983
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
233209
233984
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
233210
233985
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
233211
233986
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -233222,6 +233997,7 @@ export namespace Prisma {
|
|
|
233222
233997
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
233223
233998
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
233224
233999
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
234000
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
233225
234001
|
}
|
|
233226
234002
|
|
|
233227
234003
|
export type ApplicationUncheckedUpdateWithoutInterviewsInput = {
|
|
@@ -233254,6 +234030,9 @@ export namespace Prisma {
|
|
|
233254
234030
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
233255
234031
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
233256
234032
|
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
|
|
233257
234036
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
233258
234037
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
233259
234038
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -233997,6 +234776,7 @@ export namespace Prisma {
|
|
|
233997
234776
|
created_by: string
|
|
233998
234777
|
updated_by: string
|
|
233999
234778
|
is_active?: boolean
|
|
234779
|
+
order_no?: number | null
|
|
234000
234780
|
application: ApplicationCreateNestedOneWithoutJob_application_responsesInput
|
|
234001
234781
|
document?: DocumentCreateNestedOneWithoutJob_application_responsesInput
|
|
234002
234782
|
}
|
|
@@ -234019,6 +234799,7 @@ export namespace Prisma {
|
|
|
234019
234799
|
created_by: string
|
|
234020
234800
|
updated_by: string
|
|
234021
234801
|
is_active?: boolean
|
|
234802
|
+
order_no?: number | null
|
|
234022
234803
|
}
|
|
234023
234804
|
|
|
234024
234805
|
export type JobApplicationResponseCreateOrConnectWithoutFieldInput = {
|
|
@@ -234252,6 +235033,8 @@ export namespace Prisma {
|
|
|
234252
235033
|
created_by: string
|
|
234253
235034
|
updated_by: string
|
|
234254
235035
|
is_active?: boolean
|
|
235036
|
+
fit_check_report_updated_flag?: boolean
|
|
235037
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
234255
235038
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
234256
235039
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
234257
235040
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
@@ -234268,6 +235051,7 @@ export namespace Prisma {
|
|
|
234268
235051
|
conversations?: ConversationCreateNestedManyWithoutApplicationInput
|
|
234269
235052
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
234270
235053
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
235054
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
234271
235055
|
}
|
|
234272
235056
|
|
|
234273
235057
|
export type ApplicationUncheckedCreateWithoutJob_application_responsesInput = {
|
|
@@ -234300,6 +235084,9 @@ export namespace Prisma {
|
|
|
234300
235084
|
created_by: string
|
|
234301
235085
|
updated_by: string
|
|
234302
235086
|
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
|
|
234303
235090
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
234304
235091
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
234305
235092
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -234329,6 +235116,7 @@ export namespace Prisma {
|
|
|
234329
235116
|
updated_by: string
|
|
234330
235117
|
created_at?: Date | string
|
|
234331
235118
|
updated_at?: Date | string
|
|
235119
|
+
order_no?: number | null
|
|
234332
235120
|
organisation: OrganisationCreateNestedOneWithoutJob_application_fieldsInput
|
|
234333
235121
|
job_application_template: JobApplicationTemplateCreateNestedOneWithoutFieldsInput
|
|
234334
235122
|
}
|
|
@@ -234348,6 +235136,7 @@ export namespace Prisma {
|
|
|
234348
235136
|
updated_by: string
|
|
234349
235137
|
created_at?: Date | string
|
|
234350
235138
|
updated_at?: Date | string
|
|
235139
|
+
order_no?: number | null
|
|
234351
235140
|
}
|
|
234352
235141
|
|
|
234353
235142
|
export type JobApplicationFieldCreateOrConnectWithoutJob_application_responsesInput = {
|
|
@@ -234386,6 +235175,7 @@ export namespace Prisma {
|
|
|
234386
235175
|
offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
|
|
234387
235176
|
offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
|
|
234388
235177
|
offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
235178
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
234389
235179
|
}
|
|
234390
235180
|
|
|
234391
235181
|
export type DocumentUncheckedCreateWithoutJob_application_responsesInput = {
|
|
@@ -234419,6 +235209,7 @@ export namespace Prisma {
|
|
|
234419
235209
|
offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
|
|
234420
235210
|
offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
|
|
234421
235211
|
offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
235212
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
234422
235213
|
}
|
|
234423
235214
|
|
|
234424
235215
|
export type DocumentCreateOrConnectWithoutJob_application_responsesInput = {
|
|
@@ -234460,6 +235251,8 @@ export namespace Prisma {
|
|
|
234460
235251
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
234461
235252
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
234462
235253
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
235254
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
235255
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
234463
235256
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
234464
235257
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
234465
235258
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -234476,6 +235269,7 @@ export namespace Prisma {
|
|
|
234476
235269
|
conversations?: ConversationUpdateManyWithoutApplicationNestedInput
|
|
234477
235270
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
234478
235271
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
235272
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
234479
235273
|
}
|
|
234480
235274
|
|
|
234481
235275
|
export type ApplicationUncheckedUpdateWithoutJob_application_responsesInput = {
|
|
@@ -234508,6 +235302,9 @@ export namespace Prisma {
|
|
|
234508
235302
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
234509
235303
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
234510
235304
|
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
|
|
234511
235308
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
234512
235309
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
234513
235310
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -234543,6 +235340,7 @@ export namespace Prisma {
|
|
|
234543
235340
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
234544
235341
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
234545
235342
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
235343
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
234546
235344
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_application_fieldsNestedInput
|
|
234547
235345
|
job_application_template?: JobApplicationTemplateUpdateOneRequiredWithoutFieldsNestedInput
|
|
234548
235346
|
}
|
|
@@ -234562,6 +235360,7 @@ export namespace Prisma {
|
|
|
234562
235360
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
234563
235361
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
234564
235362
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
235363
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
234565
235364
|
}
|
|
234566
235365
|
|
|
234567
235366
|
export type DocumentUpsertWithoutJob_application_responsesInput = {
|
|
@@ -234606,6 +235405,7 @@ export namespace Prisma {
|
|
|
234606
235405
|
offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
|
|
234607
235406
|
offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
|
|
234608
235407
|
offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
235408
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
234609
235409
|
}
|
|
234610
235410
|
|
|
234611
235411
|
export type DocumentUncheckedUpdateWithoutJob_application_responsesInput = {
|
|
@@ -234639,6 +235439,7 @@ export namespace Prisma {
|
|
|
234639
235439
|
offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
|
|
234640
235440
|
offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
|
|
234641
235441
|
offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
235442
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
234642
235443
|
}
|
|
234643
235444
|
|
|
234644
235445
|
export type OrganisationCreateWithoutJob_application_templatesInput = {
|
|
@@ -234900,6 +235701,7 @@ export namespace Prisma {
|
|
|
234900
235701
|
updated_by: string
|
|
234901
235702
|
created_at?: Date | string
|
|
234902
235703
|
updated_at?: Date | string
|
|
235704
|
+
order_no?: number | null
|
|
234903
235705
|
organisation: OrganisationCreateNestedOneWithoutJob_application_fieldsInput
|
|
234904
235706
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutFieldInput
|
|
234905
235707
|
}
|
|
@@ -234918,6 +235720,7 @@ export namespace Prisma {
|
|
|
234918
235720
|
updated_by: string
|
|
234919
235721
|
created_at?: Date | string
|
|
234920
235722
|
updated_at?: Date | string
|
|
235723
|
+
order_no?: number | null
|
|
234921
235724
|
job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutFieldInput
|
|
234922
235725
|
}
|
|
234923
235726
|
|
|
@@ -235223,6 +236026,7 @@ export namespace Prisma {
|
|
|
235223
236026
|
updated_by?: StringFilter<"JobApplicationField"> | string
|
|
235224
236027
|
created_at?: DateTimeFilter<"JobApplicationField"> | Date | string
|
|
235225
236028
|
updated_at?: DateTimeFilter<"JobApplicationField"> | Date | string
|
|
236029
|
+
order_no?: IntNullableFilter<"JobApplicationField"> | number | null
|
|
235226
236030
|
}
|
|
235227
236031
|
|
|
235228
236032
|
export type DocumentCreateWithoutJob_description_renderedInput = {
|
|
@@ -235256,6 +236060,7 @@ export namespace Prisma {
|
|
|
235256
236060
|
offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
|
|
235257
236061
|
offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
|
|
235258
236062
|
offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
236063
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
235259
236064
|
}
|
|
235260
236065
|
|
|
235261
236066
|
export type DocumentUncheckedCreateWithoutJob_description_renderedInput = {
|
|
@@ -235289,6 +236094,7 @@ export namespace Prisma {
|
|
|
235289
236094
|
offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
|
|
235290
236095
|
offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
|
|
235291
236096
|
offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
236097
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
235292
236098
|
}
|
|
235293
236099
|
|
|
235294
236100
|
export type DocumentCreateOrConnectWithoutJob_description_renderedInput = {
|
|
@@ -235327,6 +236133,7 @@ export namespace Prisma {
|
|
|
235327
236133
|
offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
|
|
235328
236134
|
offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
|
|
235329
236135
|
offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
236136
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
235330
236137
|
}
|
|
235331
236138
|
|
|
235332
236139
|
export type DocumentUncheckedCreateWithoutJob_description_display_htmlInput = {
|
|
@@ -235360,6 +236167,7 @@ export namespace Prisma {
|
|
|
235360
236167
|
offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
|
|
235361
236168
|
offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
|
|
235362
236169
|
offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
236170
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
235363
236171
|
}
|
|
235364
236172
|
|
|
235365
236173
|
export type DocumentCreateOrConnectWithoutJob_description_display_htmlInput = {
|
|
@@ -235651,6 +236459,7 @@ export namespace Prisma {
|
|
|
235651
236459
|
offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
|
|
235652
236460
|
offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
|
|
235653
236461
|
offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
236462
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
235654
236463
|
}
|
|
235655
236464
|
|
|
235656
236465
|
export type DocumentUncheckedCreateWithoutJob_description_sourceInput = {
|
|
@@ -235684,6 +236493,7 @@ export namespace Prisma {
|
|
|
235684
236493
|
offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
|
|
235685
236494
|
offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
|
|
235686
236495
|
offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
236496
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
235687
236497
|
}
|
|
235688
236498
|
|
|
235689
236499
|
export type DocumentCreateOrConnectWithoutJob_description_sourceInput = {
|
|
@@ -235714,6 +236524,8 @@ export namespace Prisma {
|
|
|
235714
236524
|
created_by: string
|
|
235715
236525
|
updated_by: string
|
|
235716
236526
|
is_active?: boolean
|
|
236527
|
+
fit_check_report_updated_flag?: boolean
|
|
236528
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
235717
236529
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
235718
236530
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
235719
236531
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
@@ -235730,6 +236542,7 @@ export namespace Prisma {
|
|
|
235730
236542
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
235731
236543
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
235732
236544
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
236545
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
235733
236546
|
}
|
|
235734
236547
|
|
|
235735
236548
|
export type ApplicationUncheckedCreateWithoutJob_descriptionInput = {
|
|
@@ -235761,6 +236574,9 @@ export namespace Prisma {
|
|
|
235761
236574
|
created_by: string
|
|
235762
236575
|
updated_by: string
|
|
235763
236576
|
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
|
|
235764
236580
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
235765
236581
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
235766
236582
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -237272,6 +238088,7 @@ export namespace Prisma {
|
|
|
237272
238088
|
offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
|
|
237273
238089
|
offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
|
|
237274
238090
|
offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
238091
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
237275
238092
|
}
|
|
237276
238093
|
|
|
237277
238094
|
export type DocumentUncheckedUpdateWithoutJob_description_renderedInput = {
|
|
@@ -237305,6 +238122,7 @@ export namespace Prisma {
|
|
|
237305
238122
|
offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
|
|
237306
238123
|
offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
|
|
237307
238124
|
offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
238125
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
237308
238126
|
}
|
|
237309
238127
|
|
|
237310
238128
|
export type DocumentUpsertWithoutJob_description_display_htmlInput = {
|
|
@@ -237349,6 +238167,7 @@ export namespace Prisma {
|
|
|
237349
238167
|
offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
|
|
237350
238168
|
offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
|
|
237351
238169
|
offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
238170
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
237352
238171
|
}
|
|
237353
238172
|
|
|
237354
238173
|
export type DocumentUncheckedUpdateWithoutJob_description_display_htmlInput = {
|
|
@@ -237382,6 +238201,7 @@ export namespace Prisma {
|
|
|
237382
238201
|
offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
|
|
237383
238202
|
offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
|
|
237384
238203
|
offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
238204
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
237385
238205
|
}
|
|
237386
238206
|
|
|
237387
238207
|
export type JobProfileUpsertWithoutJob_descriptionsInput = {
|
|
@@ -237697,6 +238517,7 @@ export namespace Prisma {
|
|
|
237697
238517
|
offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
|
|
237698
238518
|
offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
|
|
237699
238519
|
offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
238520
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
237700
238521
|
}
|
|
237701
238522
|
|
|
237702
238523
|
export type DocumentUncheckedUpdateWithoutJob_description_sourceInput = {
|
|
@@ -237730,6 +238551,7 @@ export namespace Prisma {
|
|
|
237730
238551
|
offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
|
|
237731
238552
|
offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
|
|
237732
238553
|
offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
238554
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
237733
238555
|
}
|
|
237734
238556
|
|
|
237735
238557
|
export type ApplicationUpsertWithWhereUniqueWithoutJob_descriptionInput = {
|
|
@@ -244143,6 +244965,8 @@ export namespace Prisma {
|
|
|
244143
244965
|
created_by: string
|
|
244144
244966
|
updated_by: string
|
|
244145
244967
|
is_active?: boolean
|
|
244968
|
+
fit_check_report_updated_flag?: boolean
|
|
244969
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
244146
244970
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
244147
244971
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
244148
244972
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
@@ -244159,6 +244983,7 @@ export namespace Prisma {
|
|
|
244159
244983
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
244160
244984
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
244161
244985
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
244986
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
244162
244987
|
}
|
|
244163
244988
|
|
|
244164
244989
|
export type ApplicationUncheckedCreateWithoutNotesInput = {
|
|
@@ -244191,6 +245016,9 @@ export namespace Prisma {
|
|
|
244191
245016
|
created_by: string
|
|
244192
245017
|
updated_by: string
|
|
244193
245018
|
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
|
|
244194
245022
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
244195
245023
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
244196
245024
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -244402,6 +245230,8 @@ export namespace Prisma {
|
|
|
244402
245230
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
244403
245231
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
244404
245232
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
245233
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
245234
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
244405
245235
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
244406
245236
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
244407
245237
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -244418,6 +245248,7 @@ export namespace Prisma {
|
|
|
244418
245248
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
244419
245249
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
244420
245250
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
245251
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
244421
245252
|
}
|
|
244422
245253
|
|
|
244423
245254
|
export type ApplicationUncheckedUpdateWithoutNotesInput = {
|
|
@@ -244450,6 +245281,9 @@ export namespace Prisma {
|
|
|
244450
245281
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
244451
245282
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
244452
245283
|
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
|
|
244453
245287
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
244454
245288
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
244455
245289
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -244905,6 +245739,7 @@ export namespace Prisma {
|
|
|
244905
245739
|
offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
|
|
244906
245740
|
offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
|
|
244907
245741
|
offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
245742
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
244908
245743
|
}
|
|
244909
245744
|
|
|
244910
245745
|
export type DocumentUncheckedCreateWithoutOffer_letter_template_docxInput = {
|
|
@@ -244938,6 +245773,7 @@ export namespace Prisma {
|
|
|
244938
245773
|
offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
|
|
244939
245774
|
offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
|
|
244940
245775
|
offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
245776
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
244941
245777
|
}
|
|
244942
245778
|
|
|
244943
245779
|
export type DocumentCreateOrConnectWithoutOffer_letter_template_docxInput = {
|
|
@@ -244976,6 +245812,7 @@ export namespace Prisma {
|
|
|
244976
245812
|
offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
|
|
244977
245813
|
offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
|
|
244978
245814
|
offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
245815
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
244979
245816
|
}
|
|
244980
245817
|
|
|
244981
245818
|
export type DocumentUncheckedCreateWithoutOffer_letter_template_htmlInput = {
|
|
@@ -245009,6 +245846,7 @@ export namespace Prisma {
|
|
|
245009
245846
|
offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
|
|
245010
245847
|
offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
|
|
245011
245848
|
offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
245849
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
245012
245850
|
}
|
|
245013
245851
|
|
|
245014
245852
|
export type DocumentCreateOrConnectWithoutOffer_letter_template_htmlInput = {
|
|
@@ -245430,6 +246268,7 @@ export namespace Prisma {
|
|
|
245430
246268
|
offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
|
|
245431
246269
|
offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
|
|
245432
246270
|
offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
246271
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
245433
246272
|
}
|
|
245434
246273
|
|
|
245435
246274
|
export type DocumentUncheckedUpdateWithoutOffer_letter_template_docxInput = {
|
|
@@ -245463,6 +246302,7 @@ export namespace Prisma {
|
|
|
245463
246302
|
offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
|
|
245464
246303
|
offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
|
|
245465
246304
|
offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
246305
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
245466
246306
|
}
|
|
245467
246307
|
|
|
245468
246308
|
export type DocumentUpsertWithoutOffer_letter_template_htmlInput = {
|
|
@@ -245507,6 +246347,7 @@ export namespace Prisma {
|
|
|
245507
246347
|
offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
|
|
245508
246348
|
offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
|
|
245509
246349
|
offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
246350
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
245510
246351
|
}
|
|
245511
246352
|
|
|
245512
246353
|
export type DocumentUncheckedUpdateWithoutOffer_letter_template_htmlInput = {
|
|
@@ -245540,6 +246381,7 @@ export namespace Prisma {
|
|
|
245540
246381
|
offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
|
|
245541
246382
|
offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
|
|
245542
246383
|
offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
246384
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
245543
246385
|
}
|
|
245544
246386
|
|
|
245545
246387
|
export type OfferUpsertWithWhereUniqueWithoutTemplateInput = {
|
|
@@ -245597,6 +246439,8 @@ export namespace Prisma {
|
|
|
245597
246439
|
created_by: string
|
|
245598
246440
|
updated_by: string
|
|
245599
246441
|
is_active?: boolean
|
|
246442
|
+
fit_check_report_updated_flag?: boolean
|
|
246443
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
245600
246444
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
245601
246445
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
245602
246446
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
@@ -245613,6 +246457,7 @@ export namespace Prisma {
|
|
|
245613
246457
|
conversations?: ConversationCreateNestedManyWithoutApplicationInput
|
|
245614
246458
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
245615
246459
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
246460
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
245616
246461
|
}
|
|
245617
246462
|
|
|
245618
246463
|
export type ApplicationUncheckedCreateWithoutOfferInput = {
|
|
@@ -245645,6 +246490,9 @@ export namespace Prisma {
|
|
|
245645
246490
|
created_by: string
|
|
245646
246491
|
updated_by: string
|
|
245647
246492
|
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
|
|
245648
246496
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
245649
246497
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
245650
246498
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -246146,6 +246994,7 @@ export namespace Prisma {
|
|
|
246146
246994
|
offer_letter_template_html?: OfferLetterTemplateCreateNestedManyWithoutHtml_documentInput
|
|
246147
246995
|
offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
|
|
246148
246996
|
offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
|
|
246997
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
246149
246998
|
}
|
|
246150
246999
|
|
|
246151
247000
|
export type DocumentUncheckedCreateWithoutOffer_draft_edited_htmlInput = {
|
|
@@ -246179,6 +247028,7 @@ export namespace Prisma {
|
|
|
246179
247028
|
offer_letter_template_html?: OfferLetterTemplateUncheckedCreateNestedManyWithoutHtml_documentInput
|
|
246180
247029
|
offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
|
|
246181
247030
|
offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
|
|
247031
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
246182
247032
|
}
|
|
246183
247033
|
|
|
246184
247034
|
export type DocumentCreateOrConnectWithoutOffer_draft_edited_htmlInput = {
|
|
@@ -246307,6 +247157,8 @@ export namespace Prisma {
|
|
|
246307
247157
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
246308
247158
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
246309
247159
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
247160
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
247161
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
246310
247162
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
246311
247163
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
246312
247164
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -246323,6 +247175,7 @@ export namespace Prisma {
|
|
|
246323
247175
|
conversations?: ConversationUpdateManyWithoutApplicationNestedInput
|
|
246324
247176
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
246325
247177
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
247178
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
246326
247179
|
}
|
|
246327
247180
|
|
|
246328
247181
|
export type ApplicationUncheckedUpdateWithoutOfferInput = {
|
|
@@ -246355,6 +247208,9 @@ export namespace Prisma {
|
|
|
246355
247208
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
246356
247209
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
246357
247210
|
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
|
|
246358
247214
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
246359
247215
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
246360
247216
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -246886,6 +247742,7 @@ export namespace Prisma {
|
|
|
246886
247742
|
offer_letter_template_html?: OfferLetterTemplateUpdateManyWithoutHtml_documentNestedInput
|
|
246887
247743
|
offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
|
|
246888
247744
|
offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
|
|
247745
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
246889
247746
|
}
|
|
246890
247747
|
|
|
246891
247748
|
export type DocumentUncheckedUpdateWithoutOffer_draft_edited_htmlInput = {
|
|
@@ -246919,6 +247776,7 @@ export namespace Prisma {
|
|
|
246919
247776
|
offer_letter_template_html?: OfferLetterTemplateUncheckedUpdateManyWithoutHtml_documentNestedInput
|
|
246920
247777
|
offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
|
|
246921
247778
|
offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
|
|
247779
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
246922
247780
|
}
|
|
246923
247781
|
|
|
246924
247782
|
export type OfferLetterUpsertWithoutCurrent_for_offerInput = {
|
|
@@ -247146,6 +248004,7 @@ export namespace Prisma {
|
|
|
247146
248004
|
offer_letter_template_html?: OfferLetterTemplateCreateNestedManyWithoutHtml_documentInput
|
|
247147
248005
|
offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
|
|
247148
248006
|
offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
248007
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
247149
248008
|
}
|
|
247150
248009
|
|
|
247151
248010
|
export type DocumentUncheckedCreateWithoutOffer_lettersInput = {
|
|
@@ -247179,6 +248038,7 @@ export namespace Prisma {
|
|
|
247179
248038
|
offer_letter_template_html?: OfferLetterTemplateUncheckedCreateNestedManyWithoutHtml_documentInput
|
|
247180
248039
|
offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
|
|
247181
248040
|
offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
248041
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
247182
248042
|
}
|
|
247183
248043
|
|
|
247184
248044
|
export type DocumentCreateOrConnectWithoutOffer_lettersInput = {
|
|
@@ -247264,6 +248124,7 @@ export namespace Prisma {
|
|
|
247264
248124
|
offer_letter_template_html?: OfferLetterTemplateCreateNestedManyWithoutHtml_documentInput
|
|
247265
248125
|
offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
|
|
247266
248126
|
offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
248127
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
247267
248128
|
}
|
|
247268
248129
|
|
|
247269
248130
|
export type DocumentUncheckedCreateWithoutOffer_letter_template_snapshotsInput = {
|
|
@@ -247297,6 +248158,7 @@ export namespace Prisma {
|
|
|
247297
248158
|
offer_letter_template_html?: OfferLetterTemplateUncheckedCreateNestedManyWithoutHtml_documentInput
|
|
247298
248159
|
offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
|
|
247299
248160
|
offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
248161
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
247300
248162
|
}
|
|
247301
248163
|
|
|
247302
248164
|
export type DocumentCreateOrConnectWithoutOffer_letter_template_snapshotsInput = {
|
|
@@ -247431,6 +248293,7 @@ export namespace Prisma {
|
|
|
247431
248293
|
offer_letter_template_html?: OfferLetterTemplateUpdateManyWithoutHtml_documentNestedInput
|
|
247432
248294
|
offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
|
|
247433
248295
|
offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
248296
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
247434
248297
|
}
|
|
247435
248298
|
|
|
247436
248299
|
export type DocumentUncheckedUpdateWithoutOffer_lettersInput = {
|
|
@@ -247464,6 +248327,7 @@ export namespace Prisma {
|
|
|
247464
248327
|
offer_letter_template_html?: OfferLetterTemplateUncheckedUpdateManyWithoutHtml_documentNestedInput
|
|
247465
248328
|
offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
|
|
247466
248329
|
offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
248330
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
247467
248331
|
}
|
|
247468
248332
|
|
|
247469
248333
|
export type OfferLetterTemplateUpsertWithoutOffer_lettersInput = {
|
|
@@ -247561,6 +248425,7 @@ export namespace Prisma {
|
|
|
247561
248425
|
offer_letter_template_html?: OfferLetterTemplateUpdateManyWithoutHtml_documentNestedInput
|
|
247562
248426
|
offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
|
|
247563
248427
|
offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
248428
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
247564
248429
|
}
|
|
247565
248430
|
|
|
247566
248431
|
export type DocumentUncheckedUpdateWithoutOffer_letter_template_snapshotsInput = {
|
|
@@ -247594,6 +248459,7 @@ export namespace Prisma {
|
|
|
247594
248459
|
offer_letter_template_html?: OfferLetterTemplateUncheckedUpdateManyWithoutHtml_documentNestedInput
|
|
247595
248460
|
offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
|
|
247596
248461
|
offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
248462
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
247597
248463
|
}
|
|
247598
248464
|
|
|
247599
248465
|
export type JobDescriptionCreateWithoutOngoing_evaluationsInput = {
|
|
@@ -247728,6 +248594,8 @@ export namespace Prisma {
|
|
|
247728
248594
|
created_by: string
|
|
247729
248595
|
updated_by: string
|
|
247730
248596
|
is_active?: boolean
|
|
248597
|
+
fit_check_report_updated_flag?: boolean
|
|
248598
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
247731
248599
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
247732
248600
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
247733
248601
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
@@ -247744,6 +248612,7 @@ export namespace Prisma {
|
|
|
247744
248612
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
247745
248613
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
247746
248614
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
248615
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
247747
248616
|
}
|
|
247748
248617
|
|
|
247749
248618
|
export type ApplicationUncheckedCreateWithoutOngoing_evaluationsInput = {
|
|
@@ -247776,6 +248645,9 @@ export namespace Prisma {
|
|
|
247776
248645
|
created_by: string
|
|
247777
248646
|
updated_by: string
|
|
247778
248647
|
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
|
|
247779
248651
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
247780
248652
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
247781
248653
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -248592,6 +249464,8 @@ export namespace Prisma {
|
|
|
248592
249464
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
248593
249465
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
248594
249466
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
249467
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
249468
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
248595
249469
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
248596
249470
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
248597
249471
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -248608,6 +249482,7 @@ export namespace Prisma {
|
|
|
248608
249482
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
248609
249483
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
248610
249484
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
249485
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
248611
249486
|
}
|
|
248612
249487
|
|
|
248613
249488
|
export type ApplicationUncheckedUpdateWithoutOngoing_evaluationsInput = {
|
|
@@ -248640,6 +249515,9 @@ export namespace Prisma {
|
|
|
248640
249515
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
248641
249516
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
248642
249517
|
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
|
|
248643
249521
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
248644
249522
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
248645
249523
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -249533,6 +250411,8 @@ export namespace Prisma {
|
|
|
249533
250411
|
created_by: string
|
|
249534
250412
|
updated_by: string
|
|
249535
250413
|
is_active?: boolean
|
|
250414
|
+
fit_check_report_updated_flag?: boolean
|
|
250415
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
249536
250416
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
249537
250417
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
249538
250418
|
resume: ResumeCreateNestedOneWithoutApplicationsInput
|
|
@@ -249549,6 +250429,7 @@ export namespace Prisma {
|
|
|
249549
250429
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
249550
250430
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
249551
250431
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
250432
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
249552
250433
|
}
|
|
249553
250434
|
|
|
249554
250435
|
export type ApplicationUncheckedCreateWithoutOrganisationInput = {
|
|
@@ -249580,6 +250461,9 @@ export namespace Prisma {
|
|
|
249580
250461
|
created_by: string
|
|
249581
250462
|
updated_by: string
|
|
249582
250463
|
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
|
|
249583
250467
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
249584
250468
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
249585
250469
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -250869,6 +251753,7 @@ export namespace Prisma {
|
|
|
250869
251753
|
updated_by: string
|
|
250870
251754
|
created_at?: Date | string
|
|
250871
251755
|
updated_at?: Date | string
|
|
251756
|
+
order_no?: number | null
|
|
250872
251757
|
job_application_template: JobApplicationTemplateCreateNestedOneWithoutFieldsInput
|
|
250873
251758
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutFieldInput
|
|
250874
251759
|
}
|
|
@@ -250887,6 +251772,7 @@ export namespace Prisma {
|
|
|
250887
251772
|
updated_by: string
|
|
250888
251773
|
created_at?: Date | string
|
|
250889
251774
|
updated_at?: Date | string
|
|
251775
|
+
order_no?: number | null
|
|
250890
251776
|
job_application_responses?: JobApplicationResponseUncheckedCreateNestedManyWithoutFieldInput
|
|
250891
251777
|
}
|
|
250892
251778
|
|
|
@@ -250931,6 +251817,7 @@ export namespace Prisma {
|
|
|
250931
251817
|
offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
|
|
250932
251818
|
offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
|
|
250933
251819
|
offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
251820
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
250934
251821
|
}
|
|
250935
251822
|
|
|
250936
251823
|
export type DocumentUncheckedCreateWithoutOrganisationInput = {
|
|
@@ -250964,6 +251851,7 @@ export namespace Prisma {
|
|
|
250964
251851
|
offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
|
|
250965
251852
|
offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
|
|
250966
251853
|
offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
251854
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
250967
251855
|
}
|
|
250968
251856
|
|
|
250969
251857
|
export type DocumentCreateOrConnectWithoutOrganisationInput = {
|
|
@@ -254976,6 +255864,7 @@ export namespace Prisma {
|
|
|
254976
255864
|
offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
|
|
254977
255865
|
offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
|
|
254978
255866
|
offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
255867
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
254979
255868
|
}
|
|
254980
255869
|
|
|
254981
255870
|
export type DocumentUncheckedCreateWithoutResumeInput = {
|
|
@@ -255009,6 +255898,7 @@ export namespace Prisma {
|
|
|
255009
255898
|
offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
|
|
255010
255899
|
offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
|
|
255011
255900
|
offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
255901
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
255012
255902
|
}
|
|
255013
255903
|
|
|
255014
255904
|
export type DocumentCreateOrConnectWithoutResumeInput = {
|
|
@@ -255047,6 +255937,7 @@ export namespace Prisma {
|
|
|
255047
255937
|
offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
|
|
255048
255938
|
offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
|
|
255049
255939
|
offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
255940
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
255050
255941
|
}
|
|
255051
255942
|
|
|
255052
255943
|
export type DocumentUncheckedCreateWithoutResume_rendered_exportInput = {
|
|
@@ -255080,6 +255971,7 @@ export namespace Prisma {
|
|
|
255080
255971
|
offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
|
|
255081
255972
|
offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
|
|
255082
255973
|
offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
255974
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
255083
255975
|
}
|
|
255084
255976
|
|
|
255085
255977
|
export type DocumentCreateOrConnectWithoutResume_rendered_exportInput = {
|
|
@@ -255110,6 +256002,8 @@ export namespace Prisma {
|
|
|
255110
256002
|
created_by: string
|
|
255111
256003
|
updated_by: string
|
|
255112
256004
|
is_active?: boolean
|
|
256005
|
+
fit_check_report_updated_flag?: boolean
|
|
256006
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
255113
256007
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
255114
256008
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
255115
256009
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
@@ -255126,6 +256020,7 @@ export namespace Prisma {
|
|
|
255126
256020
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
255127
256021
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
255128
256022
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
256023
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
255129
256024
|
}
|
|
255130
256025
|
|
|
255131
256026
|
export type ApplicationUncheckedCreateWithoutResumeInput = {
|
|
@@ -255157,6 +256052,9 @@ export namespace Prisma {
|
|
|
255157
256052
|
created_by: string
|
|
255158
256053
|
updated_by: string
|
|
255159
256054
|
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
|
|
255160
256058
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
255161
256059
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
255162
256060
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -255993,6 +256891,7 @@ export namespace Prisma {
|
|
|
255993
256891
|
offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
|
|
255994
256892
|
offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
|
|
255995
256893
|
offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
256894
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
255996
256895
|
}
|
|
255997
256896
|
|
|
255998
256897
|
export type DocumentUncheckedUpdateWithoutResumeInput = {
|
|
@@ -256026,6 +256925,7 @@ export namespace Prisma {
|
|
|
256026
256925
|
offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
|
|
256027
256926
|
offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
|
|
256028
256927
|
offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
256928
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
256029
256929
|
}
|
|
256030
256930
|
|
|
256031
256931
|
export type DocumentUpsertWithoutResume_rendered_exportInput = {
|
|
@@ -256070,6 +256970,7 @@ export namespace Prisma {
|
|
|
256070
256970
|
offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
|
|
256071
256971
|
offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
|
|
256072
256972
|
offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
256973
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
256073
256974
|
}
|
|
256074
256975
|
|
|
256075
256976
|
export type DocumentUncheckedUpdateWithoutResume_rendered_exportInput = {
|
|
@@ -256103,6 +257004,7 @@ export namespace Prisma {
|
|
|
256103
257004
|
offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
|
|
256104
257005
|
offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
|
|
256105
257006
|
offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
257007
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
256106
257008
|
}
|
|
256107
257009
|
|
|
256108
257010
|
export type ApplicationUpsertWithWhereUniqueWithoutResumeInput = {
|
|
@@ -256602,6 +257504,8 @@ export namespace Prisma {
|
|
|
256602
257504
|
created_by: string
|
|
256603
257505
|
updated_by: string
|
|
256604
257506
|
is_active?: boolean
|
|
257507
|
+
fit_check_report_updated_flag?: boolean
|
|
257508
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
256605
257509
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
256606
257510
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
256607
257511
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
@@ -256618,6 +257522,7 @@ export namespace Prisma {
|
|
|
256618
257522
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
256619
257523
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
256620
257524
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
257525
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
256621
257526
|
}
|
|
256622
257527
|
|
|
256623
257528
|
export type ApplicationUncheckedCreateWithoutSourceInput = {
|
|
@@ -256649,6 +257554,9 @@ export namespace Prisma {
|
|
|
256649
257554
|
created_by: string
|
|
256650
257555
|
updated_by: string
|
|
256651
257556
|
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
|
|
256652
257560
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
256653
257561
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
256654
257562
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -259049,6 +259957,8 @@ export namespace Prisma {
|
|
|
259049
259957
|
created_by: string
|
|
259050
259958
|
updated_by: string
|
|
259051
259959
|
is_active?: boolean
|
|
259960
|
+
fit_check_report_updated_flag?: boolean
|
|
259961
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
259052
259962
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
259053
259963
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
259054
259964
|
resume: ResumeCreateNestedOneWithoutApplicationsInput
|
|
@@ -259065,6 +259975,7 @@ export namespace Prisma {
|
|
|
259065
259975
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
259066
259976
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
259067
259977
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
259978
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
259068
259979
|
}
|
|
259069
259980
|
|
|
259070
259981
|
export type ApplicationUncheckedCreateWithoutCandidateInput = {
|
|
@@ -259096,6 +260007,9 @@ export namespace Prisma {
|
|
|
259096
260007
|
created_by: string
|
|
259097
260008
|
updated_by: string
|
|
259098
260009
|
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
|
|
259099
260013
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
259100
260014
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
259101
260015
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -260876,6 +261790,8 @@ export namespace Prisma {
|
|
|
260876
261790
|
created_by: string
|
|
260877
261791
|
updated_by: string
|
|
260878
261792
|
is_active?: boolean
|
|
261793
|
+
fit_check_report_updated_flag?: boolean
|
|
261794
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
260879
261795
|
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutApplicationsInput
|
|
260880
261796
|
candidate: UserCreateNestedOneWithoutApplicationsInput
|
|
260881
261797
|
organisation: OrganisationCreateNestedOneWithoutApplicationsInput
|
|
@@ -260892,6 +261808,7 @@ export namespace Prisma {
|
|
|
260892
261808
|
communication_messages?: CommunicationMessageCreateNestedManyWithoutApplicationInput
|
|
260893
261809
|
job_application_responses?: JobApplicationResponseCreateNestedManyWithoutApplicationInput
|
|
260894
261810
|
offer?: OfferCreateNestedOneWithoutApplicationInput
|
|
261811
|
+
fit_check_report_document?: DocumentCreateNestedOneWithoutApplication_fit_check_reportInput
|
|
260895
261812
|
}
|
|
260896
261813
|
|
|
260897
261814
|
export type ApplicationUncheckedCreateWithoutRecruiterInput = {
|
|
@@ -260923,6 +261840,9 @@ export namespace Prisma {
|
|
|
260923
261840
|
created_by: string
|
|
260924
261841
|
updated_by: string
|
|
260925
261842
|
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
|
|
260926
261846
|
fit_check?: FitCheckUncheckedCreateNestedOneWithoutApplicationInput
|
|
260927
261847
|
interviews?: InterviewUncheckedCreateNestedManyWithoutApplicationInput
|
|
260928
261848
|
assignments?: AssignmentUncheckedCreateNestedManyWithoutApplicationInput
|
|
@@ -260976,6 +261896,7 @@ export namespace Prisma {
|
|
|
260976
261896
|
offer_letters?: OfferLetterCreateNestedManyWithoutDocumentInput
|
|
260977
261897
|
offer_letter_template_snapshots?: OfferLetterCreateNestedManyWithoutTemplate_documentInput
|
|
260978
261898
|
offer_draft_edited_html?: OfferCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
261899
|
+
application_fit_check_report?: ApplicationCreateNestedOneWithoutFit_check_report_documentInput
|
|
260979
261900
|
}
|
|
260980
261901
|
|
|
260981
261902
|
export type DocumentUncheckedCreateWithoutCandidateInput = {
|
|
@@ -261009,6 +261930,7 @@ export namespace Prisma {
|
|
|
261009
261930
|
offer_letters?: OfferLetterUncheckedCreateNestedManyWithoutDocumentInput
|
|
261010
261931
|
offer_letter_template_snapshots?: OfferLetterUncheckedCreateNestedManyWithoutTemplate_documentInput
|
|
261011
261932
|
offer_draft_edited_html?: OfferUncheckedCreateNestedManyWithoutDraft_edited_html_documentInput
|
|
261933
|
+
application_fit_check_report?: ApplicationUncheckedCreateNestedOneWithoutFit_check_report_documentInput
|
|
261012
261934
|
}
|
|
261013
261935
|
|
|
261014
261936
|
export type DocumentCreateOrConnectWithoutCandidateInput = {
|
|
@@ -263543,6 +264465,7 @@ export namespace Prisma {
|
|
|
263543
264465
|
created_by: string
|
|
263544
264466
|
updated_by: string
|
|
263545
264467
|
is_active?: boolean
|
|
264468
|
+
order_no?: number | null
|
|
263546
264469
|
}
|
|
263547
264470
|
|
|
263548
264471
|
export type InterviewUpdateWithoutApplicationInput = {
|
|
@@ -264134,6 +265057,7 @@ export namespace Prisma {
|
|
|
264134
265057
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
264135
265058
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
264136
265059
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
265060
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
264137
265061
|
field?: JobApplicationFieldUpdateOneWithoutJob_application_responsesNestedInput
|
|
264138
265062
|
document?: DocumentUpdateOneWithoutJob_application_responsesNestedInput
|
|
264139
265063
|
}
|
|
@@ -264156,6 +265080,7 @@ export namespace Prisma {
|
|
|
264156
265080
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
264157
265081
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
264158
265082
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
265083
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
264159
265084
|
}
|
|
264160
265085
|
|
|
264161
265086
|
export type JobApplicationResponseUncheckedUpdateManyWithoutApplicationInput = {
|
|
@@ -264176,6 +265101,7 @@ export namespace Prisma {
|
|
|
264176
265101
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
264177
265102
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
264178
265103
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
265104
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
264179
265105
|
}
|
|
264180
265106
|
|
|
264181
265107
|
export type AssessmentQuestionCreateManyAssessmentInput = {
|
|
@@ -265862,6 +266788,7 @@ export namespace Prisma {
|
|
|
265862
266788
|
created_by: string
|
|
265863
266789
|
updated_by: string
|
|
265864
266790
|
is_active?: boolean
|
|
266791
|
+
order_no?: number | null
|
|
265865
266792
|
}
|
|
265866
266793
|
|
|
265867
266794
|
export type OfferLetterTemplateCreateManyDocumentInput = {
|
|
@@ -265980,6 +266907,7 @@ export namespace Prisma {
|
|
|
265980
266907
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
265981
266908
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
265982
266909
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
266910
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
265983
266911
|
application?: ApplicationUpdateOneRequiredWithoutJob_application_responsesNestedInput
|
|
265984
266912
|
field?: JobApplicationFieldUpdateOneWithoutJob_application_responsesNestedInput
|
|
265985
266913
|
}
|
|
@@ -266002,6 +266930,7 @@ export namespace Prisma {
|
|
|
266002
266930
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
266003
266931
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
266004
266932
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
266933
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
266005
266934
|
}
|
|
266006
266935
|
|
|
266007
266936
|
export type JobApplicationResponseUncheckedUpdateManyWithoutDocumentInput = {
|
|
@@ -266022,6 +266951,7 @@ export namespace Prisma {
|
|
|
266022
266951
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
266023
266952
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
266024
266953
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
266954
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
266025
266955
|
}
|
|
266026
266956
|
|
|
266027
266957
|
export type OfferLetterTemplateUpdateWithoutDocumentInput = {
|
|
@@ -266433,6 +267363,9 @@ export namespace Prisma {
|
|
|
266433
267363
|
created_by: string
|
|
266434
267364
|
updated_by: string
|
|
266435
267365
|
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
|
|
266436
267369
|
}
|
|
266437
267370
|
|
|
266438
267371
|
export type OngoingEvaluationCreateManyEvaluation_planInput = {
|
|
@@ -266714,6 +267647,8 @@ export namespace Prisma {
|
|
|
266714
267647
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
266715
267648
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
266716
267649
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
267650
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
267651
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
266717
267652
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
266718
267653
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
266719
267654
|
resume?: ResumeUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -266730,6 +267665,7 @@ export namespace Prisma {
|
|
|
266730
267665
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
266731
267666
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
266732
267667
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
267668
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
266733
267669
|
}
|
|
266734
267670
|
|
|
266735
267671
|
export type ApplicationUncheckedUpdateWithoutEvaluation_planInput = {
|
|
@@ -266761,6 +267697,9 @@ export namespace Prisma {
|
|
|
266761
267697
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
266762
267698
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
266763
267699
|
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
|
|
266764
267703
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
266765
267704
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
266766
267705
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -266802,6 +267741,9 @@ export namespace Prisma {
|
|
|
266802
267741
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
266803
267742
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
266804
267743
|
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
|
|
266805
267747
|
}
|
|
266806
267748
|
|
|
266807
267749
|
export type OngoingEvaluationUpdateWithoutEvaluation_planInput = {
|
|
@@ -267832,6 +268774,7 @@ export namespace Prisma {
|
|
|
267832
268774
|
created_by: string
|
|
267833
268775
|
updated_by: string
|
|
267834
268776
|
is_active?: boolean
|
|
268777
|
+
order_no?: number | null
|
|
267835
268778
|
}
|
|
267836
268779
|
|
|
267837
268780
|
export type JobApplicationResponseUpdateWithoutFieldInput = {
|
|
@@ -267850,6 +268793,7 @@ export namespace Prisma {
|
|
|
267850
268793
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
267851
268794
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
267852
268795
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
268796
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
267853
268797
|
application?: ApplicationUpdateOneRequiredWithoutJob_application_responsesNestedInput
|
|
267854
268798
|
document?: DocumentUpdateOneWithoutJob_application_responsesNestedInput
|
|
267855
268799
|
}
|
|
@@ -267872,6 +268816,7 @@ export namespace Prisma {
|
|
|
267872
268816
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
267873
268817
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
267874
268818
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
268819
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
267875
268820
|
}
|
|
267876
268821
|
|
|
267877
268822
|
export type JobApplicationResponseUncheckedUpdateManyWithoutFieldInput = {
|
|
@@ -267892,6 +268837,7 @@ export namespace Prisma {
|
|
|
267892
268837
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
267893
268838
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
267894
268839
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
268840
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
267895
268841
|
}
|
|
267896
268842
|
|
|
267897
268843
|
export type JobApplicationFieldCreateManyJob_application_templateInput = {
|
|
@@ -267908,6 +268854,7 @@ export namespace Prisma {
|
|
|
267908
268854
|
updated_by: string
|
|
267909
268855
|
created_at?: Date | string
|
|
267910
268856
|
updated_at?: Date | string
|
|
268857
|
+
order_no?: number | null
|
|
267911
268858
|
}
|
|
267912
268859
|
|
|
267913
268860
|
export type JobApplicationFieldUpdateWithoutJob_application_templateInput = {
|
|
@@ -267923,6 +268870,7 @@ export namespace Prisma {
|
|
|
267923
268870
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
267924
268871
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
267925
268872
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
268873
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
267926
268874
|
organisation?: OrganisationUpdateOneRequiredWithoutJob_application_fieldsNestedInput
|
|
267927
268875
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutFieldNestedInput
|
|
267928
268876
|
}
|
|
@@ -267941,6 +268889,7 @@ export namespace Prisma {
|
|
|
267941
268889
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
267942
268890
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
267943
268891
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
268892
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
267944
268893
|
job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutFieldNestedInput
|
|
267945
268894
|
}
|
|
267946
268895
|
|
|
@@ -267958,6 +268907,7 @@ export namespace Prisma {
|
|
|
267958
268907
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
267959
268908
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
267960
268909
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
268910
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
267961
268911
|
}
|
|
267962
268912
|
|
|
267963
268913
|
export type ApplicationCreateManyJob_descriptionInput = {
|
|
@@ -267989,6 +268939,9 @@ export namespace Prisma {
|
|
|
267989
268939
|
created_by: string
|
|
267990
268940
|
updated_by: string
|
|
267991
268941
|
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
|
|
267992
268945
|
}
|
|
267993
268946
|
|
|
267994
268947
|
export type InterviewCreateManyJob_descriptionInput = {
|
|
@@ -268391,6 +269344,8 @@ export namespace Prisma {
|
|
|
268391
269344
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
268392
269345
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
268393
269346
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
269347
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
269348
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
268394
269349
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
268395
269350
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
268396
269351
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -268407,6 +269362,7 @@ export namespace Prisma {
|
|
|
268407
269362
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
268408
269363
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
268409
269364
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
269365
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
268410
269366
|
}
|
|
268411
269367
|
|
|
268412
269368
|
export type ApplicationUncheckedUpdateWithoutJob_descriptionInput = {
|
|
@@ -268438,6 +269394,9 @@ export namespace Prisma {
|
|
|
268438
269394
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
268439
269395
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
268440
269396
|
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
|
|
268441
269400
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
268442
269401
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
268443
269402
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -268479,6 +269438,9 @@ export namespace Prisma {
|
|
|
268479
269438
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
268480
269439
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
268481
269440
|
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
|
|
268482
269444
|
}
|
|
268483
269445
|
|
|
268484
269446
|
export type InterviewUpdateWithoutJob_descriptionInput = {
|
|
@@ -270860,6 +271822,9 @@ export namespace Prisma {
|
|
|
270860
271822
|
created_by: string
|
|
270861
271823
|
updated_by: string
|
|
270862
271824
|
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
|
|
270863
271828
|
}
|
|
270864
271829
|
|
|
270865
271830
|
export type UserRoleCreateManyOrganisationInput = {
|
|
@@ -271339,6 +272304,7 @@ export namespace Prisma {
|
|
|
271339
272304
|
updated_by: string
|
|
271340
272305
|
created_at?: Date | string
|
|
271341
272306
|
updated_at?: Date | string
|
|
272307
|
+
order_no?: number | null
|
|
271342
272308
|
}
|
|
271343
272309
|
|
|
271344
272310
|
export type DocumentCreateManyOrganisationInput = {
|
|
@@ -271868,6 +272834,8 @@ export namespace Prisma {
|
|
|
271868
272834
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
271869
272835
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
271870
272836
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
272837
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
272838
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
271871
272839
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
271872
272840
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
271873
272841
|
resume?: ResumeUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -271884,6 +272852,7 @@ export namespace Prisma {
|
|
|
271884
272852
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
271885
272853
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
271886
272854
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
272855
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
271887
272856
|
}
|
|
271888
272857
|
|
|
271889
272858
|
export type ApplicationUncheckedUpdateWithoutOrganisationInput = {
|
|
@@ -271915,6 +272884,9 @@ export namespace Prisma {
|
|
|
271915
272884
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
271916
272885
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
271917
272886
|
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
|
|
271918
272890
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
271919
272891
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
271920
272892
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -271956,6 +272928,9 @@ export namespace Prisma {
|
|
|
271956
272928
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
271957
272929
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
271958
272930
|
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
|
|
271959
272934
|
}
|
|
271960
272935
|
|
|
271961
272936
|
export type UserRoleUpdateWithoutOrganisationInput = {
|
|
@@ -273458,6 +274433,7 @@ export namespace Prisma {
|
|
|
273458
274433
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
273459
274434
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
273460
274435
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
274436
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
273461
274437
|
job_application_template?: JobApplicationTemplateUpdateOneRequiredWithoutFieldsNestedInput
|
|
273462
274438
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutFieldNestedInput
|
|
273463
274439
|
}
|
|
@@ -273476,6 +274452,7 @@ export namespace Prisma {
|
|
|
273476
274452
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
273477
274453
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
273478
274454
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
274455
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
273479
274456
|
job_application_responses?: JobApplicationResponseUncheckedUpdateManyWithoutFieldNestedInput
|
|
273480
274457
|
}
|
|
273481
274458
|
|
|
@@ -273493,6 +274470,7 @@ export namespace Prisma {
|
|
|
273493
274470
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
273494
274471
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
273495
274472
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
274473
|
+
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
273496
274474
|
}
|
|
273497
274475
|
|
|
273498
274476
|
export type DocumentUpdateWithoutOrganisationInput = {
|
|
@@ -273526,6 +274504,7 @@ export namespace Prisma {
|
|
|
273526
274504
|
offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
|
|
273527
274505
|
offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
|
|
273528
274506
|
offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
274507
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
273529
274508
|
}
|
|
273530
274509
|
|
|
273531
274510
|
export type DocumentUncheckedUpdateWithoutOrganisationInput = {
|
|
@@ -273559,6 +274538,7 @@ export namespace Prisma {
|
|
|
273559
274538
|
offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
|
|
273560
274539
|
offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
|
|
273561
274540
|
offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
274541
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
273562
274542
|
}
|
|
273563
274543
|
|
|
273564
274544
|
export type DocumentUncheckedUpdateManyWithoutOrganisationInput = {
|
|
@@ -274601,6 +275581,9 @@ export namespace Prisma {
|
|
|
274601
275581
|
created_by: string
|
|
274602
275582
|
updated_by: string
|
|
274603
275583
|
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
|
|
274604
275587
|
}
|
|
274605
275588
|
|
|
274606
275589
|
export type InterviewCreateManyResumeInput = {
|
|
@@ -274747,6 +275730,8 @@ export namespace Prisma {
|
|
|
274747
275730
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
274748
275731
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
274749
275732
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
275733
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
275734
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
274750
275735
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
274751
275736
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
274752
275737
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -274763,6 +275748,7 @@ export namespace Prisma {
|
|
|
274763
275748
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
274764
275749
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
274765
275750
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
275751
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
274766
275752
|
}
|
|
274767
275753
|
|
|
274768
275754
|
export type ApplicationUncheckedUpdateWithoutResumeInput = {
|
|
@@ -274794,6 +275780,9 @@ export namespace Prisma {
|
|
|
274794
275780
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
274795
275781
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
274796
275782
|
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
|
|
274797
275786
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
274798
275787
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
274799
275788
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -274835,6 +275824,9 @@ export namespace Prisma {
|
|
|
274835
275824
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
274836
275825
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
274837
275826
|
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
|
|
274838
275830
|
}
|
|
274839
275831
|
|
|
274840
275832
|
export type InterviewUpdateWithoutResumeInput = {
|
|
@@ -275257,6 +276249,9 @@ export namespace Prisma {
|
|
|
275257
276249
|
created_by: string
|
|
275258
276250
|
updated_by: string
|
|
275259
276251
|
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
|
|
275260
276255
|
}
|
|
275261
276256
|
|
|
275262
276257
|
export type SourceUpdateWithoutParentInput = {
|
|
@@ -275322,6 +276317,8 @@ export namespace Prisma {
|
|
|
275322
276317
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
275323
276318
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
275324
276319
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
276320
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
276321
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
275325
276322
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
275326
276323
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
275327
276324
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -275338,6 +276335,7 @@ export namespace Prisma {
|
|
|
275338
276335
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
275339
276336
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
275340
276337
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
276338
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
275341
276339
|
}
|
|
275342
276340
|
|
|
275343
276341
|
export type ApplicationUncheckedUpdateWithoutSourceInput = {
|
|
@@ -275369,6 +276367,9 @@ export namespace Prisma {
|
|
|
275369
276367
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
275370
276368
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
275371
276369
|
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
|
|
275372
276373
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
275373
276374
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
275374
276375
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -275410,6 +276411,9 @@ export namespace Prisma {
|
|
|
275410
276411
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
275411
276412
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
275412
276413
|
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
|
|
275413
276417
|
}
|
|
275414
276418
|
|
|
275415
276419
|
export type TranscriptCreateManySuggestionInput = {
|
|
@@ -275641,6 +276645,9 @@ export namespace Prisma {
|
|
|
275641
276645
|
created_by: string
|
|
275642
276646
|
updated_by: string
|
|
275643
276647
|
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
|
|
275644
276651
|
}
|
|
275645
276652
|
|
|
275646
276653
|
export type ResumeCreateManyUserInput = {
|
|
@@ -276233,6 +277240,9 @@ export namespace Prisma {
|
|
|
276233
277240
|
created_by: string
|
|
276234
277241
|
updated_by: string
|
|
276235
277242
|
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
|
|
276236
277246
|
}
|
|
276237
277247
|
|
|
276238
277248
|
export type DocumentCreateManyCandidateInput = {
|
|
@@ -276316,6 +277326,8 @@ export namespace Prisma {
|
|
|
276316
277326
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
276317
277327
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
276318
277328
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
277329
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
277330
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
276319
277331
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
276320
277332
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
276321
277333
|
resume?: ResumeUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -276332,6 +277344,7 @@ export namespace Prisma {
|
|
|
276332
277344
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
276333
277345
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
276334
277346
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
277347
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
276335
277348
|
}
|
|
276336
277349
|
|
|
276337
277350
|
export type ApplicationUncheckedUpdateWithoutCandidateInput = {
|
|
@@ -276363,6 +277376,9 @@ export namespace Prisma {
|
|
|
276363
277376
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
276364
277377
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
276365
277378
|
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
|
|
276366
277382
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
276367
277383
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
276368
277384
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -276404,6 +277420,9 @@ export namespace Prisma {
|
|
|
276404
277420
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
276405
277421
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
276406
277422
|
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
|
|
276407
277426
|
}
|
|
276408
277427
|
|
|
276409
277428
|
export type ResumeUpdateWithoutUserInput = {
|
|
@@ -278360,6 +279379,8 @@ export namespace Prisma {
|
|
|
278360
279379
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
278361
279380
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
278362
279381
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
279382
|
+
fit_check_report_updated_flag?: BoolFieldUpdateOperationsInput | boolean
|
|
279383
|
+
fit_check_report_data?: NullableJsonNullValueInput | InputJsonValue
|
|
278363
279384
|
evaluation_plan?: EvaluationPlanUpdateOneWithoutApplicationsNestedInput
|
|
278364
279385
|
candidate?: UserUpdateOneRequiredWithoutApplicationsNestedInput
|
|
278365
279386
|
organisation?: OrganisationUpdateOneRequiredWithoutApplicationsNestedInput
|
|
@@ -278376,6 +279397,7 @@ export namespace Prisma {
|
|
|
278376
279397
|
communication_messages?: CommunicationMessageUpdateManyWithoutApplicationNestedInput
|
|
278377
279398
|
job_application_responses?: JobApplicationResponseUpdateManyWithoutApplicationNestedInput
|
|
278378
279399
|
offer?: OfferUpdateOneWithoutApplicationNestedInput
|
|
279400
|
+
fit_check_report_document?: DocumentUpdateOneWithoutApplication_fit_check_reportNestedInput
|
|
278379
279401
|
}
|
|
278380
279402
|
|
|
278381
279403
|
export type ApplicationUncheckedUpdateWithoutRecruiterInput = {
|
|
@@ -278407,6 +279429,9 @@ export namespace Prisma {
|
|
|
278407
279429
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
278408
279430
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
278409
279431
|
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
|
|
278410
279435
|
fit_check?: FitCheckUncheckedUpdateOneWithoutApplicationNestedInput
|
|
278411
279436
|
interviews?: InterviewUncheckedUpdateManyWithoutApplicationNestedInput
|
|
278412
279437
|
assignments?: AssignmentUncheckedUpdateManyWithoutApplicationNestedInput
|
|
@@ -278448,6 +279473,9 @@ export namespace Prisma {
|
|
|
278448
279473
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
278449
279474
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
278450
279475
|
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
|
|
278451
279479
|
}
|
|
278452
279480
|
|
|
278453
279481
|
export type DocumentUpdateWithoutCandidateInput = {
|
|
@@ -278481,6 +279509,7 @@ export namespace Prisma {
|
|
|
278481
279509
|
offer_letters?: OfferLetterUpdateManyWithoutDocumentNestedInput
|
|
278482
279510
|
offer_letter_template_snapshots?: OfferLetterUpdateManyWithoutTemplate_documentNestedInput
|
|
278483
279511
|
offer_draft_edited_html?: OfferUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
279512
|
+
application_fit_check_report?: ApplicationUpdateOneWithoutFit_check_report_documentNestedInput
|
|
278484
279513
|
}
|
|
278485
279514
|
|
|
278486
279515
|
export type DocumentUncheckedUpdateWithoutCandidateInput = {
|
|
@@ -278514,6 +279543,7 @@ export namespace Prisma {
|
|
|
278514
279543
|
offer_letters?: OfferLetterUncheckedUpdateManyWithoutDocumentNestedInput
|
|
278515
279544
|
offer_letter_template_snapshots?: OfferLetterUncheckedUpdateManyWithoutTemplate_documentNestedInput
|
|
278516
279545
|
offer_draft_edited_html?: OfferUncheckedUpdateManyWithoutDraft_edited_html_documentNestedInput
|
|
279546
|
+
application_fit_check_report?: ApplicationUncheckedUpdateOneWithoutFit_check_report_documentNestedInput
|
|
278517
279547
|
}
|
|
278518
279548
|
|
|
278519
279549
|
export type DocumentUncheckedUpdateManyWithoutCandidateInput = {
|