@adaptware/eagles-db 0.5.46 → 0.5.48
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 -6
- package/client/index-browser.js +25 -1
- package/client/index.d.ts +1043 -3
- package/client/index.js +30 -6
- package/client/package.json +1 -1
- package/client/schema.prisma +46 -7
- package/client/wasm.js +30 -6
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/schema/.DS_Store +0 -0
- package/prisma/schema/evaluationPlan.prisma +0 -7
- package/prisma/schema/interview.prisma +39 -38
- package/prisma/schema/migrations/.DS_Store +0 -0
- package/prisma/schema/migrations/20260826160000_add_application_fit_check_report_document/.DS_Store +0 -0
- package/prisma/schema/migrations/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
|
|
@@ -68319,6 +68346,7 @@ export namespace Prisma {
|
|
|
68319
68346
|
resume_id: number
|
|
68320
68347
|
job_description_id: number
|
|
68321
68348
|
calendar_event_id: number
|
|
68349
|
+
calendar_events: number
|
|
68322
68350
|
room_name: number
|
|
68323
68351
|
interview_summary: number
|
|
68324
68352
|
scheduled_start_time: number
|
|
@@ -68461,6 +68489,7 @@ export namespace Prisma {
|
|
|
68461
68489
|
resume_id?: true
|
|
68462
68490
|
job_description_id?: true
|
|
68463
68491
|
calendar_event_id?: true
|
|
68492
|
+
calendar_events?: true
|
|
68464
68493
|
room_name?: true
|
|
68465
68494
|
interview_summary?: true
|
|
68466
68495
|
scheduled_start_time?: true
|
|
@@ -68598,6 +68627,7 @@ export namespace Prisma {
|
|
|
68598
68627
|
resume_id: string
|
|
68599
68628
|
job_description_id: string
|
|
68600
68629
|
calendar_event_id: string | null
|
|
68630
|
+
calendar_events: JsonValue | null
|
|
68601
68631
|
room_name: string | null
|
|
68602
68632
|
interview_summary: string[]
|
|
68603
68633
|
scheduled_start_time: Date | null
|
|
@@ -68667,6 +68697,7 @@ export namespace Prisma {
|
|
|
68667
68697
|
resume_id?: boolean
|
|
68668
68698
|
job_description_id?: boolean
|
|
68669
68699
|
calendar_event_id?: boolean
|
|
68700
|
+
calendar_events?: boolean
|
|
68670
68701
|
room_name?: boolean
|
|
68671
68702
|
interview_summary?: boolean
|
|
68672
68703
|
scheduled_start_time?: boolean
|
|
@@ -68732,6 +68763,7 @@ export namespace Prisma {
|
|
|
68732
68763
|
resume_id?: boolean
|
|
68733
68764
|
job_description_id?: boolean
|
|
68734
68765
|
calendar_event_id?: boolean
|
|
68766
|
+
calendar_events?: boolean
|
|
68735
68767
|
room_name?: boolean
|
|
68736
68768
|
interview_summary?: boolean
|
|
68737
68769
|
scheduled_start_time?: boolean
|
|
@@ -68790,6 +68822,7 @@ export namespace Prisma {
|
|
|
68790
68822
|
resume_id?: boolean
|
|
68791
68823
|
job_description_id?: boolean
|
|
68792
68824
|
calendar_event_id?: boolean
|
|
68825
|
+
calendar_events?: boolean
|
|
68793
68826
|
room_name?: boolean
|
|
68794
68827
|
interview_summary?: boolean
|
|
68795
68828
|
scheduled_start_time?: boolean
|
|
@@ -68848,6 +68881,7 @@ export namespace Prisma {
|
|
|
68848
68881
|
resume_id?: boolean
|
|
68849
68882
|
job_description_id?: boolean
|
|
68850
68883
|
calendar_event_id?: boolean
|
|
68884
|
+
calendar_events?: boolean
|
|
68851
68885
|
room_name?: boolean
|
|
68852
68886
|
interview_summary?: boolean
|
|
68853
68887
|
scheduled_start_time?: boolean
|
|
@@ -68888,7 +68922,7 @@ export namespace Prisma {
|
|
|
68888
68922
|
is_active?: boolean
|
|
68889
68923
|
}
|
|
68890
68924
|
|
|
68891
|
-
export type InterviewOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "candidate_id" | "interviewer_id" | "evaluation_plan_id" | "application_id" | "resume_id" | "job_description_id" | "calendar_event_id" | "room_name" | "interview_summary" | "scheduled_start_time" | "scheduled_end_time" | "actual_start_time" | "actual_end_time" | "duration" | "recording_url" | "recording_document_id" | "evaluation_type" | "ai_assistance_mode" | "interview_status" | "interview_platform" | "overall_feedback" | "ai_feedback" | "human_feedback" | "section_feedback" | "interview_preparation" | "final_feedback" | "interview_analysis_ranges" | "interview_flow_summary" | "ai_feedback_generated_at" | "beta_ai_feedback" | "beta_section_feedback" | "beta_final_feedback" | "beta_interview_flow_summary" | "beta_ai_feedback_generated_at" | "human_feedback_updated_at" | "evaluated_at" | "reschedule_count" | "last_rescheduled_at" | "first_assigned_at" | "awaiting_recruiter_action" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["interview"]>
|
|
68925
|
+
export type InterviewOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "candidate_id" | "interviewer_id" | "evaluation_plan_id" | "application_id" | "resume_id" | "job_description_id" | "calendar_event_id" | "calendar_events" | "room_name" | "interview_summary" | "scheduled_start_time" | "scheduled_end_time" | "actual_start_time" | "actual_end_time" | "duration" | "recording_url" | "recording_document_id" | "evaluation_type" | "ai_assistance_mode" | "interview_status" | "interview_platform" | "overall_feedback" | "ai_feedback" | "human_feedback" | "section_feedback" | "interview_preparation" | "final_feedback" | "interview_analysis_ranges" | "interview_flow_summary" | "ai_feedback_generated_at" | "beta_ai_feedback" | "beta_section_feedback" | "beta_final_feedback" | "beta_interview_flow_summary" | "beta_ai_feedback_generated_at" | "human_feedback_updated_at" | "evaluated_at" | "reschedule_count" | "last_rescheduled_at" | "first_assigned_at" | "awaiting_recruiter_action" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["interview"]>
|
|
68892
68926
|
export type InterviewInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
68893
68927
|
candidate?: boolean | Interview$candidateArgs<ExtArgs>
|
|
68894
68928
|
interviewer?: boolean | Interview$interviewerArgs<ExtArgs>
|
|
@@ -68958,6 +68992,7 @@ export namespace Prisma {
|
|
|
68958
68992
|
resume_id: string
|
|
68959
68993
|
job_description_id: string
|
|
68960
68994
|
calendar_event_id: string | null
|
|
68995
|
+
calendar_events: Prisma.JsonValue | null
|
|
68961
68996
|
/**
|
|
68962
68997
|
* Data
|
|
68963
68998
|
*/
|
|
@@ -69484,6 +69519,7 @@ export namespace Prisma {
|
|
|
69484
69519
|
readonly resume_id: FieldRef<"Interview", 'String'>
|
|
69485
69520
|
readonly job_description_id: FieldRef<"Interview", 'String'>
|
|
69486
69521
|
readonly calendar_event_id: FieldRef<"Interview", 'String'>
|
|
69522
|
+
readonly calendar_events: FieldRef<"Interview", 'Json'>
|
|
69487
69523
|
readonly room_name: FieldRef<"Interview", 'String'>
|
|
69488
69524
|
readonly interview_summary: FieldRef<"Interview", 'String[]'>
|
|
69489
69525
|
readonly scheduled_start_time: FieldRef<"Interview", 'DateTime'>
|
|
@@ -125917,10 +125953,12 @@ export namespace Prisma {
|
|
|
125917
125953
|
|
|
125918
125954
|
export type ResumeAvgAggregateOutputType = {
|
|
125919
125955
|
yearsOfExperience: number | null
|
|
125956
|
+
intake_progress: number | null
|
|
125920
125957
|
}
|
|
125921
125958
|
|
|
125922
125959
|
export type ResumeSumAggregateOutputType = {
|
|
125923
125960
|
yearsOfExperience: number | null
|
|
125961
|
+
intake_progress: number | null
|
|
125924
125962
|
}
|
|
125925
125963
|
|
|
125926
125964
|
export type ResumeMinAggregateOutputType = {
|
|
@@ -125940,6 +125978,12 @@ export namespace Prisma {
|
|
|
125940
125978
|
is_active: boolean | null
|
|
125941
125979
|
name: string | null
|
|
125942
125980
|
yearsOfExperience: number | null
|
|
125981
|
+
status: $Enums.ResumeStatus | null
|
|
125982
|
+
origin: $Enums.ResumeOrigin | null
|
|
125983
|
+
intake_session_id: string | null
|
|
125984
|
+
intake_progress: number | null
|
|
125985
|
+
orion_execution_id: string | null
|
|
125986
|
+
tailoring_jd_text: string | null
|
|
125943
125987
|
}
|
|
125944
125988
|
|
|
125945
125989
|
export type ResumeMaxAggregateOutputType = {
|
|
@@ -125959,6 +126003,12 @@ export namespace Prisma {
|
|
|
125959
126003
|
is_active: boolean | null
|
|
125960
126004
|
name: string | null
|
|
125961
126005
|
yearsOfExperience: number | null
|
|
126006
|
+
status: $Enums.ResumeStatus | null
|
|
126007
|
+
origin: $Enums.ResumeOrigin | null
|
|
126008
|
+
intake_session_id: string | null
|
|
126009
|
+
intake_progress: number | null
|
|
126010
|
+
orion_execution_id: string | null
|
|
126011
|
+
tailoring_jd_text: string | null
|
|
125962
126012
|
}
|
|
125963
126013
|
|
|
125964
126014
|
export type ResumeCountAggregateOutputType = {
|
|
@@ -125979,16 +126029,28 @@ export namespace Prisma {
|
|
|
125979
126029
|
is_active: number
|
|
125980
126030
|
name: number
|
|
125981
126031
|
yearsOfExperience: number
|
|
126032
|
+
status: number
|
|
126033
|
+
origin: number
|
|
126034
|
+
intake_session_id: number
|
|
126035
|
+
conversation_history: number
|
|
126036
|
+
intake_progress: number
|
|
126037
|
+
orion_execution_id: number
|
|
126038
|
+
tailoring_jd_text: number
|
|
126039
|
+
tailoring_jd_parsed: number
|
|
126040
|
+
tailoring_gap_analysis: number
|
|
126041
|
+
tailoring_draft: number
|
|
125982
126042
|
_all: number
|
|
125983
126043
|
}
|
|
125984
126044
|
|
|
125985
126045
|
|
|
125986
126046
|
export type ResumeAvgAggregateInputType = {
|
|
125987
126047
|
yearsOfExperience?: true
|
|
126048
|
+
intake_progress?: true
|
|
125988
126049
|
}
|
|
125989
126050
|
|
|
125990
126051
|
export type ResumeSumAggregateInputType = {
|
|
125991
126052
|
yearsOfExperience?: true
|
|
126053
|
+
intake_progress?: true
|
|
125992
126054
|
}
|
|
125993
126055
|
|
|
125994
126056
|
export type ResumeMinAggregateInputType = {
|
|
@@ -126008,6 +126070,12 @@ export namespace Prisma {
|
|
|
126008
126070
|
is_active?: true
|
|
126009
126071
|
name?: true
|
|
126010
126072
|
yearsOfExperience?: true
|
|
126073
|
+
status?: true
|
|
126074
|
+
origin?: true
|
|
126075
|
+
intake_session_id?: true
|
|
126076
|
+
intake_progress?: true
|
|
126077
|
+
orion_execution_id?: true
|
|
126078
|
+
tailoring_jd_text?: true
|
|
126011
126079
|
}
|
|
126012
126080
|
|
|
126013
126081
|
export type ResumeMaxAggregateInputType = {
|
|
@@ -126027,6 +126095,12 @@ export namespace Prisma {
|
|
|
126027
126095
|
is_active?: true
|
|
126028
126096
|
name?: true
|
|
126029
126097
|
yearsOfExperience?: true
|
|
126098
|
+
status?: true
|
|
126099
|
+
origin?: true
|
|
126100
|
+
intake_session_id?: true
|
|
126101
|
+
intake_progress?: true
|
|
126102
|
+
orion_execution_id?: true
|
|
126103
|
+
tailoring_jd_text?: true
|
|
126030
126104
|
}
|
|
126031
126105
|
|
|
126032
126106
|
export type ResumeCountAggregateInputType = {
|
|
@@ -126047,6 +126121,16 @@ export namespace Prisma {
|
|
|
126047
126121
|
is_active?: true
|
|
126048
126122
|
name?: true
|
|
126049
126123
|
yearsOfExperience?: true
|
|
126124
|
+
status?: true
|
|
126125
|
+
origin?: true
|
|
126126
|
+
intake_session_id?: true
|
|
126127
|
+
conversation_history?: true
|
|
126128
|
+
intake_progress?: true
|
|
126129
|
+
orion_execution_id?: true
|
|
126130
|
+
tailoring_jd_text?: true
|
|
126131
|
+
tailoring_jd_parsed?: true
|
|
126132
|
+
tailoring_gap_analysis?: true
|
|
126133
|
+
tailoring_draft?: true
|
|
126050
126134
|
_all?: true
|
|
126051
126135
|
}
|
|
126052
126136
|
|
|
@@ -126154,6 +126238,16 @@ export namespace Prisma {
|
|
|
126154
126238
|
is_active: boolean
|
|
126155
126239
|
name: string | null
|
|
126156
126240
|
yearsOfExperience: number | null
|
|
126241
|
+
status: $Enums.ResumeStatus | null
|
|
126242
|
+
origin: $Enums.ResumeOrigin | null
|
|
126243
|
+
intake_session_id: string | null
|
|
126244
|
+
conversation_history: JsonValue | null
|
|
126245
|
+
intake_progress: number | null
|
|
126246
|
+
orion_execution_id: string | null
|
|
126247
|
+
tailoring_jd_text: string | null
|
|
126248
|
+
tailoring_jd_parsed: JsonValue | null
|
|
126249
|
+
tailoring_gap_analysis: JsonValue | null
|
|
126250
|
+
tailoring_draft: JsonValue | null
|
|
126157
126251
|
_count: ResumeCountAggregateOutputType | null
|
|
126158
126252
|
_avg: ResumeAvgAggregateOutputType | null
|
|
126159
126253
|
_sum: ResumeSumAggregateOutputType | null
|
|
@@ -126193,6 +126287,16 @@ export namespace Prisma {
|
|
|
126193
126287
|
is_active?: boolean
|
|
126194
126288
|
name?: boolean
|
|
126195
126289
|
yearsOfExperience?: boolean
|
|
126290
|
+
status?: boolean
|
|
126291
|
+
origin?: boolean
|
|
126292
|
+
intake_session_id?: boolean
|
|
126293
|
+
conversation_history?: boolean
|
|
126294
|
+
intake_progress?: boolean
|
|
126295
|
+
orion_execution_id?: boolean
|
|
126296
|
+
tailoring_jd_text?: boolean
|
|
126297
|
+
tailoring_jd_parsed?: boolean
|
|
126298
|
+
tailoring_gap_analysis?: boolean
|
|
126299
|
+
tailoring_draft?: boolean
|
|
126196
126300
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
126197
126301
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
126198
126302
|
job_description?: boolean | Resume$job_descriptionArgs<ExtArgs>
|
|
@@ -126225,6 +126329,16 @@ export namespace Prisma {
|
|
|
126225
126329
|
is_active?: boolean
|
|
126226
126330
|
name?: boolean
|
|
126227
126331
|
yearsOfExperience?: boolean
|
|
126332
|
+
status?: boolean
|
|
126333
|
+
origin?: boolean
|
|
126334
|
+
intake_session_id?: boolean
|
|
126335
|
+
conversation_history?: boolean
|
|
126336
|
+
intake_progress?: boolean
|
|
126337
|
+
orion_execution_id?: boolean
|
|
126338
|
+
tailoring_jd_text?: boolean
|
|
126339
|
+
tailoring_jd_parsed?: boolean
|
|
126340
|
+
tailoring_gap_analysis?: boolean
|
|
126341
|
+
tailoring_draft?: boolean
|
|
126228
126342
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
126229
126343
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
126230
126344
|
job_description?: boolean | Resume$job_descriptionArgs<ExtArgs>
|
|
@@ -126250,6 +126364,16 @@ export namespace Prisma {
|
|
|
126250
126364
|
is_active?: boolean
|
|
126251
126365
|
name?: boolean
|
|
126252
126366
|
yearsOfExperience?: boolean
|
|
126367
|
+
status?: boolean
|
|
126368
|
+
origin?: boolean
|
|
126369
|
+
intake_session_id?: boolean
|
|
126370
|
+
conversation_history?: boolean
|
|
126371
|
+
intake_progress?: boolean
|
|
126372
|
+
orion_execution_id?: boolean
|
|
126373
|
+
tailoring_jd_text?: boolean
|
|
126374
|
+
tailoring_jd_parsed?: boolean
|
|
126375
|
+
tailoring_gap_analysis?: boolean
|
|
126376
|
+
tailoring_draft?: boolean
|
|
126253
126377
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
126254
126378
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
126255
126379
|
job_description?: boolean | Resume$job_descriptionArgs<ExtArgs>
|
|
@@ -126275,9 +126399,19 @@ export namespace Prisma {
|
|
|
126275
126399
|
is_active?: boolean
|
|
126276
126400
|
name?: boolean
|
|
126277
126401
|
yearsOfExperience?: boolean
|
|
126402
|
+
status?: boolean
|
|
126403
|
+
origin?: boolean
|
|
126404
|
+
intake_session_id?: boolean
|
|
126405
|
+
conversation_history?: boolean
|
|
126406
|
+
intake_progress?: boolean
|
|
126407
|
+
orion_execution_id?: boolean
|
|
126408
|
+
tailoring_jd_text?: boolean
|
|
126409
|
+
tailoring_jd_parsed?: boolean
|
|
126410
|
+
tailoring_gap_analysis?: boolean
|
|
126411
|
+
tailoring_draft?: boolean
|
|
126278
126412
|
}
|
|
126279
126413
|
|
|
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"]>
|
|
126414
|
+
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
126415
|
export type ResumeInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
126282
126416
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
126283
126417
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
@@ -126352,6 +126486,49 @@ export namespace Prisma {
|
|
|
126352
126486
|
is_active: boolean
|
|
126353
126487
|
name: string | null
|
|
126354
126488
|
yearsOfExperience: number | null
|
|
126489
|
+
/**
|
|
126490
|
+
* Lifecycle for AI-authored resumes. Null for legacy/uploaded rows (treated as COMPLETED).
|
|
126491
|
+
*/
|
|
126492
|
+
status: $Enums.ResumeStatus | null
|
|
126493
|
+
/**
|
|
126494
|
+
* How this resume came to exist. Null for legacy rows (treated as UPLOADED).
|
|
126495
|
+
*/
|
|
126496
|
+
origin: $Enums.ResumeOrigin | null
|
|
126497
|
+
/**
|
|
126498
|
+
* Intake session id echoed to the client so a refresh can resume the conversation.
|
|
126499
|
+
*/
|
|
126500
|
+
intake_session_id: string | null
|
|
126501
|
+
/**
|
|
126502
|
+
* Durable copy of the chat transcript for the AI intake; Redis is the hot path.
|
|
126503
|
+
*/
|
|
126504
|
+
conversation_history: Prisma.JsonValue | null
|
|
126505
|
+
/**
|
|
126506
|
+
* Progress 0-100 reported by the ResumeIntake workflow.
|
|
126507
|
+
*/
|
|
126508
|
+
intake_progress: number | null
|
|
126509
|
+
/**
|
|
126510
|
+
* Last Orion execution id for the intake/generate workflow, for tracing.
|
|
126511
|
+
*/
|
|
126512
|
+
orion_execution_id: string | null
|
|
126513
|
+
/**
|
|
126514
|
+
* Raw job description text the candidate pasted to start a tailoring session.
|
|
126515
|
+
*/
|
|
126516
|
+
tailoring_jd_text: string | null
|
|
126517
|
+
/**
|
|
126518
|
+
* Cached JobDescriptionParser output; computed once per tailoring session.
|
|
126519
|
+
*/
|
|
126520
|
+
tailoring_jd_parsed: Prisma.JsonValue | null
|
|
126521
|
+
/**
|
|
126522
|
+
* Cached ResumeGapAnalysis output; computed once per tailoring session.
|
|
126523
|
+
*/
|
|
126524
|
+
tailoring_gap_analysis: Prisma.JsonValue | null
|
|
126525
|
+
/**
|
|
126526
|
+
* Working tailoring state: the draft ResumeFormData, tailoring notes, the
|
|
126527
|
+
* pending contradiction awaiting resolution, and the question counter.
|
|
126528
|
+
* Scratch space only — the draft is materialised into `resume_data` when the
|
|
126529
|
+
* candidate saves it.
|
|
126530
|
+
*/
|
|
126531
|
+
tailoring_draft: Prisma.JsonValue | null
|
|
126355
126532
|
}, ExtArgs["result"]["resume"]>
|
|
126356
126533
|
composites: {}
|
|
126357
126534
|
}
|
|
@@ -126803,6 +126980,16 @@ export namespace Prisma {
|
|
|
126803
126980
|
readonly is_active: FieldRef<"Resume", 'Boolean'>
|
|
126804
126981
|
readonly name: FieldRef<"Resume", 'String'>
|
|
126805
126982
|
readonly yearsOfExperience: FieldRef<"Resume", 'Int'>
|
|
126983
|
+
readonly status: FieldRef<"Resume", 'ResumeStatus'>
|
|
126984
|
+
readonly origin: FieldRef<"Resume", 'ResumeOrigin'>
|
|
126985
|
+
readonly intake_session_id: FieldRef<"Resume", 'String'>
|
|
126986
|
+
readonly conversation_history: FieldRef<"Resume", 'Json'>
|
|
126987
|
+
readonly intake_progress: FieldRef<"Resume", 'Int'>
|
|
126988
|
+
readonly orion_execution_id: FieldRef<"Resume", 'String'>
|
|
126989
|
+
readonly tailoring_jd_text: FieldRef<"Resume", 'String'>
|
|
126990
|
+
readonly tailoring_jd_parsed: FieldRef<"Resume", 'Json'>
|
|
126991
|
+
readonly tailoring_gap_analysis: FieldRef<"Resume", 'Json'>
|
|
126992
|
+
readonly tailoring_draft: FieldRef<"Resume", 'Json'>
|
|
126806
126993
|
}
|
|
126807
126994
|
|
|
126808
126995
|
|
|
@@ -150379,6 +150566,7 @@ export namespace Prisma {
|
|
|
150379
150566
|
resume_id: 'resume_id',
|
|
150380
150567
|
job_description_id: 'job_description_id',
|
|
150381
150568
|
calendar_event_id: 'calendar_event_id',
|
|
150569
|
+
calendar_events: 'calendar_events',
|
|
150382
150570
|
room_name: 'room_name',
|
|
150383
150571
|
interview_summary: 'interview_summary',
|
|
150384
150572
|
scheduled_start_time: 'scheduled_start_time',
|
|
@@ -151462,7 +151650,17 @@ export namespace Prisma {
|
|
|
151462
151650
|
updated_by: 'updated_by',
|
|
151463
151651
|
is_active: 'is_active',
|
|
151464
151652
|
name: 'name',
|
|
151465
|
-
yearsOfExperience: 'yearsOfExperience'
|
|
151653
|
+
yearsOfExperience: 'yearsOfExperience',
|
|
151654
|
+
status: 'status',
|
|
151655
|
+
origin: 'origin',
|
|
151656
|
+
intake_session_id: 'intake_session_id',
|
|
151657
|
+
conversation_history: 'conversation_history',
|
|
151658
|
+
intake_progress: 'intake_progress',
|
|
151659
|
+
orion_execution_id: 'orion_execution_id',
|
|
151660
|
+
tailoring_jd_text: 'tailoring_jd_text',
|
|
151661
|
+
tailoring_jd_parsed: 'tailoring_jd_parsed',
|
|
151662
|
+
tailoring_gap_analysis: 'tailoring_gap_analysis',
|
|
151663
|
+
tailoring_draft: 'tailoring_draft'
|
|
151466
151664
|
};
|
|
151467
151665
|
|
|
151468
151666
|
export type ResumeScalarFieldEnum = (typeof ResumeScalarFieldEnum)[keyof typeof ResumeScalarFieldEnum]
|
|
@@ -152981,6 +153179,34 @@ export namespace Prisma {
|
|
|
152981
153179
|
|
|
152982
153180
|
|
|
152983
153181
|
|
|
153182
|
+
/**
|
|
153183
|
+
* Reference to a field of type 'ResumeStatus'
|
|
153184
|
+
*/
|
|
153185
|
+
export type EnumResumeStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ResumeStatus'>
|
|
153186
|
+
|
|
153187
|
+
|
|
153188
|
+
|
|
153189
|
+
/**
|
|
153190
|
+
* Reference to a field of type 'ResumeStatus[]'
|
|
153191
|
+
*/
|
|
153192
|
+
export type ListEnumResumeStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ResumeStatus[]'>
|
|
153193
|
+
|
|
153194
|
+
|
|
153195
|
+
|
|
153196
|
+
/**
|
|
153197
|
+
* Reference to a field of type 'ResumeOrigin'
|
|
153198
|
+
*/
|
|
153199
|
+
export type EnumResumeOriginFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ResumeOrigin'>
|
|
153200
|
+
|
|
153201
|
+
|
|
153202
|
+
|
|
153203
|
+
/**
|
|
153204
|
+
* Reference to a field of type 'ResumeOrigin[]'
|
|
153205
|
+
*/
|
|
153206
|
+
export type ListEnumResumeOriginFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ResumeOrigin[]'>
|
|
153207
|
+
|
|
153208
|
+
|
|
153209
|
+
|
|
152984
153210
|
/**
|
|
152985
153211
|
* Reference to a field of type 'UsageSourceType'
|
|
152986
153212
|
*/
|
|
@@ -158472,6 +158698,7 @@ export namespace Prisma {
|
|
|
158472
158698
|
resume_id?: StringFilter<"Interview"> | string
|
|
158473
158699
|
job_description_id?: StringFilter<"Interview"> | string
|
|
158474
158700
|
calendar_event_id?: StringNullableFilter<"Interview"> | string | null
|
|
158701
|
+
calendar_events?: JsonNullableFilter<"Interview">
|
|
158475
158702
|
room_name?: StringNullableFilter<"Interview"> | string | null
|
|
158476
158703
|
interview_summary?: StringNullableListFilter<"Interview">
|
|
158477
158704
|
scheduled_start_time?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
@@ -158536,6 +158763,7 @@ export namespace Prisma {
|
|
|
158536
158763
|
resume_id?: SortOrder
|
|
158537
158764
|
job_description_id?: SortOrder
|
|
158538
158765
|
calendar_event_id?: SortOrderInput | SortOrder
|
|
158766
|
+
calendar_events?: SortOrderInput | SortOrder
|
|
158539
158767
|
room_name?: SortOrderInput | SortOrder
|
|
158540
158768
|
interview_summary?: SortOrder
|
|
158541
158769
|
scheduled_start_time?: SortOrderInput | SortOrder
|
|
@@ -158605,6 +158833,7 @@ export namespace Prisma {
|
|
|
158605
158833
|
resume_id?: StringFilter<"Interview"> | string
|
|
158606
158834
|
job_description_id?: StringFilter<"Interview"> | string
|
|
158607
158835
|
calendar_event_id?: StringNullableFilter<"Interview"> | string | null
|
|
158836
|
+
calendar_events?: JsonNullableFilter<"Interview">
|
|
158608
158837
|
room_name?: StringNullableFilter<"Interview"> | string | null
|
|
158609
158838
|
interview_summary?: StringNullableListFilter<"Interview">
|
|
158610
158839
|
scheduled_start_time?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
@@ -158668,6 +158897,7 @@ export namespace Prisma {
|
|
|
158668
158897
|
resume_id?: SortOrder
|
|
158669
158898
|
job_description_id?: SortOrder
|
|
158670
158899
|
calendar_event_id?: SortOrderInput | SortOrder
|
|
158900
|
+
calendar_events?: SortOrderInput | SortOrder
|
|
158671
158901
|
room_name?: SortOrderInput | SortOrder
|
|
158672
158902
|
interview_summary?: SortOrder
|
|
158673
158903
|
scheduled_start_time?: SortOrderInput | SortOrder
|
|
@@ -158726,6 +158956,7 @@ export namespace Prisma {
|
|
|
158726
158956
|
resume_id?: StringWithAggregatesFilter<"Interview"> | string
|
|
158727
158957
|
job_description_id?: StringWithAggregatesFilter<"Interview"> | string
|
|
158728
158958
|
calendar_event_id?: StringNullableWithAggregatesFilter<"Interview"> | string | null
|
|
158959
|
+
calendar_events?: JsonNullableWithAggregatesFilter<"Interview">
|
|
158729
158960
|
room_name?: StringNullableWithAggregatesFilter<"Interview"> | string | null
|
|
158730
158961
|
interview_summary?: StringNullableListFilter<"Interview">
|
|
158731
158962
|
scheduled_start_time?: DateTimeNullableWithAggregatesFilter<"Interview"> | Date | string | null
|
|
@@ -164307,6 +164538,16 @@ export namespace Prisma {
|
|
|
164307
164538
|
is_active?: BoolFilter<"Resume"> | boolean
|
|
164308
164539
|
name?: StringNullableFilter<"Resume"> | string | null
|
|
164309
164540
|
yearsOfExperience?: IntNullableFilter<"Resume"> | number | null
|
|
164541
|
+
status?: EnumResumeStatusNullableFilter<"Resume"> | $Enums.ResumeStatus | null
|
|
164542
|
+
origin?: EnumResumeOriginNullableFilter<"Resume"> | $Enums.ResumeOrigin | null
|
|
164543
|
+
intake_session_id?: StringNullableFilter<"Resume"> | string | null
|
|
164544
|
+
conversation_history?: JsonNullableFilter<"Resume">
|
|
164545
|
+
intake_progress?: IntNullableFilter<"Resume"> | number | null
|
|
164546
|
+
orion_execution_id?: StringNullableFilter<"Resume"> | string | null
|
|
164547
|
+
tailoring_jd_text?: StringNullableFilter<"Resume"> | string | null
|
|
164548
|
+
tailoring_jd_parsed?: JsonNullableFilter<"Resume">
|
|
164549
|
+
tailoring_gap_analysis?: JsonNullableFilter<"Resume">
|
|
164550
|
+
tailoring_draft?: JsonNullableFilter<"Resume">
|
|
164310
164551
|
user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
164311
164552
|
organisation?: XOR<OrganisationNullableScalarRelationFilter, OrganisationWhereInput> | null
|
|
164312
164553
|
job_description?: XOR<JobDescriptionNullableScalarRelationFilter, JobDescriptionWhereInput> | null
|
|
@@ -164338,6 +164579,16 @@ export namespace Prisma {
|
|
|
164338
164579
|
is_active?: SortOrder
|
|
164339
164580
|
name?: SortOrderInput | SortOrder
|
|
164340
164581
|
yearsOfExperience?: SortOrderInput | SortOrder
|
|
164582
|
+
status?: SortOrderInput | SortOrder
|
|
164583
|
+
origin?: SortOrderInput | SortOrder
|
|
164584
|
+
intake_session_id?: SortOrderInput | SortOrder
|
|
164585
|
+
conversation_history?: SortOrderInput | SortOrder
|
|
164586
|
+
intake_progress?: SortOrderInput | SortOrder
|
|
164587
|
+
orion_execution_id?: SortOrderInput | SortOrder
|
|
164588
|
+
tailoring_jd_text?: SortOrderInput | SortOrder
|
|
164589
|
+
tailoring_jd_parsed?: SortOrderInput | SortOrder
|
|
164590
|
+
tailoring_gap_analysis?: SortOrderInput | SortOrder
|
|
164591
|
+
tailoring_draft?: SortOrderInput | SortOrder
|
|
164341
164592
|
user?: UserOrderByWithRelationInput
|
|
164342
164593
|
organisation?: OrganisationOrderByWithRelationInput
|
|
164343
164594
|
job_description?: JobDescriptionOrderByWithRelationInput
|
|
@@ -164372,6 +164623,16 @@ export namespace Prisma {
|
|
|
164372
164623
|
is_active?: BoolFilter<"Resume"> | boolean
|
|
164373
164624
|
name?: StringNullableFilter<"Resume"> | string | null
|
|
164374
164625
|
yearsOfExperience?: IntNullableFilter<"Resume"> | number | null
|
|
164626
|
+
status?: EnumResumeStatusNullableFilter<"Resume"> | $Enums.ResumeStatus | null
|
|
164627
|
+
origin?: EnumResumeOriginNullableFilter<"Resume"> | $Enums.ResumeOrigin | null
|
|
164628
|
+
intake_session_id?: StringNullableFilter<"Resume"> | string | null
|
|
164629
|
+
conversation_history?: JsonNullableFilter<"Resume">
|
|
164630
|
+
intake_progress?: IntNullableFilter<"Resume"> | number | null
|
|
164631
|
+
orion_execution_id?: StringNullableFilter<"Resume"> | string | null
|
|
164632
|
+
tailoring_jd_text?: StringNullableFilter<"Resume"> | string | null
|
|
164633
|
+
tailoring_jd_parsed?: JsonNullableFilter<"Resume">
|
|
164634
|
+
tailoring_gap_analysis?: JsonNullableFilter<"Resume">
|
|
164635
|
+
tailoring_draft?: JsonNullableFilter<"Resume">
|
|
164375
164636
|
user?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
|
164376
164637
|
organisation?: XOR<OrganisationNullableScalarRelationFilter, OrganisationWhereInput> | null
|
|
164377
164638
|
job_description?: XOR<JobDescriptionNullableScalarRelationFilter, JobDescriptionWhereInput> | null
|
|
@@ -164403,6 +164664,16 @@ export namespace Prisma {
|
|
|
164403
164664
|
is_active?: SortOrder
|
|
164404
164665
|
name?: SortOrderInput | SortOrder
|
|
164405
164666
|
yearsOfExperience?: SortOrderInput | SortOrder
|
|
164667
|
+
status?: SortOrderInput | SortOrder
|
|
164668
|
+
origin?: SortOrderInput | SortOrder
|
|
164669
|
+
intake_session_id?: SortOrderInput | SortOrder
|
|
164670
|
+
conversation_history?: SortOrderInput | SortOrder
|
|
164671
|
+
intake_progress?: SortOrderInput | SortOrder
|
|
164672
|
+
orion_execution_id?: SortOrderInput | SortOrder
|
|
164673
|
+
tailoring_jd_text?: SortOrderInput | SortOrder
|
|
164674
|
+
tailoring_jd_parsed?: SortOrderInput | SortOrder
|
|
164675
|
+
tailoring_gap_analysis?: SortOrderInput | SortOrder
|
|
164676
|
+
tailoring_draft?: SortOrderInput | SortOrder
|
|
164406
164677
|
_count?: ResumeCountOrderByAggregateInput
|
|
164407
164678
|
_avg?: ResumeAvgOrderByAggregateInput
|
|
164408
164679
|
_max?: ResumeMaxOrderByAggregateInput
|
|
@@ -164431,6 +164702,16 @@ export namespace Prisma {
|
|
|
164431
164702
|
is_active?: BoolWithAggregatesFilter<"Resume"> | boolean
|
|
164432
164703
|
name?: StringNullableWithAggregatesFilter<"Resume"> | string | null
|
|
164433
164704
|
yearsOfExperience?: IntNullableWithAggregatesFilter<"Resume"> | number | null
|
|
164705
|
+
status?: EnumResumeStatusNullableWithAggregatesFilter<"Resume"> | $Enums.ResumeStatus | null
|
|
164706
|
+
origin?: EnumResumeOriginNullableWithAggregatesFilter<"Resume"> | $Enums.ResumeOrigin | null
|
|
164707
|
+
intake_session_id?: StringNullableWithAggregatesFilter<"Resume"> | string | null
|
|
164708
|
+
conversation_history?: JsonNullableWithAggregatesFilter<"Resume">
|
|
164709
|
+
intake_progress?: IntNullableWithAggregatesFilter<"Resume"> | number | null
|
|
164710
|
+
orion_execution_id?: StringNullableWithAggregatesFilter<"Resume"> | string | null
|
|
164711
|
+
tailoring_jd_text?: StringNullableWithAggregatesFilter<"Resume"> | string | null
|
|
164712
|
+
tailoring_jd_parsed?: JsonNullableWithAggregatesFilter<"Resume">
|
|
164713
|
+
tailoring_gap_analysis?: JsonNullableWithAggregatesFilter<"Resume">
|
|
164714
|
+
tailoring_draft?: JsonNullableWithAggregatesFilter<"Resume">
|
|
164434
164715
|
}
|
|
164435
164716
|
|
|
164436
164717
|
export type ResumeDataWhereInput = {
|
|
@@ -172784,6 +173065,7 @@ export namespace Prisma {
|
|
|
172784
173065
|
export type InterviewCreateInput = {
|
|
172785
173066
|
id?: string
|
|
172786
173067
|
calendar_event_id?: string | null
|
|
173068
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
172787
173069
|
room_name?: string | null
|
|
172788
173070
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
172789
173071
|
scheduled_start_time?: Date | string | null
|
|
@@ -172847,6 +173129,7 @@ export namespace Prisma {
|
|
|
172847
173129
|
resume_id: string
|
|
172848
173130
|
job_description_id: string
|
|
172849
173131
|
calendar_event_id?: string | null
|
|
173132
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
172850
173133
|
room_name?: string | null
|
|
172851
173134
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
172852
173135
|
scheduled_start_time?: Date | string | null
|
|
@@ -172896,6 +173179,7 @@ export namespace Prisma {
|
|
|
172896
173179
|
export type InterviewUpdateInput = {
|
|
172897
173180
|
id?: StringFieldUpdateOperationsInput | string
|
|
172898
173181
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
173182
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
172899
173183
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
172900
173184
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
172901
173185
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -172959,6 +173243,7 @@ export namespace Prisma {
|
|
|
172959
173243
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
172960
173244
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
172961
173245
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
173246
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
172962
173247
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
172963
173248
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
172964
173249
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -173015,6 +173300,7 @@ export namespace Prisma {
|
|
|
173015
173300
|
resume_id: string
|
|
173016
173301
|
job_description_id: string
|
|
173017
173302
|
calendar_event_id?: string | null
|
|
173303
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
173018
173304
|
room_name?: string | null
|
|
173019
173305
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
173020
173306
|
scheduled_start_time?: Date | string | null
|
|
@@ -173058,6 +173344,7 @@ export namespace Prisma {
|
|
|
173058
173344
|
export type InterviewUpdateManyMutationInput = {
|
|
173059
173345
|
id?: StringFieldUpdateOperationsInput | string
|
|
173060
173346
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
173347
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
173061
173348
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
173062
173349
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
173063
173350
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -173107,6 +173394,7 @@ export namespace Prisma {
|
|
|
173107
173394
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
173108
173395
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
173109
173396
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
173397
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
173110
173398
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
173111
173399
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
173112
173400
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -179697,6 +179985,16 @@ export namespace Prisma {
|
|
|
179697
179985
|
is_active?: boolean
|
|
179698
179986
|
name?: string | null
|
|
179699
179987
|
yearsOfExperience?: number | null
|
|
179988
|
+
status?: $Enums.ResumeStatus | null
|
|
179989
|
+
origin?: $Enums.ResumeOrigin | null
|
|
179990
|
+
intake_session_id?: string | null
|
|
179991
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
179992
|
+
intake_progress?: number | null
|
|
179993
|
+
orion_execution_id?: string | null
|
|
179994
|
+
tailoring_jd_text?: string | null
|
|
179995
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
179996
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
179997
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
179700
179998
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
179701
179999
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
179702
180000
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -179728,6 +180026,16 @@ export namespace Prisma {
|
|
|
179728
180026
|
is_active?: boolean
|
|
179729
180027
|
name?: string | null
|
|
179730
180028
|
yearsOfExperience?: number | null
|
|
180029
|
+
status?: $Enums.ResumeStatus | null
|
|
180030
|
+
origin?: $Enums.ResumeOrigin | null
|
|
180031
|
+
intake_session_id?: string | null
|
|
180032
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
180033
|
+
intake_progress?: number | null
|
|
180034
|
+
orion_execution_id?: string | null
|
|
180035
|
+
tailoring_jd_text?: string | null
|
|
180036
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
180037
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
180038
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
179731
180039
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
179732
180040
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
179733
180041
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -179749,6 +180057,16 @@ export namespace Prisma {
|
|
|
179749
180057
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
179750
180058
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
179751
180059
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180060
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
180061
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
180062
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180063
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
180064
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180065
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180066
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180067
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
180068
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
180069
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
179752
180070
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
179753
180071
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
179754
180072
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -179780,6 +180098,16 @@ export namespace Prisma {
|
|
|
179780
180098
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
179781
180099
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
179782
180100
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180101
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
180102
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
180103
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180104
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
180105
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180106
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180107
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180108
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
180109
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
180110
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
179783
180111
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
179784
180112
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
179785
180113
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -179806,6 +180134,16 @@ export namespace Prisma {
|
|
|
179806
180134
|
is_active?: boolean
|
|
179807
180135
|
name?: string | null
|
|
179808
180136
|
yearsOfExperience?: number | null
|
|
180137
|
+
status?: $Enums.ResumeStatus | null
|
|
180138
|
+
origin?: $Enums.ResumeOrigin | null
|
|
180139
|
+
intake_session_id?: string | null
|
|
180140
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
180141
|
+
intake_progress?: number | null
|
|
180142
|
+
orion_execution_id?: string | null
|
|
180143
|
+
tailoring_jd_text?: string | null
|
|
180144
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
180145
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
180146
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
179809
180147
|
}
|
|
179810
180148
|
|
|
179811
180149
|
export type ResumeUpdateManyMutationInput = {
|
|
@@ -179821,6 +180159,16 @@ export namespace Prisma {
|
|
|
179821
180159
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
179822
180160
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
179823
180161
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180162
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
180163
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
180164
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180165
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
180166
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180167
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180168
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180169
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
180170
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
180171
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
179824
180172
|
}
|
|
179825
180173
|
|
|
179826
180174
|
export type ResumeUncheckedUpdateManyInput = {
|
|
@@ -179841,6 +180189,16 @@ export namespace Prisma {
|
|
|
179841
180189
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
179842
180190
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
179843
180191
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180192
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
180193
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
180194
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180195
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
180196
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180197
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180198
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180199
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
180200
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
180201
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
179844
180202
|
}
|
|
179845
180203
|
|
|
179846
180204
|
export type ResumeDataCreateInput = {
|
|
@@ -186985,6 +187343,7 @@ export namespace Prisma {
|
|
|
186985
187343
|
resume_id?: SortOrder
|
|
186986
187344
|
job_description_id?: SortOrder
|
|
186987
187345
|
calendar_event_id?: SortOrder
|
|
187346
|
+
calendar_events?: SortOrder
|
|
186988
187347
|
room_name?: SortOrder
|
|
186989
187348
|
interview_summary?: SortOrder
|
|
186990
187349
|
scheduled_start_time?: SortOrder
|
|
@@ -191304,6 +191663,20 @@ export namespace Prisma {
|
|
|
191304
191663
|
recruiter_user_id?: SortOrder
|
|
191305
191664
|
}
|
|
191306
191665
|
|
|
191666
|
+
export type EnumResumeStatusNullableFilter<$PrismaModel = never> = {
|
|
191667
|
+
equals?: $Enums.ResumeStatus | EnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
191668
|
+
in?: $Enums.ResumeStatus[] | ListEnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
191669
|
+
notIn?: $Enums.ResumeStatus[] | ListEnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
191670
|
+
not?: NestedEnumResumeStatusNullableFilter<$PrismaModel> | $Enums.ResumeStatus | null
|
|
191671
|
+
}
|
|
191672
|
+
|
|
191673
|
+
export type EnumResumeOriginNullableFilter<$PrismaModel = never> = {
|
|
191674
|
+
equals?: $Enums.ResumeOrigin | EnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
191675
|
+
in?: $Enums.ResumeOrigin[] | ListEnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
191676
|
+
notIn?: $Enums.ResumeOrigin[] | ListEnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
191677
|
+
not?: NestedEnumResumeOriginNullableFilter<$PrismaModel> | $Enums.ResumeOrigin | null
|
|
191678
|
+
}
|
|
191679
|
+
|
|
191307
191680
|
export type ResumeDataListRelationFilter = {
|
|
191308
191681
|
every?: ResumeDataWhereInput
|
|
191309
191682
|
some?: ResumeDataWhereInput
|
|
@@ -191332,10 +191705,21 @@ export namespace Prisma {
|
|
|
191332
191705
|
is_active?: SortOrder
|
|
191333
191706
|
name?: SortOrder
|
|
191334
191707
|
yearsOfExperience?: SortOrder
|
|
191708
|
+
status?: SortOrder
|
|
191709
|
+
origin?: SortOrder
|
|
191710
|
+
intake_session_id?: SortOrder
|
|
191711
|
+
conversation_history?: SortOrder
|
|
191712
|
+
intake_progress?: SortOrder
|
|
191713
|
+
orion_execution_id?: SortOrder
|
|
191714
|
+
tailoring_jd_text?: SortOrder
|
|
191715
|
+
tailoring_jd_parsed?: SortOrder
|
|
191716
|
+
tailoring_gap_analysis?: SortOrder
|
|
191717
|
+
tailoring_draft?: SortOrder
|
|
191335
191718
|
}
|
|
191336
191719
|
|
|
191337
191720
|
export type ResumeAvgOrderByAggregateInput = {
|
|
191338
191721
|
yearsOfExperience?: SortOrder
|
|
191722
|
+
intake_progress?: SortOrder
|
|
191339
191723
|
}
|
|
191340
191724
|
|
|
191341
191725
|
export type ResumeMaxOrderByAggregateInput = {
|
|
@@ -191355,6 +191739,12 @@ export namespace Prisma {
|
|
|
191355
191739
|
is_active?: SortOrder
|
|
191356
191740
|
name?: SortOrder
|
|
191357
191741
|
yearsOfExperience?: SortOrder
|
|
191742
|
+
status?: SortOrder
|
|
191743
|
+
origin?: SortOrder
|
|
191744
|
+
intake_session_id?: SortOrder
|
|
191745
|
+
intake_progress?: SortOrder
|
|
191746
|
+
orion_execution_id?: SortOrder
|
|
191747
|
+
tailoring_jd_text?: SortOrder
|
|
191358
191748
|
}
|
|
191359
191749
|
|
|
191360
191750
|
export type ResumeMinOrderByAggregateInput = {
|
|
@@ -191374,10 +191764,37 @@ export namespace Prisma {
|
|
|
191374
191764
|
is_active?: SortOrder
|
|
191375
191765
|
name?: SortOrder
|
|
191376
191766
|
yearsOfExperience?: SortOrder
|
|
191767
|
+
status?: SortOrder
|
|
191768
|
+
origin?: SortOrder
|
|
191769
|
+
intake_session_id?: SortOrder
|
|
191770
|
+
intake_progress?: SortOrder
|
|
191771
|
+
orion_execution_id?: SortOrder
|
|
191772
|
+
tailoring_jd_text?: SortOrder
|
|
191377
191773
|
}
|
|
191378
191774
|
|
|
191379
191775
|
export type ResumeSumOrderByAggregateInput = {
|
|
191380
191776
|
yearsOfExperience?: SortOrder
|
|
191777
|
+
intake_progress?: SortOrder
|
|
191778
|
+
}
|
|
191779
|
+
|
|
191780
|
+
export type EnumResumeStatusNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
191781
|
+
equals?: $Enums.ResumeStatus | EnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
191782
|
+
in?: $Enums.ResumeStatus[] | ListEnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
191783
|
+
notIn?: $Enums.ResumeStatus[] | ListEnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
191784
|
+
not?: NestedEnumResumeStatusNullableWithAggregatesFilter<$PrismaModel> | $Enums.ResumeStatus | null
|
|
191785
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
191786
|
+
_min?: NestedEnumResumeStatusNullableFilter<$PrismaModel>
|
|
191787
|
+
_max?: NestedEnumResumeStatusNullableFilter<$PrismaModel>
|
|
191788
|
+
}
|
|
191789
|
+
|
|
191790
|
+
export type EnumResumeOriginNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
191791
|
+
equals?: $Enums.ResumeOrigin | EnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
191792
|
+
in?: $Enums.ResumeOrigin[] | ListEnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
191793
|
+
notIn?: $Enums.ResumeOrigin[] | ListEnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
191794
|
+
not?: NestedEnumResumeOriginNullableWithAggregatesFilter<$PrismaModel> | $Enums.ResumeOrigin | null
|
|
191795
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
191796
|
+
_min?: NestedEnumResumeOriginNullableFilter<$PrismaModel>
|
|
191797
|
+
_max?: NestedEnumResumeOriginNullableFilter<$PrismaModel>
|
|
191381
191798
|
}
|
|
191382
191799
|
|
|
191383
191800
|
export type ResumeDataCountOrderByAggregateInput = {
|
|
@@ -201627,6 +202044,14 @@ export namespace Prisma {
|
|
|
201627
202044
|
connect?: CandidateProfileWhereUniqueInput
|
|
201628
202045
|
}
|
|
201629
202046
|
|
|
202047
|
+
export type NullableEnumResumeStatusFieldUpdateOperationsInput = {
|
|
202048
|
+
set?: $Enums.ResumeStatus | null
|
|
202049
|
+
}
|
|
202050
|
+
|
|
202051
|
+
export type NullableEnumResumeOriginFieldUpdateOperationsInput = {
|
|
202052
|
+
set?: $Enums.ResumeOrigin | null
|
|
202053
|
+
}
|
|
202054
|
+
|
|
201630
202055
|
export type UserUpdateOneWithoutResumeNestedInput = {
|
|
201631
202056
|
create?: XOR<UserCreateWithoutResumeInput, UserUncheckedCreateWithoutResumeInput>
|
|
201632
202057
|
connectOrCreate?: UserCreateOrConnectWithoutResumeInput
|
|
@@ -205547,6 +205972,40 @@ export namespace Prisma {
|
|
|
205547
205972
|
_max?: NestedEnumDifficultyNullableFilter<$PrismaModel>
|
|
205548
205973
|
}
|
|
205549
205974
|
|
|
205975
|
+
export type NestedEnumResumeStatusNullableFilter<$PrismaModel = never> = {
|
|
205976
|
+
equals?: $Enums.ResumeStatus | EnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
205977
|
+
in?: $Enums.ResumeStatus[] | ListEnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
205978
|
+
notIn?: $Enums.ResumeStatus[] | ListEnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
205979
|
+
not?: NestedEnumResumeStatusNullableFilter<$PrismaModel> | $Enums.ResumeStatus | null
|
|
205980
|
+
}
|
|
205981
|
+
|
|
205982
|
+
export type NestedEnumResumeOriginNullableFilter<$PrismaModel = never> = {
|
|
205983
|
+
equals?: $Enums.ResumeOrigin | EnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
205984
|
+
in?: $Enums.ResumeOrigin[] | ListEnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
205985
|
+
notIn?: $Enums.ResumeOrigin[] | ListEnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
205986
|
+
not?: NestedEnumResumeOriginNullableFilter<$PrismaModel> | $Enums.ResumeOrigin | null
|
|
205987
|
+
}
|
|
205988
|
+
|
|
205989
|
+
export type NestedEnumResumeStatusNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
205990
|
+
equals?: $Enums.ResumeStatus | EnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
205991
|
+
in?: $Enums.ResumeStatus[] | ListEnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
205992
|
+
notIn?: $Enums.ResumeStatus[] | ListEnumResumeStatusFieldRefInput<$PrismaModel> | null
|
|
205993
|
+
not?: NestedEnumResumeStatusNullableWithAggregatesFilter<$PrismaModel> | $Enums.ResumeStatus | null
|
|
205994
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
205995
|
+
_min?: NestedEnumResumeStatusNullableFilter<$PrismaModel>
|
|
205996
|
+
_max?: NestedEnumResumeStatusNullableFilter<$PrismaModel>
|
|
205997
|
+
}
|
|
205998
|
+
|
|
205999
|
+
export type NestedEnumResumeOriginNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
206000
|
+
equals?: $Enums.ResumeOrigin | EnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
206001
|
+
in?: $Enums.ResumeOrigin[] | ListEnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
206002
|
+
notIn?: $Enums.ResumeOrigin[] | ListEnumResumeOriginFieldRefInput<$PrismaModel> | null
|
|
206003
|
+
not?: NestedEnumResumeOriginNullableWithAggregatesFilter<$PrismaModel> | $Enums.ResumeOrigin | null
|
|
206004
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
206005
|
+
_min?: NestedEnumResumeOriginNullableFilter<$PrismaModel>
|
|
206006
|
+
_max?: NestedEnumResumeOriginNullableFilter<$PrismaModel>
|
|
206007
|
+
}
|
|
206008
|
+
|
|
205550
206009
|
export type NestedEnumUsageSourceTypeFilter<$PrismaModel = never> = {
|
|
205551
206010
|
equals?: $Enums.UsageSourceType | EnumUsageSourceTypeFieldRefInput<$PrismaModel>
|
|
205552
206011
|
in?: $Enums.UsageSourceType[] | ListEnumUsageSourceTypeFieldRefInput<$PrismaModel>
|
|
@@ -208565,6 +209024,16 @@ export namespace Prisma {
|
|
|
208565
209024
|
is_active?: boolean
|
|
208566
209025
|
name?: string | null
|
|
208567
209026
|
yearsOfExperience?: number | null
|
|
209027
|
+
status?: $Enums.ResumeStatus | null
|
|
209028
|
+
origin?: $Enums.ResumeOrigin | null
|
|
209029
|
+
intake_session_id?: string | null
|
|
209030
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
209031
|
+
intake_progress?: number | null
|
|
209032
|
+
orion_execution_id?: string | null
|
|
209033
|
+
tailoring_jd_text?: string | null
|
|
209034
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
209035
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
209036
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
208568
209037
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
208569
209038
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
208570
209039
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -208595,6 +209064,16 @@ export namespace Prisma {
|
|
|
208595
209064
|
is_active?: boolean
|
|
208596
209065
|
name?: string | null
|
|
208597
209066
|
yearsOfExperience?: number | null
|
|
209067
|
+
status?: $Enums.ResumeStatus | null
|
|
209068
|
+
origin?: $Enums.ResumeOrigin | null
|
|
209069
|
+
intake_session_id?: string | null
|
|
209070
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
209071
|
+
intake_progress?: number | null
|
|
209072
|
+
orion_execution_id?: string | null
|
|
209073
|
+
tailoring_jd_text?: string | null
|
|
209074
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
209075
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
209076
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
208598
209077
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
208599
209078
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
208600
209079
|
resume_data?: ResumeDataUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -208962,6 +209441,7 @@ export namespace Prisma {
|
|
|
208962
209441
|
export type InterviewCreateWithoutApplicationInput = {
|
|
208963
209442
|
id?: string
|
|
208964
209443
|
calendar_event_id?: string | null
|
|
209444
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
208965
209445
|
room_name?: string | null
|
|
208966
209446
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
208967
209447
|
scheduled_start_time?: Date | string | null
|
|
@@ -209023,6 +209503,7 @@ export namespace Prisma {
|
|
|
209023
209503
|
resume_id: string
|
|
209024
209504
|
job_description_id: string
|
|
209025
209505
|
calendar_event_id?: string | null
|
|
209506
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
209026
209507
|
room_name?: string | null
|
|
209027
209508
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
209028
209509
|
scheduled_start_time?: Date | string | null
|
|
@@ -210016,6 +210497,16 @@ export namespace Prisma {
|
|
|
210016
210497
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
210017
210498
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210018
210499
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
210500
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
210501
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
210502
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210503
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
210504
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
210505
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210506
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210507
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
210508
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
210509
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
210019
210510
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
210020
210511
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
210021
210512
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -210046,6 +210537,16 @@ export namespace Prisma {
|
|
|
210046
210537
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
210047
210538
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210048
210539
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
210540
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
210541
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
210542
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210543
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
210544
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
210545
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210546
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
210547
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
210548
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
210549
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
210049
210550
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
210050
210551
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
210051
210552
|
resume_data?: ResumeDataUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -210458,6 +210959,7 @@ export namespace Prisma {
|
|
|
210458
210959
|
resume_id?: StringFilter<"Interview"> | string
|
|
210459
210960
|
job_description_id?: StringFilter<"Interview"> | string
|
|
210460
210961
|
calendar_event_id?: StringNullableFilter<"Interview"> | string | null
|
|
210962
|
+
calendar_events?: JsonNullableFilter<"Interview">
|
|
210461
210963
|
room_name?: StringNullableFilter<"Interview"> | string | null
|
|
210462
210964
|
interview_summary?: StringNullableListFilter<"Interview">
|
|
210463
210965
|
scheduled_start_time?: DateTimeNullableFilter<"Interview"> | Date | string | null
|
|
@@ -218013,6 +218515,16 @@ export namespace Prisma {
|
|
|
218013
218515
|
is_active?: boolean
|
|
218014
218516
|
name?: string | null
|
|
218015
218517
|
yearsOfExperience?: number | null
|
|
218518
|
+
status?: $Enums.ResumeStatus | null
|
|
218519
|
+
origin?: $Enums.ResumeOrigin | null
|
|
218520
|
+
intake_session_id?: string | null
|
|
218521
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
218522
|
+
intake_progress?: number | null
|
|
218523
|
+
orion_execution_id?: string | null
|
|
218524
|
+
tailoring_jd_text?: string | null
|
|
218525
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
218526
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
218527
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
218016
218528
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
218017
218529
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
218018
218530
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -218043,6 +218555,16 @@ export namespace Prisma {
|
|
|
218043
218555
|
is_active?: boolean
|
|
218044
218556
|
name?: string | null
|
|
218045
218557
|
yearsOfExperience?: number | null
|
|
218558
|
+
status?: $Enums.ResumeStatus | null
|
|
218559
|
+
origin?: $Enums.ResumeOrigin | null
|
|
218560
|
+
intake_session_id?: string | null
|
|
218561
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
218562
|
+
intake_progress?: number | null
|
|
218563
|
+
orion_execution_id?: string | null
|
|
218564
|
+
tailoring_jd_text?: string | null
|
|
218565
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
218566
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
218567
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
218046
218568
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
218047
218569
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
218048
218570
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -218284,6 +218806,16 @@ export namespace Prisma {
|
|
|
218284
218806
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
218285
218807
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218286
218808
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
218809
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
218810
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
218811
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218812
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
218813
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
218814
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218815
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218816
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
218817
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
218818
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
218287
218819
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
218288
218820
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
218289
218821
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -218314,6 +218846,16 @@ export namespace Prisma {
|
|
|
218314
218846
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
218315
218847
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218316
218848
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
218849
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
218850
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
218851
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218852
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
218853
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
218854
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218855
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
218856
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
218857
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
218858
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
218317
218859
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
218318
218860
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
218319
218861
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -222769,6 +223311,16 @@ export namespace Prisma {
|
|
|
222769
223311
|
is_active?: boolean
|
|
222770
223312
|
name?: string | null
|
|
222771
223313
|
yearsOfExperience?: number | null
|
|
223314
|
+
status?: $Enums.ResumeStatus | null
|
|
223315
|
+
origin?: $Enums.ResumeOrigin | null
|
|
223316
|
+
intake_session_id?: string | null
|
|
223317
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
223318
|
+
intake_progress?: number | null
|
|
223319
|
+
orion_execution_id?: string | null
|
|
223320
|
+
tailoring_jd_text?: string | null
|
|
223321
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
223322
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
223323
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
222772
223324
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
222773
223325
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
222774
223326
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -222798,6 +223350,16 @@ export namespace Prisma {
|
|
|
222798
223350
|
is_active?: boolean
|
|
222799
223351
|
name?: string | null
|
|
222800
223352
|
yearsOfExperience?: number | null
|
|
223353
|
+
status?: $Enums.ResumeStatus | null
|
|
223354
|
+
origin?: $Enums.ResumeOrigin | null
|
|
223355
|
+
intake_session_id?: string | null
|
|
223356
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
223357
|
+
intake_progress?: number | null
|
|
223358
|
+
orion_execution_id?: string | null
|
|
223359
|
+
tailoring_jd_text?: string | null
|
|
223360
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
223361
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
223362
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
222801
223363
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
222802
223364
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
222803
223365
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -222824,6 +223386,16 @@ export namespace Prisma {
|
|
|
222824
223386
|
is_active?: boolean
|
|
222825
223387
|
name?: string | null
|
|
222826
223388
|
yearsOfExperience?: number | null
|
|
223389
|
+
status?: $Enums.ResumeStatus | null
|
|
223390
|
+
origin?: $Enums.ResumeOrigin | null
|
|
223391
|
+
intake_session_id?: string | null
|
|
223392
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
223393
|
+
intake_progress?: number | null
|
|
223394
|
+
orion_execution_id?: string | null
|
|
223395
|
+
tailoring_jd_text?: string | null
|
|
223396
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
223397
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
223398
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
222827
223399
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
222828
223400
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
222829
223401
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -222853,6 +223425,16 @@ export namespace Prisma {
|
|
|
222853
223425
|
is_active?: boolean
|
|
222854
223426
|
name?: string | null
|
|
222855
223427
|
yearsOfExperience?: number | null
|
|
223428
|
+
status?: $Enums.ResumeStatus | null
|
|
223429
|
+
origin?: $Enums.ResumeOrigin | null
|
|
223430
|
+
intake_session_id?: string | null
|
|
223431
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
223432
|
+
intake_progress?: number | null
|
|
223433
|
+
orion_execution_id?: string | null
|
|
223434
|
+
tailoring_jd_text?: string | null
|
|
223435
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
223436
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
223437
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
222856
223438
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
222857
223439
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
222858
223440
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -223196,6 +223778,7 @@ export namespace Prisma {
|
|
|
223196
223778
|
export type InterviewCreateWithoutRecording_documentInput = {
|
|
223197
223779
|
id?: string
|
|
223198
223780
|
calendar_event_id?: string | null
|
|
223781
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
223199
223782
|
room_name?: string | null
|
|
223200
223783
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
223201
223784
|
scheduled_start_time?: Date | string | null
|
|
@@ -223258,6 +223841,7 @@ export namespace Prisma {
|
|
|
223258
223841
|
resume_id: string
|
|
223259
223842
|
job_description_id: string
|
|
223260
223843
|
calendar_event_id?: string | null
|
|
223844
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
223261
223845
|
room_name?: string | null
|
|
223262
223846
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
223263
223847
|
scheduled_start_time?: Date | string | null
|
|
@@ -224167,6 +224751,16 @@ export namespace Prisma {
|
|
|
224167
224751
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
224168
224752
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224169
224753
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
224754
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
224755
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
224756
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224757
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
224758
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
224759
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224760
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224761
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
224762
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
224763
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
224170
224764
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
224171
224765
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
224172
224766
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -224196,6 +224790,16 @@ export namespace Prisma {
|
|
|
224196
224790
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
224197
224791
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224198
224792
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
224793
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
224794
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
224795
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224796
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
224797
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
224798
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224799
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224800
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
224801
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
224802
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
224199
224803
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
224200
224804
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
224201
224805
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -224228,6 +224832,16 @@ export namespace Prisma {
|
|
|
224228
224832
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
224229
224833
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224230
224834
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
224835
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
224836
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
224837
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224838
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
224839
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
224840
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224841
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224842
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
224843
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
224844
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
224231
224845
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
224232
224846
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
224233
224847
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -224257,6 +224871,16 @@ export namespace Prisma {
|
|
|
224257
224871
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
224258
224872
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224259
224873
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
224874
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
224875
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
224876
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224877
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
224878
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
224879
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224880
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224881
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
224882
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
224883
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
224260
224884
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
224261
224885
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
224262
224886
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -224624,6 +225248,7 @@ export namespace Prisma {
|
|
|
224624
225248
|
export type InterviewUpdateWithoutRecording_documentInput = {
|
|
224625
225249
|
id?: StringFieldUpdateOperationsInput | string
|
|
224626
225250
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
225251
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
224627
225252
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224628
225253
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
224629
225254
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -224686,6 +225311,7 @@ export namespace Prisma {
|
|
|
224686
225311
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
224687
225312
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
224688
225313
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
225314
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
224689
225315
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
224690
225316
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
224691
225317
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -225572,6 +226198,7 @@ export namespace Prisma {
|
|
|
225572
226198
|
export type InterviewCreateWithoutEvaluation_planInput = {
|
|
225573
226199
|
id?: string
|
|
225574
226200
|
calendar_event_id?: string | null
|
|
226201
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
225575
226202
|
room_name?: string | null
|
|
225576
226203
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
225577
226204
|
scheduled_start_time?: Date | string | null
|
|
@@ -225633,6 +226260,7 @@ export namespace Prisma {
|
|
|
225633
226260
|
resume_id: string
|
|
225634
226261
|
job_description_id: string
|
|
225635
226262
|
calendar_event_id?: string | null
|
|
226263
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
225636
226264
|
room_name?: string | null
|
|
225637
226265
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
225638
226266
|
scheduled_start_time?: Date | string | null
|
|
@@ -226565,6 +227193,16 @@ export namespace Prisma {
|
|
|
226565
227193
|
is_active?: boolean
|
|
226566
227194
|
name?: string | null
|
|
226567
227195
|
yearsOfExperience?: number | null
|
|
227196
|
+
status?: $Enums.ResumeStatus | null
|
|
227197
|
+
origin?: $Enums.ResumeOrigin | null
|
|
227198
|
+
intake_session_id?: string | null
|
|
227199
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
227200
|
+
intake_progress?: number | null
|
|
227201
|
+
orion_execution_id?: string | null
|
|
227202
|
+
tailoring_jd_text?: string | null
|
|
227203
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
227204
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
227205
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
226568
227206
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
226569
227207
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
226570
227208
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -226595,6 +227233,16 @@ export namespace Prisma {
|
|
|
226595
227233
|
is_active?: boolean
|
|
226596
227234
|
name?: string | null
|
|
226597
227235
|
yearsOfExperience?: number | null
|
|
227236
|
+
status?: $Enums.ResumeStatus | null
|
|
227237
|
+
origin?: $Enums.ResumeOrigin | null
|
|
227238
|
+
intake_session_id?: string | null
|
|
227239
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
227240
|
+
intake_progress?: number | null
|
|
227241
|
+
orion_execution_id?: string | null
|
|
227242
|
+
tailoring_jd_text?: string | null
|
|
227243
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
227244
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
227245
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
226598
227246
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
226599
227247
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
226600
227248
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -227145,6 +227793,16 @@ export namespace Prisma {
|
|
|
227145
227793
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
227146
227794
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227147
227795
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
227796
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
227797
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
227798
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227799
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
227800
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
227801
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227802
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227803
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
227804
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
227805
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
227148
227806
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
227149
227807
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
227150
227808
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -227175,6 +227833,16 @@ export namespace Prisma {
|
|
|
227175
227833
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
227176
227834
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227177
227835
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
227836
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
227837
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
227838
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227839
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
227840
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
227841
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227842
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
227843
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
227844
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
227845
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
227178
227846
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
227179
227847
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
227180
227848
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -231089,6 +231757,16 @@ export namespace Prisma {
|
|
|
231089
231757
|
is_active?: boolean
|
|
231090
231758
|
name?: string | null
|
|
231091
231759
|
yearsOfExperience?: number | null
|
|
231760
|
+
status?: $Enums.ResumeStatus | null
|
|
231761
|
+
origin?: $Enums.ResumeOrigin | null
|
|
231762
|
+
intake_session_id?: string | null
|
|
231763
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
231764
|
+
intake_progress?: number | null
|
|
231765
|
+
orion_execution_id?: string | null
|
|
231766
|
+
tailoring_jd_text?: string | null
|
|
231767
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
231768
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
231769
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
231092
231770
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
231093
231771
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
231094
231772
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -231119,6 +231797,16 @@ export namespace Prisma {
|
|
|
231119
231797
|
is_active?: boolean
|
|
231120
231798
|
name?: string | null
|
|
231121
231799
|
yearsOfExperience?: number | null
|
|
231800
|
+
status?: $Enums.ResumeStatus | null
|
|
231801
|
+
origin?: $Enums.ResumeOrigin | null
|
|
231802
|
+
intake_session_id?: string | null
|
|
231803
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
231804
|
+
intake_progress?: number | null
|
|
231805
|
+
orion_execution_id?: string | null
|
|
231806
|
+
tailoring_jd_text?: string | null
|
|
231807
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
231808
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
231809
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
231122
231810
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
231123
231811
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
231124
231812
|
resume_data?: ResumeDataUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -232270,6 +232958,16 @@ export namespace Prisma {
|
|
|
232270
232958
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
232271
232959
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
232272
232960
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
232961
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
232962
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
232963
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
232964
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
232965
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
232966
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
232967
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
232968
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
232969
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
232970
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
232273
232971
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
232274
232972
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
232275
232973
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -232300,6 +232998,16 @@ export namespace Prisma {
|
|
|
232300
232998
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
232301
232999
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
232302
233000
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
233001
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
233002
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
233003
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
233004
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
233005
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
233006
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
233007
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
233008
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
233009
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
233010
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
232303
233011
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
232304
233012
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
232305
233013
|
resume_data?: ResumeDataUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -232760,6 +233468,7 @@ export namespace Prisma {
|
|
|
232760
233468
|
export type InterviewCreateWithoutInterviewNotesInput = {
|
|
232761
233469
|
id?: string
|
|
232762
233470
|
calendar_event_id?: string | null
|
|
233471
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
232763
233472
|
room_name?: string | null
|
|
232764
233473
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
232765
233474
|
scheduled_start_time?: Date | string | null
|
|
@@ -232822,6 +233531,7 @@ export namespace Prisma {
|
|
|
232822
233531
|
resume_id: string
|
|
232823
233532
|
job_description_id: string
|
|
232824
233533
|
calendar_event_id?: string | null
|
|
233534
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
232825
233535
|
room_name?: string | null
|
|
232826
233536
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
232827
233537
|
scheduled_start_time?: Date | string | null
|
|
@@ -232886,6 +233596,7 @@ export namespace Prisma {
|
|
|
232886
233596
|
export type InterviewUpdateWithoutInterviewNotesInput = {
|
|
232887
233597
|
id?: StringFieldUpdateOperationsInput | string
|
|
232888
233598
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
233599
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
232889
233600
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
232890
233601
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
232891
233602
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -232948,6 +233659,7 @@ export namespace Prisma {
|
|
|
232948
233659
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
232949
233660
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
232950
233661
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
233662
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
232951
233663
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
232952
233664
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
232953
233665
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -235005,6 +235717,7 @@ export namespace Prisma {
|
|
|
235005
235717
|
export type InterviewCreateWithoutJob_descriptionInput = {
|
|
235006
235718
|
id?: string
|
|
235007
235719
|
calendar_event_id?: string | null
|
|
235720
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
235008
235721
|
room_name?: string | null
|
|
235009
235722
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
235010
235723
|
scheduled_start_time?: Date | string | null
|
|
@@ -235066,6 +235779,7 @@ export namespace Prisma {
|
|
|
235066
235779
|
application_id?: string | null
|
|
235067
235780
|
resume_id: string
|
|
235068
235781
|
calendar_event_id?: string | null
|
|
235782
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
235069
235783
|
room_name?: string | null
|
|
235070
235784
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
235071
235785
|
scheduled_start_time?: Date | string | null
|
|
@@ -235519,6 +236233,16 @@ export namespace Prisma {
|
|
|
235519
236233
|
is_active?: boolean
|
|
235520
236234
|
name?: string | null
|
|
235521
236235
|
yearsOfExperience?: number | null
|
|
236236
|
+
status?: $Enums.ResumeStatus | null
|
|
236237
|
+
origin?: $Enums.ResumeOrigin | null
|
|
236238
|
+
intake_session_id?: string | null
|
|
236239
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
236240
|
+
intake_progress?: number | null
|
|
236241
|
+
orion_execution_id?: string | null
|
|
236242
|
+
tailoring_jd_text?: string | null
|
|
236243
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
236244
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
236245
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
235522
236246
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
235523
236247
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
235524
236248
|
document?: DocumentCreateNestedOneWithoutResumeInput
|
|
@@ -235548,6 +236272,16 @@ export namespace Prisma {
|
|
|
235548
236272
|
is_active?: boolean
|
|
235549
236273
|
name?: string | null
|
|
235550
236274
|
yearsOfExperience?: number | null
|
|
236275
|
+
status?: $Enums.ResumeStatus | null
|
|
236276
|
+
origin?: $Enums.ResumeOrigin | null
|
|
236277
|
+
intake_session_id?: string | null
|
|
236278
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
236279
|
+
intake_progress?: number | null
|
|
236280
|
+
orion_execution_id?: string | null
|
|
236281
|
+
tailoring_jd_text?: string | null
|
|
236282
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
236283
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
236284
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
235551
236285
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
235552
236286
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
235553
236287
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -237211,6 +237945,16 @@ export namespace Prisma {
|
|
|
237211
237945
|
is_active?: BoolFilter<"Resume"> | boolean
|
|
237212
237946
|
name?: StringNullableFilter<"Resume"> | string | null
|
|
237213
237947
|
yearsOfExperience?: IntNullableFilter<"Resume"> | number | null
|
|
237948
|
+
status?: EnumResumeStatusNullableFilter<"Resume"> | $Enums.ResumeStatus | null
|
|
237949
|
+
origin?: EnumResumeOriginNullableFilter<"Resume"> | $Enums.ResumeOrigin | null
|
|
237950
|
+
intake_session_id?: StringNullableFilter<"Resume"> | string | null
|
|
237951
|
+
conversation_history?: JsonNullableFilter<"Resume">
|
|
237952
|
+
intake_progress?: IntNullableFilter<"Resume"> | number | null
|
|
237953
|
+
orion_execution_id?: StringNullableFilter<"Resume"> | string | null
|
|
237954
|
+
tailoring_jd_text?: StringNullableFilter<"Resume"> | string | null
|
|
237955
|
+
tailoring_jd_parsed?: JsonNullableFilter<"Resume">
|
|
237956
|
+
tailoring_gap_analysis?: JsonNullableFilter<"Resume">
|
|
237957
|
+
tailoring_draft?: JsonNullableFilter<"Resume">
|
|
237214
237958
|
}
|
|
237215
237959
|
|
|
237216
237960
|
export type BudgetUpsertWithoutJob_descriptionInput = {
|
|
@@ -242468,6 +243212,7 @@ export namespace Prisma {
|
|
|
242468
243212
|
export type InterviewCreateWithoutLiveAnalysisInput = {
|
|
242469
243213
|
id?: string
|
|
242470
243214
|
calendar_event_id?: string | null
|
|
243215
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
242471
243216
|
room_name?: string | null
|
|
242472
243217
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
242473
243218
|
scheduled_start_time?: Date | string | null
|
|
@@ -242530,6 +243275,7 @@ export namespace Prisma {
|
|
|
242530
243275
|
resume_id: string
|
|
242531
243276
|
job_description_id: string
|
|
242532
243277
|
calendar_event_id?: string | null
|
|
243278
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
242533
243279
|
room_name?: string | null
|
|
242534
243280
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
242535
243281
|
scheduled_start_time?: Date | string | null
|
|
@@ -242594,6 +243340,7 @@ export namespace Prisma {
|
|
|
242594
243340
|
export type InterviewUpdateWithoutLiveAnalysisInput = {
|
|
242595
243341
|
id?: StringFieldUpdateOperationsInput | string
|
|
242596
243342
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
243343
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
242597
243344
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
242598
243345
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
242599
243346
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -242656,6 +243403,7 @@ export namespace Prisma {
|
|
|
242656
243403
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
242657
243404
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
242658
243405
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
243406
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
242659
243407
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
242660
243408
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
242661
243409
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -247271,6 +248019,16 @@ export namespace Prisma {
|
|
|
247271
248019
|
is_active?: boolean
|
|
247272
248020
|
name?: string | null
|
|
247273
248021
|
yearsOfExperience?: number | null
|
|
248022
|
+
status?: $Enums.ResumeStatus | null
|
|
248023
|
+
origin?: $Enums.ResumeOrigin | null
|
|
248024
|
+
intake_session_id?: string | null
|
|
248025
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
248026
|
+
intake_progress?: number | null
|
|
248027
|
+
orion_execution_id?: string | null
|
|
248028
|
+
tailoring_jd_text?: string | null
|
|
248029
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
248030
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
248031
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
247274
248032
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
247275
248033
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
247276
248034
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -247301,6 +248059,16 @@ export namespace Prisma {
|
|
|
247301
248059
|
is_active?: boolean
|
|
247302
248060
|
name?: string | null
|
|
247303
248061
|
yearsOfExperience?: number | null
|
|
248062
|
+
status?: $Enums.ResumeStatus | null
|
|
248063
|
+
origin?: $Enums.ResumeOrigin | null
|
|
248064
|
+
intake_session_id?: string | null
|
|
248065
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
248066
|
+
intake_progress?: number | null
|
|
248067
|
+
orion_execution_id?: string | null
|
|
248068
|
+
tailoring_jd_text?: string | null
|
|
248069
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
248070
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
248071
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
247304
248072
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
247305
248073
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
247306
248074
|
resume_data?: ResumeDataUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -247524,6 +248292,7 @@ export namespace Prisma {
|
|
|
247524
248292
|
export type InterviewCreateWithoutOngoing_evaluationInput = {
|
|
247525
248293
|
id?: string
|
|
247526
248294
|
calendar_event_id?: string | null
|
|
248295
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
247527
248296
|
room_name?: string | null
|
|
247528
248297
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
247529
248298
|
scheduled_start_time?: Date | string | null
|
|
@@ -247586,6 +248355,7 @@ export namespace Prisma {
|
|
|
247586
248355
|
resume_id: string
|
|
247587
248356
|
job_description_id: string
|
|
247588
248357
|
calendar_event_id?: string | null
|
|
248358
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
247589
248359
|
room_name?: string | null
|
|
247590
248360
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
247591
248361
|
scheduled_start_time?: Date | string | null
|
|
@@ -248153,6 +248923,16 @@ export namespace Prisma {
|
|
|
248153
248923
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
248154
248924
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248155
248925
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
248926
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
248927
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
248928
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248929
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
248930
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
248931
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248932
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248933
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
248934
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
248935
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
248156
248936
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
248157
248937
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
248158
248938
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -248183,6 +248963,16 @@ export namespace Prisma {
|
|
|
248183
248963
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
248184
248964
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248185
248965
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
248966
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
248967
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
248968
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248969
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
248970
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
248971
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248972
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248973
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
248974
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
248975
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
248186
248976
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
248187
248977
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
248188
248978
|
resume_data?: ResumeDataUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -248424,6 +249214,7 @@ export namespace Prisma {
|
|
|
248424
249214
|
export type InterviewUpdateWithoutOngoing_evaluationInput = {
|
|
248425
249215
|
id?: StringFieldUpdateOperationsInput | string
|
|
248426
249216
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249217
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
248427
249218
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248428
249219
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
248429
249220
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -248486,6 +249277,7 @@ export namespace Prisma {
|
|
|
248486
249277
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
248487
249278
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
248488
249279
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
249280
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
248489
249281
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
248490
249282
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
248491
249283
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -249232,6 +250024,7 @@ export namespace Prisma {
|
|
|
249232
250024
|
export type InterviewCreateWithoutOrganisationInput = {
|
|
249233
250025
|
id?: string
|
|
249234
250026
|
calendar_event_id?: string | null
|
|
250027
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
249235
250028
|
room_name?: string | null
|
|
249236
250029
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
249237
250030
|
scheduled_start_time?: Date | string | null
|
|
@@ -249293,6 +250086,7 @@ export namespace Prisma {
|
|
|
249293
250086
|
resume_id: string
|
|
249294
250087
|
job_description_id: string
|
|
249295
250088
|
calendar_event_id?: string | null
|
|
250089
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
249296
250090
|
room_name?: string | null
|
|
249297
250091
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
249298
250092
|
scheduled_start_time?: Date | string | null
|
|
@@ -249476,6 +250270,16 @@ export namespace Prisma {
|
|
|
249476
250270
|
is_active?: boolean
|
|
249477
250271
|
name?: string | null
|
|
249478
250272
|
yearsOfExperience?: number | null
|
|
250273
|
+
status?: $Enums.ResumeStatus | null
|
|
250274
|
+
origin?: $Enums.ResumeOrigin | null
|
|
250275
|
+
intake_session_id?: string | null
|
|
250276
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
250277
|
+
intake_progress?: number | null
|
|
250278
|
+
orion_execution_id?: string | null
|
|
250279
|
+
tailoring_jd_text?: string | null
|
|
250280
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
250281
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
250282
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
249479
250283
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
249480
250284
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
249481
250285
|
document?: DocumentCreateNestedOneWithoutResumeInput
|
|
@@ -249505,6 +250309,16 @@ export namespace Prisma {
|
|
|
249505
250309
|
is_active?: boolean
|
|
249506
250310
|
name?: string | null
|
|
249507
250311
|
yearsOfExperience?: number | null
|
|
250312
|
+
status?: $Enums.ResumeStatus | null
|
|
250313
|
+
origin?: $Enums.ResumeOrigin | null
|
|
250314
|
+
intake_session_id?: string | null
|
|
250315
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
250316
|
+
intake_progress?: number | null
|
|
250317
|
+
orion_execution_id?: string | null
|
|
250318
|
+
tailoring_jd_text?: string | null
|
|
250319
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
250320
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
250321
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
249508
250322
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
249509
250323
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
249510
250324
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -254532,6 +255346,7 @@ export namespace Prisma {
|
|
|
254532
255346
|
export type InterviewCreateWithoutResumeInput = {
|
|
254533
255347
|
id?: string
|
|
254534
255348
|
calendar_event_id?: string | null
|
|
255349
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
254535
255350
|
room_name?: string | null
|
|
254536
255351
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
254537
255352
|
scheduled_start_time?: Date | string | null
|
|
@@ -254593,6 +255408,7 @@ export namespace Prisma {
|
|
|
254593
255408
|
application_id?: string | null
|
|
254594
255409
|
job_description_id: string
|
|
254595
255410
|
calendar_event_id?: string | null
|
|
255411
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
254596
255412
|
room_name?: string | null
|
|
254597
255413
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
254598
255414
|
scheduled_start_time?: Date | string | null
|
|
@@ -255622,6 +256438,16 @@ export namespace Prisma {
|
|
|
255622
256438
|
is_active?: boolean
|
|
255623
256439
|
name?: string | null
|
|
255624
256440
|
yearsOfExperience?: number | null
|
|
256441
|
+
status?: $Enums.ResumeStatus | null
|
|
256442
|
+
origin?: $Enums.ResumeOrigin | null
|
|
256443
|
+
intake_session_id?: string | null
|
|
256444
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
256445
|
+
intake_progress?: number | null
|
|
256446
|
+
orion_execution_id?: string | null
|
|
256447
|
+
tailoring_jd_text?: string | null
|
|
256448
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
256449
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
256450
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
255625
256451
|
user?: UserCreateNestedOneWithoutResumeInput
|
|
255626
256452
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
255627
256453
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
@@ -255652,6 +256478,16 @@ export namespace Prisma {
|
|
|
255652
256478
|
is_active?: boolean
|
|
255653
256479
|
name?: string | null
|
|
255654
256480
|
yearsOfExperience?: number | null
|
|
256481
|
+
status?: $Enums.ResumeStatus | null
|
|
256482
|
+
origin?: $Enums.ResumeOrigin | null
|
|
256483
|
+
intake_session_id?: string | null
|
|
256484
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
256485
|
+
intake_progress?: number | null
|
|
256486
|
+
orion_execution_id?: string | null
|
|
256487
|
+
tailoring_jd_text?: string | null
|
|
256488
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
256489
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
256490
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
255655
256491
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
255656
256492
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
255657
256493
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -255688,6 +256524,16 @@ export namespace Prisma {
|
|
|
255688
256524
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
255689
256525
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255690
256526
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
256527
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
256528
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
256529
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256530
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
256531
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
256532
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256533
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256534
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
256535
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
256536
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
255691
256537
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
255692
256538
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
255693
256539
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
@@ -255718,6 +256564,16 @@ export namespace Prisma {
|
|
|
255718
256564
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
255719
256565
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
255720
256566
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
256567
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
256568
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
256569
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256570
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
256571
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
256572
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256573
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256574
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
256575
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
256576
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
255721
256577
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
255722
256578
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
255723
256579
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -256248,6 +257104,7 @@ export namespace Prisma {
|
|
|
256248
257104
|
export type InterviewCreateWithoutSuggestionsInput = {
|
|
256249
257105
|
id?: string
|
|
256250
257106
|
calendar_event_id?: string | null
|
|
257107
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
256251
257108
|
room_name?: string | null
|
|
256252
257109
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
256253
257110
|
scheduled_start_time?: Date | string | null
|
|
@@ -256310,6 +257167,7 @@ export namespace Prisma {
|
|
|
256310
257167
|
resume_id: string
|
|
256311
257168
|
job_description_id: string
|
|
256312
257169
|
calendar_event_id?: string | null
|
|
257170
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
256313
257171
|
room_name?: string | null
|
|
256314
257172
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
256315
257173
|
scheduled_start_time?: Date | string | null
|
|
@@ -256555,6 +257413,7 @@ export namespace Prisma {
|
|
|
256555
257413
|
export type InterviewUpdateWithoutSuggestionsInput = {
|
|
256556
257414
|
id?: StringFieldUpdateOperationsInput | string
|
|
256557
257415
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
257416
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
256558
257417
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256559
257418
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
256560
257419
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -256617,6 +257476,7 @@ export namespace Prisma {
|
|
|
256617
257476
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
256618
257477
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
256619
257478
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
257479
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
256620
257480
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
256621
257481
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
256622
257482
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -256824,6 +257684,7 @@ export namespace Prisma {
|
|
|
256824
257684
|
export type InterviewCreateWithoutTranscriptsInput = {
|
|
256825
257685
|
id?: string
|
|
256826
257686
|
calendar_event_id?: string | null
|
|
257687
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
256827
257688
|
room_name?: string | null
|
|
256828
257689
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
256829
257690
|
scheduled_start_time?: Date | string | null
|
|
@@ -256886,6 +257747,7 @@ export namespace Prisma {
|
|
|
256886
257747
|
resume_id: string
|
|
256887
257748
|
job_description_id: string
|
|
256888
257749
|
calendar_event_id?: string | null
|
|
257750
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
256889
257751
|
room_name?: string | null
|
|
256890
257752
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
256891
257753
|
scheduled_start_time?: Date | string | null
|
|
@@ -257092,6 +257954,7 @@ export namespace Prisma {
|
|
|
257092
257954
|
export type InterviewUpdateWithoutTranscriptsInput = {
|
|
257093
257955
|
id?: StringFieldUpdateOperationsInput | string
|
|
257094
257956
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
257957
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
257095
257958
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
257096
257959
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
257097
257960
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -257154,6 +258017,7 @@ export namespace Prisma {
|
|
|
257154
258017
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
257155
258018
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
257156
258019
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
258020
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
257157
258021
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
257158
258022
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
257159
258023
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -258489,6 +259353,16 @@ export namespace Prisma {
|
|
|
258489
259353
|
is_active?: boolean
|
|
258490
259354
|
name?: string | null
|
|
258491
259355
|
yearsOfExperience?: number | null
|
|
259356
|
+
status?: $Enums.ResumeStatus | null
|
|
259357
|
+
origin?: $Enums.ResumeOrigin | null
|
|
259358
|
+
intake_session_id?: string | null
|
|
259359
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
259360
|
+
intake_progress?: number | null
|
|
259361
|
+
orion_execution_id?: string | null
|
|
259362
|
+
tailoring_jd_text?: string | null
|
|
259363
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
259364
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
259365
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
258492
259366
|
organisation?: OrganisationCreateNestedOneWithoutResumesInput
|
|
258493
259367
|
job_description?: JobDescriptionCreateNestedOneWithoutResumesInput
|
|
258494
259368
|
document?: DocumentCreateNestedOneWithoutResumeInput
|
|
@@ -258518,6 +259392,16 @@ export namespace Prisma {
|
|
|
258518
259392
|
is_active?: boolean
|
|
258519
259393
|
name?: string | null
|
|
258520
259394
|
yearsOfExperience?: number | null
|
|
259395
|
+
status?: $Enums.ResumeStatus | null
|
|
259396
|
+
origin?: $Enums.ResumeOrigin | null
|
|
259397
|
+
intake_session_id?: string | null
|
|
259398
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
259399
|
+
intake_progress?: number | null
|
|
259400
|
+
orion_execution_id?: string | null
|
|
259401
|
+
tailoring_jd_text?: string | null
|
|
259402
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
259403
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
259404
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
258521
259405
|
applications?: ApplicationUncheckedCreateNestedManyWithoutResumeInput
|
|
258522
259406
|
interviews?: InterviewUncheckedCreateNestedManyWithoutResumeInput
|
|
258523
259407
|
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutResumeInput
|
|
@@ -259016,6 +259900,7 @@ export namespace Prisma {
|
|
|
259016
259900
|
export type InterviewCreateWithoutCandidateInput = {
|
|
259017
259901
|
id?: string
|
|
259018
259902
|
calendar_event_id?: string | null
|
|
259903
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
259019
259904
|
room_name?: string | null
|
|
259020
259905
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
259021
259906
|
scheduled_start_time?: Date | string | null
|
|
@@ -259077,6 +259962,7 @@ export namespace Prisma {
|
|
|
259077
259962
|
resume_id: string
|
|
259078
259963
|
job_description_id: string
|
|
259079
259964
|
calendar_event_id?: string | null
|
|
259965
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
259080
259966
|
room_name?: string | null
|
|
259081
259967
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
259082
259968
|
scheduled_start_time?: Date | string | null
|
|
@@ -259136,6 +260022,7 @@ export namespace Prisma {
|
|
|
259136
260022
|
export type InterviewCreateWithoutInterviewerInput = {
|
|
259137
260023
|
id?: string
|
|
259138
260024
|
calendar_event_id?: string | null
|
|
260025
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
259139
260026
|
room_name?: string | null
|
|
259140
260027
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
259141
260028
|
scheduled_start_time?: Date | string | null
|
|
@@ -259197,6 +260084,7 @@ export namespace Prisma {
|
|
|
259197
260084
|
resume_id: string
|
|
259198
260085
|
job_description_id: string
|
|
259199
260086
|
calendar_event_id?: string | null
|
|
260087
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
259200
260088
|
room_name?: string | null
|
|
259201
260089
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
259202
260090
|
scheduled_start_time?: Date | string | null
|
|
@@ -261761,6 +262649,7 @@ export namespace Prisma {
|
|
|
261761
262649
|
export type InterviewCreateWithoutZoom_meetingInput = {
|
|
261762
262650
|
id?: string
|
|
261763
262651
|
calendar_event_id?: string | null
|
|
262652
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
261764
262653
|
room_name?: string | null
|
|
261765
262654
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
261766
262655
|
scheduled_start_time?: Date | string | null
|
|
@@ -261823,6 +262712,7 @@ export namespace Prisma {
|
|
|
261823
262712
|
resume_id: string
|
|
261824
262713
|
job_description_id: string
|
|
261825
262714
|
calendar_event_id?: string | null
|
|
262715
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
261826
262716
|
room_name?: string | null
|
|
261827
262717
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
261828
262718
|
scheduled_start_time?: Date | string | null
|
|
@@ -261921,6 +262811,7 @@ export namespace Prisma {
|
|
|
261921
262811
|
export type InterviewUpdateWithoutZoom_meetingInput = {
|
|
261922
262812
|
id?: StringFieldUpdateOperationsInput | string
|
|
261923
262813
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
262814
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
261924
262815
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261925
262816
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
261926
262817
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -261983,6 +262874,7 @@ export namespace Prisma {
|
|
|
261983
262874
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
261984
262875
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
261985
262876
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
262877
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
261986
262878
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
261987
262879
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
261988
262880
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -262723,6 +263615,7 @@ export namespace Prisma {
|
|
|
262723
263615
|
resume_id: string
|
|
262724
263616
|
job_description_id: string
|
|
262725
263617
|
calendar_event_id?: string | null
|
|
263618
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
262726
263619
|
room_name?: string | null
|
|
262727
263620
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
262728
263621
|
scheduled_start_time?: Date | string | null
|
|
@@ -262923,6 +263816,7 @@ export namespace Prisma {
|
|
|
262923
263816
|
export type InterviewUpdateWithoutApplicationInput = {
|
|
262924
263817
|
id?: StringFieldUpdateOperationsInput | string
|
|
262925
263818
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
263819
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
262926
263820
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
262927
263821
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
262928
263822
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -262984,6 +263878,7 @@ export namespace Prisma {
|
|
|
262984
263878
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
262985
263879
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
262986
263880
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
263881
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
262987
263882
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
262988
263883
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
262989
263884
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -263039,6 +263934,7 @@ export namespace Prisma {
|
|
|
263039
263934
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
263040
263935
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
263041
263936
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
263937
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
263042
263938
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
263043
263939
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
263044
263940
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -265754,6 +266650,7 @@ export namespace Prisma {
|
|
|
265754
266650
|
resume_id: string
|
|
265755
266651
|
job_description_id: string
|
|
265756
266652
|
calendar_event_id?: string | null
|
|
266653
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
265757
266654
|
room_name?: string | null
|
|
265758
266655
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
265759
266656
|
scheduled_start_time?: Date | string | null
|
|
@@ -265932,6 +266829,7 @@ export namespace Prisma {
|
|
|
265932
266829
|
export type InterviewUpdateWithoutEvaluation_planInput = {
|
|
265933
266830
|
id?: StringFieldUpdateOperationsInput | string
|
|
265934
266831
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
266832
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
265935
266833
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
265936
266834
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
265937
266835
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -265993,6 +266891,7 @@ export namespace Prisma {
|
|
|
265993
266891
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
265994
266892
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
265995
266893
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
266894
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
265996
266895
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
265997
266896
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
265998
266897
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -266048,6 +266947,7 @@ export namespace Prisma {
|
|
|
266048
266947
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
266049
266948
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
266050
266949
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
266950
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
266051
266951
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
266052
266952
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
266053
266953
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -267369,6 +268269,7 @@ export namespace Prisma {
|
|
|
267369
268269
|
application_id?: string | null
|
|
267370
268270
|
resume_id: string
|
|
267371
268271
|
calendar_event_id?: string | null
|
|
268272
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
267372
268273
|
room_name?: string | null
|
|
267373
268274
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
267374
268275
|
scheduled_start_time?: Date | string | null
|
|
@@ -267576,6 +268477,16 @@ export namespace Prisma {
|
|
|
267576
268477
|
is_active?: boolean
|
|
267577
268478
|
name?: string | null
|
|
267578
268479
|
yearsOfExperience?: number | null
|
|
268480
|
+
status?: $Enums.ResumeStatus | null
|
|
268481
|
+
origin?: $Enums.ResumeOrigin | null
|
|
268482
|
+
intake_session_id?: string | null
|
|
268483
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
268484
|
+
intake_progress?: number | null
|
|
268485
|
+
orion_execution_id?: string | null
|
|
268486
|
+
tailoring_jd_text?: string | null
|
|
268487
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
268488
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
268489
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
267579
268490
|
}
|
|
267580
268491
|
|
|
267581
268492
|
export type TranscriptCreateManyJob_descriptionInput = {
|
|
@@ -267862,6 +268773,7 @@ export namespace Prisma {
|
|
|
267862
268773
|
export type InterviewUpdateWithoutJob_descriptionInput = {
|
|
267863
268774
|
id?: StringFieldUpdateOperationsInput | string
|
|
267864
268775
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
268776
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
267865
268777
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
267866
268778
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
267867
268779
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -267923,6 +268835,7 @@ export namespace Prisma {
|
|
|
267923
268835
|
application_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
267924
268836
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
267925
268837
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
268838
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
267926
268839
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
267927
268840
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
267928
268841
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -267978,6 +268891,7 @@ export namespace Prisma {
|
|
|
267978
268891
|
application_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
267979
268892
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
267980
268893
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
268894
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
267981
268895
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
267982
268896
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
267983
268897
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -268495,6 +269409,16 @@ export namespace Prisma {
|
|
|
268495
269409
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
268496
269410
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
268497
269411
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
269412
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
269413
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
269414
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269415
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
269416
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
269417
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269418
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269419
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
269420
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
269421
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
268498
269422
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
268499
269423
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
268500
269424
|
document?: DocumentUpdateOneWithoutResumeNestedInput
|
|
@@ -268524,6 +269448,16 @@ export namespace Prisma {
|
|
|
268524
269448
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
268525
269449
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
268526
269450
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
269451
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
269452
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
269453
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269454
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
269455
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
269456
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269457
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269458
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
269459
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
269460
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
268527
269461
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
268528
269462
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
268529
269463
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -268549,6 +269483,16 @@ export namespace Prisma {
|
|
|
268549
269483
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
268550
269484
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
268551
269485
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
269486
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
269487
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
269488
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269489
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
269490
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
269491
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269492
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
269493
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
269494
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
269495
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
268552
269496
|
}
|
|
268553
269497
|
|
|
268554
269498
|
export type UserUpdateWithoutJob_descriptionInput = {
|
|
@@ -270356,6 +271300,7 @@ export namespace Prisma {
|
|
|
270356
271300
|
resume_id: string
|
|
270357
271301
|
job_description_id: string
|
|
270358
271302
|
calendar_event_id?: string | null
|
|
271303
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
270359
271304
|
room_name?: string | null
|
|
270360
271305
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
270361
271306
|
scheduled_start_time?: Date | string | null
|
|
@@ -270460,6 +271405,16 @@ export namespace Prisma {
|
|
|
270460
271405
|
is_active?: boolean
|
|
270461
271406
|
name?: string | null
|
|
270462
271407
|
yearsOfExperience?: number | null
|
|
271408
|
+
status?: $Enums.ResumeStatus | null
|
|
271409
|
+
origin?: $Enums.ResumeOrigin | null
|
|
271410
|
+
intake_session_id?: string | null
|
|
271411
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
271412
|
+
intake_progress?: number | null
|
|
271413
|
+
orion_execution_id?: string | null
|
|
271414
|
+
tailoring_jd_text?: string | null
|
|
271415
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
271416
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
271417
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
270463
271418
|
}
|
|
270464
271419
|
|
|
270465
271420
|
export type ApprovalCreateManyOrganisationInput = {
|
|
@@ -271720,6 +272675,7 @@ export namespace Prisma {
|
|
|
271720
272675
|
export type InterviewUpdateWithoutOrganisationInput = {
|
|
271721
272676
|
id?: StringFieldUpdateOperationsInput | string
|
|
271722
272677
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272678
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
271723
272679
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
271724
272680
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
271725
272681
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -271781,6 +272737,7 @@ export namespace Prisma {
|
|
|
271781
272737
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
271782
272738
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
271783
272739
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272740
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
271784
272741
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
271785
272742
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
271786
272743
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -271836,6 +272793,7 @@ export namespace Prisma {
|
|
|
271836
272793
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
271837
272794
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
271838
272795
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272796
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
271839
272797
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
271840
272798
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
271841
272799
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -272030,6 +272988,16 @@ export namespace Prisma {
|
|
|
272030
272988
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
272031
272989
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272032
272990
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
272991
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
272992
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
272993
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272994
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
272995
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
272996
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272997
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272998
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
272999
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
273000
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
272033
273001
|
user?: UserUpdateOneWithoutResumeNestedInput
|
|
272034
273002
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
272035
273003
|
document?: DocumentUpdateOneWithoutResumeNestedInput
|
|
@@ -272059,6 +273027,16 @@ export namespace Prisma {
|
|
|
272059
273027
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
272060
273028
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272061
273029
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
273030
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
273031
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
273032
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
273033
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
273034
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
273035
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
273036
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
273037
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
273038
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
273039
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
272062
273040
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
272063
273041
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
272064
273042
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -272084,6 +273062,16 @@ export namespace Prisma {
|
|
|
272084
273062
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
272085
273063
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
272086
273064
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
273065
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
273066
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
273067
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
273068
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
273069
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
273070
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
273071
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
273072
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
273073
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
273074
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
272087
273075
|
}
|
|
272088
273076
|
|
|
272089
273077
|
export type ApprovalUpdateWithoutOrganisationInput = {
|
|
@@ -274018,6 +275006,7 @@ export namespace Prisma {
|
|
|
274018
275006
|
application_id?: string | null
|
|
274019
275007
|
job_description_id: string
|
|
274020
275008
|
calendar_event_id?: string | null
|
|
275009
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
274021
275010
|
room_name?: string | null
|
|
274022
275011
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
274023
275012
|
scheduled_start_time?: Date | string | null
|
|
@@ -274255,6 +275244,7 @@ export namespace Prisma {
|
|
|
274255
275244
|
export type InterviewUpdateWithoutResumeInput = {
|
|
274256
275245
|
id?: StringFieldUpdateOperationsInput | string
|
|
274257
275246
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
275247
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
274258
275248
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
274259
275249
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
274260
275250
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -274316,6 +275306,7 @@ export namespace Prisma {
|
|
|
274316
275306
|
application_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
274317
275307
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
274318
275308
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
275309
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
274319
275310
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
274320
275311
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
274321
275312
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -274371,6 +275362,7 @@ export namespace Prisma {
|
|
|
274371
275362
|
application_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
274372
275363
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
274373
275364
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
275365
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
274374
275366
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
274375
275367
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
274376
275368
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -275088,6 +276080,16 @@ export namespace Prisma {
|
|
|
275088
276080
|
is_active?: boolean
|
|
275089
276081
|
name?: string | null
|
|
275090
276082
|
yearsOfExperience?: number | null
|
|
276083
|
+
status?: $Enums.ResumeStatus | null
|
|
276084
|
+
origin?: $Enums.ResumeOrigin | null
|
|
276085
|
+
intake_session_id?: string | null
|
|
276086
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
276087
|
+
intake_progress?: number | null
|
|
276088
|
+
orion_execution_id?: string | null
|
|
276089
|
+
tailoring_jd_text?: string | null
|
|
276090
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
276091
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
276092
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
275091
276093
|
}
|
|
275092
276094
|
|
|
275093
276095
|
export type JobDescriptionCreateManyHiring_managerInput = {
|
|
@@ -275196,6 +276198,7 @@ export namespace Prisma {
|
|
|
275196
276198
|
resume_id: string
|
|
275197
276199
|
job_description_id: string
|
|
275198
276200
|
calendar_event_id?: string | null
|
|
276201
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
275199
276202
|
room_name?: string | null
|
|
275200
276203
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
275201
276204
|
scheduled_start_time?: Date | string | null
|
|
@@ -275245,6 +276248,7 @@ export namespace Prisma {
|
|
|
275245
276248
|
resume_id: string
|
|
275246
276249
|
job_description_id: string
|
|
275247
276250
|
calendar_event_id?: string | null
|
|
276251
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
275248
276252
|
room_name?: string | null
|
|
275249
276253
|
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
275250
276254
|
scheduled_start_time?: Date | string | null
|
|
@@ -275861,6 +276865,16 @@ export namespace Prisma {
|
|
|
275861
276865
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
275862
276866
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
275863
276867
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
276868
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
276869
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
276870
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276871
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
276872
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
276873
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276874
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276875
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
276876
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
276877
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
275864
276878
|
organisation?: OrganisationUpdateOneWithoutResumesNestedInput
|
|
275865
276879
|
job_description?: JobDescriptionUpdateOneWithoutResumesNestedInput
|
|
275866
276880
|
document?: DocumentUpdateOneWithoutResumeNestedInput
|
|
@@ -275890,6 +276904,16 @@ export namespace Prisma {
|
|
|
275890
276904
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
275891
276905
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
275892
276906
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
276907
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
276908
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
276909
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276910
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
276911
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
276912
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276913
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276914
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
276915
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
276916
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
275893
276917
|
applications?: ApplicationUncheckedUpdateManyWithoutResumeNestedInput
|
|
275894
276918
|
interviews?: InterviewUncheckedUpdateManyWithoutResumeNestedInput
|
|
275895
276919
|
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutResumeNestedInput
|
|
@@ -275915,6 +276939,16 @@ export namespace Prisma {
|
|
|
275915
276939
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
275916
276940
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
275917
276941
|
yearsOfExperience?: NullableIntFieldUpdateOperationsInput | number | null
|
|
276942
|
+
status?: NullableEnumResumeStatusFieldUpdateOperationsInput | $Enums.ResumeStatus | null
|
|
276943
|
+
origin?: NullableEnumResumeOriginFieldUpdateOperationsInput | $Enums.ResumeOrigin | null
|
|
276944
|
+
intake_session_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276945
|
+
conversation_history?: NullableJsonNullValueInput | InputJsonValue
|
|
276946
|
+
intake_progress?: NullableIntFieldUpdateOperationsInput | number | null
|
|
276947
|
+
orion_execution_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276948
|
+
tailoring_jd_text?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276949
|
+
tailoring_jd_parsed?: NullableJsonNullValueInput | InputJsonValue
|
|
276950
|
+
tailoring_gap_analysis?: NullableJsonNullValueInput | InputJsonValue
|
|
276951
|
+
tailoring_draft?: NullableJsonNullValueInput | InputJsonValue
|
|
275918
276952
|
}
|
|
275919
276953
|
|
|
275920
276954
|
export type JobDescriptionUpdateWithoutRecruitersInput = {
|
|
@@ -276391,6 +277425,7 @@ export namespace Prisma {
|
|
|
276391
277425
|
export type InterviewUpdateWithoutCandidateInput = {
|
|
276392
277426
|
id?: StringFieldUpdateOperationsInput | string
|
|
276393
277427
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
277428
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
276394
277429
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276395
277430
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
276396
277431
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -276452,6 +277487,7 @@ export namespace Prisma {
|
|
|
276452
277487
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
276453
277488
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
276454
277489
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
277490
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
276455
277491
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276456
277492
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
276457
277493
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -276507,6 +277543,7 @@ export namespace Prisma {
|
|
|
276507
277543
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
276508
277544
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
276509
277545
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
277546
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
276510
277547
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276511
277548
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
276512
277549
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -276550,6 +277587,7 @@ export namespace Prisma {
|
|
|
276550
277587
|
export type InterviewUpdateWithoutInterviewerInput = {
|
|
276551
277588
|
id?: StringFieldUpdateOperationsInput | string
|
|
276552
277589
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
277590
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
276553
277591
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276554
277592
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
276555
277593
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -276611,6 +277649,7 @@ export namespace Prisma {
|
|
|
276611
277649
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
276612
277650
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
276613
277651
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
277652
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
276614
277653
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276615
277654
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
276616
277655
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -276666,6 +277705,7 @@ export namespace Prisma {
|
|
|
276666
277705
|
resume_id?: StringFieldUpdateOperationsInput | string
|
|
276667
277706
|
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
276668
277707
|
calendar_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
277708
|
+
calendar_events?: NullableJsonNullValueInput | InputJsonValue
|
|
276669
277709
|
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
276670
277710
|
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
276671
277711
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|