@adaptware/eagles-db 0.5.46 → 0.5.47
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 +30 -9
- package/client/index-browser.js +24 -2
- package/client/index.d.ts +947 -193
- package/client/index.js +30 -9
- package/client/package.json +1 -1
- package/client/schema.prisma +43 -9
- package/client/wasm.js +30 -9
- package/package.json +1 -1
- package/prisma/schema/evaluationPlan.prisma +0 -7
- package/prisma/schema/migrations/20260907120000_add_resume_ai_intake/migration.sql +20 -0
- package/prisma/schema/migrations/20260908120000_add_resume_jd_tailoring/migration.sql +15 -0
- package/prisma/schema/resume.prisma +45 -0
- package/prisma/schema/migrations/20260522120000_ongoing_evaluation_record_kind/migration.sql +0 -25
- package/prisma/schema/migrations/20260523120000_replace_record_kind_with_is_committed/migration.sql +0 -24
- package/prisma/schema/migrations/20260528120000_drop_job_description_recommendation_config/migration.sql +0 -2
- package/prisma/schema/migrations/20260710120000_add_resume_rendered_export_fields/migration.sql +0 -9
- package/prisma/schema/migrations/20260714120000_add_job_description_display_html_document/migration.sql +0 -8
- package/prisma/schema/migrations/20260716120000_add_offer_letters/migration.sql +0 -183
- package/prisma/schema/migrations/20260716140000_offer_schema_refinements/migration.sql +0 -13
- package/prisma/schema/migrations/20260716160000_offer_schema_hardening/migration.sql +0 -95
- package/prisma/schema/migrations/20260716180000_offer_letter_template_config/migration.sql +0 -2
- package/prisma/schema/migrations/20260716190000_add_evaluation_focus_areas/migration.sql +0 -6
- package/prisma/schema/migrations/20260717120000_offer_workflow_approval/migration.sql +0 -30
- package/prisma/schema/migrations/20260720120000_offer_letter_template_is_draft/migration.sql +0 -5
- package/prisma/schema/migrations/20260720140000_offer_status_split/migration.sql +0 -51
- package/prisma/schema/migrations/20260720140001_offer_status_split_backfill/migration.sql +0 -37
- package/prisma/schema/migrations/20260722120000_offer_draft_edited_html/migration.sql +0 -13
- package/prisma/schema/migrations/20260723150000_offer_withdraw_actor_no_show_reason/migration.sql +0 -10
- package/prisma/schema/migrations/20260724120000_open_job_offer_accepted_declined_counts/migration.sql +0 -7
- package/prisma/schema/migrations/20260811120000_add_integration_provider_razorpay/migration.sql +0 -6
- package/prisma/schema/migrations/20260812120000_add_billing_transactions/migration.sql +0 -49
- package/prisma/schema/migrations/20260812130000_drop_billing_transaction_gst_snapshots/migration.sql +0 -3
- package/prisma/schema/migrations/20260812180000_billing_transaction_invoice_number/migration.sql +0 -5
- package/prisma/schema/migrations/20260813120000_payment_webhooks_gst_refunds/migration.sql +0 -79
- package/prisma/schema/migrations/20260813140000_platform_gst_profiles/migration.sql +0 -49
- package/prisma/schema/migrations/20260813150000_rename_gst_profiles/migration.sql +0 -53
- package/prisma/schema/migrations/20260813160000_remove_gst_billing/migration.sql +0 -16
- package/prisma/schema/migrations/20260813170000_billing_licensing_unrecoverable/migration.sql +0 -2
- package/prisma/schema/migrations/20260813180000_billing_transaction_payment_method/migration.sql +0 -2
- package/prisma/schema/migrations/20260814090000_billing_transaction_purchaser_email/migration.sql +0 -2
- package/prisma/schema/migrations/20260816100000_billing_product_organisations/migration.sql +0 -35
- package/prisma/schema/migrations/20260816120000_merge_billing_product_organisations/migration.sql +0 -25
- package/prisma/schema/migrations/20260817120000_billing_payment_mismatch/migration.sql +0 -7
- package/prisma/schema/migrations/20260819120000_billing_product_prices/migration.sql +0 -62
- package/prisma/schema/migrations/20260819140000_billing_exchange_rates/migration.sql +0 -25
- package/prisma/schema/migrations/20260820120000_billing_transaction_failure_category/migration.sql +0 -31
- package/prisma/schema/migrations/20260820130000_backfill_billing_transaction_failure_details/migration.sql +0 -23
- package/prisma/schema/migrations/20260820140000_drop_billing_product_price_overrides/migration.sql +0 -2
- package/prisma/schema/migrations/20260821120000_drop_billing_product_and_mock_licensing/migration.sql +0 -38
- package/prisma/schema/migrations/20260824120000_billing_transaction_purchase_display_name/migration.sql +0 -2
- package/prisma/schema/migrations/20260831120000_user_communication_email/migration.sql +0 -6
- package/prisma/schema/migrations/20260901143000_assessment_question_bank_state/migration.sql +0 -15
- package/prisma/schema/migrations/20260902120000_question_category_two_values/migration.sql +0 -16
- package/prisma/schema/migrations/20260902143000_question_bank_item_key/migration.sql +0 -17
- package/prisma/schema/migrations/20260903120000_split_round_type_assessment/migration.sql +0 -9
- package/prisma/schema/migrations/20260904110000_restore_round_type_assessment_enum/migration.sql +0 -5
- package/prisma/schema/migrations/20260904120000_revert_wrong_split_assessment_round_types/migration.sql +0 -42
- package/prisma/sql/add_user_deleted_at.sql +0 -8
package/client/index.d.ts
CHANGED
|
@@ -1326,6 +1326,25 @@ export const OpenJobClosureType: {
|
|
|
1326
1326
|
export type OpenJobClosureType = (typeof OpenJobClosureType)[keyof typeof OpenJobClosureType]
|
|
1327
1327
|
|
|
1328
1328
|
|
|
1329
|
+
export const ResumeStatus: {
|
|
1330
|
+
DRAFT: 'DRAFT',
|
|
1331
|
+
GENERATING: 'GENERATING',
|
|
1332
|
+
COMPLETED: 'COMPLETED'
|
|
1333
|
+
};
|
|
1334
|
+
|
|
1335
|
+
export type ResumeStatus = (typeof ResumeStatus)[keyof typeof ResumeStatus]
|
|
1336
|
+
|
|
1337
|
+
|
|
1338
|
+
export const ResumeOrigin: {
|
|
1339
|
+
UPLOADED: 'UPLOADED',
|
|
1340
|
+
PARSED: 'PARSED',
|
|
1341
|
+
AI_GENERATED: 'AI_GENERATED',
|
|
1342
|
+
TAILORED: 'TAILORED'
|
|
1343
|
+
};
|
|
1344
|
+
|
|
1345
|
+
export type ResumeOrigin = (typeof ResumeOrigin)[keyof typeof ResumeOrigin]
|
|
1346
|
+
|
|
1347
|
+
|
|
1329
1348
|
export const RoundResult: {
|
|
1330
1349
|
PASSED: 'PASSED',
|
|
1331
1350
|
FAILED: 'FAILED'
|
|
@@ -1673,6 +1692,14 @@ export type OpenJobClosureType = $Enums.OpenJobClosureType
|
|
|
1673
1692
|
|
|
1674
1693
|
export const OpenJobClosureType: typeof $Enums.OpenJobClosureType
|
|
1675
1694
|
|
|
1695
|
+
export type ResumeStatus = $Enums.ResumeStatus
|
|
1696
|
+
|
|
1697
|
+
export const ResumeStatus: typeof $Enums.ResumeStatus
|
|
1698
|
+
|
|
1699
|
+
export type ResumeOrigin = $Enums.ResumeOrigin
|
|
1700
|
+
|
|
1701
|
+
export const ResumeOrigin: typeof $Enums.ResumeOrigin
|
|
1702
|
+
|
|
1676
1703
|
export type RoundResult = $Enums.RoundResult
|
|
1677
1704
|
|
|
1678
1705
|
export const RoundResult: typeof $Enums.RoundResult
|
|
@@ -125917,10 +125944,12 @@ export namespace Prisma {
|
|
|
125917
125944
|
|
|
125918
125945
|
export type ResumeAvgAggregateOutputType = {
|
|
125919
125946
|
yearsOfExperience: number | null
|
|
125947
|
+
intake_progress: number | null
|
|
125920
125948
|
}
|
|
125921
125949
|
|
|
125922
125950
|
export type ResumeSumAggregateOutputType = {
|
|
125923
125951
|
yearsOfExperience: number | null
|
|
125952
|
+
intake_progress: number | null
|
|
125924
125953
|
}
|
|
125925
125954
|
|
|
125926
125955
|
export type ResumeMinAggregateOutputType = {
|
|
@@ -125940,6 +125969,12 @@ export namespace Prisma {
|
|
|
125940
125969
|
is_active: boolean | null
|
|
125941
125970
|
name: string | null
|
|
125942
125971
|
yearsOfExperience: number | null
|
|
125972
|
+
status: $Enums.ResumeStatus | null
|
|
125973
|
+
origin: $Enums.ResumeOrigin | null
|
|
125974
|
+
intake_session_id: string | null
|
|
125975
|
+
intake_progress: number | null
|
|
125976
|
+
orion_execution_id: string | null
|
|
125977
|
+
tailoring_jd_text: string | null
|
|
125943
125978
|
}
|
|
125944
125979
|
|
|
125945
125980
|
export type ResumeMaxAggregateOutputType = {
|
|
@@ -125959,6 +125994,12 @@ export namespace Prisma {
|
|
|
125959
125994
|
is_active: boolean | null
|
|
125960
125995
|
name: string | null
|
|
125961
125996
|
yearsOfExperience: number | null
|
|
125997
|
+
status: $Enums.ResumeStatus | null
|
|
125998
|
+
origin: $Enums.ResumeOrigin | null
|
|
125999
|
+
intake_session_id: string | null
|
|
126000
|
+
intake_progress: number | null
|
|
126001
|
+
orion_execution_id: string | null
|
|
126002
|
+
tailoring_jd_text: string | null
|
|
125962
126003
|
}
|
|
125963
126004
|
|
|
125964
126005
|
export type ResumeCountAggregateOutputType = {
|
|
@@ -125979,16 +126020,28 @@ export namespace Prisma {
|
|
|
125979
126020
|
is_active: number
|
|
125980
126021
|
name: number
|
|
125981
126022
|
yearsOfExperience: number
|
|
126023
|
+
status: number
|
|
126024
|
+
origin: number
|
|
126025
|
+
intake_session_id: number
|
|
126026
|
+
conversation_history: number
|
|
126027
|
+
intake_progress: number
|
|
126028
|
+
orion_execution_id: number
|
|
126029
|
+
tailoring_jd_text: number
|
|
126030
|
+
tailoring_jd_parsed: number
|
|
126031
|
+
tailoring_gap_analysis: number
|
|
126032
|
+
tailoring_draft: number
|
|
125982
126033
|
_all: number
|
|
125983
126034
|
}
|
|
125984
126035
|
|
|
125985
126036
|
|
|
125986
126037
|
export type ResumeAvgAggregateInputType = {
|
|
125987
126038
|
yearsOfExperience?: true
|
|
126039
|
+
intake_progress?: true
|
|
125988
126040
|
}
|
|
125989
126041
|
|
|
125990
126042
|
export type ResumeSumAggregateInputType = {
|
|
125991
126043
|
yearsOfExperience?: true
|
|
126044
|
+
intake_progress?: true
|
|
125992
126045
|
}
|
|
125993
126046
|
|
|
125994
126047
|
export type ResumeMinAggregateInputType = {
|
|
@@ -126008,6 +126061,12 @@ export namespace Prisma {
|
|
|
126008
126061
|
is_active?: true
|
|
126009
126062
|
name?: true
|
|
126010
126063
|
yearsOfExperience?: true
|
|
126064
|
+
status?: true
|
|
126065
|
+
origin?: true
|
|
126066
|
+
intake_session_id?: true
|
|
126067
|
+
intake_progress?: true
|
|
126068
|
+
orion_execution_id?: true
|
|
126069
|
+
tailoring_jd_text?: true
|
|
126011
126070
|
}
|
|
126012
126071
|
|
|
126013
126072
|
export type ResumeMaxAggregateInputType = {
|
|
@@ -126027,6 +126086,12 @@ export namespace Prisma {
|
|
|
126027
126086
|
is_active?: true
|
|
126028
126087
|
name?: true
|
|
126029
126088
|
yearsOfExperience?: true
|
|
126089
|
+
status?: true
|
|
126090
|
+
origin?: true
|
|
126091
|
+
intake_session_id?: true
|
|
126092
|
+
intake_progress?: true
|
|
126093
|
+
orion_execution_id?: true
|
|
126094
|
+
tailoring_jd_text?: true
|
|
126030
126095
|
}
|
|
126031
126096
|
|
|
126032
126097
|
export type ResumeCountAggregateInputType = {
|
|
@@ -126047,6 +126112,16 @@ export namespace Prisma {
|
|
|
126047
126112
|
is_active?: true
|
|
126048
126113
|
name?: true
|
|
126049
126114
|
yearsOfExperience?: true
|
|
126115
|
+
status?: true
|
|
126116
|
+
origin?: true
|
|
126117
|
+
intake_session_id?: true
|
|
126118
|
+
conversation_history?: true
|
|
126119
|
+
intake_progress?: true
|
|
126120
|
+
orion_execution_id?: true
|
|
126121
|
+
tailoring_jd_text?: true
|
|
126122
|
+
tailoring_jd_parsed?: true
|
|
126123
|
+
tailoring_gap_analysis?: true
|
|
126124
|
+
tailoring_draft?: true
|
|
126050
126125
|
_all?: true
|
|
126051
126126
|
}
|
|
126052
126127
|
|
|
@@ -126154,6 +126229,16 @@ export namespace Prisma {
|
|
|
126154
126229
|
is_active: boolean
|
|
126155
126230
|
name: string | null
|
|
126156
126231
|
yearsOfExperience: number | null
|
|
126232
|
+
status: $Enums.ResumeStatus | null
|
|
126233
|
+
origin: $Enums.ResumeOrigin | null
|
|
126234
|
+
intake_session_id: string | null
|
|
126235
|
+
conversation_history: JsonValue | null
|
|
126236
|
+
intake_progress: number | null
|
|
126237
|
+
orion_execution_id: string | null
|
|
126238
|
+
tailoring_jd_text: string | null
|
|
126239
|
+
tailoring_jd_parsed: JsonValue | null
|
|
126240
|
+
tailoring_gap_analysis: JsonValue | null
|
|
126241
|
+
tailoring_draft: JsonValue | null
|
|
126157
126242
|
_count: ResumeCountAggregateOutputType | null
|
|
126158
126243
|
_avg: ResumeAvgAggregateOutputType | null
|
|
126159
126244
|
_sum: ResumeSumAggregateOutputType | null
|
|
@@ -126193,6 +126278,16 @@ export namespace Prisma {
|
|
|
126193
126278
|
is_active?: boolean
|
|
126194
126279
|
name?: boolean
|
|
126195
126280
|
yearsOfExperience?: boolean
|
|
126281
|
+
status?: boolean
|
|
126282
|
+
origin?: boolean
|
|
126283
|
+
intake_session_id?: boolean
|
|
126284
|
+
conversation_history?: boolean
|
|
126285
|
+
intake_progress?: boolean
|
|
126286
|
+
orion_execution_id?: boolean
|
|
126287
|
+
tailoring_jd_text?: boolean
|
|
126288
|
+
tailoring_jd_parsed?: boolean
|
|
126289
|
+
tailoring_gap_analysis?: boolean
|
|
126290
|
+
tailoring_draft?: boolean
|
|
126196
126291
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
126197
126292
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
126198
126293
|
job_description?: boolean | Resume$job_descriptionArgs<ExtArgs>
|
|
@@ -126225,6 +126320,16 @@ export namespace Prisma {
|
|
|
126225
126320
|
is_active?: boolean
|
|
126226
126321
|
name?: boolean
|
|
126227
126322
|
yearsOfExperience?: boolean
|
|
126323
|
+
status?: boolean
|
|
126324
|
+
origin?: boolean
|
|
126325
|
+
intake_session_id?: boolean
|
|
126326
|
+
conversation_history?: boolean
|
|
126327
|
+
intake_progress?: boolean
|
|
126328
|
+
orion_execution_id?: boolean
|
|
126329
|
+
tailoring_jd_text?: boolean
|
|
126330
|
+
tailoring_jd_parsed?: boolean
|
|
126331
|
+
tailoring_gap_analysis?: boolean
|
|
126332
|
+
tailoring_draft?: boolean
|
|
126228
126333
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
126229
126334
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
126230
126335
|
job_description?: boolean | Resume$job_descriptionArgs<ExtArgs>
|
|
@@ -126250,6 +126355,16 @@ export namespace Prisma {
|
|
|
126250
126355
|
is_active?: boolean
|
|
126251
126356
|
name?: boolean
|
|
126252
126357
|
yearsOfExperience?: boolean
|
|
126358
|
+
status?: boolean
|
|
126359
|
+
origin?: boolean
|
|
126360
|
+
intake_session_id?: boolean
|
|
126361
|
+
conversation_history?: boolean
|
|
126362
|
+
intake_progress?: boolean
|
|
126363
|
+
orion_execution_id?: boolean
|
|
126364
|
+
tailoring_jd_text?: boolean
|
|
126365
|
+
tailoring_jd_parsed?: boolean
|
|
126366
|
+
tailoring_gap_analysis?: boolean
|
|
126367
|
+
tailoring_draft?: boolean
|
|
126253
126368
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
126254
126369
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
126255
126370
|
job_description?: boolean | Resume$job_descriptionArgs<ExtArgs>
|
|
@@ -126275,9 +126390,19 @@ export namespace Prisma {
|
|
|
126275
126390
|
is_active?: boolean
|
|
126276
126391
|
name?: boolean
|
|
126277
126392
|
yearsOfExperience?: boolean
|
|
126393
|
+
status?: boolean
|
|
126394
|
+
origin?: boolean
|
|
126395
|
+
intake_session_id?: boolean
|
|
126396
|
+
conversation_history?: boolean
|
|
126397
|
+
intake_progress?: boolean
|
|
126398
|
+
orion_execution_id?: boolean
|
|
126399
|
+
tailoring_jd_text?: boolean
|
|
126400
|
+
tailoring_jd_parsed?: boolean
|
|
126401
|
+
tailoring_gap_analysis?: boolean
|
|
126402
|
+
tailoring_draft?: boolean
|
|
126278
126403
|
}
|
|
126279
126404
|
|
|
126280
|
-
export type ResumeOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "organisation_id" | "job_description_id" | "uploaded_resume_path" | "document_id" | "rendered_export_document_id" | "resume_template_id" | "file_hash" | "summary" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "name" | "yearsOfExperience", ExtArgs["result"]["resume"]>
|
|
126405
|
+
export type ResumeOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "organisation_id" | "job_description_id" | "uploaded_resume_path" | "document_id" | "rendered_export_document_id" | "resume_template_id" | "file_hash" | "summary" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "name" | "yearsOfExperience" | "status" | "origin" | "intake_session_id" | "conversation_history" | "intake_progress" | "orion_execution_id" | "tailoring_jd_text" | "tailoring_jd_parsed" | "tailoring_gap_analysis" | "tailoring_draft", ExtArgs["result"]["resume"]>
|
|
126281
126406
|
export type ResumeInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
126282
126407
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
126283
126408
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
@@ -126352,6 +126477,47 @@ export namespace Prisma {
|
|
|
126352
126477
|
is_active: boolean
|
|
126353
126478
|
name: string | null
|
|
126354
126479
|
yearsOfExperience: number | null
|
|
126480
|
+
/**
|
|
126481
|
+
* Lifecycle for AI-authored resumes. Null for legacy/uploaded rows (treated as COMPLETED).
|
|
126482
|
+
*/
|
|
126483
|
+
status: $Enums.ResumeStatus | null
|
|
126484
|
+
/**
|
|
126485
|
+
* How this resume came to exist. Null for legacy rows (treated as UPLOADED).
|
|
126486
|
+
*/
|
|
126487
|
+
origin: $Enums.ResumeOrigin | null
|
|
126488
|
+
/**
|
|
126489
|
+
* Intake session id echoed to the client so a refresh can resume the conversation.
|
|
126490
|
+
*/
|
|
126491
|
+
intake_session_id: string | null
|
|
126492
|
+
/**
|
|
126493
|
+
* Durable copy of the chat transcript for the AI intake; Redis is the hot path.
|
|
126494
|
+
*/
|
|
126495
|
+
conversation_history: Prisma.JsonValue | null
|
|
126496
|
+
/**
|
|
126497
|
+
* Progress 0-100 reported by the ResumeIntake workflow.
|
|
126498
|
+
*/
|
|
126499
|
+
intake_progress: number | null
|
|
126500
|
+
/**
|
|
126501
|
+
* Last Orion execution id for the intake/generate workflow, for tracing.
|
|
126502
|
+
*/
|
|
126503
|
+
orion_execution_id: string | null
|
|
126504
|
+
/**
|
|
126505
|
+
* Raw job description text the candidate pasted to start a tailoring session.
|
|
126506
|
+
*/
|
|
126507
|
+
tailoring_jd_text: string | null
|
|
126508
|
+
/**
|
|
126509
|
+
* Cached JobDescriptionParser output; computed once per tailoring session.
|
|
126510
|
+
*/
|
|
126511
|
+
tailoring_jd_parsed: Prisma.JsonValue | null
|
|
126512
|
+
/**
|
|
126513
|
+
* Cached ResumeGapAnalysis output; computed once per tailoring session.
|
|
126514
|
+
*/
|
|
126515
|
+
tailoring_gap_analysis: Prisma.JsonValue | null
|
|
126516
|
+
/**
|
|
126517
|
+
* Working tailored ResumeFormData. Scratch space only — materialised into
|
|
126518
|
+
* `resume_data` when the candidate saves the draft.
|
|
126519
|
+
*/
|
|
126520
|
+
tailoring_draft: Prisma.JsonValue | null
|
|
126355
126521
|
}, ExtArgs["result"]["resume"]>
|
|
126356
126522
|
composites: {}
|
|
126357
126523
|
}
|
|
@@ -126803,6 +126969,16 @@ export namespace Prisma {
|
|
|
126803
126969
|
readonly is_active: FieldRef<"Resume", 'Boolean'>
|
|
126804
126970
|
readonly name: FieldRef<"Resume", 'String'>
|
|
126805
126971
|
readonly yearsOfExperience: FieldRef<"Resume", 'Int'>
|
|
126972
|
+
readonly status: FieldRef<"Resume", 'ResumeStatus'>
|
|
126973
|
+
readonly origin: FieldRef<"Resume", 'ResumeOrigin'>
|
|
126974
|
+
readonly intake_session_id: FieldRef<"Resume", 'String'>
|
|
126975
|
+
readonly conversation_history: FieldRef<"Resume", 'Json'>
|
|
126976
|
+
readonly intake_progress: FieldRef<"Resume", 'Int'>
|
|
126977
|
+
readonly orion_execution_id: FieldRef<"Resume", 'String'>
|
|
126978
|
+
readonly tailoring_jd_text: FieldRef<"Resume", 'String'>
|
|
126979
|
+
readonly tailoring_jd_parsed: FieldRef<"Resume", 'Json'>
|
|
126980
|
+
readonly tailoring_gap_analysis: FieldRef<"Resume", 'Json'>
|
|
126981
|
+
readonly tailoring_draft: FieldRef<"Resume", 'Json'>
|
|
126806
126982
|
}
|
|
126807
126983
|
|
|
126808
126984
|
|
|
@@ -142287,7 +142463,6 @@ export namespace Prisma {
|
|
|
142287
142463
|
created_by: string | null
|
|
142288
142464
|
updated_by: string | null
|
|
142289
142465
|
is_active: boolean | null
|
|
142290
|
-
deleted_at: Date | null
|
|
142291
142466
|
is_self_registered: boolean | null
|
|
142292
142467
|
permission_id: string | null
|
|
142293
142468
|
invitation_status: $Enums.UserInvitationStatus | null
|
|
@@ -142328,7 +142503,6 @@ export namespace Prisma {
|
|
|
142328
142503
|
created_by: string | null
|
|
142329
142504
|
updated_by: string | null
|
|
142330
142505
|
is_active: boolean | null
|
|
142331
|
-
deleted_at: Date | null
|
|
142332
142506
|
is_self_registered: boolean | null
|
|
142333
142507
|
permission_id: string | null
|
|
142334
142508
|
invitation_status: $Enums.UserInvitationStatus | null
|
|
@@ -142369,7 +142543,6 @@ export namespace Prisma {
|
|
|
142369
142543
|
created_by: number
|
|
142370
142544
|
updated_by: number
|
|
142371
142545
|
is_active: number
|
|
142372
|
-
deleted_at: number
|
|
142373
142546
|
is_self_registered: number
|
|
142374
142547
|
permission_id: number
|
|
142375
142548
|
preferences: number
|
|
@@ -142424,7 +142597,6 @@ export namespace Prisma {
|
|
|
142424
142597
|
created_by?: true
|
|
142425
142598
|
updated_by?: true
|
|
142426
142599
|
is_active?: true
|
|
142427
|
-
deleted_at?: true
|
|
142428
142600
|
is_self_registered?: true
|
|
142429
142601
|
permission_id?: true
|
|
142430
142602
|
invitation_status?: true
|
|
@@ -142465,7 +142637,6 @@ export namespace Prisma {
|
|
|
142465
142637
|
created_by?: true
|
|
142466
142638
|
updated_by?: true
|
|
142467
142639
|
is_active?: true
|
|
142468
|
-
deleted_at?: true
|
|
142469
142640
|
is_self_registered?: true
|
|
142470
142641
|
permission_id?: true
|
|
142471
142642
|
invitation_status?: true
|
|
@@ -142506,7 +142677,6 @@ export namespace Prisma {
|
|
|
142506
142677
|
created_by?: true
|
|
142507
142678
|
updated_by?: true
|
|
142508
142679
|
is_active?: true
|
|
142509
|
-
deleted_at?: true
|
|
142510
142680
|
is_self_registered?: true
|
|
142511
142681
|
permission_id?: true
|
|
142512
142682
|
preferences?: true
|
|
@@ -142638,7 +142808,6 @@ export namespace Prisma {
|
|
|
142638
142808
|
created_by: string
|
|
142639
142809
|
updated_by: string
|
|
142640
142810
|
is_active: boolean
|
|
142641
|
-
deleted_at: Date | null
|
|
142642
142811
|
is_self_registered: boolean
|
|
142643
142812
|
permission_id: string | null
|
|
142644
142813
|
preferences: JsonValue | null
|
|
@@ -142702,7 +142871,6 @@ export namespace Prisma {
|
|
|
142702
142871
|
created_by?: boolean
|
|
142703
142872
|
updated_by?: boolean
|
|
142704
142873
|
is_active?: boolean
|
|
142705
|
-
deleted_at?: boolean
|
|
142706
142874
|
is_self_registered?: boolean
|
|
142707
142875
|
permission_id?: boolean
|
|
142708
142876
|
preferences?: boolean
|
|
@@ -142786,7 +142954,6 @@ export namespace Prisma {
|
|
|
142786
142954
|
created_by?: boolean
|
|
142787
142955
|
updated_by?: boolean
|
|
142788
142956
|
is_active?: boolean
|
|
142789
|
-
deleted_at?: boolean
|
|
142790
142957
|
is_self_registered?: boolean
|
|
142791
142958
|
permission_id?: boolean
|
|
142792
142959
|
preferences?: boolean
|
|
@@ -142834,7 +143001,6 @@ export namespace Prisma {
|
|
|
142834
143001
|
created_by?: boolean
|
|
142835
143002
|
updated_by?: boolean
|
|
142836
143003
|
is_active?: boolean
|
|
142837
|
-
deleted_at?: boolean
|
|
142838
143004
|
is_self_registered?: boolean
|
|
142839
143005
|
permission_id?: boolean
|
|
142840
143006
|
preferences?: boolean
|
|
@@ -142882,7 +143048,6 @@ export namespace Prisma {
|
|
|
142882
143048
|
created_by?: boolean
|
|
142883
143049
|
updated_by?: boolean
|
|
142884
143050
|
is_active?: boolean
|
|
142885
|
-
deleted_at?: boolean
|
|
142886
143051
|
is_self_registered?: boolean
|
|
142887
143052
|
permission_id?: boolean
|
|
142888
143053
|
preferences?: boolean
|
|
@@ -142914,7 +143079,7 @@ export namespace Prisma {
|
|
|
142914
143079
|
employee_code?: boolean
|
|
142915
143080
|
}
|
|
142916
143081
|
|
|
142917
|
-
export type UserOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "email" | "password" | "role_id" | "organisation_id" | "google_id" | "refresh_token" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "
|
|
143082
|
+
export type UserOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "email" | "password" | "role_id" | "organisation_id" | "google_id" | "refresh_token" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "is_self_registered" | "permission_id" | "preferences" | "invitation_status" | "invited_at" | "invitation_expires_at" | "invitation_accepted_at" | "profile_created" | "first_login_status" | "name" | "phone" | "communication_email" | "description" | "date_of_birth" | "designation" | "location" | "salary" | "work_experience" | "education" | "skills" | "notice_period" | "preferred_work_mode" | "gender" | "ethnicity" | "veteran_status" | "disability_status" | "professional_expertise" | "employee_number" | "employee_code", ExtArgs["result"]["user"]>
|
|
142918
143083
|
export type UserInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
142919
143084
|
role?: boolean | UserRoleDefaultArgs<ExtArgs>
|
|
142920
143085
|
permission?: boolean | User$permissionArgs<ExtArgs>
|
|
@@ -143022,10 +143187,6 @@ export namespace Prisma {
|
|
|
143022
143187
|
created_by: string
|
|
143023
143188
|
updated_by: string
|
|
143024
143189
|
is_active: boolean
|
|
143025
|
-
/**
|
|
143026
|
-
* Set when removed from team (Delete); null for active/inactive-only users.
|
|
143027
|
-
*/
|
|
143028
|
-
deleted_at: Date | null
|
|
143029
143190
|
is_self_registered: boolean
|
|
143030
143191
|
permission_id: string | null
|
|
143031
143192
|
preferences: Prisma.JsonValue | null
|
|
@@ -143531,7 +143692,6 @@ export namespace Prisma {
|
|
|
143531
143692
|
readonly created_by: FieldRef<"User", 'String'>
|
|
143532
143693
|
readonly updated_by: FieldRef<"User", 'String'>
|
|
143533
143694
|
readonly is_active: FieldRef<"User", 'Boolean'>
|
|
143534
|
-
readonly deleted_at: FieldRef<"User", 'DateTime'>
|
|
143535
143695
|
readonly is_self_registered: FieldRef<"User", 'Boolean'>
|
|
143536
143696
|
readonly permission_id: FieldRef<"User", 'String'>
|
|
143537
143697
|
readonly preferences: FieldRef<"User", 'Json'>
|
|
@@ -151462,7 +151622,17 @@ export namespace Prisma {
|
|
|
151462
151622
|
updated_by: 'updated_by',
|
|
151463
151623
|
is_active: 'is_active',
|
|
151464
151624
|
name: 'name',
|
|
151465
|
-
yearsOfExperience: 'yearsOfExperience'
|
|
151625
|
+
yearsOfExperience: 'yearsOfExperience',
|
|
151626
|
+
status: 'status',
|
|
151627
|
+
origin: 'origin',
|
|
151628
|
+
intake_session_id: 'intake_session_id',
|
|
151629
|
+
conversation_history: 'conversation_history',
|
|
151630
|
+
intake_progress: 'intake_progress',
|
|
151631
|
+
orion_execution_id: 'orion_execution_id',
|
|
151632
|
+
tailoring_jd_text: 'tailoring_jd_text',
|
|
151633
|
+
tailoring_jd_parsed: 'tailoring_jd_parsed',
|
|
151634
|
+
tailoring_gap_analysis: 'tailoring_gap_analysis',
|
|
151635
|
+
tailoring_draft: 'tailoring_draft'
|
|
151466
151636
|
};
|
|
151467
151637
|
|
|
151468
151638
|
export type ResumeScalarFieldEnum = (typeof ResumeScalarFieldEnum)[keyof typeof ResumeScalarFieldEnum]
|
|
@@ -151750,7 +151920,6 @@ export namespace Prisma {
|
|
|
151750
151920
|
created_by: 'created_by',
|
|
151751
151921
|
updated_by: 'updated_by',
|
|
151752
151922
|
is_active: 'is_active',
|
|
151753
|
-
deleted_at: 'deleted_at',
|
|
151754
151923
|
is_self_registered: 'is_self_registered',
|
|
151755
151924
|
permission_id: 'permission_id',
|
|
151756
151925
|
preferences: 'preferences',
|
|
@@ -152981,6 +153150,34 @@ export namespace Prisma {
|
|
|
152981
153150
|
|
|
152982
153151
|
|
|
152983
153152
|
|
|
153153
|
+
/**
|
|
153154
|
+
* Reference to a field of type 'ResumeStatus'
|
|
153155
|
+
*/
|
|
153156
|
+
export type EnumResumeStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ResumeStatus'>
|
|
153157
|
+
|
|
153158
|
+
|
|
153159
|
+
|
|
153160
|
+
/**
|
|
153161
|
+
* Reference to a field of type 'ResumeStatus[]'
|
|
153162
|
+
*/
|
|
153163
|
+
export type ListEnumResumeStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ResumeStatus[]'>
|
|
153164
|
+
|
|
153165
|
+
|
|
153166
|
+
|
|
153167
|
+
/**
|
|
153168
|
+
* Reference to a field of type 'ResumeOrigin'
|
|
153169
|
+
*/
|
|
153170
|
+
export type EnumResumeOriginFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ResumeOrigin'>
|
|
153171
|
+
|
|
153172
|
+
|
|
153173
|
+
|
|
153174
|
+
/**
|
|
153175
|
+
* Reference to a field of type 'ResumeOrigin[]'
|
|
153176
|
+
*/
|
|
153177
|
+
export type ListEnumResumeOriginFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ResumeOrigin[]'>
|
|
153178
|
+
|
|
153179
|
+
|
|
153180
|
+
|
|
152984
153181
|
/**
|
|
152985
153182
|
* Reference to a field of type 'UsageSourceType'
|
|
152986
153183
|
*/
|
|
@@ -164307,6 +164504,16 @@ export namespace Prisma {
|
|
|
164307
164504
|
is_active?: BoolFilter<"Resume"> | boolean
|
|
164308
164505
|
name?: StringNullableFilter<"Resume"> | string | null
|
|
164309
164506
|
yearsOfExperience?: IntNullableFilter<"Resume"> | number | null
|
|
164507
|
+
status?: EnumResumeStatusNullableFilter<"Resume"> | $Enums.ResumeStatus | null
|
|
164508
|
+
origin?: EnumResumeOriginNullableFilter<"Resume"> | $Enums.ResumeOrigin | null
|
|
164509
|
+
intake_session_id?: StringNullableFilter<"Resume"> | string | null
|
|
164510
|
+
conversation_history?: JsonNullableFilter<"Resume">
|
|
164511
|
+
intake_progress?: IntNullableFilter<"Resume"> | number | null
|
|
164512
|
+
orion_execution_id?: StringNullableFilter<"Resume"> | string | null
|
|
164513
|
+
tailoring_jd_text?: StringNullableFilter<"Resume"> | string | null
|
|
164514
|
+
tailoring_jd_parsed?: JsonNullableFilter<"Resume">
|
|
164515
|
+
tailoring_gap_analysis?: JsonNullableFilter<"Resume">
|
|
164516
|
+
tailoring_draft?: JsonNullableFilter<"Resume">
|
|
164310
164517
|
user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
164311
164518
|
organisation?: XOR<OrganisationNullableScalarRelationFilter, OrganisationWhereInput> | null
|
|
164312
164519
|
job_description?: XOR<JobDescriptionNullableScalarRelationFilter, JobDescriptionWhereInput> | null
|
|
@@ -164338,6 +164545,16 @@ export namespace Prisma {
|
|
|
164338
164545
|
is_active?: SortOrder
|
|
164339
164546
|
name?: SortOrderInput | SortOrder
|
|
164340
164547
|
yearsOfExperience?: SortOrderInput | SortOrder
|
|
164548
|
+
status?: SortOrderInput | SortOrder
|
|
164549
|
+
origin?: SortOrderInput | SortOrder
|
|
164550
|
+
intake_session_id?: SortOrderInput | SortOrder
|
|
164551
|
+
conversation_history?: SortOrderInput | SortOrder
|
|
164552
|
+
intake_progress?: SortOrderInput | SortOrder
|
|
164553
|
+
orion_execution_id?: SortOrderInput | SortOrder
|
|
164554
|
+
tailoring_jd_text?: SortOrderInput | SortOrder
|
|
164555
|
+
tailoring_jd_parsed?: SortOrderInput | SortOrder
|
|
164556
|
+
tailoring_gap_analysis?: SortOrderInput | SortOrder
|
|
164557
|
+
tailoring_draft?: SortOrderInput | SortOrder
|
|
164341
164558
|
user?: UserOrderByWithRelationInput
|
|
164342
164559
|
organisation?: OrganisationOrderByWithRelationInput
|
|
164343
164560
|
job_description?: JobDescriptionOrderByWithRelationInput
|
|
@@ -164372,6 +164589,16 @@ export namespace Prisma {
|
|
|
164372
164589
|
is_active?: BoolFilter<"Resume"> | boolean
|
|
164373
164590
|
name?: StringNullableFilter<"Resume"> | string | null
|
|
164374
164591
|
yearsOfExperience?: IntNullableFilter<"Resume"> | number | null
|
|
164592
|
+
status?: EnumResumeStatusNullableFilter<"Resume"> | $Enums.ResumeStatus | null
|
|
164593
|
+
origin?: EnumResumeOriginNullableFilter<"Resume"> | $Enums.ResumeOrigin | null
|
|
164594
|
+
intake_session_id?: StringNullableFilter<"Resume"> | string | null
|
|
164595
|
+
conversation_history?: JsonNullableFilter<"Resume">
|
|
164596
|
+
intake_progress?: IntNullableFilter<"Resume"> | number | null
|
|
164597
|
+
orion_execution_id?: StringNullableFilter<"Resume"> | string | null
|
|
164598
|
+
tailoring_jd_text?: StringNullableFilter<"Resume"> | string | null
|
|
164599
|
+
tailoring_jd_parsed?: JsonNullableFilter<"Resume">
|
|
164600
|
+
tailoring_gap_analysis?: JsonNullableFilter<"Resume">
|
|
164601
|
+
tailoring_draft?: JsonNullableFilter<"Resume">
|
|
164375
164602
|
user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
164376
164603
|
organisation?: XOR<OrganisationNullableScalarRelationFilter, OrganisationWhereInput> | null
|
|
164377
164604
|
job_description?: XOR<JobDescriptionNullableScalarRelationFilter, JobDescriptionWhereInput> | null
|
|
@@ -164403,6 +164630,16 @@ export namespace Prisma {
|
|
|
164403
164630
|
is_active?: SortOrder
|
|
164404
164631
|
name?: SortOrderInput | SortOrder
|
|
164405
164632
|
yearsOfExperience?: SortOrderInput | SortOrder
|
|
164633
|
+
status?: SortOrderInput | SortOrder
|
|
164634
|
+
origin?: SortOrderInput | SortOrder
|
|
164635
|
+
intake_session_id?: SortOrderInput | SortOrder
|
|
164636
|
+
conversation_history?: SortOrderInput | SortOrder
|
|
164637
|
+
intake_progress?: SortOrderInput | SortOrder
|
|
164638
|
+
orion_execution_id?: SortOrderInput | SortOrder
|
|
164639
|
+
tailoring_jd_text?: SortOrderInput | SortOrder
|
|
164640
|
+
tailoring_jd_parsed?: SortOrderInput | SortOrder
|
|
164641
|
+
tailoring_gap_analysis?: SortOrderInput | SortOrder
|
|
164642
|
+
tailoring_draft?: SortOrderInput | SortOrder
|
|
164406
164643
|
_count?: ResumeCountOrderByAggregateInput
|
|
164407
164644
|
_avg?: ResumeAvgOrderByAggregateInput
|
|
164408
164645
|
_max?: ResumeMaxOrderByAggregateInput
|
|
@@ -164431,6 +164668,16 @@ export namespace Prisma {
|
|
|
164431
164668
|
is_active?: BoolWithAggregatesFilter<"Resume"> | boolean
|
|
164432
164669
|
name?: StringNullableWithAggregatesFilter<"Resume"> | string | null
|
|
164433
164670
|
yearsOfExperience?: IntNullableWithAggregatesFilter<"Resume"> | number | null
|
|
164671
|
+
status?: EnumResumeStatusNullableWithAggregatesFilter<"Resume"> | $Enums.ResumeStatus | null
|
|
164672
|
+
origin?: EnumResumeOriginNullableWithAggregatesFilter<"Resume"> | $Enums.ResumeOrigin | null
|
|
164673
|
+
intake_session_id?: StringNullableWithAggregatesFilter<"Resume"> | string | null
|
|
164674
|
+
conversation_history?: JsonNullableWithAggregatesFilter<"Resume">
|
|
164675
|
+
intake_progress?: IntNullableWithAggregatesFilter<"Resume"> | number | null
|
|
164676
|
+
orion_execution_id?: StringNullableWithAggregatesFilter<"Resume"> | string | null
|
|
164677
|
+
tailoring_jd_text?: StringNullableWithAggregatesFilter<"Resume"> | string | null
|
|
164678
|
+
tailoring_jd_parsed?: JsonNullableWithAggregatesFilter<"Resume">
|
|
164679
|
+
tailoring_gap_analysis?: JsonNullableWithAggregatesFilter<"Resume">
|
|
164680
|
+
tailoring_draft?: JsonNullableWithAggregatesFilter<"Resume">
|
|
164434
164681
|
}
|
|
164435
164682
|
|
|
164436
164683
|
export type ResumeDataWhereInput = {
|
|
@@ -165829,7 +166076,6 @@ export namespace Prisma {
|
|
|
165829
166076
|
created_by?: StringFilter<"User"> | string
|
|
165830
166077
|
updated_by?: StringFilter<"User"> | string
|
|
165831
166078
|
is_active?: BoolFilter<"User"> | boolean
|
|
165832
|
-
deleted_at?: DateTimeNullableFilter<"User"> | Date | string | null
|
|
165833
166079
|
is_self_registered?: BoolFilter<"User"> | boolean
|
|
165834
166080
|
permission_id?: StringNullableFilter<"User"> | string | null
|
|
165835
166081
|
preferences?: JsonNullableFilter<"User">
|
|
@@ -165912,7 +166158,6 @@ export namespace Prisma {
|
|
|
165912
166158
|
created_by?: SortOrder
|
|
165913
166159
|
updated_by?: SortOrder
|
|
165914
166160
|
is_active?: SortOrder
|
|
165915
|
-
deleted_at?: SortOrderInput | SortOrder
|
|
165916
166161
|
is_self_registered?: SortOrder
|
|
165917
166162
|
permission_id?: SortOrderInput | SortOrder
|
|
165918
166163
|
preferences?: SortOrderInput | SortOrder
|
|
@@ -166000,7 +166245,6 @@ export namespace Prisma {
|
|
|
166000
166245
|
created_by?: StringFilter<"User"> | string
|
|
166001
166246
|
updated_by?: StringFilter<"User"> | string
|
|
166002
166247
|
is_active?: BoolFilter<"User"> | boolean
|
|
166003
|
-
deleted_at?: DateTimeNullableFilter<"User"> | Date | string | null
|
|
166004
166248
|
is_self_registered?: BoolFilter<"User"> | boolean
|
|
166005
166249
|
preferences?: JsonNullableFilter<"User">
|
|
166006
166250
|
invitation_status?: EnumUserInvitationStatusFilter<"User"> | $Enums.UserInvitationStatus
|
|
@@ -166081,7 +166325,6 @@ export namespace Prisma {
|
|
|
166081
166325
|
created_by?: SortOrder
|
|
166082
166326
|
updated_by?: SortOrder
|
|
166083
166327
|
is_active?: SortOrder
|
|
166084
|
-
deleted_at?: SortOrderInput | SortOrder
|
|
166085
166328
|
is_self_registered?: SortOrder
|
|
166086
166329
|
permission_id?: SortOrderInput | SortOrder
|
|
166087
166330
|
preferences?: SortOrderInput | SortOrder
|
|
@@ -166134,7 +166377,6 @@ export namespace Prisma {
|
|
|
166134
166377
|
created_by?: StringWithAggregatesFilter<"User"> | string
|
|
166135
166378
|
updated_by?: StringWithAggregatesFilter<"User"> | string
|
|
166136
166379
|
is_active?: BoolWithAggregatesFilter<"User"> | boolean
|
|
166137
|
-
deleted_at?: DateTimeNullableWithAggregatesFilter<"User"> | Date | string | null
|
|
166138
166380
|
is_self_registered?: BoolWithAggregatesFilter<"User"> | boolean
|
|
166139
166381
|
permission_id?: StringNullableWithAggregatesFilter<"User"> | string | null
|
|
166140
166382
|
preferences?: JsonNullableWithAggregatesFilter<"User">
|
|
@@ -179697,6 +179939,16 @@ export namespace Prisma {
|
|
|
179697
179939
|
is_active?: boolean
|
|
179698
179940
|
name?: string | null
|
|
179699
179941
|
yearsOfExperience?: number | null
|
|
179942
|
+
status?: $Enums.ResumeStatus | null
|
|
179943
|
+
origin?: $Enums.ResumeOrigin | null
|
|
179944
|
+
intake_session_id?: string | null
|
|
179945
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
179946
|
+
intake_progress?: number | null
|
|
179947
|
+
orion_execution_id?: string | null
|
|
179948
|
+
tailoring_jd_text?: string | null
|
|
179949
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
179950
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
179951
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
179700
179952
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
179701
179953
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
179702
179954
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -179728,6 +179980,16 @@ export namespace Prisma {
|
|
|
179728
179980
|
is_active?: boolean
|
|
179729
179981
|
name?: string | null
|
|
179730
179982
|
yearsOfExperience?: number | null
|
|
179983
|
+
status?: $Enums.ResumeStatus | null
|
|
179984
|
+
origin?: $Enums.ResumeOrigin | null
|
|
179985
|
+
intake_session_id?: string | null
|
|
179986
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
179987
|
+
intake_progress?: number | null
|
|
179988
|
+
orion_execution_id?: string | null
|
|
179989
|
+
tailoring_jd_text?: string | null
|
|
179990
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
179991
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
179992
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
179731
179993
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
179732
179994
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
179733
179995
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -179749,6 +180011,16 @@ export namespace Prisma {
|
|
|
179749
180011
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
179750
180012
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
179751
180013
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180014
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
180015
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
180016
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180017
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
180018
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180019
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180020
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180021
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
180022
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
180023
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
179752
180024
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
179753
180025
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
179754
180026
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -179780,6 +180052,16 @@ export namespace Prisma {
|
|
|
179780
180052
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
179781
180053
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
179782
180054
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180055
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
180056
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
180057
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180058
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
180059
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180060
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180061
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180062
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
180063
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
180064
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
179783
180065
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
179784
180066
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
179785
180067
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -179806,6 +180088,16 @@ export namespace Prisma {
|
|
|
179806
180088
|
is_active?: boolean
|
|
179807
180089
|
name?: string | null
|
|
179808
180090
|
yearsOfExperience?: number | null
|
|
180091
|
+
status?: $Enums.ResumeStatus | null
|
|
180092
|
+
origin?: $Enums.ResumeOrigin | null
|
|
180093
|
+
intake_session_id?: string | null
|
|
180094
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
180095
|
+
intake_progress?: number | null
|
|
180096
|
+
orion_execution_id?: string | null
|
|
180097
|
+
tailoring_jd_text?: string | null
|
|
180098
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
180099
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
180100
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
179809
180101
|
}
|
|
179810
180102
|
|
|
179811
180103
|
export type ResumeUpdateManyMutationInput = {
|
|
@@ -179821,6 +180113,16 @@ export namespace Prisma {
|
|
|
179821
180113
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
179822
180114
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
179823
180115
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180116
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
180117
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
180118
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180119
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
180120
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180121
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180122
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180123
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
180124
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
180125
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
179824
180126
|
}
|
|
179825
180127
|
|
|
179826
180128
|
export type ResumeUncheckedUpdateManyInput = {
|
|
@@ -179841,6 +180143,16 @@ export namespace Prisma {
|
|
|
179841
180143
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
179842
180144
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
179843
180145
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180146
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
180147
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
180148
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180149
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
180150
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180151
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180152
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180153
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
180154
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
180155
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
179844
180156
|
}
|
|
179845
180157
|
|
|
179846
180158
|
export type ResumeDataCreateInput = {
|
|
@@ -181493,7 +181805,6 @@ export namespace Prisma {
|
|
|
181493
181805
|
created_by: string
|
|
181494
181806
|
updated_by: string
|
|
181495
181807
|
is_active?: boolean
|
|
181496
|
-
deleted_at?: Date | string | null
|
|
181497
181808
|
is_self_registered?: boolean
|
|
181498
181809
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
181499
181810
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -181575,7 +181886,6 @@ export namespace Prisma {
|
|
|
181575
181886
|
created_by: string
|
|
181576
181887
|
updated_by: string
|
|
181577
181888
|
is_active?: boolean
|
|
181578
|
-
deleted_at?: Date | string | null
|
|
181579
181889
|
is_self_registered?: boolean
|
|
181580
181890
|
permission_id?: string | null
|
|
181581
181891
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -181653,7 +181963,6 @@ export namespace Prisma {
|
|
|
181653
181963
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
181654
181964
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
181655
181965
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
181656
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
181657
181966
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
181658
181967
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
181659
181968
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -181735,7 +182044,6 @@ export namespace Prisma {
|
|
|
181735
182044
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
181736
182045
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
181737
182046
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
181738
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
181739
182047
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
181740
182048
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
181741
182049
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -181815,7 +182123,6 @@ export namespace Prisma {
|
|
|
181815
182123
|
created_by: string
|
|
181816
182124
|
updated_by: string
|
|
181817
182125
|
is_active?: boolean
|
|
181818
|
-
deleted_at?: Date | string | null
|
|
181819
182126
|
is_self_registered?: boolean
|
|
181820
182127
|
permission_id?: string | null
|
|
181821
182128
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -181858,7 +182165,6 @@ export namespace Prisma {
|
|
|
181858
182165
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
181859
182166
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
181860
182167
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
181861
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
181862
182168
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
181863
182169
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
181864
182170
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -181902,7 +182208,6 @@ export namespace Prisma {
|
|
|
181902
182208
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
181903
182209
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
181904
182210
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
181905
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
181906
182211
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
181907
182212
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
181908
182213
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -191304,6 +191609,20 @@ export namespace Prisma {
|
|
|
191304
191609
|
recruiter_user_id?: SortOrder
|
|
191305
191610
|
}
|
|
191306
191611
|
|
|
191612
|
+
export type EnumResumeStatusNullableFilter<$PrismaModel = never> = {
|
|
191613
|
+
equals?: $Enums.ResumeStatus | EnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
191614
|
+
in?: $Enums.ResumeStatus[] | ListEnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
191615
|
+
notIn?: $Enums.ResumeStatus[] | ListEnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
191616
|
+
not?: NestedEnumResumeStatusNullableFilter<$PrismaModel> | $Enums.ResumeStatus | null
|
|
191617
|
+
}
|
|
191618
|
+
|
|
191619
|
+
export type EnumResumeOriginNullableFilter<$PrismaModel = never> = {
|
|
191620
|
+
equals?: $Enums.ResumeOrigin | EnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
191621
|
+
in?: $Enums.ResumeOrigin[] | ListEnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
191622
|
+
notIn?: $Enums.ResumeOrigin[] | ListEnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
191623
|
+
not?: NestedEnumResumeOriginNullableFilter<$PrismaModel> | $Enums.ResumeOrigin | null
|
|
191624
|
+
}
|
|
191625
|
+
|
|
191307
191626
|
export type ResumeDataListRelationFilter = {
|
|
191308
191627
|
every?: ResumeDataWhereInput
|
|
191309
191628
|
some?: ResumeDataWhereInput
|
|
@@ -191332,10 +191651,21 @@ export namespace Prisma {
|
|
|
191332
191651
|
is_active?: SortOrder
|
|
191333
191652
|
name?: SortOrder
|
|
191334
191653
|
yearsOfExperience?: SortOrder
|
|
191654
|
+
status?: SortOrder
|
|
191655
|
+
origin?: SortOrder
|
|
191656
|
+
intake_session_id?: SortOrder
|
|
191657
|
+
conversation_history?: SortOrder
|
|
191658
|
+
intake_progress?: SortOrder
|
|
191659
|
+
orion_execution_id?: SortOrder
|
|
191660
|
+
tailoring_jd_text?: SortOrder
|
|
191661
|
+
tailoring_jd_parsed?: SortOrder
|
|
191662
|
+
tailoring_gap_analysis?: SortOrder
|
|
191663
|
+
tailoring_draft?: SortOrder
|
|
191335
191664
|
}
|
|
191336
191665
|
|
|
191337
191666
|
export type ResumeAvgOrderByAggregateInput = {
|
|
191338
191667
|
yearsOfExperience?: SortOrder
|
|
191668
|
+
intake_progress?: SortOrder
|
|
191339
191669
|
}
|
|
191340
191670
|
|
|
191341
191671
|
export type ResumeMaxOrderByAggregateInput = {
|
|
@@ -191355,6 +191685,12 @@ export namespace Prisma {
|
|
|
191355
191685
|
is_active?: SortOrder
|
|
191356
191686
|
name?: SortOrder
|
|
191357
191687
|
yearsOfExperience?: SortOrder
|
|
191688
|
+
status?: SortOrder
|
|
191689
|
+
origin?: SortOrder
|
|
191690
|
+
intake_session_id?: SortOrder
|
|
191691
|
+
intake_progress?: SortOrder
|
|
191692
|
+
orion_execution_id?: SortOrder
|
|
191693
|
+
tailoring_jd_text?: SortOrder
|
|
191358
191694
|
}
|
|
191359
191695
|
|
|
191360
191696
|
export type ResumeMinOrderByAggregateInput = {
|
|
@@ -191374,10 +191710,37 @@ export namespace Prisma {
|
|
|
191374
191710
|
is_active?: SortOrder
|
|
191375
191711
|
name?: SortOrder
|
|
191376
191712
|
yearsOfExperience?: SortOrder
|
|
191713
|
+
status?: SortOrder
|
|
191714
|
+
origin?: SortOrder
|
|
191715
|
+
intake_session_id?: SortOrder
|
|
191716
|
+
intake_progress?: SortOrder
|
|
191717
|
+
orion_execution_id?: SortOrder
|
|
191718
|
+
tailoring_jd_text?: SortOrder
|
|
191377
191719
|
}
|
|
191378
191720
|
|
|
191379
191721
|
export type ResumeSumOrderByAggregateInput = {
|
|
191380
191722
|
yearsOfExperience?: SortOrder
|
|
191723
|
+
intake_progress?: SortOrder
|
|
191724
|
+
}
|
|
191725
|
+
|
|
191726
|
+
export type EnumResumeStatusNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
191727
|
+
equals?: $Enums.ResumeStatus | EnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
191728
|
+
in?: $Enums.ResumeStatus[] | ListEnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
191729
|
+
notIn?: $Enums.ResumeStatus[] | ListEnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
191730
|
+
not?: NestedEnumResumeStatusNullableWithAggregatesFilter<$PrismaModel> | $Enums.ResumeStatus | null
|
|
191731
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
191732
|
+
_min?: NestedEnumResumeStatusNullableFilter<$PrismaModel>
|
|
191733
|
+
_max?: NestedEnumResumeStatusNullableFilter<$PrismaModel>
|
|
191734
|
+
}
|
|
191735
|
+
|
|
191736
|
+
export type EnumResumeOriginNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
191737
|
+
equals?: $Enums.ResumeOrigin | EnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
191738
|
+
in?: $Enums.ResumeOrigin[] | ListEnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
191739
|
+
notIn?: $Enums.ResumeOrigin[] | ListEnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
191740
|
+
not?: NestedEnumResumeOriginNullableWithAggregatesFilter<$PrismaModel> | $Enums.ResumeOrigin | null
|
|
191741
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
191742
|
+
_min?: NestedEnumResumeOriginNullableFilter<$PrismaModel>
|
|
191743
|
+
_max?: NestedEnumResumeOriginNullableFilter<$PrismaModel>
|
|
191381
191744
|
}
|
|
191382
191745
|
|
|
191383
191746
|
export type ResumeDataCountOrderByAggregateInput = {
|
|
@@ -192384,7 +192747,6 @@ export namespace Prisma {
|
|
|
192384
192747
|
created_by?: SortOrder
|
|
192385
192748
|
updated_by?: SortOrder
|
|
192386
192749
|
is_active?: SortOrder
|
|
192387
|
-
deleted_at?: SortOrder
|
|
192388
192750
|
is_self_registered?: SortOrder
|
|
192389
192751
|
permission_id?: SortOrder
|
|
192390
192752
|
preferences?: SortOrder
|
|
@@ -192433,7 +192795,6 @@ export namespace Prisma {
|
|
|
192433
192795
|
created_by?: SortOrder
|
|
192434
192796
|
updated_by?: SortOrder
|
|
192435
192797
|
is_active?: SortOrder
|
|
192436
|
-
deleted_at?: SortOrder
|
|
192437
192798
|
is_self_registered?: SortOrder
|
|
192438
192799
|
permission_id?: SortOrder
|
|
192439
192800
|
invitation_status?: SortOrder
|
|
@@ -192474,7 +192835,6 @@ export namespace Prisma {
|
|
|
192474
192835
|
created_by?: SortOrder
|
|
192475
192836
|
updated_by?: SortOrder
|
|
192476
192837
|
is_active?: SortOrder
|
|
192477
|
-
deleted_at?: SortOrder
|
|
192478
192838
|
is_self_registered?: SortOrder
|
|
192479
192839
|
permission_id?: SortOrder
|
|
192480
192840
|
invitation_status?: SortOrder
|
|
@@ -201627,6 +201987,14 @@ export namespace Prisma {
|
|
|
201627
201987
|
connect?: CandidateProfileWhereUniqueInput
|
|
201628
201988
|
}
|
|
201629
201989
|
|
|
201990
|
+
export type NullableEnumResumeStatusFieldUpdateOperationsInput = {
|
|
201991
|
+
set?: $Enums.ResumeStatus | null
|
|
201992
|
+
}
|
|
201993
|
+
|
|
201994
|
+
export type NullableEnumResumeOriginFieldUpdateOperationsInput = {
|
|
201995
|
+
set?: $Enums.ResumeOrigin | null
|
|
201996
|
+
}
|
|
201997
|
+
|
|
201630
201998
|
export type UserUpdateOneWithoutResumeNestedInput = {
|
|
201631
201999
|
create?: XOR<UserCreateWithoutResumeInput, UserUncheckedCreateWithoutResumeInput>
|
|
201632
202000
|
connectOrCreate?: UserCreateOrConnectWithoutResumeInput
|
|
@@ -205547,6 +205915,40 @@ export namespace Prisma {
|
|
|
205547
205915
|
_max?: NestedEnumDifficultyNullableFilter<$PrismaModel>
|
|
205548
205916
|
}
|
|
205549
205917
|
|
|
205918
|
+
export type NestedEnumResumeStatusNullableFilter<$PrismaModel = never> = {
|
|
205919
|
+
equals?: $Enums.ResumeStatus | EnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
205920
|
+
in?: $Enums.ResumeStatus[] | ListEnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
205921
|
+
notIn?: $Enums.ResumeStatus[] | ListEnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
205922
|
+
not?: NestedEnumResumeStatusNullableFilter<$PrismaModel> | $Enums.ResumeStatus | null
|
|
205923
|
+
}
|
|
205924
|
+
|
|
205925
|
+
export type NestedEnumResumeOriginNullableFilter<$PrismaModel = never> = {
|
|
205926
|
+
equals?: $Enums.ResumeOrigin | EnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
205927
|
+
in?: $Enums.ResumeOrigin[] | ListEnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
205928
|
+
notIn?: $Enums.ResumeOrigin[] | ListEnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
205929
|
+
not?: NestedEnumResumeOriginNullableFilter<$PrismaModel> | $Enums.ResumeOrigin | null
|
|
205930
|
+
}
|
|
205931
|
+
|
|
205932
|
+
export type NestedEnumResumeStatusNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
205933
|
+
equals?: $Enums.ResumeStatus | EnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
205934
|
+
in?: $Enums.ResumeStatus[] | ListEnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
205935
|
+
notIn?: $Enums.ResumeStatus[] | ListEnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
205936
|
+
not?: NestedEnumResumeStatusNullableWithAggregatesFilter<$PrismaModel> | $Enums.ResumeStatus | null
|
|
205937
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
205938
|
+
_min?: NestedEnumResumeStatusNullableFilter<$PrismaModel>
|
|
205939
|
+
_max?: NestedEnumResumeStatusNullableFilter<$PrismaModel>
|
|
205940
|
+
}
|
|
205941
|
+
|
|
205942
|
+
export type NestedEnumResumeOriginNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
205943
|
+
equals?: $Enums.ResumeOrigin | EnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
205944
|
+
in?: $Enums.ResumeOrigin[] | ListEnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
205945
|
+
notIn?: $Enums.ResumeOrigin[] | ListEnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
205946
|
+
not?: NestedEnumResumeOriginNullableWithAggregatesFilter<$PrismaModel> | $Enums.ResumeOrigin | null
|
|
205947
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
205948
|
+
_min?: NestedEnumResumeOriginNullableFilter<$PrismaModel>
|
|
205949
|
+
_max?: NestedEnumResumeOriginNullableFilter<$PrismaModel>
|
|
205950
|
+
}
|
|
205951
|
+
|
|
205550
205952
|
export type NestedEnumUsageSourceTypeFilter<$PrismaModel = never> = {
|
|
205551
205953
|
equals?: $Enums.UsageSourceType | EnumUsageSourceTypeFieldRefInput<$PrismaModel>
|
|
205552
205954
|
in?: $Enums.UsageSourceType[] | ListEnumUsageSourceTypeFieldRefInput<$PrismaModel>
|
|
@@ -205760,7 +206162,6 @@ export namespace Prisma {
|
|
|
205760
206162
|
created_by: string
|
|
205761
206163
|
updated_by: string
|
|
205762
206164
|
is_active?: boolean
|
|
205763
|
-
deleted_at?: Date | string | null
|
|
205764
206165
|
is_self_registered?: boolean
|
|
205765
206166
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
205766
206167
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -205841,7 +206242,6 @@ export namespace Prisma {
|
|
|
205841
206242
|
created_by: string
|
|
205842
206243
|
updated_by: string
|
|
205843
206244
|
is_active?: boolean
|
|
205844
|
-
deleted_at?: Date | string | null
|
|
205845
206245
|
is_self_registered?: boolean
|
|
205846
206246
|
permission_id?: string | null
|
|
205847
206247
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -206046,7 +206446,6 @@ export namespace Prisma {
|
|
|
206046
206446
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
206047
206447
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
206048
206448
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
206049
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
206050
206449
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
206051
206450
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
206052
206451
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -206127,7 +206526,6 @@ export namespace Prisma {
|
|
|
206127
206526
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
206128
206527
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
206129
206528
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
206130
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
206131
206529
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
206132
206530
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
206133
206531
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -206368,7 +206766,6 @@ export namespace Prisma {
|
|
|
206368
206766
|
created_by: string
|
|
206369
206767
|
updated_by: string
|
|
206370
206768
|
is_active?: boolean
|
|
206371
|
-
deleted_at?: Date | string | null
|
|
206372
206769
|
is_self_registered?: boolean
|
|
206373
206770
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
206374
206771
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -206448,7 +206845,6 @@ export namespace Prisma {
|
|
|
206448
206845
|
created_by: string
|
|
206449
206846
|
updated_by: string
|
|
206450
206847
|
is_active?: boolean
|
|
206451
|
-
deleted_at?: Date | string | null
|
|
206452
206848
|
is_self_registered?: boolean
|
|
206453
206849
|
permission_id?: string | null
|
|
206454
206850
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -206733,7 +207129,6 @@ export namespace Prisma {
|
|
|
206733
207129
|
created_by?: StringFilter<"User"> | string
|
|
206734
207130
|
updated_by?: StringFilter<"User"> | string
|
|
206735
207131
|
is_active?: BoolFilter<"User"> | boolean
|
|
206736
|
-
deleted_at?: DateTimeNullableFilter<"User"> | Date | string | null
|
|
206737
207132
|
is_self_registered?: BoolFilter<"User"> | boolean
|
|
206738
207133
|
permission_id?: StringNullableFilter<"User"> | string | null
|
|
206739
207134
|
preferences?: JsonNullableFilter<"User">
|
|
@@ -206776,7 +207171,6 @@ export namespace Prisma {
|
|
|
206776
207171
|
created_by: string
|
|
206777
207172
|
updated_by: string
|
|
206778
207173
|
is_active?: boolean
|
|
206779
|
-
deleted_at?: Date | string | null
|
|
206780
207174
|
is_self_registered?: boolean
|
|
206781
207175
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
206782
207176
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -206857,7 +207251,6 @@ export namespace Prisma {
|
|
|
206857
207251
|
created_by: string
|
|
206858
207252
|
updated_by: string
|
|
206859
207253
|
is_active?: boolean
|
|
206860
|
-
deleted_at?: Date | string | null
|
|
206861
207254
|
is_self_registered?: boolean
|
|
206862
207255
|
permission_id?: string | null
|
|
206863
207256
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -207087,7 +207480,6 @@ export namespace Prisma {
|
|
|
207087
207480
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
207088
207481
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
207089
207482
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
207090
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
207091
207483
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
207092
207484
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
207093
207485
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -207168,7 +207560,6 @@ export namespace Prisma {
|
|
|
207168
207560
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
207169
207561
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
207170
207562
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
207171
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
207172
207563
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
207173
207564
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
207174
207565
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -207668,7 +208059,6 @@ export namespace Prisma {
|
|
|
207668
208059
|
created_by: string
|
|
207669
208060
|
updated_by: string
|
|
207670
208061
|
is_active?: boolean
|
|
207671
|
-
deleted_at?: Date | string | null
|
|
207672
208062
|
is_self_registered?: boolean
|
|
207673
208063
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
207674
208064
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -207749,7 +208139,6 @@ export namespace Prisma {
|
|
|
207749
208139
|
created_by: string
|
|
207750
208140
|
updated_by: string
|
|
207751
208141
|
is_active?: boolean
|
|
207752
|
-
deleted_at?: Date | string | null
|
|
207753
208142
|
is_self_registered?: boolean
|
|
207754
208143
|
permission_id?: string | null
|
|
207755
208144
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -207935,7 +208324,6 @@ export namespace Prisma {
|
|
|
207935
208324
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
207936
208325
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
207937
208326
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
207938
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
207939
208327
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
207940
208328
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
207941
208329
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -208016,7 +208404,6 @@ export namespace Prisma {
|
|
|
208016
208404
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
208017
208405
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
208018
208406
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
208019
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
208020
208407
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
208021
208408
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
208022
208409
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -208263,7 +208650,6 @@ export namespace Prisma {
|
|
|
208263
208650
|
created_by: string
|
|
208264
208651
|
updated_by: string
|
|
208265
208652
|
is_active?: boolean
|
|
208266
|
-
deleted_at?: Date | string | null
|
|
208267
208653
|
is_self_registered?: boolean
|
|
208268
208654
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
208269
208655
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -208344,7 +208730,6 @@ export namespace Prisma {
|
|
|
208344
208730
|
created_by: string
|
|
208345
208731
|
updated_by: string
|
|
208346
208732
|
is_active?: boolean
|
|
208347
|
-
deleted_at?: Date | string | null
|
|
208348
208733
|
is_self_registered?: boolean
|
|
208349
208734
|
permission_id?: string | null
|
|
208350
208735
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -208565,6 +208950,16 @@ export namespace Prisma {
|
|
|
208565
208950
|
is_active?: boolean
|
|
208566
208951
|
name?: string | null
|
|
208567
208952
|
yearsOfExperience?: number | null
|
|
208953
|
+
status?: $Enums.ResumeStatus | null
|
|
208954
|
+
origin?: $Enums.ResumeOrigin | null
|
|
208955
|
+
intake_session_id?: string | null
|
|
208956
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
208957
|
+
intake_progress?: number | null
|
|
208958
|
+
orion_execution_id?: string | null
|
|
208959
|
+
tailoring_jd_text?: string | null
|
|
208960
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
208961
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
208962
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
208568
208963
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
208569
208964
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
208570
208965
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -208595,6 +208990,16 @@ export namespace Prisma {
|
|
|
208595
208990
|
is_active?: boolean
|
|
208596
208991
|
name?: string | null
|
|
208597
208992
|
yearsOfExperience?: number | null
|
|
208993
|
+
status?: $Enums.ResumeStatus | null
|
|
208994
|
+
origin?: $Enums.ResumeOrigin | null
|
|
208995
|
+
intake_session_id?: string | null
|
|
208996
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
208997
|
+
intake_progress?: number | null
|
|
208998
|
+
orion_execution_id?: string | null
|
|
208999
|
+
tailoring_jd_text?: string | null
|
|
209000
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
209001
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
209002
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
208598
209003
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
208599
209004
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
208600
209005
|
resume_data?: ResumeDataUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -208774,7 +209179,6 @@ export namespace Prisma {
|
|
|
208774
209179
|
created_by: string
|
|
208775
209180
|
updated_by: string
|
|
208776
209181
|
is_active?: boolean
|
|
208777
|
-
deleted_at?: Date | string | null
|
|
208778
209182
|
is_self_registered?: boolean
|
|
208779
209183
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
208780
209184
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -208855,7 +209259,6 @@ export namespace Prisma {
|
|
|
208855
209259
|
created_by: string
|
|
208856
209260
|
updated_by: string
|
|
208857
209261
|
is_active?: boolean
|
|
208858
|
-
deleted_at?: Date | string | null
|
|
208859
209262
|
is_self_registered?: boolean
|
|
208860
209263
|
permission_id?: string | null
|
|
208861
209264
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -209702,7 +210105,6 @@ export namespace Prisma {
|
|
|
209702
210105
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
209703
210106
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
209704
210107
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
209705
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
209706
210108
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
209707
210109
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
209708
210110
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -209783,7 +210185,6 @@ export namespace Prisma {
|
|
|
209783
210185
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
209784
210186
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
209785
210187
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
209786
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
209787
210188
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
209788
210189
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
209789
210190
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -210016,6 +210417,16 @@ export namespace Prisma {
|
|
|
210016
210417
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
210017
210418
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210018
210419
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
210420
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
210421
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
210422
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210423
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
210424
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
210425
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210426
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210427
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
210428
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
210429
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
210019
210430
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
210020
210431
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
210021
210432
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -210046,6 +210457,16 @@ export namespace Prisma {
|
|
|
210046
210457
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
210047
210458
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210048
210459
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
210460
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
210461
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
210462
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210463
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
210464
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
210465
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210466
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210467
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
210468
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
210469
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
210049
210470
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
210050
210471
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
210051
210472
|
resume_data?: ResumeDataUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -210243,7 +210664,6 @@ export namespace Prisma {
|
|
|
210243
210664
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
210244
210665
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
210245
210666
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
210246
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
210247
210667
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
210248
210668
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
210249
210669
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -210324,7 +210744,6 @@ export namespace Prisma {
|
|
|
210324
210744
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
210325
210745
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
210326
210746
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
210327
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
210328
210747
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
210329
210748
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210330
210749
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -211063,7 +211482,6 @@ export namespace Prisma {
|
|
|
211063
211482
|
created_by: string
|
|
211064
211483
|
updated_by: string
|
|
211065
211484
|
is_active?: boolean
|
|
211066
|
-
deleted_at?: Date | string | null
|
|
211067
211485
|
is_self_registered?: boolean
|
|
211068
211486
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
211069
211487
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -211144,7 +211562,6 @@ export namespace Prisma {
|
|
|
211144
211562
|
created_by: string
|
|
211145
211563
|
updated_by: string
|
|
211146
211564
|
is_active?: boolean
|
|
211147
|
-
deleted_at?: Date | string | null
|
|
211148
211565
|
is_self_registered?: boolean
|
|
211149
211566
|
permission_id?: string | null
|
|
211150
211567
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -211489,7 +211906,6 @@ export namespace Prisma {
|
|
|
211489
211906
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
211490
211907
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
211491
211908
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
211492
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
211493
211909
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
211494
211910
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
211495
211911
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -211570,7 +211986,6 @@ export namespace Prisma {
|
|
|
211570
211986
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
211571
211987
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
211572
211988
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
211573
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
211574
211989
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
211575
211990
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
211576
211991
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -211829,7 +212244,6 @@ export namespace Prisma {
|
|
|
211829
212244
|
created_by: string
|
|
211830
212245
|
updated_by: string
|
|
211831
212246
|
is_active?: boolean
|
|
211832
|
-
deleted_at?: Date | string | null
|
|
211833
212247
|
is_self_registered?: boolean
|
|
211834
212248
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
211835
212249
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -211910,7 +212324,6 @@ export namespace Prisma {
|
|
|
211910
212324
|
created_by: string
|
|
211911
212325
|
updated_by: string
|
|
211912
212326
|
is_active?: boolean
|
|
211913
|
-
deleted_at?: Date | string | null
|
|
211914
212327
|
is_self_registered?: boolean
|
|
211915
212328
|
permission_id?: string | null
|
|
211916
212329
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -211992,7 +212405,6 @@ export namespace Prisma {
|
|
|
211992
212405
|
created_by: string
|
|
211993
212406
|
updated_by: string
|
|
211994
212407
|
is_active?: boolean
|
|
211995
|
-
deleted_at?: Date | string | null
|
|
211996
212408
|
is_self_registered?: boolean
|
|
211997
212409
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
211998
212410
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -212073,7 +212485,6 @@ export namespace Prisma {
|
|
|
212073
212485
|
created_by: string
|
|
212074
212486
|
updated_by: string
|
|
212075
212487
|
is_active?: boolean
|
|
212076
|
-
deleted_at?: Date | string | null
|
|
212077
212488
|
is_self_registered?: boolean
|
|
212078
212489
|
permission_id?: string | null
|
|
212079
212490
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -212350,7 +212761,6 @@ export namespace Prisma {
|
|
|
212350
212761
|
created_by: string
|
|
212351
212762
|
updated_by: string
|
|
212352
212763
|
is_active?: boolean
|
|
212353
|
-
deleted_at?: Date | string | null
|
|
212354
212764
|
is_self_registered?: boolean
|
|
212355
212765
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
212356
212766
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -212431,7 +212841,6 @@ export namespace Prisma {
|
|
|
212431
212841
|
created_by: string
|
|
212432
212842
|
updated_by: string
|
|
212433
212843
|
is_active?: boolean
|
|
212434
|
-
deleted_at?: Date | string | null
|
|
212435
212844
|
is_self_registered?: boolean
|
|
212436
212845
|
permission_id?: string | null
|
|
212437
212846
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -212656,7 +213065,6 @@ export namespace Prisma {
|
|
|
212656
213065
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
212657
213066
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
212658
213067
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
212659
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
212660
213068
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
212661
213069
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
212662
213070
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -212737,7 +213145,6 @@ export namespace Prisma {
|
|
|
212737
213145
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
212738
213146
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
212739
213147
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
212740
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
212741
213148
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
212742
213149
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
212743
213150
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -212825,7 +213232,6 @@ export namespace Prisma {
|
|
|
212825
213232
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
212826
213233
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
212827
213234
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
212828
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
212829
213235
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
212830
213236
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
212831
213237
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -212906,7 +213312,6 @@ export namespace Prisma {
|
|
|
212906
213312
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
212907
213313
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
212908
213314
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
212909
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
212910
213315
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
212911
213316
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
212912
213317
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -213196,7 +213601,6 @@ export namespace Prisma {
|
|
|
213196
213601
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
213197
213602
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
213198
213603
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
213199
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
213200
213604
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
213201
213605
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
213202
213606
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -213277,7 +213681,6 @@ export namespace Prisma {
|
|
|
213277
213681
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
213278
213682
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
213279
213683
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
213280
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
213281
213684
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
213282
213685
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
213283
213686
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -214254,7 +214657,6 @@ export namespace Prisma {
|
|
|
214254
214657
|
created_by: string
|
|
214255
214658
|
updated_by: string
|
|
214256
214659
|
is_active?: boolean
|
|
214257
|
-
deleted_at?: Date | string | null
|
|
214258
214660
|
is_self_registered?: boolean
|
|
214259
214661
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
214260
214662
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -214335,7 +214737,6 @@ export namespace Prisma {
|
|
|
214335
214737
|
created_by: string
|
|
214336
214738
|
updated_by: string
|
|
214337
214739
|
is_active?: boolean
|
|
214338
|
-
deleted_at?: Date | string | null
|
|
214339
214740
|
is_self_registered?: boolean
|
|
214340
214741
|
permission_id?: string | null
|
|
214341
214742
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -214450,7 +214851,6 @@ export namespace Prisma {
|
|
|
214450
214851
|
created_by: string
|
|
214451
214852
|
updated_by: string
|
|
214452
214853
|
is_active?: boolean
|
|
214453
|
-
deleted_at?: Date | string | null
|
|
214454
214854
|
is_self_registered?: boolean
|
|
214455
214855
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
214456
214856
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -214531,7 +214931,6 @@ export namespace Prisma {
|
|
|
214531
214931
|
created_by: string
|
|
214532
214932
|
updated_by: string
|
|
214533
214933
|
is_active?: boolean
|
|
214534
|
-
deleted_at?: Date | string | null
|
|
214535
214934
|
is_self_registered?: boolean
|
|
214536
214935
|
permission_id?: string | null
|
|
214537
214936
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -215196,7 +215595,6 @@ export namespace Prisma {
|
|
|
215196
215595
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
215197
215596
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
215198
215597
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
215199
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
215200
215598
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
215201
215599
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
215202
215600
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -215277,7 +215675,6 @@ export namespace Prisma {
|
|
|
215277
215675
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
215278
215676
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
215279
215677
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
215280
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
215281
215678
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
215282
215679
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
215283
215680
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -215404,7 +215801,6 @@ export namespace Prisma {
|
|
|
215404
215801
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
215405
215802
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
215406
215803
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
215407
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
215408
215804
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
215409
215805
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
215410
215806
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -215485,7 +215881,6 @@ export namespace Prisma {
|
|
|
215485
215881
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
215486
215882
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
215487
215883
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
215488
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
215489
215884
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
215490
215885
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
215491
215886
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -216844,7 +217239,6 @@ export namespace Prisma {
|
|
|
216844
217239
|
created_by: string
|
|
216845
217240
|
updated_by: string
|
|
216846
217241
|
is_active?: boolean
|
|
216847
|
-
deleted_at?: Date | string | null
|
|
216848
217242
|
is_self_registered?: boolean
|
|
216849
217243
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
216850
217244
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -216925,7 +217319,6 @@ export namespace Prisma {
|
|
|
216925
217319
|
created_by: string
|
|
216926
217320
|
updated_by: string
|
|
216927
217321
|
is_active?: boolean
|
|
216928
|
-
deleted_at?: Date | string | null
|
|
216929
217322
|
is_self_registered?: boolean
|
|
216930
217323
|
permission_id?: string | null
|
|
216931
217324
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -217018,7 +217411,6 @@ export namespace Prisma {
|
|
|
217018
217411
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
217019
217412
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
217020
217413
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
217021
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
217022
217414
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
217023
217415
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
217024
217416
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -217099,7 +217491,6 @@ export namespace Prisma {
|
|
|
217099
217491
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
217100
217492
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
217101
217493
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
217102
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
217103
217494
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
217104
217495
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
217105
217496
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -217516,7 +217907,6 @@ export namespace Prisma {
|
|
|
217516
217907
|
created_by: string
|
|
217517
217908
|
updated_by: string
|
|
217518
217909
|
is_active?: boolean
|
|
217519
|
-
deleted_at?: Date | string | null
|
|
217520
217910
|
is_self_registered?: boolean
|
|
217521
217911
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
217522
217912
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -217597,7 +217987,6 @@ export namespace Prisma {
|
|
|
217597
217987
|
created_by: string
|
|
217598
217988
|
updated_by: string
|
|
217599
217989
|
is_active?: boolean
|
|
217600
|
-
deleted_at?: Date | string | null
|
|
217601
217990
|
is_self_registered?: boolean
|
|
217602
217991
|
permission_id?: string | null
|
|
217603
217992
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -217690,7 +218079,6 @@ export namespace Prisma {
|
|
|
217690
218079
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
217691
218080
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
217692
218081
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
217693
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
217694
218082
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
217695
218083
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
217696
218084
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -217771,7 +218159,6 @@ export namespace Prisma {
|
|
|
217771
218159
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
217772
218160
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
217773
218161
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
217774
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
217775
218162
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
217776
218163
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
217777
218164
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -217848,7 +218235,6 @@ export namespace Prisma {
|
|
|
217848
218235
|
created_by: string
|
|
217849
218236
|
updated_by: string
|
|
217850
218237
|
is_active?: boolean
|
|
217851
|
-
deleted_at?: Date | string | null
|
|
217852
218238
|
is_self_registered?: boolean
|
|
217853
218239
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
217854
218240
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -217929,7 +218315,6 @@ export namespace Prisma {
|
|
|
217929
218315
|
created_by: string
|
|
217930
218316
|
updated_by: string
|
|
217931
218317
|
is_active?: boolean
|
|
217932
|
-
deleted_at?: Date | string | null
|
|
217933
218318
|
is_self_registered?: boolean
|
|
217934
218319
|
permission_id?: string | null
|
|
217935
218320
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -218013,6 +218398,16 @@ export namespace Prisma {
|
|
|
218013
218398
|
is_active?: boolean
|
|
218014
218399
|
name?: string | null
|
|
218015
218400
|
yearsOfExperience?: number | null
|
|
218401
|
+
status?: $Enums.ResumeStatus | null
|
|
218402
|
+
origin?: $Enums.ResumeOrigin | null
|
|
218403
|
+
intake_session_id?: string | null
|
|
218404
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
218405
|
+
intake_progress?: number | null
|
|
218406
|
+
orion_execution_id?: string | null
|
|
218407
|
+
tailoring_jd_text?: string | null
|
|
218408
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
218409
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
218410
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
218016
218411
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
218017
218412
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
218018
218413
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -218043,6 +218438,16 @@ export namespace Prisma {
|
|
|
218043
218438
|
is_active?: boolean
|
|
218044
218439
|
name?: string | null
|
|
218045
218440
|
yearsOfExperience?: number | null
|
|
218441
|
+
status?: $Enums.ResumeStatus | null
|
|
218442
|
+
origin?: $Enums.ResumeOrigin | null
|
|
218443
|
+
intake_session_id?: string | null
|
|
218444
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
218445
|
+
intake_progress?: number | null
|
|
218446
|
+
orion_execution_id?: string | null
|
|
218447
|
+
tailoring_jd_text?: string | null
|
|
218448
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
218449
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
218450
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
218046
218451
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
218047
218452
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
218048
218453
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -218113,7 +218518,6 @@ export namespace Prisma {
|
|
|
218113
218518
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
218114
218519
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
218115
218520
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
218116
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
218117
218521
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
218118
218522
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
218119
218523
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -218194,7 +218598,6 @@ export namespace Prisma {
|
|
|
218194
218598
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
218195
218599
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
218196
218600
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
218197
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
218198
218601
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
218199
218602
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218200
218603
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -218284,6 +218687,16 @@ export namespace Prisma {
|
|
|
218284
218687
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
218285
218688
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218286
218689
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
218690
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
218691
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
218692
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218693
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
218694
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
218695
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218696
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218697
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
218698
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
218699
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
218287
218700
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
218288
218701
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
218289
218702
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -218314,6 +218727,16 @@ export namespace Prisma {
|
|
|
218314
218727
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
218315
218728
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218316
218729
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
218730
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
218731
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
218732
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218733
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
218734
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
218735
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218736
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218737
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
218738
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
218739
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
218317
218740
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
218318
218741
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
218319
218742
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -221902,7 +222325,6 @@ export namespace Prisma {
|
|
|
221902
222325
|
created_by: string
|
|
221903
222326
|
updated_by: string
|
|
221904
222327
|
is_active?: boolean
|
|
221905
|
-
deleted_at?: Date | string | null
|
|
221906
222328
|
is_self_registered?: boolean
|
|
221907
222329
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
221908
222330
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -221983,7 +222405,6 @@ export namespace Prisma {
|
|
|
221983
222405
|
created_by: string
|
|
221984
222406
|
updated_by: string
|
|
221985
222407
|
is_active?: boolean
|
|
221986
|
-
deleted_at?: Date | string | null
|
|
221987
222408
|
is_self_registered?: boolean
|
|
221988
222409
|
permission_id?: string | null
|
|
221989
222410
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -222125,7 +222546,6 @@ export namespace Prisma {
|
|
|
222125
222546
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
222126
222547
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
222127
222548
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
222128
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
222129
222549
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
222130
222550
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
222131
222551
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -222206,7 +222626,6 @@ export namespace Prisma {
|
|
|
222206
222626
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
222207
222627
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
222208
222628
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
222209
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
222210
222629
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
222211
222630
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
222212
222631
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -222604,7 +223023,6 @@ export namespace Prisma {
|
|
|
222604
223023
|
created_by: string
|
|
222605
223024
|
updated_by: string
|
|
222606
223025
|
is_active?: boolean
|
|
222607
|
-
deleted_at?: Date | string | null
|
|
222608
223026
|
is_self_registered?: boolean
|
|
222609
223027
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
222610
223028
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -222685,7 +223103,6 @@ export namespace Prisma {
|
|
|
222685
223103
|
created_by: string
|
|
222686
223104
|
updated_by: string
|
|
222687
223105
|
is_active?: boolean
|
|
222688
|
-
deleted_at?: Date | string | null
|
|
222689
223106
|
is_self_registered?: boolean
|
|
222690
223107
|
permission_id?: string | null
|
|
222691
223108
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -222769,6 +223186,16 @@ export namespace Prisma {
|
|
|
222769
223186
|
is_active?: boolean
|
|
222770
223187
|
name?: string | null
|
|
222771
223188
|
yearsOfExperience?: number | null
|
|
223189
|
+
status?: $Enums.ResumeStatus | null
|
|
223190
|
+
origin?: $Enums.ResumeOrigin | null
|
|
223191
|
+
intake_session_id?: string | null
|
|
223192
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
223193
|
+
intake_progress?: number | null
|
|
223194
|
+
orion_execution_id?: string | null
|
|
223195
|
+
tailoring_jd_text?: string | null
|
|
223196
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
223197
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
223198
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
222772
223199
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
222773
223200
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
222774
223201
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -222798,6 +223225,16 @@ export namespace Prisma {
|
|
|
222798
223225
|
is_active?: boolean
|
|
222799
223226
|
name?: string | null
|
|
222800
223227
|
yearsOfExperience?: number | null
|
|
223228
|
+
status?: $Enums.ResumeStatus | null
|
|
223229
|
+
origin?: $Enums.ResumeOrigin | null
|
|
223230
|
+
intake_session_id?: string | null
|
|
223231
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
223232
|
+
intake_progress?: number | null
|
|
223233
|
+
orion_execution_id?: string | null
|
|
223234
|
+
tailoring_jd_text?: string | null
|
|
223235
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
223236
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
223237
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
222801
223238
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
222802
223239
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
222803
223240
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -222824,6 +223261,16 @@ export namespace Prisma {
|
|
|
222824
223261
|
is_active?: boolean
|
|
222825
223262
|
name?: string | null
|
|
222826
223263
|
yearsOfExperience?: number | null
|
|
223264
|
+
status?: $Enums.ResumeStatus | null
|
|
223265
|
+
origin?: $Enums.ResumeOrigin | null
|
|
223266
|
+
intake_session_id?: string | null
|
|
223267
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
223268
|
+
intake_progress?: number | null
|
|
223269
|
+
orion_execution_id?: string | null
|
|
223270
|
+
tailoring_jd_text?: string | null
|
|
223271
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
223272
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
223273
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
222827
223274
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
222828
223275
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
222829
223276
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -222853,6 +223300,16 @@ export namespace Prisma {
|
|
|
222853
223300
|
is_active?: boolean
|
|
222854
223301
|
name?: string | null
|
|
222855
223302
|
yearsOfExperience?: number | null
|
|
223303
|
+
status?: $Enums.ResumeStatus | null
|
|
223304
|
+
origin?: $Enums.ResumeOrigin | null
|
|
223305
|
+
intake_session_id?: string | null
|
|
223306
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
223307
|
+
intake_progress?: number | null
|
|
223308
|
+
orion_execution_id?: string | null
|
|
223309
|
+
tailoring_jd_text?: string | null
|
|
223310
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
223311
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
223312
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
222856
223313
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
222857
223314
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
222858
223315
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -223996,7 +224453,6 @@ export namespace Prisma {
|
|
|
223996
224453
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
223997
224454
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
223998
224455
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
223999
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
224000
224456
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
224001
224457
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
224002
224458
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -224077,7 +224533,6 @@ export namespace Prisma {
|
|
|
224077
224533
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
224078
224534
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
224079
224535
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
224080
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
224081
224536
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
224082
224537
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224083
224538
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -224167,6 +224622,16 @@ export namespace Prisma {
|
|
|
224167
224622
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
224168
224623
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224169
224624
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
224625
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
224626
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
224627
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224628
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
224629
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
224630
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224631
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224632
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
224633
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
224634
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
224170
224635
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
224171
224636
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
224172
224637
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -224196,6 +224661,16 @@ export namespace Prisma {
|
|
|
224196
224661
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
224197
224662
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224198
224663
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
224664
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
224665
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
224666
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224667
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
224668
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
224669
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224670
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224671
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
224672
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
224673
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
224199
224674
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
224200
224675
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
224201
224676
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -224228,6 +224703,16 @@ export namespace Prisma {
|
|
|
224228
224703
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
224229
224704
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224230
224705
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
224706
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
224707
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
224708
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224709
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
224710
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
224711
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224712
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224713
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
224714
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
224715
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
224231
224716
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
224232
224717
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
224233
224718
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -224257,6 +224742,16 @@ export namespace Prisma {
|
|
|
224257
224742
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
224258
224743
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224259
224744
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
224745
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
224746
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
224747
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224748
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
224749
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
224750
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224751
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224752
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
224753
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
224754
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
224260
224755
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
224261
224756
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
224262
224757
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -226400,7 +226895,6 @@ export namespace Prisma {
|
|
|
226400
226895
|
created_by: string
|
|
226401
226896
|
updated_by: string
|
|
226402
226897
|
is_active?: boolean
|
|
226403
|
-
deleted_at?: Date | string | null
|
|
226404
226898
|
is_self_registered?: boolean
|
|
226405
226899
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
226406
226900
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -226481,7 +226975,6 @@ export namespace Prisma {
|
|
|
226481
226975
|
created_by: string
|
|
226482
226976
|
updated_by: string
|
|
226483
226977
|
is_active?: boolean
|
|
226484
|
-
deleted_at?: Date | string | null
|
|
226485
226978
|
is_self_registered?: boolean
|
|
226486
226979
|
permission_id?: string | null
|
|
226487
226980
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -226565,6 +227058,16 @@ export namespace Prisma {
|
|
|
226565
227058
|
is_active?: boolean
|
|
226566
227059
|
name?: string | null
|
|
226567
227060
|
yearsOfExperience?: number | null
|
|
227061
|
+
status?: $Enums.ResumeStatus | null
|
|
227062
|
+
origin?: $Enums.ResumeOrigin | null
|
|
227063
|
+
intake_session_id?: string | null
|
|
227064
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
227065
|
+
intake_progress?: number | null
|
|
227066
|
+
orion_execution_id?: string | null
|
|
227067
|
+
tailoring_jd_text?: string | null
|
|
227068
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
227069
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
227070
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
226568
227071
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
226569
227072
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
226570
227073
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -226595,6 +227098,16 @@ export namespace Prisma {
|
|
|
226595
227098
|
is_active?: boolean
|
|
226596
227099
|
name?: string | null
|
|
226597
227100
|
yearsOfExperience?: number | null
|
|
227101
|
+
status?: $Enums.ResumeStatus | null
|
|
227102
|
+
origin?: $Enums.ResumeOrigin | null
|
|
227103
|
+
intake_session_id?: string | null
|
|
227104
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
227105
|
+
intake_progress?: number | null
|
|
227106
|
+
orion_execution_id?: string | null
|
|
227107
|
+
tailoring_jd_text?: string | null
|
|
227108
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
227109
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
227110
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
226598
227111
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
226599
227112
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
226600
227113
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -226974,7 +227487,6 @@ export namespace Prisma {
|
|
|
226974
227487
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
226975
227488
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
226976
227489
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
226977
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
226978
227490
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
226979
227491
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
226980
227492
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -227055,7 +227567,6 @@ export namespace Prisma {
|
|
|
227055
227567
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
227056
227568
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
227057
227569
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
227058
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
227059
227570
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
227060
227571
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227061
227572
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -227145,6 +227656,16 @@ export namespace Prisma {
|
|
|
227145
227656
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
227146
227657
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227147
227658
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
227659
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
227660
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
227661
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227662
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
227663
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
227664
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227665
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227666
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
227667
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
227668
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
227148
227669
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
227149
227670
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
227150
227671
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -227175,6 +227696,16 @@ export namespace Prisma {
|
|
|
227175
227696
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
227176
227697
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227177
227698
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
227699
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
227700
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
227701
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227702
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
227703
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
227704
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227705
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227706
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
227707
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
227708
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
227178
227709
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
227179
227710
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
227180
227711
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -227407,7 +227938,6 @@ export namespace Prisma {
|
|
|
227407
227938
|
created_by: string
|
|
227408
227939
|
updated_by: string
|
|
227409
227940
|
is_active?: boolean
|
|
227410
|
-
deleted_at?: Date | string | null
|
|
227411
227941
|
is_self_registered?: boolean
|
|
227412
227942
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
227413
227943
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -227488,7 +228018,6 @@ export namespace Prisma {
|
|
|
227488
228018
|
created_by: string
|
|
227489
228019
|
updated_by: string
|
|
227490
228020
|
is_active?: boolean
|
|
227491
|
-
deleted_at?: Date | string | null
|
|
227492
228021
|
is_self_registered?: boolean
|
|
227493
228022
|
permission_id?: string | null
|
|
227494
228023
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -227581,7 +228110,6 @@ export namespace Prisma {
|
|
|
227581
228110
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
227582
228111
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
227583
228112
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
227584
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
227585
228113
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
227586
228114
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
227587
228115
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -227662,7 +228190,6 @@ export namespace Prisma {
|
|
|
227662
228190
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
227663
228191
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
227664
228192
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
227665
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
227666
228193
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
227667
228194
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227668
228195
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -230442,7 +230969,6 @@ export namespace Prisma {
|
|
|
230442
230969
|
created_by: string
|
|
230443
230970
|
updated_by: string
|
|
230444
230971
|
is_active?: boolean
|
|
230445
|
-
deleted_at?: Date | string | null
|
|
230446
230972
|
is_self_registered?: boolean
|
|
230447
230973
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
230448
230974
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -230523,7 +231049,6 @@ export namespace Prisma {
|
|
|
230523
231049
|
created_by: string
|
|
230524
231050
|
updated_by: string
|
|
230525
231051
|
is_active?: boolean
|
|
230526
|
-
deleted_at?: Date | string | null
|
|
230527
231052
|
is_self_registered?: boolean
|
|
230528
231053
|
permission_id?: string | null
|
|
230529
231054
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -230605,7 +231130,6 @@ export namespace Prisma {
|
|
|
230605
231130
|
created_by: string
|
|
230606
231131
|
updated_by: string
|
|
230607
231132
|
is_active?: boolean
|
|
230608
|
-
deleted_at?: Date | string | null
|
|
230609
231133
|
is_self_registered?: boolean
|
|
230610
231134
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
230611
231135
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -230686,7 +231210,6 @@ export namespace Prisma {
|
|
|
230686
231210
|
created_by: string
|
|
230687
231211
|
updated_by: string
|
|
230688
231212
|
is_active?: boolean
|
|
230689
|
-
deleted_at?: Date | string | null
|
|
230690
231213
|
is_self_registered?: boolean
|
|
230691
231214
|
permission_id?: string | null
|
|
230692
231215
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -231089,6 +231612,16 @@ export namespace Prisma {
|
|
|
231089
231612
|
is_active?: boolean
|
|
231090
231613
|
name?: string | null
|
|
231091
231614
|
yearsOfExperience?: number | null
|
|
231615
|
+
status?: $Enums.ResumeStatus | null
|
|
231616
|
+
origin?: $Enums.ResumeOrigin | null
|
|
231617
|
+
intake_session_id?: string | null
|
|
231618
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
231619
|
+
intake_progress?: number | null
|
|
231620
|
+
orion_execution_id?: string | null
|
|
231621
|
+
tailoring_jd_text?: string | null
|
|
231622
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
231623
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
231624
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
231092
231625
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
231093
231626
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
231094
231627
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -231119,6 +231652,16 @@ export namespace Prisma {
|
|
|
231119
231652
|
is_active?: boolean
|
|
231120
231653
|
name?: string | null
|
|
231121
231654
|
yearsOfExperience?: number | null
|
|
231655
|
+
status?: $Enums.ResumeStatus | null
|
|
231656
|
+
origin?: $Enums.ResumeOrigin | null
|
|
231657
|
+
intake_session_id?: string | null
|
|
231658
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
231659
|
+
intake_progress?: number | null
|
|
231660
|
+
orion_execution_id?: string | null
|
|
231661
|
+
tailoring_jd_text?: string | null
|
|
231662
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
231663
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
231664
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
231122
231665
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
231123
231666
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
231124
231667
|
resume_data?: ResumeDataUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -231593,7 +232136,6 @@ export namespace Prisma {
|
|
|
231593
232136
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
231594
232137
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
231595
232138
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
231596
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
231597
232139
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
231598
232140
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
231599
232141
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -231674,7 +232216,6 @@ export namespace Prisma {
|
|
|
231674
232216
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
231675
232217
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
231676
232218
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
231677
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
231678
232219
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
231679
232220
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
231680
232221
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -231762,7 +232303,6 @@ export namespace Prisma {
|
|
|
231762
232303
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
231763
232304
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
231764
232305
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
231765
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
231766
232306
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
231767
232307
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
231768
232308
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -231843,7 +232383,6 @@ export namespace Prisma {
|
|
|
231843
232383
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
231844
232384
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
231845
232385
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
231846
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
231847
232386
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
231848
232387
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
231849
232388
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -232270,6 +232809,16 @@ export namespace Prisma {
|
|
|
232270
232809
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
232271
232810
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
232272
232811
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
232812
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
232813
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
232814
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
232815
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
232816
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
232817
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
232818
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
232819
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
232820
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
232821
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
232273
232822
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
232274
232823
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
232275
232824
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -232300,6 +232849,16 @@ export namespace Prisma {
|
|
|
232300
232849
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
232301
232850
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
232302
232851
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
232852
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
232853
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
232854
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
232855
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
232856
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
232857
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
232858
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
232859
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
232860
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
232861
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
232303
232862
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
232304
232863
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
232305
232864
|
resume_data?: ResumeDataUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -235519,6 +236078,16 @@ export namespace Prisma {
|
|
|
235519
236078
|
is_active?: boolean
|
|
235520
236079
|
name?: string | null
|
|
235521
236080
|
yearsOfExperience?: number | null
|
|
236081
|
+
status?: $Enums.ResumeStatus | null
|
|
236082
|
+
origin?: $Enums.ResumeOrigin | null
|
|
236083
|
+
intake_session_id?: string | null
|
|
236084
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
236085
|
+
intake_progress?: number | null
|
|
236086
|
+
orion_execution_id?: string | null
|
|
236087
|
+
tailoring_jd_text?: string | null
|
|
236088
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
236089
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
236090
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
235522
236091
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
235523
236092
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
235524
236093
|
document?: DocumentCreateNestedOneWithoutResumeInput
|
|
@@ -235548,6 +236117,16 @@ export namespace Prisma {
|
|
|
235548
236117
|
is_active?: boolean
|
|
235549
236118
|
name?: string | null
|
|
235550
236119
|
yearsOfExperience?: number | null
|
|
236120
|
+
status?: $Enums.ResumeStatus | null
|
|
236121
|
+
origin?: $Enums.ResumeOrigin | null
|
|
236122
|
+
intake_session_id?: string | null
|
|
236123
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
236124
|
+
intake_progress?: number | null
|
|
236125
|
+
orion_execution_id?: string | null
|
|
236126
|
+
tailoring_jd_text?: string | null
|
|
236127
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
236128
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
236129
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
235551
236130
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
235552
236131
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
235553
236132
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -235628,7 +236207,6 @@ export namespace Prisma {
|
|
|
235628
236207
|
created_by: string
|
|
235629
236208
|
updated_by: string
|
|
235630
236209
|
is_active?: boolean
|
|
235631
|
-
deleted_at?: Date | string | null
|
|
235632
236210
|
is_self_registered?: boolean
|
|
235633
236211
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
235634
236212
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -235709,7 +236287,6 @@ export namespace Prisma {
|
|
|
235709
236287
|
created_by: string
|
|
235710
236288
|
updated_by: string
|
|
235711
236289
|
is_active?: boolean
|
|
235712
|
-
deleted_at?: Date | string | null
|
|
235713
236290
|
is_self_registered?: boolean
|
|
235714
236291
|
permission_id?: string | null
|
|
235715
236292
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -235791,7 +236368,6 @@ export namespace Prisma {
|
|
|
235791
236368
|
created_by: string
|
|
235792
236369
|
updated_by: string
|
|
235793
236370
|
is_active?: boolean
|
|
235794
|
-
deleted_at?: Date | string | null
|
|
235795
236371
|
is_self_registered?: boolean
|
|
235796
236372
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
235797
236373
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -235872,7 +236448,6 @@ export namespace Prisma {
|
|
|
235872
236448
|
created_by: string
|
|
235873
236449
|
updated_by: string
|
|
235874
236450
|
is_active?: boolean
|
|
235875
|
-
deleted_at?: Date | string | null
|
|
235876
236451
|
is_self_registered?: boolean
|
|
235877
236452
|
permission_id?: string | null
|
|
235878
236453
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -237211,6 +237786,16 @@ export namespace Prisma {
|
|
|
237211
237786
|
is_active?: BoolFilter<"Resume"> | boolean
|
|
237212
237787
|
name?: StringNullableFilter<"Resume"> | string | null
|
|
237213
237788
|
yearsOfExperience?: IntNullableFilter<"Resume"> | number | null
|
|
237789
|
+
status?: EnumResumeStatusNullableFilter<"Resume"> | $Enums.ResumeStatus | null
|
|
237790
|
+
origin?: EnumResumeOriginNullableFilter<"Resume"> | $Enums.ResumeOrigin | null
|
|
237791
|
+
intake_session_id?: StringNullableFilter<"Resume"> | string | null
|
|
237792
|
+
conversation_history?: JsonNullableFilter<"Resume">
|
|
237793
|
+
intake_progress?: IntNullableFilter<"Resume"> | number | null
|
|
237794
|
+
orion_execution_id?: StringNullableFilter<"Resume"> | string | null
|
|
237795
|
+
tailoring_jd_text?: StringNullableFilter<"Resume"> | string | null
|
|
237796
|
+
tailoring_jd_parsed?: JsonNullableFilter<"Resume">
|
|
237797
|
+
tailoring_gap_analysis?: JsonNullableFilter<"Resume">
|
|
237798
|
+
tailoring_draft?: JsonNullableFilter<"Resume">
|
|
237214
237799
|
}
|
|
237215
237800
|
|
|
237216
237801
|
export type BudgetUpsertWithoutJob_descriptionInput = {
|
|
@@ -237292,7 +237877,6 @@ export namespace Prisma {
|
|
|
237292
237877
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
237293
237878
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
237294
237879
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
237295
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
237296
237880
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
237297
237881
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
237298
237882
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -237373,7 +237957,6 @@ export namespace Prisma {
|
|
|
237373
237957
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
237374
237958
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
237375
237959
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
237376
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
237377
237960
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
237378
237961
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
237379
237962
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -238114,7 +238697,6 @@ export namespace Prisma {
|
|
|
238114
238697
|
created_by: string
|
|
238115
238698
|
updated_by: string
|
|
238116
238699
|
is_active?: boolean
|
|
238117
|
-
deleted_at?: Date | string | null
|
|
238118
238700
|
is_self_registered?: boolean
|
|
238119
238701
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
238120
238702
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -238195,7 +238777,6 @@ export namespace Prisma {
|
|
|
238195
238777
|
created_by: string
|
|
238196
238778
|
updated_by: string
|
|
238197
238779
|
is_active?: boolean
|
|
238198
|
-
deleted_at?: Date | string | null
|
|
238199
238780
|
is_self_registered?: boolean
|
|
238200
238781
|
permission_id?: string | null
|
|
238201
238782
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -238277,7 +238858,6 @@ export namespace Prisma {
|
|
|
238277
238858
|
created_by: string
|
|
238278
238859
|
updated_by: string
|
|
238279
238860
|
is_active?: boolean
|
|
238280
|
-
deleted_at?: Date | string | null
|
|
238281
238861
|
is_self_registered?: boolean
|
|
238282
238862
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
238283
238863
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -238358,7 +238938,6 @@ export namespace Prisma {
|
|
|
238358
238938
|
created_by: string
|
|
238359
238939
|
updated_by: string
|
|
238360
238940
|
is_active?: boolean
|
|
238361
|
-
deleted_at?: Date | string | null
|
|
238362
238941
|
is_self_registered?: boolean
|
|
238363
238942
|
permission_id?: string | null
|
|
238364
238943
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -238440,7 +239019,6 @@ export namespace Prisma {
|
|
|
238440
239019
|
created_by: string
|
|
238441
239020
|
updated_by: string
|
|
238442
239021
|
is_active?: boolean
|
|
238443
|
-
deleted_at?: Date | string | null
|
|
238444
239022
|
is_self_registered?: boolean
|
|
238445
239023
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
238446
239024
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -238521,7 +239099,6 @@ export namespace Prisma {
|
|
|
238521
239099
|
created_by: string
|
|
238522
239100
|
updated_by: string
|
|
238523
239101
|
is_active?: boolean
|
|
238524
|
-
deleted_at?: Date | string | null
|
|
238525
239102
|
is_self_registered?: boolean
|
|
238526
239103
|
permission_id?: string | null
|
|
238527
239104
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -238920,7 +239497,6 @@ export namespace Prisma {
|
|
|
238920
239497
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
238921
239498
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
238922
239499
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
238923
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
238924
239500
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
238925
239501
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
238926
239502
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -239001,7 +239577,6 @@ export namespace Prisma {
|
|
|
239001
239577
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
239002
239578
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
239003
239579
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
239004
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
239005
239580
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
239006
239581
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
239007
239582
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -239089,7 +239664,6 @@ export namespace Prisma {
|
|
|
239089
239664
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
239090
239665
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
239091
239666
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
239092
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
239093
239667
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
239094
239668
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
239095
239669
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -239170,7 +239744,6 @@ export namespace Prisma {
|
|
|
239170
239744
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
239171
239745
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
239172
239746
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
239173
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
239174
239747
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
239175
239748
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
239176
239749
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -239258,7 +239831,6 @@ export namespace Prisma {
|
|
|
239258
239831
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
239259
239832
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
239260
239833
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
239261
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
239262
239834
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
239263
239835
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
239264
239836
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -239339,7 +239911,6 @@ export namespace Prisma {
|
|
|
239339
239911
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
239340
239912
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
239341
239913
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
239342
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
239343
239914
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
239344
239915
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
239345
239916
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -242712,7 +243283,6 @@ export namespace Prisma {
|
|
|
242712
243283
|
created_by: string
|
|
242713
243284
|
updated_by: string
|
|
242714
243285
|
is_active?: boolean
|
|
242715
|
-
deleted_at?: Date | string | null
|
|
242716
243286
|
is_self_registered?: boolean
|
|
242717
243287
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
242718
243288
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -242793,7 +243363,6 @@ export namespace Prisma {
|
|
|
242793
243363
|
created_by: string
|
|
242794
243364
|
updated_by: string
|
|
242795
243365
|
is_active?: boolean
|
|
242796
|
-
deleted_at?: Date | string | null
|
|
242797
243366
|
is_self_registered?: boolean
|
|
242798
243367
|
permission_id?: string | null
|
|
242799
243368
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -242875,7 +243444,6 @@ export namespace Prisma {
|
|
|
242875
243444
|
created_by: string
|
|
242876
243445
|
updated_by: string
|
|
242877
243446
|
is_active?: boolean
|
|
242878
|
-
deleted_at?: Date | string | null
|
|
242879
243447
|
is_self_registered?: boolean
|
|
242880
243448
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
242881
243449
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -242956,7 +243524,6 @@ export namespace Prisma {
|
|
|
242956
243524
|
created_by: string
|
|
242957
243525
|
updated_by: string
|
|
242958
243526
|
is_active?: boolean
|
|
242959
|
-
deleted_at?: Date | string | null
|
|
242960
243527
|
is_self_registered?: boolean
|
|
242961
243528
|
permission_id?: string | null
|
|
242962
243529
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -243049,7 +243616,6 @@ export namespace Prisma {
|
|
|
243049
243616
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
243050
243617
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
243051
243618
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
243052
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
243053
243619
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
243054
243620
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
243055
243621
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -243130,7 +243696,6 @@ export namespace Prisma {
|
|
|
243130
243696
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
243131
243697
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
243132
243698
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
243133
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
243134
243699
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
243135
243700
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
243136
243701
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -243218,7 +243783,6 @@ export namespace Prisma {
|
|
|
243218
243783
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
243219
243784
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
243220
243785
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
243221
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
243222
243786
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
243223
243787
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
243224
243788
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -243299,7 +243863,6 @@ export namespace Prisma {
|
|
|
243299
243863
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
243300
243864
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
243301
243865
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
243302
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
243303
243866
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
243304
243867
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
243305
243868
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -243469,7 +244032,6 @@ export namespace Prisma {
|
|
|
243469
244032
|
created_by: string
|
|
243470
244033
|
updated_by: string
|
|
243471
244034
|
is_active?: boolean
|
|
243472
|
-
deleted_at?: Date | string | null
|
|
243473
244035
|
is_self_registered?: boolean
|
|
243474
244036
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
243475
244037
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -243550,7 +244112,6 @@ export namespace Prisma {
|
|
|
243550
244112
|
created_by: string
|
|
243551
244113
|
updated_by: string
|
|
243552
244114
|
is_active?: boolean
|
|
243553
|
-
deleted_at?: Date | string | null
|
|
243554
244115
|
is_self_registered?: boolean
|
|
243555
244116
|
permission_id?: string | null
|
|
243556
244117
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -243742,7 +244303,6 @@ export namespace Prisma {
|
|
|
243742
244303
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
243743
244304
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
243744
244305
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
243745
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
243746
244306
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
243747
244307
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
243748
244308
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -243823,7 +244383,6 @@ export namespace Prisma {
|
|
|
243823
244383
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
243824
244384
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
243825
244385
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
243826
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
243827
244386
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
243828
244387
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
243829
244388
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -245084,7 +245643,6 @@ export namespace Prisma {
|
|
|
245084
245643
|
created_by: string
|
|
245085
245644
|
updated_by: string
|
|
245086
245645
|
is_active?: boolean
|
|
245087
|
-
deleted_at?: Date | string | null
|
|
245088
245646
|
is_self_registered?: boolean
|
|
245089
245647
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
245090
245648
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -245165,7 +245723,6 @@ export namespace Prisma {
|
|
|
245165
245723
|
created_by: string
|
|
245166
245724
|
updated_by: string
|
|
245167
245725
|
is_active?: boolean
|
|
245168
|
-
deleted_at?: Date | string | null
|
|
245169
245726
|
is_self_registered?: boolean
|
|
245170
245727
|
permission_id?: string | null
|
|
245171
245728
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -245816,7 +246373,6 @@ export namespace Prisma {
|
|
|
245816
246373
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
245817
246374
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
245818
246375
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
245819
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
245820
246376
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
245821
246377
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
245822
246378
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -245897,7 +246453,6 @@ export namespace Prisma {
|
|
|
245897
246453
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
245898
246454
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
245899
246455
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
245900
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
245901
246456
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
245902
246457
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
245903
246458
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -247106,7 +247661,6 @@ export namespace Prisma {
|
|
|
247106
247661
|
created_by: string
|
|
247107
247662
|
updated_by: string
|
|
247108
247663
|
is_active?: boolean
|
|
247109
|
-
deleted_at?: Date | string | null
|
|
247110
247664
|
is_self_registered?: boolean
|
|
247111
247665
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
247112
247666
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -247187,7 +247741,6 @@ export namespace Prisma {
|
|
|
247187
247741
|
created_by: string
|
|
247188
247742
|
updated_by: string
|
|
247189
247743
|
is_active?: boolean
|
|
247190
|
-
deleted_at?: Date | string | null
|
|
247191
247744
|
is_self_registered?: boolean
|
|
247192
247745
|
permission_id?: string | null
|
|
247193
247746
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -247271,6 +247824,16 @@ export namespace Prisma {
|
|
|
247271
247824
|
is_active?: boolean
|
|
247272
247825
|
name?: string | null
|
|
247273
247826
|
yearsOfExperience?: number | null
|
|
247827
|
+
status?: $Enums.ResumeStatus | null
|
|
247828
|
+
origin?: $Enums.ResumeOrigin | null
|
|
247829
|
+
intake_session_id?: string | null
|
|
247830
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
247831
|
+
intake_progress?: number | null
|
|
247832
|
+
orion_execution_id?: string | null
|
|
247833
|
+
tailoring_jd_text?: string | null
|
|
247834
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
247835
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
247836
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
247274
247837
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
247275
247838
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
247276
247839
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -247301,6 +247864,16 @@ export namespace Prisma {
|
|
|
247301
247864
|
is_active?: boolean
|
|
247302
247865
|
name?: string | null
|
|
247303
247866
|
yearsOfExperience?: number | null
|
|
247867
|
+
status?: $Enums.ResumeStatus | null
|
|
247868
|
+
origin?: $Enums.ResumeOrigin | null
|
|
247869
|
+
intake_session_id?: string | null
|
|
247870
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
247871
|
+
intake_progress?: number | null
|
|
247872
|
+
orion_execution_id?: string | null
|
|
247873
|
+
tailoring_jd_text?: string | null
|
|
247874
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
247875
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
247876
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
247304
247877
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
247305
247878
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
247306
247879
|
resume_data?: ResumeDataUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -247982,7 +248555,6 @@ export namespace Prisma {
|
|
|
247982
248555
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
247983
248556
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
247984
248557
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
247985
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
247986
248558
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
247987
248559
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
247988
248560
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -248063,7 +248635,6 @@ export namespace Prisma {
|
|
|
248063
248635
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
248064
248636
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
248065
248637
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
248066
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
248067
248638
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
248068
248639
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248069
248640
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -248153,6 +248724,16 @@ export namespace Prisma {
|
|
|
248153
248724
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
248154
248725
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248155
248726
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
248727
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
248728
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
248729
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248730
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
248731
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
248732
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248733
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248734
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
248735
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
248736
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
248156
248737
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
248157
248738
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
248158
248739
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -248183,6 +248764,16 @@ export namespace Prisma {
|
|
|
248183
248764
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
248184
248765
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248185
248766
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
248767
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
248768
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
248769
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248770
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
248771
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
248772
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248773
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248774
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
248775
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
248776
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
248186
248777
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
248187
248778
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
248188
248779
|
resume_data?: ResumeDataUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -248664,7 +249255,6 @@ export namespace Prisma {
|
|
|
248664
249255
|
created_by: string
|
|
248665
249256
|
updated_by: string
|
|
248666
249257
|
is_active?: boolean
|
|
248667
|
-
deleted_at?: Date | string | null
|
|
248668
249258
|
is_self_registered?: boolean
|
|
248669
249259
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
248670
249260
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -248744,7 +249334,6 @@ export namespace Prisma {
|
|
|
248744
249334
|
created_by: string
|
|
248745
249335
|
updated_by: string
|
|
248746
249336
|
is_active?: boolean
|
|
248747
|
-
deleted_at?: Date | string | null
|
|
248748
249337
|
is_self_registered?: boolean
|
|
248749
249338
|
permission_id?: string | null
|
|
248750
249339
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -249476,6 +250065,16 @@ export namespace Prisma {
|
|
|
249476
250065
|
is_active?: boolean
|
|
249477
250066
|
name?: string | null
|
|
249478
250067
|
yearsOfExperience?: number | null
|
|
250068
|
+
status?: $Enums.ResumeStatus | null
|
|
250069
|
+
origin?: $Enums.ResumeOrigin | null
|
|
250070
|
+
intake_session_id?: string | null
|
|
250071
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
250072
|
+
intake_progress?: number | null
|
|
250073
|
+
orion_execution_id?: string | null
|
|
250074
|
+
tailoring_jd_text?: string | null
|
|
250075
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
250076
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
250077
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
249479
250078
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
249480
250079
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
249481
250080
|
document?: DocumentCreateNestedOneWithoutResumeInput
|
|
@@ -249505,6 +250104,16 @@ export namespace Prisma {
|
|
|
249505
250104
|
is_active?: boolean
|
|
249506
250105
|
name?: string | null
|
|
249507
250106
|
yearsOfExperience?: number | null
|
|
250107
|
+
status?: $Enums.ResumeStatus | null
|
|
250108
|
+
origin?: $Enums.ResumeOrigin | null
|
|
250109
|
+
intake_session_id?: string | null
|
|
250110
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
250111
|
+
intake_progress?: number | null
|
|
250112
|
+
orion_execution_id?: string | null
|
|
250113
|
+
tailoring_jd_text?: string | null
|
|
250114
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
250115
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
250116
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
249508
250117
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
249509
250118
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
249510
250119
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -252372,7 +252981,6 @@ export namespace Prisma {
|
|
|
252372
252981
|
created_by: string
|
|
252373
252982
|
updated_by: string
|
|
252374
252983
|
is_active?: boolean
|
|
252375
|
-
deleted_at?: Date | string | null
|
|
252376
252984
|
is_self_registered?: boolean
|
|
252377
252985
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
252378
252986
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -252453,7 +253061,6 @@ export namespace Prisma {
|
|
|
252453
253061
|
created_by: string
|
|
252454
253062
|
updated_by: string
|
|
252455
253063
|
is_active?: boolean
|
|
252456
|
-
deleted_at?: Date | string | null
|
|
252457
253064
|
is_self_registered?: boolean
|
|
252458
253065
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
252459
253066
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -252577,7 +253184,6 @@ export namespace Prisma {
|
|
|
252577
253184
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
252578
253185
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
252579
253186
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
252580
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
252581
253187
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
252582
253188
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
252583
253189
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -252658,7 +253264,6 @@ export namespace Prisma {
|
|
|
252658
253264
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
252659
253265
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
252660
253266
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
252661
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
252662
253267
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
252663
253268
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
252664
253269
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -252772,7 +253377,6 @@ export namespace Prisma {
|
|
|
252772
253377
|
created_by: string
|
|
252773
253378
|
updated_by: string
|
|
252774
253379
|
is_active?: boolean
|
|
252775
|
-
deleted_at?: Date | string | null
|
|
252776
253380
|
is_self_registered?: boolean
|
|
252777
253381
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
252778
253382
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -252853,7 +253457,6 @@ export namespace Prisma {
|
|
|
252853
253457
|
created_by: string
|
|
252854
253458
|
updated_by: string
|
|
252855
253459
|
is_active?: boolean
|
|
252856
|
-
deleted_at?: Date | string | null
|
|
252857
253460
|
is_self_registered?: boolean
|
|
252858
253461
|
permission_id?: string | null
|
|
252859
253462
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -253114,7 +253717,6 @@ export namespace Prisma {
|
|
|
253114
253717
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
253115
253718
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
253116
253719
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
253117
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
253118
253720
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
253119
253721
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
253120
253722
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -253195,7 +253797,6 @@ export namespace Prisma {
|
|
|
253195
253797
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
253196
253798
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
253197
253799
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
253198
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
253199
253800
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
253200
253801
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
253201
253802
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -253426,7 +254027,6 @@ export namespace Prisma {
|
|
|
253426
254027
|
created_by: string
|
|
253427
254028
|
updated_by: string
|
|
253428
254029
|
is_active?: boolean
|
|
253429
|
-
deleted_at?: Date | string | null
|
|
253430
254030
|
is_self_registered?: boolean
|
|
253431
254031
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
253432
254032
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -253507,7 +254107,6 @@ export namespace Prisma {
|
|
|
253507
254107
|
created_by: string
|
|
253508
254108
|
updated_by: string
|
|
253509
254109
|
is_active?: boolean
|
|
253510
|
-
deleted_at?: Date | string | null
|
|
253511
254110
|
is_self_registered?: boolean
|
|
253512
254111
|
permission_id?: string | null
|
|
253513
254112
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -253600,7 +254199,6 @@ export namespace Prisma {
|
|
|
253600
254199
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
253601
254200
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
253602
254201
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
253603
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
253604
254202
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
253605
254203
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
253606
254204
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -253681,7 +254279,6 @@ export namespace Prisma {
|
|
|
253681
254279
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
253682
254280
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
253683
254281
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
253684
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
253685
254282
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
253686
254283
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
253687
254284
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -253887,7 +254484,6 @@ export namespace Prisma {
|
|
|
253887
254484
|
created_by: string
|
|
253888
254485
|
updated_by: string
|
|
253889
254486
|
is_active?: boolean
|
|
253890
|
-
deleted_at?: Date | string | null
|
|
253891
254487
|
is_self_registered?: boolean
|
|
253892
254488
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
253893
254489
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -253968,7 +254564,6 @@ export namespace Prisma {
|
|
|
253968
254564
|
created_by: string
|
|
253969
254565
|
updated_by: string
|
|
253970
254566
|
is_active?: boolean
|
|
253971
|
-
deleted_at?: Date | string | null
|
|
253972
254567
|
is_self_registered?: boolean
|
|
253973
254568
|
permission_id?: string | null
|
|
253974
254569
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -254896,7 +255491,6 @@ export namespace Prisma {
|
|
|
254896
255491
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
254897
255492
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
254898
255493
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
254899
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
254900
255494
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
254901
255495
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
254902
255496
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -254977,7 +255571,6 @@ export namespace Prisma {
|
|
|
254977
255571
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
254978
255572
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
254979
255573
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
254980
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
254981
255574
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
254982
255575
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
254983
255576
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -255622,6 +256215,16 @@ export namespace Prisma {
|
|
|
255622
256215
|
is_active?: boolean
|
|
255623
256216
|
name?: string | null
|
|
255624
256217
|
yearsOfExperience?: number | null
|
|
256218
|
+
status?: $Enums.ResumeStatus | null
|
|
256219
|
+
origin?: $Enums.ResumeOrigin | null
|
|
256220
|
+
intake_session_id?: string | null
|
|
256221
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
256222
|
+
intake_progress?: number | null
|
|
256223
|
+
orion_execution_id?: string | null
|
|
256224
|
+
tailoring_jd_text?: string | null
|
|
256225
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
256226
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
256227
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
255625
256228
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
255626
256229
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
255627
256230
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -255652,6 +256255,16 @@ export namespace Prisma {
|
|
|
255652
256255
|
is_active?: boolean
|
|
255653
256256
|
name?: string | null
|
|
255654
256257
|
yearsOfExperience?: number | null
|
|
256258
|
+
status?: $Enums.ResumeStatus | null
|
|
256259
|
+
origin?: $Enums.ResumeOrigin | null
|
|
256260
|
+
intake_session_id?: string | null
|
|
256261
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
256262
|
+
intake_progress?: number | null
|
|
256263
|
+
orion_execution_id?: string | null
|
|
256264
|
+
tailoring_jd_text?: string | null
|
|
256265
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
256266
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
256267
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
255655
256268
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
255656
256269
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
255657
256270
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -255688,6 +256301,16 @@ export namespace Prisma {
|
|
|
255688
256301
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
255689
256302
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255690
256303
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
256304
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
256305
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
256306
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256307
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
256308
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
256309
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256310
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256311
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
256312
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
256313
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
255691
256314
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
255692
256315
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
255693
256316
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -255718,6 +256341,16 @@ export namespace Prisma {
|
|
|
255718
256341
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
255719
256342
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255720
256343
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
256344
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
256345
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
256346
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256347
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
256348
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
256349
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256350
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256351
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
256352
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
256353
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
255721
256354
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
255722
256355
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
255723
256356
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -258489,6 +259122,16 @@ export namespace Prisma {
|
|
|
258489
259122
|
is_active?: boolean
|
|
258490
259123
|
name?: string | null
|
|
258491
259124
|
yearsOfExperience?: number | null
|
|
259125
|
+
status?: $Enums.ResumeStatus | null
|
|
259126
|
+
origin?: $Enums.ResumeOrigin | null
|
|
259127
|
+
intake_session_id?: string | null
|
|
259128
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
259129
|
+
intake_progress?: number | null
|
|
259130
|
+
orion_execution_id?: string | null
|
|
259131
|
+
tailoring_jd_text?: string | null
|
|
259132
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
259133
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
259134
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
258492
259135
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
258493
259136
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
258494
259137
|
document?: DocumentCreateNestedOneWithoutResumeInput
|
|
@@ -258518,6 +259161,16 @@ export namespace Prisma {
|
|
|
258518
259161
|
is_active?: boolean
|
|
258519
259162
|
name?: string | null
|
|
258520
259163
|
yearsOfExperience?: number | null
|
|
259164
|
+
status?: $Enums.ResumeStatus | null
|
|
259165
|
+
origin?: $Enums.ResumeOrigin | null
|
|
259166
|
+
intake_session_id?: string | null
|
|
259167
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
259168
|
+
intake_progress?: number | null
|
|
259169
|
+
orion_execution_id?: string | null
|
|
259170
|
+
tailoring_jd_text?: string | null
|
|
259171
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
259172
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
259173
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
258521
259174
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
258522
259175
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
258523
259176
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -261437,7 +262090,6 @@ export namespace Prisma {
|
|
|
261437
262090
|
created_by: string
|
|
261438
262091
|
updated_by: string
|
|
261439
262092
|
is_active?: boolean
|
|
261440
|
-
deleted_at?: Date | string | null
|
|
261441
262093
|
is_self_registered?: boolean
|
|
261442
262094
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
261443
262095
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -261518,7 +262170,6 @@ export namespace Prisma {
|
|
|
261518
262170
|
created_by: string
|
|
261519
262171
|
updated_by: string
|
|
261520
262172
|
is_active?: boolean
|
|
261521
|
-
deleted_at?: Date | string | null
|
|
261522
262173
|
is_self_registered?: boolean
|
|
261523
262174
|
permission_id?: string | null
|
|
261524
262175
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -261611,7 +262262,6 @@ export namespace Prisma {
|
|
|
261611
262262
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
261612
262263
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
261613
262264
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
261614
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
261615
262265
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
261616
262266
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
261617
262267
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -261692,7 +262342,6 @@ export namespace Prisma {
|
|
|
261692
262342
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
261693
262343
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
261694
262344
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
261695
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
261696
262345
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
261697
262346
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261698
262347
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -262098,7 +262747,6 @@ export namespace Prisma {
|
|
|
262098
262747
|
created_by: string
|
|
262099
262748
|
updated_by: string
|
|
262100
262749
|
is_active?: boolean
|
|
262101
|
-
deleted_at?: Date | string | null
|
|
262102
262750
|
is_self_registered?: boolean
|
|
262103
262751
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
262104
262752
|
invitation_status?: $Enums.UserInvitationStatus
|
|
@@ -262179,7 +262827,6 @@ export namespace Prisma {
|
|
|
262179
262827
|
created_by: string
|
|
262180
262828
|
updated_by: string
|
|
262181
262829
|
is_active?: boolean
|
|
262182
|
-
deleted_at?: Date | string | null
|
|
262183
262830
|
is_self_registered?: boolean
|
|
262184
262831
|
permission_id?: string | null
|
|
262185
262832
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -262321,7 +262968,6 @@ export namespace Prisma {
|
|
|
262321
262968
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
262322
262969
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
262323
262970
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
262324
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
262325
262971
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
262326
262972
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
262327
262973
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -262402,7 +263048,6 @@ export namespace Prisma {
|
|
|
262402
263048
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
262403
263049
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
262404
263050
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
262405
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
262406
263051
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
262407
263052
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
262408
263053
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -262480,7 +263125,6 @@ export namespace Prisma {
|
|
|
262480
263125
|
created_by: string
|
|
262481
263126
|
updated_by: string
|
|
262482
263127
|
is_active?: boolean
|
|
262483
|
-
deleted_at?: Date | string | null
|
|
262484
263128
|
is_self_registered?: boolean
|
|
262485
263129
|
permission_id?: string | null
|
|
262486
263130
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -262523,7 +263167,6 @@ export namespace Prisma {
|
|
|
262523
263167
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
262524
263168
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
262525
263169
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
262526
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
262527
263170
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
262528
263171
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
262529
263172
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -262603,7 +263246,6 @@ export namespace Prisma {
|
|
|
262603
263246
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
262604
263247
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
262605
263248
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
262606
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
262607
263249
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
262608
263250
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
262609
263251
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -262682,7 +263324,6 @@ export namespace Prisma {
|
|
|
262682
263324
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
262683
263325
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
262684
263326
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
262685
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
262686
263327
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
262687
263328
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
262688
263329
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -267576,6 +268217,16 @@ export namespace Prisma {
|
|
|
267576
268217
|
is_active?: boolean
|
|
267577
268218
|
name?: string | null
|
|
267578
268219
|
yearsOfExperience?: number | null
|
|
268220
|
+
status?: $Enums.ResumeStatus | null
|
|
268221
|
+
origin?: $Enums.ResumeOrigin | null
|
|
268222
|
+
intake_session_id?: string | null
|
|
268223
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
268224
|
+
intake_progress?: number | null
|
|
268225
|
+
orion_execution_id?: string | null
|
|
268226
|
+
tailoring_jd_text?: string | null
|
|
268227
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
268228
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
268229
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
267579
268230
|
}
|
|
267580
268231
|
|
|
267581
268232
|
export type TranscriptCreateManyJob_descriptionInput = {
|
|
@@ -268495,6 +269146,16 @@ export namespace Prisma {
|
|
|
268495
269146
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
268496
269147
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
268497
269148
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
269149
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
269150
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
269151
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269152
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
269153
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
269154
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269155
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269156
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
269157
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
269158
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
268498
269159
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
268499
269160
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
268500
269161
|
document?: DocumentUpdateOneWithoutResumeNestedInput
|
|
@@ -268524,6 +269185,16 @@ export namespace Prisma {
|
|
|
268524
269185
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
268525
269186
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
268526
269187
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
269188
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
269189
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
269190
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269191
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
269192
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
269193
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269194
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269195
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
269196
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
269197
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
268527
269198
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
268528
269199
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
268529
269200
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -268549,6 +269220,16 @@ export namespace Prisma {
|
|
|
268549
269220
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
268550
269221
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
268551
269222
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
269223
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
269224
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
269225
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269226
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
269227
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
269228
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269229
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269230
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
269231
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
269232
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
268552
269233
|
}
|
|
268553
269234
|
|
|
268554
269235
|
export type UserUpdateWithoutJob_descriptionInput = {
|
|
@@ -268562,7 +269243,6 @@ export namespace Prisma {
|
|
|
268562
269243
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
268563
269244
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
268564
269245
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
268565
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
268566
269246
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
268567
269247
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
268568
269248
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -268643,7 +269323,6 @@ export namespace Prisma {
|
|
|
268643
269323
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
268644
269324
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
268645
269325
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
268646
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
268647
269326
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
268648
269327
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
268649
269328
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -268722,7 +269401,6 @@ export namespace Prisma {
|
|
|
268722
269401
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
268723
269402
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
268724
269403
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
268725
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
268726
269404
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
268727
269405
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
268728
269406
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -270179,7 +270857,6 @@ export namespace Prisma {
|
|
|
270179
270857
|
created_by: string
|
|
270180
270858
|
updated_by: string
|
|
270181
270859
|
is_active?: boolean
|
|
270182
|
-
deleted_at?: Date | string | null
|
|
270183
270860
|
is_self_registered?: boolean
|
|
270184
270861
|
permission_id?: string | null
|
|
270185
270862
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -270460,6 +271137,16 @@ export namespace Prisma {
|
|
|
270460
271137
|
is_active?: boolean
|
|
270461
271138
|
name?: string | null
|
|
270462
271139
|
yearsOfExperience?: number | null
|
|
271140
|
+
status?: $Enums.ResumeStatus | null
|
|
271141
|
+
origin?: $Enums.ResumeOrigin | null
|
|
271142
|
+
intake_session_id?: string | null
|
|
271143
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
271144
|
+
intake_progress?: number | null
|
|
271145
|
+
orion_execution_id?: string | null
|
|
271146
|
+
tailoring_jd_text?: string | null
|
|
271147
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
271148
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
271149
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
270463
271150
|
}
|
|
270464
271151
|
|
|
270465
271152
|
export type ApprovalCreateManyOrganisationInput = {
|
|
@@ -271042,7 +271729,6 @@ export namespace Prisma {
|
|
|
271042
271729
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
271043
271730
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
271044
271731
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
271045
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
271046
271732
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
271047
271733
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
271048
271734
|
invitation_status?: EnumUserInvitationStatusFieldUpdateOperationsInput | $Enums.UserInvitationStatus
|
|
@@ -271122,7 +271808,6 @@ export namespace Prisma {
|
|
|
271122
271808
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
271123
271809
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
271124
271810
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
271125
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
271126
271811
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
271127
271812
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
271128
271813
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -271201,7 +271886,6 @@ export namespace Prisma {
|
|
|
271201
271886
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
271202
271887
|
updated_by?: StringFieldUpdateOperationsInput | string
|
|
271203
271888
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
271204
|
-
deleted_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
271205
271889
|
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
271206
271890
|
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
271207
271891
|
preferences?: NullableJsonNullValueInput | InputJsonValue
|
|
@@ -272030,6 +272714,16 @@ export namespace Prisma {
|
|
|
272030
272714
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
272031
272715
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272032
272716
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
272717
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
272718
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
272719
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272720
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
272721
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
272722
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272723
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272724
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
272725
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
272726
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
272033
272727
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
272034
272728
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
272035
272729
|
document?: DocumentUpdateOneWithoutResumeNestedInput
|
|
@@ -272059,6 +272753,16 @@ export namespace Prisma {
|
|
|
272059
272753
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
272060
272754
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272061
272755
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
272756
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
272757
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
272758
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272759
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
272760
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
272761
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272762
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272763
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
272764
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
272765
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
272062
272766
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
272063
272767
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
272064
272768
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -272084,6 +272788,16 @@ export namespace Prisma {
|
|
|
272084
272788
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
272085
272789
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272086
272790
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
272791
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
272792
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
272793
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272794
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
272795
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
272796
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272797
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272798
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
272799
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
272800
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
272087
272801
|
}
|
|
272088
272802
|
|
|
272089
272803
|
export type ApprovalUpdateWithoutOrganisationInput = {
|
|
@@ -275088,6 +275802,16 @@ export namespace Prisma {
|
|
|
275088
275802
|
is_active?: boolean
|
|
275089
275803
|
name?: string | null
|
|
275090
275804
|
yearsOfExperience?: number | null
|
|
275805
|
+
status?: $Enums.ResumeStatus | null
|
|
275806
|
+
origin?: $Enums.ResumeOrigin | null
|
|
275807
|
+
intake_session_id?: string | null
|
|
275808
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
275809
|
+
intake_progress?: number | null
|
|
275810
|
+
orion_execution_id?: string | null
|
|
275811
|
+
tailoring_jd_text?: string | null
|
|
275812
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
275813
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
275814
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
275091
275815
|
}
|
|
275092
275816
|
|
|
275093
275817
|
export type JobDescriptionCreateManyHiring_managerInput = {
|
|
@@ -275861,6 +276585,16 @@ export namespace Prisma {
|
|
|
275861
276585
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
275862
276586
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
275863
276587
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
276588
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
276589
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
276590
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276591
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
276592
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
276593
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276594
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276595
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
276596
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
276597
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
275864
276598
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
275865
276599
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
275866
276600
|
document?: DocumentUpdateOneWithoutResumeNestedInput
|
|
@@ -275890,6 +276624,16 @@ export namespace Prisma {
|
|
|
275890
276624
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
275891
276625
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
275892
276626
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
276627
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
276628
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
276629
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276630
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
276631
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
276632
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276633
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276634
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
276635
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
276636
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
275893
276637
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
275894
276638
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
275895
276639
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -275915,6 +276659,16 @@ export namespace Prisma {
|
|
|
275915
276659
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
275916
276660
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
275917
276661
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
276662
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
276663
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
276664
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276665
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
276666
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
276667
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276668
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276669
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
276670
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
276671
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
275918
276672
|
}
|
|
275919
276673
|
|
|
275920
276674
|
export type JobDescriptionUpdateWithoutRecruitersInput = {
|