@adaptware/eagles-db 0.4.41 → 0.4.43
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 +29 -18
- package/client/index-browser.js +23 -11
- package/client/index.d.ts +631 -225
- package/client/index.js +29 -18
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +25 -13
- package/client/wasm.js +29 -18
- package/package.json +1 -1
- package/prisma/.DS_Store +0 -0
- package/prisma/migrations/20260519120000_migrate_shortlisted_to_selected/migration.sql +2 -0
- package/prisma/schema/.DS_Store +0 -0
- package/prisma/schema/activityEvent.prisma +2 -0
- package/prisma/schema/applicationAnalytics.prisma +4 -0
- package/prisma/schema/applications.prisma +1 -0
- package/prisma/schema/evaluationPlan.prisma +3 -3
- package/prisma/schema/migrations/20260519120000_add_analytics_schema/migration.sql +84 -0
- package/prisma/schema/migrations/20260625120000_add_interviewer_analytics/migration.sql +26 -0
- package/prisma/schema/migrations/20260629120000_add_user_lifecycle_activity_events/migration.sql +13 -0
- package/prisma/schema/migrations/20260629140000_drop_organisation_org_code/migration.sql +2 -0
- package/prisma/schema/migrations/20260629160000_employee_codes_dual_interviewer_analytics/migration.sql +87 -0
- package/prisma/schema/migrations/20260630120000_add_application_sources/migration.sql +38 -0
- package/prisma/schema/migrations/20260701120000_add_source_effectiveness_analytics/migration.sql +40 -0
- package/prisma/schema/migrations/20260702120000_add_analytics_daily_tables/migration.sql +232 -0
- package/prisma/schema/migrations/20260716120000_evaluation_category_four_values/migration.sql +204 -0
- package/prisma/schema/migrations/20260716130000_application_withdrawn_analytics/migration.sql +31 -0
- package/prisma/schema/ongoingEvaluation.prisma +1 -0
- package/prisma/schema/openJobAnalytics.prisma +4 -0
- package/prisma/schema/pipelineDistributionAnalytics.prisma +4 -6
- package/prisma/schema/sourceEffectivenessAnalytics.prisma +2 -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/client/index.d.ts
CHANGED
|
@@ -461,6 +461,8 @@ export const ActivityEventType: {
|
|
|
461
461
|
APPLICATION_CREATED: 'APPLICATION_CREATED',
|
|
462
462
|
APPLICATION_STARTED: 'APPLICATION_STARTED',
|
|
463
463
|
APPLICATION_REJECTED: 'APPLICATION_REJECTED',
|
|
464
|
+
APPLICATION_ON_HOLD: 'APPLICATION_ON_HOLD',
|
|
465
|
+
APPLICATION_WITHDRAWN: 'APPLICATION_WITHDRAWN',
|
|
464
466
|
APPLICATION_SHORTLISTED: 'APPLICATION_SHORTLISTED',
|
|
465
467
|
FIT_CHECK_COMPLETED: 'FIT_CHECK_COMPLETED',
|
|
466
468
|
ROUND_ASSIGNED: 'ROUND_ASSIGNED',
|
|
@@ -555,7 +557,8 @@ export const ApplicationStatus: {
|
|
|
555
557
|
SELECTED: 'SELECTED',
|
|
556
558
|
SHORTLISTED: 'SHORTLISTED',
|
|
557
559
|
REJECTED: 'REJECTED',
|
|
558
|
-
ON_HOLD: 'ON_HOLD'
|
|
560
|
+
ON_HOLD: 'ON_HOLD',
|
|
561
|
+
WITHDRAWN: 'WITHDRAWN'
|
|
559
562
|
};
|
|
560
563
|
|
|
561
564
|
export type ApplicationStatus = (typeof ApplicationStatus)[keyof typeof ApplicationStatus]
|
|
@@ -668,9 +671,8 @@ export type RoundType = (typeof RoundType)[keyof typeof RoundType]
|
|
|
668
671
|
|
|
669
672
|
|
|
670
673
|
export const EvaluationCategory: {
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
TECHNICAL_INTERVIEW: 'TECHNICAL_INTERVIEW',
|
|
674
|
+
SCREENING: 'SCREENING',
|
|
675
|
+
BUSINESS_SCREENING: 'BUSINESS_SCREENING',
|
|
674
676
|
BUSINESS_ROUND: 'BUSINESS_ROUND',
|
|
675
677
|
BEHAVIORAL_ROUND: 'BEHAVIORAL_ROUND'
|
|
676
678
|
};
|
|
@@ -16281,6 +16283,8 @@ export namespace Prisma {
|
|
|
16281
16283
|
is_evaluated: boolean | null
|
|
16282
16284
|
is_rejected: boolean | null
|
|
16283
16285
|
is_shortlisted: boolean | null
|
|
16286
|
+
is_on_hold: boolean | null
|
|
16287
|
+
is_withdrawn: boolean | null
|
|
16284
16288
|
has_committed_evaluation: boolean | null
|
|
16285
16289
|
updated_at: Date | null
|
|
16286
16290
|
}
|
|
@@ -16309,6 +16313,8 @@ export namespace Prisma {
|
|
|
16309
16313
|
is_evaluated: boolean | null
|
|
16310
16314
|
is_rejected: boolean | null
|
|
16311
16315
|
is_shortlisted: boolean | null
|
|
16316
|
+
is_on_hold: boolean | null
|
|
16317
|
+
is_withdrawn: boolean | null
|
|
16312
16318
|
has_committed_evaluation: boolean | null
|
|
16313
16319
|
updated_at: Date | null
|
|
16314
16320
|
}
|
|
@@ -16337,6 +16343,8 @@ export namespace Prisma {
|
|
|
16337
16343
|
is_evaluated: number
|
|
16338
16344
|
is_rejected: number
|
|
16339
16345
|
is_shortlisted: number
|
|
16346
|
+
is_on_hold: number
|
|
16347
|
+
is_withdrawn: number
|
|
16340
16348
|
has_committed_evaluation: number
|
|
16341
16349
|
updated_at: number
|
|
16342
16350
|
_all: number
|
|
@@ -16377,6 +16385,8 @@ export namespace Prisma {
|
|
|
16377
16385
|
is_evaluated?: true
|
|
16378
16386
|
is_rejected?: true
|
|
16379
16387
|
is_shortlisted?: true
|
|
16388
|
+
is_on_hold?: true
|
|
16389
|
+
is_withdrawn?: true
|
|
16380
16390
|
has_committed_evaluation?: true
|
|
16381
16391
|
updated_at?: true
|
|
16382
16392
|
}
|
|
@@ -16405,6 +16415,8 @@ export namespace Prisma {
|
|
|
16405
16415
|
is_evaluated?: true
|
|
16406
16416
|
is_rejected?: true
|
|
16407
16417
|
is_shortlisted?: true
|
|
16418
|
+
is_on_hold?: true
|
|
16419
|
+
is_withdrawn?: true
|
|
16408
16420
|
has_committed_evaluation?: true
|
|
16409
16421
|
updated_at?: true
|
|
16410
16422
|
}
|
|
@@ -16433,6 +16445,8 @@ export namespace Prisma {
|
|
|
16433
16445
|
is_evaluated?: true
|
|
16434
16446
|
is_rejected?: true
|
|
16435
16447
|
is_shortlisted?: true
|
|
16448
|
+
is_on_hold?: true
|
|
16449
|
+
is_withdrawn?: true
|
|
16436
16450
|
has_committed_evaluation?: true
|
|
16437
16451
|
updated_at?: true
|
|
16438
16452
|
_all?: true
|
|
@@ -16548,6 +16562,8 @@ export namespace Prisma {
|
|
|
16548
16562
|
is_evaluated: boolean
|
|
16549
16563
|
is_rejected: boolean
|
|
16550
16564
|
is_shortlisted: boolean
|
|
16565
|
+
is_on_hold: boolean
|
|
16566
|
+
is_withdrawn: boolean
|
|
16551
16567
|
has_committed_evaluation: boolean
|
|
16552
16568
|
updated_at: Date
|
|
16553
16569
|
_count: ApplicationAnalyticsCountAggregateOutputType | null
|
|
@@ -16595,6 +16611,8 @@ export namespace Prisma {
|
|
|
16595
16611
|
is_evaluated?: boolean
|
|
16596
16612
|
is_rejected?: boolean
|
|
16597
16613
|
is_shortlisted?: boolean
|
|
16614
|
+
is_on_hold?: boolean
|
|
16615
|
+
is_withdrawn?: boolean
|
|
16598
16616
|
has_committed_evaluation?: boolean
|
|
16599
16617
|
updated_at?: boolean
|
|
16600
16618
|
}, ExtArgs["result"]["applicationAnalytics"]>
|
|
@@ -16623,6 +16641,8 @@ export namespace Prisma {
|
|
|
16623
16641
|
is_evaluated?: boolean
|
|
16624
16642
|
is_rejected?: boolean
|
|
16625
16643
|
is_shortlisted?: boolean
|
|
16644
|
+
is_on_hold?: boolean
|
|
16645
|
+
is_withdrawn?: boolean
|
|
16626
16646
|
has_committed_evaluation?: boolean
|
|
16627
16647
|
updated_at?: boolean
|
|
16628
16648
|
}, ExtArgs["result"]["applicationAnalytics"]>
|
|
@@ -16651,6 +16671,8 @@ export namespace Prisma {
|
|
|
16651
16671
|
is_evaluated?: boolean
|
|
16652
16672
|
is_rejected?: boolean
|
|
16653
16673
|
is_shortlisted?: boolean
|
|
16674
|
+
is_on_hold?: boolean
|
|
16675
|
+
is_withdrawn?: boolean
|
|
16654
16676
|
has_committed_evaluation?: boolean
|
|
16655
16677
|
updated_at?: boolean
|
|
16656
16678
|
}, ExtArgs["result"]["applicationAnalytics"]>
|
|
@@ -16679,11 +16701,13 @@ export namespace Prisma {
|
|
|
16679
16701
|
is_evaluated?: boolean
|
|
16680
16702
|
is_rejected?: boolean
|
|
16681
16703
|
is_shortlisted?: boolean
|
|
16704
|
+
is_on_hold?: boolean
|
|
16705
|
+
is_withdrawn?: boolean
|
|
16682
16706
|
has_committed_evaluation?: boolean
|
|
16683
16707
|
updated_at?: boolean
|
|
16684
16708
|
}
|
|
16685
16709
|
|
|
16686
|
-
export type ApplicationAnalyticsOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "application_id" | "job_description_id" | "candidate_id" | "source_id" | "source_name" | "source_category" | "source_colour" | "job_code" | "job_number" | "role_title" | "hiring_manager_id" | "candidate_name" | "recruiter_id" | "applied_at" | "status_updated_at" | "status" | "fit_check_score" | "is_screened" | "is_evaluated" | "is_rejected" | "is_shortlisted" | "has_committed_evaluation" | "updated_at", ExtArgs["result"]["applicationAnalytics"]>
|
|
16710
|
+
export type ApplicationAnalyticsOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "application_id" | "job_description_id" | "candidate_id" | "source_id" | "source_name" | "source_category" | "source_colour" | "job_code" | "job_number" | "role_title" | "hiring_manager_id" | "candidate_name" | "recruiter_id" | "applied_at" | "status_updated_at" | "status" | "fit_check_score" | "is_screened" | "is_evaluated" | "is_rejected" | "is_shortlisted" | "is_on_hold" | "is_withdrawn" | "has_committed_evaluation" | "updated_at", ExtArgs["result"]["applicationAnalytics"]>
|
|
16687
16711
|
|
|
16688
16712
|
export type $ApplicationAnalyticsPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
16689
16713
|
name: "ApplicationAnalytics"
|
|
@@ -16712,6 +16736,8 @@ export namespace Prisma {
|
|
|
16712
16736
|
is_evaluated: boolean
|
|
16713
16737
|
is_rejected: boolean
|
|
16714
16738
|
is_shortlisted: boolean
|
|
16739
|
+
is_on_hold: boolean
|
|
16740
|
+
is_withdrawn: boolean
|
|
16715
16741
|
has_committed_evaluation: boolean
|
|
16716
16742
|
updated_at: Date
|
|
16717
16743
|
}, ExtArgs["result"]["applicationAnalytics"]>
|
|
@@ -17160,6 +17186,8 @@ export namespace Prisma {
|
|
|
17160
17186
|
readonly is_evaluated: FieldRef<"ApplicationAnalytics", 'Boolean'>
|
|
17161
17187
|
readonly is_rejected: FieldRef<"ApplicationAnalytics", 'Boolean'>
|
|
17162
17188
|
readonly is_shortlisted: FieldRef<"ApplicationAnalytics", 'Boolean'>
|
|
17189
|
+
readonly is_on_hold: FieldRef<"ApplicationAnalytics", 'Boolean'>
|
|
17190
|
+
readonly is_withdrawn: FieldRef<"ApplicationAnalytics", 'Boolean'>
|
|
17163
17191
|
readonly has_committed_evaluation: FieldRef<"ApplicationAnalytics", 'Boolean'>
|
|
17164
17192
|
readonly updated_at: FieldRef<"ApplicationAnalytics", 'DateTime'>
|
|
17165
17193
|
}
|
|
@@ -17575,6 +17603,8 @@ export namespace Prisma {
|
|
|
17575
17603
|
is_evaluated: boolean | null
|
|
17576
17604
|
is_rejected: boolean | null
|
|
17577
17605
|
is_shortlisted: boolean | null
|
|
17606
|
+
is_on_hold: boolean | null
|
|
17607
|
+
is_withdrawn: boolean | null
|
|
17578
17608
|
has_committed_evaluation: boolean | null
|
|
17579
17609
|
}
|
|
17580
17610
|
|
|
@@ -17603,6 +17633,8 @@ export namespace Prisma {
|
|
|
17603
17633
|
is_evaluated: boolean | null
|
|
17604
17634
|
is_rejected: boolean | null
|
|
17605
17635
|
is_shortlisted: boolean | null
|
|
17636
|
+
is_on_hold: boolean | null
|
|
17637
|
+
is_withdrawn: boolean | null
|
|
17606
17638
|
has_committed_evaluation: boolean | null
|
|
17607
17639
|
}
|
|
17608
17640
|
|
|
@@ -17631,6 +17663,8 @@ export namespace Prisma {
|
|
|
17631
17663
|
is_evaluated: number
|
|
17632
17664
|
is_rejected: number
|
|
17633
17665
|
is_shortlisted: number
|
|
17666
|
+
is_on_hold: number
|
|
17667
|
+
is_withdrawn: number
|
|
17634
17668
|
has_committed_evaluation: number
|
|
17635
17669
|
_all: number
|
|
17636
17670
|
}
|
|
@@ -17671,6 +17705,8 @@ export namespace Prisma {
|
|
|
17671
17705
|
is_evaluated?: true
|
|
17672
17706
|
is_rejected?: true
|
|
17673
17707
|
is_shortlisted?: true
|
|
17708
|
+
is_on_hold?: true
|
|
17709
|
+
is_withdrawn?: true
|
|
17674
17710
|
has_committed_evaluation?: true
|
|
17675
17711
|
}
|
|
17676
17712
|
|
|
@@ -17699,6 +17735,8 @@ export namespace Prisma {
|
|
|
17699
17735
|
is_evaluated?: true
|
|
17700
17736
|
is_rejected?: true
|
|
17701
17737
|
is_shortlisted?: true
|
|
17738
|
+
is_on_hold?: true
|
|
17739
|
+
is_withdrawn?: true
|
|
17702
17740
|
has_committed_evaluation?: true
|
|
17703
17741
|
}
|
|
17704
17742
|
|
|
@@ -17727,6 +17765,8 @@ export namespace Prisma {
|
|
|
17727
17765
|
is_evaluated?: true
|
|
17728
17766
|
is_rejected?: true
|
|
17729
17767
|
is_shortlisted?: true
|
|
17768
|
+
is_on_hold?: true
|
|
17769
|
+
is_withdrawn?: true
|
|
17730
17770
|
has_committed_evaluation?: true
|
|
17731
17771
|
_all?: true
|
|
17732
17772
|
}
|
|
@@ -17842,6 +17882,8 @@ export namespace Prisma {
|
|
|
17842
17882
|
is_evaluated: boolean
|
|
17843
17883
|
is_rejected: boolean
|
|
17844
17884
|
is_shortlisted: boolean
|
|
17885
|
+
is_on_hold: boolean
|
|
17886
|
+
is_withdrawn: boolean
|
|
17845
17887
|
has_committed_evaluation: boolean
|
|
17846
17888
|
_count: ApplicationAnalyticsDailyCountAggregateOutputType | null
|
|
17847
17889
|
_avg: ApplicationAnalyticsDailyAvgAggregateOutputType | null
|
|
@@ -17889,6 +17931,8 @@ export namespace Prisma {
|
|
|
17889
17931
|
is_evaluated?: boolean
|
|
17890
17932
|
is_rejected?: boolean
|
|
17891
17933
|
is_shortlisted?: boolean
|
|
17934
|
+
is_on_hold?: boolean
|
|
17935
|
+
is_withdrawn?: boolean
|
|
17892
17936
|
has_committed_evaluation?: boolean
|
|
17893
17937
|
}, ExtArgs["result"]["applicationAnalyticsDaily"]>
|
|
17894
17938
|
|
|
@@ -17917,6 +17961,8 @@ export namespace Prisma {
|
|
|
17917
17961
|
is_evaluated?: boolean
|
|
17918
17962
|
is_rejected?: boolean
|
|
17919
17963
|
is_shortlisted?: boolean
|
|
17964
|
+
is_on_hold?: boolean
|
|
17965
|
+
is_withdrawn?: boolean
|
|
17920
17966
|
has_committed_evaluation?: boolean
|
|
17921
17967
|
}, ExtArgs["result"]["applicationAnalyticsDaily"]>
|
|
17922
17968
|
|
|
@@ -17945,6 +17991,8 @@ export namespace Prisma {
|
|
|
17945
17991
|
is_evaluated?: boolean
|
|
17946
17992
|
is_rejected?: boolean
|
|
17947
17993
|
is_shortlisted?: boolean
|
|
17994
|
+
is_on_hold?: boolean
|
|
17995
|
+
is_withdrawn?: boolean
|
|
17948
17996
|
has_committed_evaluation?: boolean
|
|
17949
17997
|
}, ExtArgs["result"]["applicationAnalyticsDaily"]>
|
|
17950
17998
|
|
|
@@ -17973,10 +18021,12 @@ export namespace Prisma {
|
|
|
17973
18021
|
is_evaluated?: boolean
|
|
17974
18022
|
is_rejected?: boolean
|
|
17975
18023
|
is_shortlisted?: boolean
|
|
18024
|
+
is_on_hold?: boolean
|
|
18025
|
+
is_withdrawn?: boolean
|
|
17976
18026
|
has_committed_evaluation?: boolean
|
|
17977
18027
|
}
|
|
17978
18028
|
|
|
17979
|
-
export type ApplicationAnalyticsDailyOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "snapshot_date" | "organisation_id" | "application_id" | "job_description_id" | "candidate_id" | "source_id" | "source_name" | "source_category" | "source_colour" | "job_code" | "job_number" | "role_title" | "hiring_manager_id" | "candidate_name" | "recruiter_id" | "applied_at" | "status_updated_at" | "status" | "fit_check_score" | "is_screened" | "is_evaluated" | "is_rejected" | "is_shortlisted" | "has_committed_evaluation", ExtArgs["result"]["applicationAnalyticsDaily"]>
|
|
18029
|
+
export type ApplicationAnalyticsDailyOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "snapshot_date" | "organisation_id" | "application_id" | "job_description_id" | "candidate_id" | "source_id" | "source_name" | "source_category" | "source_colour" | "job_code" | "job_number" | "role_title" | "hiring_manager_id" | "candidate_name" | "recruiter_id" | "applied_at" | "status_updated_at" | "status" | "fit_check_score" | "is_screened" | "is_evaluated" | "is_rejected" | "is_shortlisted" | "is_on_hold" | "is_withdrawn" | "has_committed_evaluation", ExtArgs["result"]["applicationAnalyticsDaily"]>
|
|
17980
18030
|
|
|
17981
18031
|
export type $ApplicationAnalyticsDailyPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17982
18032
|
name: "ApplicationAnalyticsDaily"
|
|
@@ -18006,6 +18056,8 @@ export namespace Prisma {
|
|
|
18006
18056
|
is_evaluated: boolean
|
|
18007
18057
|
is_rejected: boolean
|
|
18008
18058
|
is_shortlisted: boolean
|
|
18059
|
+
is_on_hold: boolean
|
|
18060
|
+
is_withdrawn: boolean
|
|
18009
18061
|
has_committed_evaluation: boolean
|
|
18010
18062
|
}, ExtArgs["result"]["applicationAnalyticsDaily"]>
|
|
18011
18063
|
composites: {}
|
|
@@ -18454,6 +18506,8 @@ export namespace Prisma {
|
|
|
18454
18506
|
readonly is_evaluated: FieldRef<"ApplicationAnalyticsDaily", 'Boolean'>
|
|
18455
18507
|
readonly is_rejected: FieldRef<"ApplicationAnalyticsDaily", 'Boolean'>
|
|
18456
18508
|
readonly is_shortlisted: FieldRef<"ApplicationAnalyticsDaily", 'Boolean'>
|
|
18509
|
+
readonly is_on_hold: FieldRef<"ApplicationAnalyticsDaily", 'Boolean'>
|
|
18510
|
+
readonly is_withdrawn: FieldRef<"ApplicationAnalyticsDaily", 'Boolean'>
|
|
18457
18511
|
readonly has_committed_evaluation: FieldRef<"ApplicationAnalyticsDaily", 'Boolean'>
|
|
18458
18512
|
}
|
|
18459
18513
|
|
|
@@ -45466,6 +45520,7 @@ export namespace Prisma {
|
|
|
45466
45520
|
title: number
|
|
45467
45521
|
description: number
|
|
45468
45522
|
format: number
|
|
45523
|
+
focus_areas: number
|
|
45469
45524
|
topics: number
|
|
45470
45525
|
assignee: number
|
|
45471
45526
|
elimination_round: number
|
|
@@ -45568,6 +45623,7 @@ export namespace Prisma {
|
|
|
45568
45623
|
title?: true
|
|
45569
45624
|
description?: true
|
|
45570
45625
|
format?: true
|
|
45626
|
+
focus_areas?: true
|
|
45571
45627
|
topics?: true
|
|
45572
45628
|
assignee?: true
|
|
45573
45629
|
elimination_round?: true
|
|
@@ -45685,6 +45741,7 @@ export namespace Prisma {
|
|
|
45685
45741
|
title: string
|
|
45686
45742
|
description: string | null
|
|
45687
45743
|
format: $Enums.EvaluationRoundFormat | null
|
|
45744
|
+
focus_areas: string[]
|
|
45688
45745
|
topics: string[]
|
|
45689
45746
|
assignee: string | null
|
|
45690
45747
|
elimination_round: boolean
|
|
@@ -45734,6 +45791,7 @@ export namespace Prisma {
|
|
|
45734
45791
|
title?: boolean
|
|
45735
45792
|
description?: boolean
|
|
45736
45793
|
format?: boolean
|
|
45794
|
+
focus_areas?: boolean
|
|
45737
45795
|
topics?: boolean
|
|
45738
45796
|
assignee?: boolean
|
|
45739
45797
|
elimination_round?: boolean
|
|
@@ -45772,6 +45830,7 @@ export namespace Prisma {
|
|
|
45772
45830
|
title?: boolean
|
|
45773
45831
|
description?: boolean
|
|
45774
45832
|
format?: boolean
|
|
45833
|
+
focus_areas?: boolean
|
|
45775
45834
|
topics?: boolean
|
|
45776
45835
|
assignee?: boolean
|
|
45777
45836
|
elimination_round?: boolean
|
|
@@ -45805,6 +45864,7 @@ export namespace Prisma {
|
|
|
45805
45864
|
title?: boolean
|
|
45806
45865
|
description?: boolean
|
|
45807
45866
|
format?: boolean
|
|
45867
|
+
focus_areas?: boolean
|
|
45808
45868
|
topics?: boolean
|
|
45809
45869
|
assignee?: boolean
|
|
45810
45870
|
elimination_round?: boolean
|
|
@@ -45838,6 +45898,7 @@ export namespace Prisma {
|
|
|
45838
45898
|
title?: boolean
|
|
45839
45899
|
description?: boolean
|
|
45840
45900
|
format?: boolean
|
|
45901
|
+
focus_areas?: boolean
|
|
45841
45902
|
topics?: boolean
|
|
45842
45903
|
assignee?: boolean
|
|
45843
45904
|
elimination_round?: boolean
|
|
@@ -45860,7 +45921,7 @@ export namespace Prisma {
|
|
|
45860
45921
|
is_active?: boolean
|
|
45861
45922
|
}
|
|
45862
45923
|
|
|
45863
|
-
export type EvaluationPlanOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "job_description_id" | "assessment_id" | "assignment_library_id" | "title" | "description" | "format" | "topics" | "assignee" | "elimination_round" | "evaluation_type" | "type_of_round" | "round_purpose" | "timeline" | "order_no" | "details" | "plan_type" | "share_scope" | "duration" | "duration_unit" | "deadline" | "category" | "created_by" | "updated_by" | "created_at" | "updated_at" | "is_active", ExtArgs["result"]["evaluationPlan"]>
|
|
45924
|
+
export type EvaluationPlanOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "job_description_id" | "assessment_id" | "assignment_library_id" | "title" | "description" | "format" | "focus_areas" | "topics" | "assignee" | "elimination_round" | "evaluation_type" | "type_of_round" | "round_purpose" | "timeline" | "order_no" | "details" | "plan_type" | "share_scope" | "duration" | "duration_unit" | "deadline" | "category" | "created_by" | "updated_by" | "created_at" | "updated_at" | "is_active", ExtArgs["result"]["evaluationPlan"]>
|
|
45864
45925
|
export type EvaluationPlanInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45865
45926
|
jobDescription?: boolean | JobDescriptionDefaultArgs<ExtArgs>
|
|
45866
45927
|
questions?: boolean | EvaluationPlan$questionsArgs<ExtArgs>
|
|
@@ -45901,6 +45962,7 @@ export namespace Prisma {
|
|
|
45901
45962
|
title: string
|
|
45902
45963
|
description: string | null
|
|
45903
45964
|
format: $Enums.EvaluationRoundFormat | null
|
|
45965
|
+
focus_areas: string[]
|
|
45904
45966
|
topics: string[]
|
|
45905
45967
|
assignee: string | null
|
|
45906
45968
|
elimination_round: boolean
|
|
@@ -46358,6 +46420,7 @@ export namespace Prisma {
|
|
|
46358
46420
|
readonly title: FieldRef<"EvaluationPlan", 'String'>
|
|
46359
46421
|
readonly description: FieldRef<"EvaluationPlan", 'String'>
|
|
46360
46422
|
readonly format: FieldRef<"EvaluationPlan", 'EvaluationRoundFormat'>
|
|
46423
|
+
readonly focus_areas: FieldRef<"EvaluationPlan", 'String[]'>
|
|
46361
46424
|
readonly topics: FieldRef<"EvaluationPlan", 'String[]'>
|
|
46362
46425
|
readonly assignee: FieldRef<"EvaluationPlan", 'String'>
|
|
46363
46426
|
readonly elimination_round: FieldRef<"EvaluationPlan", 'Boolean'>
|
|
@@ -79492,6 +79555,7 @@ export namespace Prisma {
|
|
|
79492
79555
|
order_no: number
|
|
79493
79556
|
format: number
|
|
79494
79557
|
round_purpose: number
|
|
79558
|
+
focus_areas: number
|
|
79495
79559
|
topics: number
|
|
79496
79560
|
assignee: number
|
|
79497
79561
|
elimination_round: number
|
|
@@ -79619,6 +79683,7 @@ export namespace Prisma {
|
|
|
79619
79683
|
order_no?: true
|
|
79620
79684
|
format?: true
|
|
79621
79685
|
round_purpose?: true
|
|
79686
|
+
focus_areas?: true
|
|
79622
79687
|
topics?: true
|
|
79623
79688
|
assignee?: true
|
|
79624
79689
|
elimination_round?: true
|
|
@@ -79745,6 +79810,7 @@ export namespace Prisma {
|
|
|
79745
79810
|
order_no: number | null
|
|
79746
79811
|
format: $Enums.EvaluationRoundFormat | null
|
|
79747
79812
|
round_purpose: string | null
|
|
79813
|
+
focus_areas: string[]
|
|
79748
79814
|
topics: string[]
|
|
79749
79815
|
assignee: string | null
|
|
79750
79816
|
elimination_round: boolean | null
|
|
@@ -79803,6 +79869,7 @@ export namespace Prisma {
|
|
|
79803
79869
|
order_no?: boolean
|
|
79804
79870
|
format?: boolean
|
|
79805
79871
|
round_purpose?: boolean
|
|
79872
|
+
focus_areas?: boolean
|
|
79806
79873
|
topics?: boolean
|
|
79807
79874
|
assignee?: boolean
|
|
79808
79875
|
elimination_round?: boolean
|
|
@@ -79851,6 +79918,7 @@ export namespace Prisma {
|
|
|
79851
79918
|
order_no?: boolean
|
|
79852
79919
|
format?: boolean
|
|
79853
79920
|
round_purpose?: boolean
|
|
79921
|
+
focus_areas?: boolean
|
|
79854
79922
|
topics?: boolean
|
|
79855
79923
|
assignee?: boolean
|
|
79856
79924
|
elimination_round?: boolean
|
|
@@ -79898,6 +79966,7 @@ export namespace Prisma {
|
|
|
79898
79966
|
order_no?: boolean
|
|
79899
79967
|
format?: boolean
|
|
79900
79968
|
round_purpose?: boolean
|
|
79969
|
+
focus_areas?: boolean
|
|
79901
79970
|
topics?: boolean
|
|
79902
79971
|
assignee?: boolean
|
|
79903
79972
|
elimination_round?: boolean
|
|
@@ -79945,6 +80014,7 @@ export namespace Prisma {
|
|
|
79945
80014
|
order_no?: boolean
|
|
79946
80015
|
format?: boolean
|
|
79947
80016
|
round_purpose?: boolean
|
|
80017
|
+
focus_areas?: boolean
|
|
79948
80018
|
topics?: boolean
|
|
79949
80019
|
assignee?: boolean
|
|
79950
80020
|
elimination_round?: boolean
|
|
@@ -79963,7 +80033,7 @@ export namespace Prisma {
|
|
|
79963
80033
|
is_current?: boolean
|
|
79964
80034
|
}
|
|
79965
80035
|
|
|
79966
|
-
export type OngoingEvaluationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "application_id" | "candidate_id" | "resume_id" | "job_description_id" | "evaluation_plan_id" | "interview_id" | "assignment_id" | "assessment_id" | "state" | "round_status" | "comments" | "completed_at" | "is_committed" | "title" | "description" | "order_no" | "format" | "round_purpose" | "topics" | "assignee" | "elimination_round" | "evaluation_type" | "type_of_round" | "duration" | "deadline" | "duration_unit" | "details" | "category" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "is_current", ExtArgs["result"]["ongoingEvaluation"]>
|
|
80036
|
+
export type OngoingEvaluationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "application_id" | "candidate_id" | "resume_id" | "job_description_id" | "evaluation_plan_id" | "interview_id" | "assignment_id" | "assessment_id" | "state" | "round_status" | "comments" | "completed_at" | "is_committed" | "title" | "description" | "order_no" | "format" | "round_purpose" | "focus_areas" | "topics" | "assignee" | "elimination_round" | "evaluation_type" | "type_of_round" | "duration" | "deadline" | "duration_unit" | "details" | "category" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "is_current", ExtArgs["result"]["ongoingEvaluation"]>
|
|
79967
80037
|
export type OngoingEvaluationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
79968
80038
|
jobDescription?: boolean | OngoingEvaluation$jobDescriptionArgs<ExtArgs>
|
|
79969
80039
|
application?: boolean | ApplicationDefaultArgs<ExtArgs>
|
|
@@ -80033,6 +80103,7 @@ export namespace Prisma {
|
|
|
80033
80103
|
order_no: number | null
|
|
80034
80104
|
format: $Enums.EvaluationRoundFormat | null
|
|
80035
80105
|
round_purpose: string | null
|
|
80106
|
+
focus_areas: string[]
|
|
80036
80107
|
topics: string[]
|
|
80037
80108
|
assignee: string | null
|
|
80038
80109
|
elimination_round: boolean | null
|
|
@@ -80501,6 +80572,7 @@ export namespace Prisma {
|
|
|
80501
80572
|
readonly order_no: FieldRef<"OngoingEvaluation", 'Int'>
|
|
80502
80573
|
readonly format: FieldRef<"OngoingEvaluation", 'EvaluationRoundFormat'>
|
|
80503
80574
|
readonly round_purpose: FieldRef<"OngoingEvaluation", 'String'>
|
|
80575
|
+
readonly focus_areas: FieldRef<"OngoingEvaluation", 'String[]'>
|
|
80504
80576
|
readonly topics: FieldRef<"OngoingEvaluation", 'String[]'>
|
|
80505
80577
|
readonly assignee: FieldRef<"OngoingEvaluation", 'String'>
|
|
80506
80578
|
readonly elimination_round: FieldRef<"OngoingEvaluation", 'Boolean'>
|
|
@@ -81085,6 +81157,8 @@ export namespace Prisma {
|
|
|
81085
81157
|
ongoing_count: number | null
|
|
81086
81158
|
selected_count: number | null
|
|
81087
81159
|
rejected_count: number | null
|
|
81160
|
+
on_hold_count: number | null
|
|
81161
|
+
withdrawn_count: number | null
|
|
81088
81162
|
}
|
|
81089
81163
|
|
|
81090
81164
|
export type OpenJobAnalyticsSumAggregateOutputType = {
|
|
@@ -81096,6 +81170,8 @@ export namespace Prisma {
|
|
|
81096
81170
|
ongoing_count: number | null
|
|
81097
81171
|
selected_count: number | null
|
|
81098
81172
|
rejected_count: number | null
|
|
81173
|
+
on_hold_count: number | null
|
|
81174
|
+
withdrawn_count: number | null
|
|
81099
81175
|
}
|
|
81100
81176
|
|
|
81101
81177
|
export type OpenJobAnalyticsMinAggregateOutputType = {
|
|
@@ -81122,6 +81198,8 @@ export namespace Prisma {
|
|
|
81122
81198
|
ongoing_count: number | null
|
|
81123
81199
|
selected_count: number | null
|
|
81124
81200
|
rejected_count: number | null
|
|
81201
|
+
on_hold_count: number | null
|
|
81202
|
+
withdrawn_count: number | null
|
|
81125
81203
|
updated_at: Date | null
|
|
81126
81204
|
}
|
|
81127
81205
|
|
|
@@ -81149,6 +81227,8 @@ export namespace Prisma {
|
|
|
81149
81227
|
ongoing_count: number | null
|
|
81150
81228
|
selected_count: number | null
|
|
81151
81229
|
rejected_count: number | null
|
|
81230
|
+
on_hold_count: number | null
|
|
81231
|
+
withdrawn_count: number | null
|
|
81152
81232
|
updated_at: Date | null
|
|
81153
81233
|
}
|
|
81154
81234
|
|
|
@@ -81176,6 +81256,8 @@ export namespace Prisma {
|
|
|
81176
81256
|
ongoing_count: number
|
|
81177
81257
|
selected_count: number
|
|
81178
81258
|
rejected_count: number
|
|
81259
|
+
on_hold_count: number
|
|
81260
|
+
withdrawn_count: number
|
|
81179
81261
|
updated_at: number
|
|
81180
81262
|
_all: number
|
|
81181
81263
|
}
|
|
@@ -81190,6 +81272,8 @@ export namespace Prisma {
|
|
|
81190
81272
|
ongoing_count?: true
|
|
81191
81273
|
selected_count?: true
|
|
81192
81274
|
rejected_count?: true
|
|
81275
|
+
on_hold_count?: true
|
|
81276
|
+
withdrawn_count?: true
|
|
81193
81277
|
}
|
|
81194
81278
|
|
|
81195
81279
|
export type OpenJobAnalyticsSumAggregateInputType = {
|
|
@@ -81201,6 +81285,8 @@ export namespace Prisma {
|
|
|
81201
81285
|
ongoing_count?: true
|
|
81202
81286
|
selected_count?: true
|
|
81203
81287
|
rejected_count?: true
|
|
81288
|
+
on_hold_count?: true
|
|
81289
|
+
withdrawn_count?: true
|
|
81204
81290
|
}
|
|
81205
81291
|
|
|
81206
81292
|
export type OpenJobAnalyticsMinAggregateInputType = {
|
|
@@ -81227,6 +81313,8 @@ export namespace Prisma {
|
|
|
81227
81313
|
ongoing_count?: true
|
|
81228
81314
|
selected_count?: true
|
|
81229
81315
|
rejected_count?: true
|
|
81316
|
+
on_hold_count?: true
|
|
81317
|
+
withdrawn_count?: true
|
|
81230
81318
|
updated_at?: true
|
|
81231
81319
|
}
|
|
81232
81320
|
|
|
@@ -81254,6 +81342,8 @@ export namespace Prisma {
|
|
|
81254
81342
|
ongoing_count?: true
|
|
81255
81343
|
selected_count?: true
|
|
81256
81344
|
rejected_count?: true
|
|
81345
|
+
on_hold_count?: true
|
|
81346
|
+
withdrawn_count?: true
|
|
81257
81347
|
updated_at?: true
|
|
81258
81348
|
}
|
|
81259
81349
|
|
|
@@ -81281,6 +81371,8 @@ export namespace Prisma {
|
|
|
81281
81371
|
ongoing_count?: true
|
|
81282
81372
|
selected_count?: true
|
|
81283
81373
|
rejected_count?: true
|
|
81374
|
+
on_hold_count?: true
|
|
81375
|
+
withdrawn_count?: true
|
|
81284
81376
|
updated_at?: true
|
|
81285
81377
|
_all?: true
|
|
81286
81378
|
}
|
|
@@ -81395,6 +81487,8 @@ export namespace Prisma {
|
|
|
81395
81487
|
ongoing_count: number
|
|
81396
81488
|
selected_count: number
|
|
81397
81489
|
rejected_count: number
|
|
81490
|
+
on_hold_count: number
|
|
81491
|
+
withdrawn_count: number
|
|
81398
81492
|
updated_at: Date
|
|
81399
81493
|
_count: OpenJobAnalyticsCountAggregateOutputType | null
|
|
81400
81494
|
_avg: OpenJobAnalyticsAvgAggregateOutputType | null
|
|
@@ -81441,6 +81535,8 @@ export namespace Prisma {
|
|
|
81441
81535
|
ongoing_count?: boolean
|
|
81442
81536
|
selected_count?: boolean
|
|
81443
81537
|
rejected_count?: boolean
|
|
81538
|
+
on_hold_count?: boolean
|
|
81539
|
+
withdrawn_count?: boolean
|
|
81444
81540
|
updated_at?: boolean
|
|
81445
81541
|
}, ExtArgs["result"]["openJobAnalytics"]>
|
|
81446
81542
|
|
|
@@ -81468,6 +81564,8 @@ export namespace Prisma {
|
|
|
81468
81564
|
ongoing_count?: boolean
|
|
81469
81565
|
selected_count?: boolean
|
|
81470
81566
|
rejected_count?: boolean
|
|
81567
|
+
on_hold_count?: boolean
|
|
81568
|
+
withdrawn_count?: boolean
|
|
81471
81569
|
updated_at?: boolean
|
|
81472
81570
|
}, ExtArgs["result"]["openJobAnalytics"]>
|
|
81473
81571
|
|
|
@@ -81495,6 +81593,8 @@ export namespace Prisma {
|
|
|
81495
81593
|
ongoing_count?: boolean
|
|
81496
81594
|
selected_count?: boolean
|
|
81497
81595
|
rejected_count?: boolean
|
|
81596
|
+
on_hold_count?: boolean
|
|
81597
|
+
withdrawn_count?: boolean
|
|
81498
81598
|
updated_at?: boolean
|
|
81499
81599
|
}, ExtArgs["result"]["openJobAnalytics"]>
|
|
81500
81600
|
|
|
@@ -81522,10 +81622,12 @@ export namespace Prisma {
|
|
|
81522
81622
|
ongoing_count?: boolean
|
|
81523
81623
|
selected_count?: boolean
|
|
81524
81624
|
rejected_count?: boolean
|
|
81625
|
+
on_hold_count?: boolean
|
|
81626
|
+
withdrawn_count?: boolean
|
|
81525
81627
|
updated_at?: boolean
|
|
81526
81628
|
}
|
|
81527
81629
|
|
|
81528
|
-
export type OpenJobAnalyticsOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "job_description_id" | "job_code" | "job_number" | "role_title" | "department" | "hiring_manager_id" | "hiring_manager_name" | "location" | "compensation" | "vacancies" | "opened_at" | "target_closing_date" | "closing_date" | "is_open" | "closure_type" | "time_to_hire_days" | "application_count" | "unscreened_count" | "ongoing_count" | "selected_count" | "rejected_count" | "updated_at", ExtArgs["result"]["openJobAnalytics"]>
|
|
81630
|
+
export type OpenJobAnalyticsOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "job_description_id" | "job_code" | "job_number" | "role_title" | "department" | "hiring_manager_id" | "hiring_manager_name" | "location" | "compensation" | "vacancies" | "opened_at" | "target_closing_date" | "closing_date" | "is_open" | "closure_type" | "time_to_hire_days" | "application_count" | "unscreened_count" | "ongoing_count" | "selected_count" | "rejected_count" | "on_hold_count" | "withdrawn_count" | "updated_at", ExtArgs["result"]["openJobAnalytics"]>
|
|
81529
81631
|
|
|
81530
81632
|
export type $OpenJobAnalyticsPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
81531
81633
|
name: "OpenJobAnalytics"
|
|
@@ -81554,6 +81656,8 @@ export namespace Prisma {
|
|
|
81554
81656
|
ongoing_count: number
|
|
81555
81657
|
selected_count: number
|
|
81556
81658
|
rejected_count: number
|
|
81659
|
+
on_hold_count: number
|
|
81660
|
+
withdrawn_count: number
|
|
81557
81661
|
updated_at: Date
|
|
81558
81662
|
}, ExtArgs["result"]["openJobAnalytics"]>
|
|
81559
81663
|
composites: {}
|
|
@@ -82001,6 +82105,8 @@ export namespace Prisma {
|
|
|
82001
82105
|
readonly ongoing_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
82002
82106
|
readonly selected_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
82003
82107
|
readonly rejected_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
82108
|
+
readonly on_hold_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
82109
|
+
readonly withdrawn_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
82004
82110
|
readonly updated_at: FieldRef<"OpenJobAnalytics", 'DateTime'>
|
|
82005
82111
|
}
|
|
82006
82112
|
|
|
@@ -82389,6 +82495,8 @@ export namespace Prisma {
|
|
|
82389
82495
|
ongoing_count: number | null
|
|
82390
82496
|
selected_count: number | null
|
|
82391
82497
|
rejected_count: number | null
|
|
82498
|
+
on_hold_count: number | null
|
|
82499
|
+
withdrawn_count: number | null
|
|
82392
82500
|
}
|
|
82393
82501
|
|
|
82394
82502
|
export type OpenJobAnalyticsDailySumAggregateOutputType = {
|
|
@@ -82400,6 +82508,8 @@ export namespace Prisma {
|
|
|
82400
82508
|
ongoing_count: number | null
|
|
82401
82509
|
selected_count: number | null
|
|
82402
82510
|
rejected_count: number | null
|
|
82511
|
+
on_hold_count: number | null
|
|
82512
|
+
withdrawn_count: number | null
|
|
82403
82513
|
}
|
|
82404
82514
|
|
|
82405
82515
|
export type OpenJobAnalyticsDailyMinAggregateOutputType = {
|
|
@@ -82427,6 +82537,8 @@ export namespace Prisma {
|
|
|
82427
82537
|
ongoing_count: number | null
|
|
82428
82538
|
selected_count: number | null
|
|
82429
82539
|
rejected_count: number | null
|
|
82540
|
+
on_hold_count: number | null
|
|
82541
|
+
withdrawn_count: number | null
|
|
82430
82542
|
}
|
|
82431
82543
|
|
|
82432
82544
|
export type OpenJobAnalyticsDailyMaxAggregateOutputType = {
|
|
@@ -82454,6 +82566,8 @@ export namespace Prisma {
|
|
|
82454
82566
|
ongoing_count: number | null
|
|
82455
82567
|
selected_count: number | null
|
|
82456
82568
|
rejected_count: number | null
|
|
82569
|
+
on_hold_count: number | null
|
|
82570
|
+
withdrawn_count: number | null
|
|
82457
82571
|
}
|
|
82458
82572
|
|
|
82459
82573
|
export type OpenJobAnalyticsDailyCountAggregateOutputType = {
|
|
@@ -82481,6 +82595,8 @@ export namespace Prisma {
|
|
|
82481
82595
|
ongoing_count: number
|
|
82482
82596
|
selected_count: number
|
|
82483
82597
|
rejected_count: number
|
|
82598
|
+
on_hold_count: number
|
|
82599
|
+
withdrawn_count: number
|
|
82484
82600
|
_all: number
|
|
82485
82601
|
}
|
|
82486
82602
|
|
|
@@ -82494,6 +82610,8 @@ export namespace Prisma {
|
|
|
82494
82610
|
ongoing_count?: true
|
|
82495
82611
|
selected_count?: true
|
|
82496
82612
|
rejected_count?: true
|
|
82613
|
+
on_hold_count?: true
|
|
82614
|
+
withdrawn_count?: true
|
|
82497
82615
|
}
|
|
82498
82616
|
|
|
82499
82617
|
export type OpenJobAnalyticsDailySumAggregateInputType = {
|
|
@@ -82505,6 +82623,8 @@ export namespace Prisma {
|
|
|
82505
82623
|
ongoing_count?: true
|
|
82506
82624
|
selected_count?: true
|
|
82507
82625
|
rejected_count?: true
|
|
82626
|
+
on_hold_count?: true
|
|
82627
|
+
withdrawn_count?: true
|
|
82508
82628
|
}
|
|
82509
82629
|
|
|
82510
82630
|
export type OpenJobAnalyticsDailyMinAggregateInputType = {
|
|
@@ -82532,6 +82652,8 @@ export namespace Prisma {
|
|
|
82532
82652
|
ongoing_count?: true
|
|
82533
82653
|
selected_count?: true
|
|
82534
82654
|
rejected_count?: true
|
|
82655
|
+
on_hold_count?: true
|
|
82656
|
+
withdrawn_count?: true
|
|
82535
82657
|
}
|
|
82536
82658
|
|
|
82537
82659
|
export type OpenJobAnalyticsDailyMaxAggregateInputType = {
|
|
@@ -82559,6 +82681,8 @@ export namespace Prisma {
|
|
|
82559
82681
|
ongoing_count?: true
|
|
82560
82682
|
selected_count?: true
|
|
82561
82683
|
rejected_count?: true
|
|
82684
|
+
on_hold_count?: true
|
|
82685
|
+
withdrawn_count?: true
|
|
82562
82686
|
}
|
|
82563
82687
|
|
|
82564
82688
|
export type OpenJobAnalyticsDailyCountAggregateInputType = {
|
|
@@ -82586,6 +82710,8 @@ export namespace Prisma {
|
|
|
82586
82710
|
ongoing_count?: true
|
|
82587
82711
|
selected_count?: true
|
|
82588
82712
|
rejected_count?: true
|
|
82713
|
+
on_hold_count?: true
|
|
82714
|
+
withdrawn_count?: true
|
|
82589
82715
|
_all?: true
|
|
82590
82716
|
}
|
|
82591
82717
|
|
|
@@ -82700,6 +82826,8 @@ export namespace Prisma {
|
|
|
82700
82826
|
ongoing_count: number
|
|
82701
82827
|
selected_count: number
|
|
82702
82828
|
rejected_count: number
|
|
82829
|
+
on_hold_count: number
|
|
82830
|
+
withdrawn_count: number
|
|
82703
82831
|
_count: OpenJobAnalyticsDailyCountAggregateOutputType | null
|
|
82704
82832
|
_avg: OpenJobAnalyticsDailyAvgAggregateOutputType | null
|
|
82705
82833
|
_sum: OpenJobAnalyticsDailySumAggregateOutputType | null
|
|
@@ -82746,6 +82874,8 @@ export namespace Prisma {
|
|
|
82746
82874
|
ongoing_count?: boolean
|
|
82747
82875
|
selected_count?: boolean
|
|
82748
82876
|
rejected_count?: boolean
|
|
82877
|
+
on_hold_count?: boolean
|
|
82878
|
+
withdrawn_count?: boolean
|
|
82749
82879
|
}, ExtArgs["result"]["openJobAnalyticsDaily"]>
|
|
82750
82880
|
|
|
82751
82881
|
export type OpenJobAnalyticsDailySelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -82773,6 +82903,8 @@ export namespace Prisma {
|
|
|
82773
82903
|
ongoing_count?: boolean
|
|
82774
82904
|
selected_count?: boolean
|
|
82775
82905
|
rejected_count?: boolean
|
|
82906
|
+
on_hold_count?: boolean
|
|
82907
|
+
withdrawn_count?: boolean
|
|
82776
82908
|
}, ExtArgs["result"]["openJobAnalyticsDaily"]>
|
|
82777
82909
|
|
|
82778
82910
|
export type OpenJobAnalyticsDailySelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -82800,6 +82932,8 @@ export namespace Prisma {
|
|
|
82800
82932
|
ongoing_count?: boolean
|
|
82801
82933
|
selected_count?: boolean
|
|
82802
82934
|
rejected_count?: boolean
|
|
82935
|
+
on_hold_count?: boolean
|
|
82936
|
+
withdrawn_count?: boolean
|
|
82803
82937
|
}, ExtArgs["result"]["openJobAnalyticsDaily"]>
|
|
82804
82938
|
|
|
82805
82939
|
export type OpenJobAnalyticsDailySelectScalar = {
|
|
@@ -82827,9 +82961,11 @@ export namespace Prisma {
|
|
|
82827
82961
|
ongoing_count?: boolean
|
|
82828
82962
|
selected_count?: boolean
|
|
82829
82963
|
rejected_count?: boolean
|
|
82964
|
+
on_hold_count?: boolean
|
|
82965
|
+
withdrawn_count?: boolean
|
|
82830
82966
|
}
|
|
82831
82967
|
|
|
82832
|
-
export type OpenJobAnalyticsDailyOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "snapshot_date" | "organisation_id" | "job_description_id" | "job_code" | "job_number" | "role_title" | "department" | "hiring_manager_id" | "hiring_manager_name" | "location" | "compensation" | "vacancies" | "opened_at" | "target_closing_date" | "closing_date" | "is_open" | "closure_type" | "time_to_hire_days" | "application_count" | "unscreened_count" | "ongoing_count" | "selected_count" | "rejected_count", ExtArgs["result"]["openJobAnalyticsDaily"]>
|
|
82968
|
+
export type OpenJobAnalyticsDailyOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "snapshot_date" | "organisation_id" | "job_description_id" | "job_code" | "job_number" | "role_title" | "department" | "hiring_manager_id" | "hiring_manager_name" | "location" | "compensation" | "vacancies" | "opened_at" | "target_closing_date" | "closing_date" | "is_open" | "closure_type" | "time_to_hire_days" | "application_count" | "unscreened_count" | "ongoing_count" | "selected_count" | "rejected_count" | "on_hold_count" | "withdrawn_count", ExtArgs["result"]["openJobAnalyticsDaily"]>
|
|
82833
82969
|
|
|
82834
82970
|
export type $OpenJobAnalyticsDailyPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
82835
82971
|
name: "OpenJobAnalyticsDaily"
|
|
@@ -82859,6 +82995,8 @@ export namespace Prisma {
|
|
|
82859
82995
|
ongoing_count: number
|
|
82860
82996
|
selected_count: number
|
|
82861
82997
|
rejected_count: number
|
|
82998
|
+
on_hold_count: number
|
|
82999
|
+
withdrawn_count: number
|
|
82862
83000
|
}, ExtArgs["result"]["openJobAnalyticsDaily"]>
|
|
82863
83001
|
composites: {}
|
|
82864
83002
|
}
|
|
@@ -83306,6 +83444,8 @@ export namespace Prisma {
|
|
|
83306
83444
|
readonly ongoing_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83307
83445
|
readonly selected_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83308
83446
|
readonly rejected_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83447
|
+
readonly on_hold_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83448
|
+
readonly withdrawn_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83309
83449
|
}
|
|
83310
83450
|
|
|
83311
83451
|
|
|
@@ -87887,9 +88027,8 @@ export namespace Prisma {
|
|
|
87887
88027
|
application_count: number | null
|
|
87888
88028
|
filtered_in_count: number | null
|
|
87889
88029
|
min_fit_score: number | null
|
|
87890
|
-
|
|
87891
|
-
|
|
87892
|
-
technical_interview_count: number | null
|
|
88030
|
+
screening_count: number | null
|
|
88031
|
+
business_screening_count: number | null
|
|
87893
88032
|
business_round_count: number | null
|
|
87894
88033
|
behavioral_round_count: number | null
|
|
87895
88034
|
shortlisted_count: number | null
|
|
@@ -87900,9 +88039,8 @@ export namespace Prisma {
|
|
|
87900
88039
|
application_count: number | null
|
|
87901
88040
|
filtered_in_count: number | null
|
|
87902
88041
|
min_fit_score: number | null
|
|
87903
|
-
|
|
87904
|
-
|
|
87905
|
-
technical_interview_count: number | null
|
|
88042
|
+
screening_count: number | null
|
|
88043
|
+
business_screening_count: number | null
|
|
87906
88044
|
business_round_count: number | null
|
|
87907
88045
|
behavioral_round_count: number | null
|
|
87908
88046
|
shortlisted_count: number | null
|
|
@@ -87919,9 +88057,8 @@ export namespace Prisma {
|
|
|
87919
88057
|
application_count: number | null
|
|
87920
88058
|
filtered_in_count: number | null
|
|
87921
88059
|
min_fit_score: number | null
|
|
87922
|
-
|
|
87923
|
-
|
|
87924
|
-
technical_interview_count: number | null
|
|
88060
|
+
screening_count: number | null
|
|
88061
|
+
business_screening_count: number | null
|
|
87925
88062
|
business_round_count: number | null
|
|
87926
88063
|
behavioral_round_count: number | null
|
|
87927
88064
|
shortlisted_count: number | null
|
|
@@ -87939,9 +88076,8 @@ export namespace Prisma {
|
|
|
87939
88076
|
application_count: number | null
|
|
87940
88077
|
filtered_in_count: number | null
|
|
87941
88078
|
min_fit_score: number | null
|
|
87942
|
-
|
|
87943
|
-
|
|
87944
|
-
technical_interview_count: number | null
|
|
88079
|
+
screening_count: number | null
|
|
88080
|
+
business_screening_count: number | null
|
|
87945
88081
|
business_round_count: number | null
|
|
87946
88082
|
behavioral_round_count: number | null
|
|
87947
88083
|
shortlisted_count: number | null
|
|
@@ -87959,9 +88095,8 @@ export namespace Prisma {
|
|
|
87959
88095
|
application_count: number
|
|
87960
88096
|
filtered_in_count: number
|
|
87961
88097
|
min_fit_score: number
|
|
87962
|
-
|
|
87963
|
-
|
|
87964
|
-
technical_interview_count: number
|
|
88098
|
+
screening_count: number
|
|
88099
|
+
business_screening_count: number
|
|
87965
88100
|
business_round_count: number
|
|
87966
88101
|
behavioral_round_count: number
|
|
87967
88102
|
shortlisted_count: number
|
|
@@ -87975,9 +88110,8 @@ export namespace Prisma {
|
|
|
87975
88110
|
application_count?: true
|
|
87976
88111
|
filtered_in_count?: true
|
|
87977
88112
|
min_fit_score?: true
|
|
87978
|
-
|
|
87979
|
-
|
|
87980
|
-
technical_interview_count?: true
|
|
88113
|
+
screening_count?: true
|
|
88114
|
+
business_screening_count?: true
|
|
87981
88115
|
business_round_count?: true
|
|
87982
88116
|
behavioral_round_count?: true
|
|
87983
88117
|
shortlisted_count?: true
|
|
@@ -87988,9 +88122,8 @@ export namespace Prisma {
|
|
|
87988
88122
|
application_count?: true
|
|
87989
88123
|
filtered_in_count?: true
|
|
87990
88124
|
min_fit_score?: true
|
|
87991
|
-
|
|
87992
|
-
|
|
87993
|
-
technical_interview_count?: true
|
|
88125
|
+
screening_count?: true
|
|
88126
|
+
business_screening_count?: true
|
|
87994
88127
|
business_round_count?: true
|
|
87995
88128
|
behavioral_round_count?: true
|
|
87996
88129
|
shortlisted_count?: true
|
|
@@ -88007,9 +88140,8 @@ export namespace Prisma {
|
|
|
88007
88140
|
application_count?: true
|
|
88008
88141
|
filtered_in_count?: true
|
|
88009
88142
|
min_fit_score?: true
|
|
88010
|
-
|
|
88011
|
-
|
|
88012
|
-
technical_interview_count?: true
|
|
88143
|
+
screening_count?: true
|
|
88144
|
+
business_screening_count?: true
|
|
88013
88145
|
business_round_count?: true
|
|
88014
88146
|
behavioral_round_count?: true
|
|
88015
88147
|
shortlisted_count?: true
|
|
@@ -88027,9 +88159,8 @@ export namespace Prisma {
|
|
|
88027
88159
|
application_count?: true
|
|
88028
88160
|
filtered_in_count?: true
|
|
88029
88161
|
min_fit_score?: true
|
|
88030
|
-
|
|
88031
|
-
|
|
88032
|
-
technical_interview_count?: true
|
|
88162
|
+
screening_count?: true
|
|
88163
|
+
business_screening_count?: true
|
|
88033
88164
|
business_round_count?: true
|
|
88034
88165
|
behavioral_round_count?: true
|
|
88035
88166
|
shortlisted_count?: true
|
|
@@ -88047,9 +88178,8 @@ export namespace Prisma {
|
|
|
88047
88178
|
application_count?: true
|
|
88048
88179
|
filtered_in_count?: true
|
|
88049
88180
|
min_fit_score?: true
|
|
88050
|
-
|
|
88051
|
-
|
|
88052
|
-
technical_interview_count?: true
|
|
88181
|
+
screening_count?: true
|
|
88182
|
+
business_screening_count?: true
|
|
88053
88183
|
business_round_count?: true
|
|
88054
88184
|
behavioral_round_count?: true
|
|
88055
88185
|
shortlisted_count?: true
|
|
@@ -88154,9 +88284,8 @@ export namespace Prisma {
|
|
|
88154
88284
|
application_count: number
|
|
88155
88285
|
filtered_in_count: number
|
|
88156
88286
|
min_fit_score: number | null
|
|
88157
|
-
|
|
88158
|
-
|
|
88159
|
-
technical_interview_count: number
|
|
88287
|
+
screening_count: number
|
|
88288
|
+
business_screening_count: number
|
|
88160
88289
|
business_round_count: number
|
|
88161
88290
|
behavioral_round_count: number
|
|
88162
88291
|
shortlisted_count: number
|
|
@@ -88193,9 +88322,8 @@ export namespace Prisma {
|
|
|
88193
88322
|
application_count?: boolean
|
|
88194
88323
|
filtered_in_count?: boolean
|
|
88195
88324
|
min_fit_score?: boolean
|
|
88196
|
-
|
|
88197
|
-
|
|
88198
|
-
technical_interview_count?: boolean
|
|
88325
|
+
screening_count?: boolean
|
|
88326
|
+
business_screening_count?: boolean
|
|
88199
88327
|
business_round_count?: boolean
|
|
88200
88328
|
behavioral_round_count?: boolean
|
|
88201
88329
|
shortlisted_count?: boolean
|
|
@@ -88213,9 +88341,8 @@ export namespace Prisma {
|
|
|
88213
88341
|
application_count?: boolean
|
|
88214
88342
|
filtered_in_count?: boolean
|
|
88215
88343
|
min_fit_score?: boolean
|
|
88216
|
-
|
|
88217
|
-
|
|
88218
|
-
technical_interview_count?: boolean
|
|
88344
|
+
screening_count?: boolean
|
|
88345
|
+
business_screening_count?: boolean
|
|
88219
88346
|
business_round_count?: boolean
|
|
88220
88347
|
behavioral_round_count?: boolean
|
|
88221
88348
|
shortlisted_count?: boolean
|
|
@@ -88233,9 +88360,8 @@ export namespace Prisma {
|
|
|
88233
88360
|
application_count?: boolean
|
|
88234
88361
|
filtered_in_count?: boolean
|
|
88235
88362
|
min_fit_score?: boolean
|
|
88236
|
-
|
|
88237
|
-
|
|
88238
|
-
technical_interview_count?: boolean
|
|
88363
|
+
screening_count?: boolean
|
|
88364
|
+
business_screening_count?: boolean
|
|
88239
88365
|
business_round_count?: boolean
|
|
88240
88366
|
behavioral_round_count?: boolean
|
|
88241
88367
|
shortlisted_count?: boolean
|
|
@@ -88253,16 +88379,15 @@ export namespace Prisma {
|
|
|
88253
88379
|
application_count?: boolean
|
|
88254
88380
|
filtered_in_count?: boolean
|
|
88255
88381
|
min_fit_score?: boolean
|
|
88256
|
-
|
|
88257
|
-
|
|
88258
|
-
technical_interview_count?: boolean
|
|
88382
|
+
screening_count?: boolean
|
|
88383
|
+
business_screening_count?: boolean
|
|
88259
88384
|
business_round_count?: boolean
|
|
88260
88385
|
behavioral_round_count?: boolean
|
|
88261
88386
|
shortlisted_count?: boolean
|
|
88262
88387
|
updated_at?: boolean
|
|
88263
88388
|
}
|
|
88264
88389
|
|
|
88265
|
-
export type PipelineDistributionAnalyticsOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "job_description_id" | "job_code" | "job_number" | "role_title" | "hiring_manager_id" | "application_count" | "filtered_in_count" | "min_fit_score" | "
|
|
88390
|
+
export type PipelineDistributionAnalyticsOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "job_description_id" | "job_code" | "job_number" | "role_title" | "hiring_manager_id" | "application_count" | "filtered_in_count" | "min_fit_score" | "screening_count" | "business_screening_count" | "business_round_count" | "behavioral_round_count" | "shortlisted_count" | "updated_at", ExtArgs["result"]["pipelineDistributionAnalytics"]>
|
|
88266
88391
|
|
|
88267
88392
|
export type $PipelineDistributionAnalyticsPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
88268
88393
|
name: "PipelineDistributionAnalytics"
|
|
@@ -88278,9 +88403,8 @@ export namespace Prisma {
|
|
|
88278
88403
|
application_count: number
|
|
88279
88404
|
filtered_in_count: number
|
|
88280
88405
|
min_fit_score: number | null
|
|
88281
|
-
|
|
88282
|
-
|
|
88283
|
-
technical_interview_count: number
|
|
88406
|
+
screening_count: number
|
|
88407
|
+
business_screening_count: number
|
|
88284
88408
|
business_round_count: number
|
|
88285
88409
|
behavioral_round_count: number
|
|
88286
88410
|
shortlisted_count: number
|
|
@@ -88718,9 +88842,8 @@ export namespace Prisma {
|
|
|
88718
88842
|
readonly application_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
88719
88843
|
readonly filtered_in_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
88720
88844
|
readonly min_fit_score: FieldRef<"PipelineDistributionAnalytics", 'Float'>
|
|
88721
|
-
readonly
|
|
88722
|
-
readonly
|
|
88723
|
-
readonly technical_interview_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
88845
|
+
readonly screening_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
88846
|
+
readonly business_screening_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
88724
88847
|
readonly business_round_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
88725
88848
|
readonly behavioral_round_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
88726
88849
|
readonly shortlisted_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
@@ -89108,9 +89231,8 @@ export namespace Prisma {
|
|
|
89108
89231
|
application_count: number | null
|
|
89109
89232
|
filtered_in_count: number | null
|
|
89110
89233
|
min_fit_score: number | null
|
|
89111
|
-
|
|
89112
|
-
|
|
89113
|
-
technical_interview_count: number | null
|
|
89234
|
+
screening_count: number | null
|
|
89235
|
+
business_screening_count: number | null
|
|
89114
89236
|
business_round_count: number | null
|
|
89115
89237
|
behavioral_round_count: number | null
|
|
89116
89238
|
shortlisted_count: number | null
|
|
@@ -89121,9 +89243,8 @@ export namespace Prisma {
|
|
|
89121
89243
|
application_count: number | null
|
|
89122
89244
|
filtered_in_count: number | null
|
|
89123
89245
|
min_fit_score: number | null
|
|
89124
|
-
|
|
89125
|
-
|
|
89126
|
-
technical_interview_count: number | null
|
|
89246
|
+
screening_count: number | null
|
|
89247
|
+
business_screening_count: number | null
|
|
89127
89248
|
business_round_count: number | null
|
|
89128
89249
|
behavioral_round_count: number | null
|
|
89129
89250
|
shortlisted_count: number | null
|
|
@@ -89141,9 +89262,8 @@ export namespace Prisma {
|
|
|
89141
89262
|
application_count: number | null
|
|
89142
89263
|
filtered_in_count: number | null
|
|
89143
89264
|
min_fit_score: number | null
|
|
89144
|
-
|
|
89145
|
-
|
|
89146
|
-
technical_interview_count: number | null
|
|
89265
|
+
screening_count: number | null
|
|
89266
|
+
business_screening_count: number | null
|
|
89147
89267
|
business_round_count: number | null
|
|
89148
89268
|
behavioral_round_count: number | null
|
|
89149
89269
|
shortlisted_count: number | null
|
|
@@ -89161,9 +89281,8 @@ export namespace Prisma {
|
|
|
89161
89281
|
application_count: number | null
|
|
89162
89282
|
filtered_in_count: number | null
|
|
89163
89283
|
min_fit_score: number | null
|
|
89164
|
-
|
|
89165
|
-
|
|
89166
|
-
technical_interview_count: number | null
|
|
89284
|
+
screening_count: number | null
|
|
89285
|
+
business_screening_count: number | null
|
|
89167
89286
|
business_round_count: number | null
|
|
89168
89287
|
behavioral_round_count: number | null
|
|
89169
89288
|
shortlisted_count: number | null
|
|
@@ -89181,9 +89300,8 @@ export namespace Prisma {
|
|
|
89181
89300
|
application_count: number
|
|
89182
89301
|
filtered_in_count: number
|
|
89183
89302
|
min_fit_score: number
|
|
89184
|
-
|
|
89185
|
-
|
|
89186
|
-
technical_interview_count: number
|
|
89303
|
+
screening_count: number
|
|
89304
|
+
business_screening_count: number
|
|
89187
89305
|
business_round_count: number
|
|
89188
89306
|
behavioral_round_count: number
|
|
89189
89307
|
shortlisted_count: number
|
|
@@ -89196,9 +89314,8 @@ export namespace Prisma {
|
|
|
89196
89314
|
application_count?: true
|
|
89197
89315
|
filtered_in_count?: true
|
|
89198
89316
|
min_fit_score?: true
|
|
89199
|
-
|
|
89200
|
-
|
|
89201
|
-
technical_interview_count?: true
|
|
89317
|
+
screening_count?: true
|
|
89318
|
+
business_screening_count?: true
|
|
89202
89319
|
business_round_count?: true
|
|
89203
89320
|
behavioral_round_count?: true
|
|
89204
89321
|
shortlisted_count?: true
|
|
@@ -89209,9 +89326,8 @@ export namespace Prisma {
|
|
|
89209
89326
|
application_count?: true
|
|
89210
89327
|
filtered_in_count?: true
|
|
89211
89328
|
min_fit_score?: true
|
|
89212
|
-
|
|
89213
|
-
|
|
89214
|
-
technical_interview_count?: true
|
|
89329
|
+
screening_count?: true
|
|
89330
|
+
business_screening_count?: true
|
|
89215
89331
|
business_round_count?: true
|
|
89216
89332
|
behavioral_round_count?: true
|
|
89217
89333
|
shortlisted_count?: true
|
|
@@ -89229,9 +89345,8 @@ export namespace Prisma {
|
|
|
89229
89345
|
application_count?: true
|
|
89230
89346
|
filtered_in_count?: true
|
|
89231
89347
|
min_fit_score?: true
|
|
89232
|
-
|
|
89233
|
-
|
|
89234
|
-
technical_interview_count?: true
|
|
89348
|
+
screening_count?: true
|
|
89349
|
+
business_screening_count?: true
|
|
89235
89350
|
business_round_count?: true
|
|
89236
89351
|
behavioral_round_count?: true
|
|
89237
89352
|
shortlisted_count?: true
|
|
@@ -89249,9 +89364,8 @@ export namespace Prisma {
|
|
|
89249
89364
|
application_count?: true
|
|
89250
89365
|
filtered_in_count?: true
|
|
89251
89366
|
min_fit_score?: true
|
|
89252
|
-
|
|
89253
|
-
|
|
89254
|
-
technical_interview_count?: true
|
|
89367
|
+
screening_count?: true
|
|
89368
|
+
business_screening_count?: true
|
|
89255
89369
|
business_round_count?: true
|
|
89256
89370
|
behavioral_round_count?: true
|
|
89257
89371
|
shortlisted_count?: true
|
|
@@ -89269,9 +89383,8 @@ export namespace Prisma {
|
|
|
89269
89383
|
application_count?: true
|
|
89270
89384
|
filtered_in_count?: true
|
|
89271
89385
|
min_fit_score?: true
|
|
89272
|
-
|
|
89273
|
-
|
|
89274
|
-
technical_interview_count?: true
|
|
89386
|
+
screening_count?: true
|
|
89387
|
+
business_screening_count?: true
|
|
89275
89388
|
business_round_count?: true
|
|
89276
89389
|
behavioral_round_count?: true
|
|
89277
89390
|
shortlisted_count?: true
|
|
@@ -89376,9 +89489,8 @@ export namespace Prisma {
|
|
|
89376
89489
|
application_count: number
|
|
89377
89490
|
filtered_in_count: number
|
|
89378
89491
|
min_fit_score: number | null
|
|
89379
|
-
|
|
89380
|
-
|
|
89381
|
-
technical_interview_count: number
|
|
89492
|
+
screening_count: number
|
|
89493
|
+
business_screening_count: number
|
|
89382
89494
|
business_round_count: number
|
|
89383
89495
|
behavioral_round_count: number
|
|
89384
89496
|
shortlisted_count: number
|
|
@@ -89415,9 +89527,8 @@ export namespace Prisma {
|
|
|
89415
89527
|
application_count?: boolean
|
|
89416
89528
|
filtered_in_count?: boolean
|
|
89417
89529
|
min_fit_score?: boolean
|
|
89418
|
-
|
|
89419
|
-
|
|
89420
|
-
technical_interview_count?: boolean
|
|
89530
|
+
screening_count?: boolean
|
|
89531
|
+
business_screening_count?: boolean
|
|
89421
89532
|
business_round_count?: boolean
|
|
89422
89533
|
behavioral_round_count?: boolean
|
|
89423
89534
|
shortlisted_count?: boolean
|
|
@@ -89435,9 +89546,8 @@ export namespace Prisma {
|
|
|
89435
89546
|
application_count?: boolean
|
|
89436
89547
|
filtered_in_count?: boolean
|
|
89437
89548
|
min_fit_score?: boolean
|
|
89438
|
-
|
|
89439
|
-
|
|
89440
|
-
technical_interview_count?: boolean
|
|
89549
|
+
screening_count?: boolean
|
|
89550
|
+
business_screening_count?: boolean
|
|
89441
89551
|
business_round_count?: boolean
|
|
89442
89552
|
behavioral_round_count?: boolean
|
|
89443
89553
|
shortlisted_count?: boolean
|
|
@@ -89455,9 +89565,8 @@ export namespace Prisma {
|
|
|
89455
89565
|
application_count?: boolean
|
|
89456
89566
|
filtered_in_count?: boolean
|
|
89457
89567
|
min_fit_score?: boolean
|
|
89458
|
-
|
|
89459
|
-
|
|
89460
|
-
technical_interview_count?: boolean
|
|
89568
|
+
screening_count?: boolean
|
|
89569
|
+
business_screening_count?: boolean
|
|
89461
89570
|
business_round_count?: boolean
|
|
89462
89571
|
behavioral_round_count?: boolean
|
|
89463
89572
|
shortlisted_count?: boolean
|
|
@@ -89475,15 +89584,14 @@ export namespace Prisma {
|
|
|
89475
89584
|
application_count?: boolean
|
|
89476
89585
|
filtered_in_count?: boolean
|
|
89477
89586
|
min_fit_score?: boolean
|
|
89478
|
-
|
|
89479
|
-
|
|
89480
|
-
technical_interview_count?: boolean
|
|
89587
|
+
screening_count?: boolean
|
|
89588
|
+
business_screening_count?: boolean
|
|
89481
89589
|
business_round_count?: boolean
|
|
89482
89590
|
behavioral_round_count?: boolean
|
|
89483
89591
|
shortlisted_count?: boolean
|
|
89484
89592
|
}
|
|
89485
89593
|
|
|
89486
|
-
export type PipelineDistributionAnalyticsDailyOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "snapshot_date" | "organisation_id" | "job_description_id" | "job_code" | "job_number" | "role_title" | "hiring_manager_id" | "application_count" | "filtered_in_count" | "min_fit_score" | "
|
|
89594
|
+
export type PipelineDistributionAnalyticsDailyOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "snapshot_date" | "organisation_id" | "job_description_id" | "job_code" | "job_number" | "role_title" | "hiring_manager_id" | "application_count" | "filtered_in_count" | "min_fit_score" | "screening_count" | "business_screening_count" | "business_round_count" | "behavioral_round_count" | "shortlisted_count", ExtArgs["result"]["pipelineDistributionAnalyticsDaily"]>
|
|
89487
89595
|
|
|
89488
89596
|
export type $PipelineDistributionAnalyticsDailyPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89489
89597
|
name: "PipelineDistributionAnalyticsDaily"
|
|
@@ -89500,9 +89608,8 @@ export namespace Prisma {
|
|
|
89500
89608
|
application_count: number
|
|
89501
89609
|
filtered_in_count: number
|
|
89502
89610
|
min_fit_score: number | null
|
|
89503
|
-
|
|
89504
|
-
|
|
89505
|
-
technical_interview_count: number
|
|
89611
|
+
screening_count: number
|
|
89612
|
+
business_screening_count: number
|
|
89506
89613
|
business_round_count: number
|
|
89507
89614
|
behavioral_round_count: number
|
|
89508
89615
|
shortlisted_count: number
|
|
@@ -89940,9 +90047,8 @@ export namespace Prisma {
|
|
|
89940
90047
|
readonly application_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
89941
90048
|
readonly filtered_in_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
89942
90049
|
readonly min_fit_score: FieldRef<"PipelineDistributionAnalyticsDaily", 'Float'>
|
|
89943
|
-
readonly
|
|
89944
|
-
readonly
|
|
89945
|
-
readonly technical_interview_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
90050
|
+
readonly screening_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
90051
|
+
readonly business_screening_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
89946
90052
|
readonly business_round_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
89947
90053
|
readonly behavioral_round_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
89948
90054
|
readonly shortlisted_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
@@ -102720,6 +102826,7 @@ export namespace Prisma {
|
|
|
102720
102826
|
screened_count: number | null
|
|
102721
102827
|
evaluated_count: number | null
|
|
102722
102828
|
rejected_count: number | null
|
|
102829
|
+
on_hold_count: number | null
|
|
102723
102830
|
shortlisted_count: number | null
|
|
102724
102831
|
offered_count: number | null
|
|
102725
102832
|
offer_accepted_count: number | null
|
|
@@ -102737,6 +102844,7 @@ export namespace Prisma {
|
|
|
102737
102844
|
screened_count: number | null
|
|
102738
102845
|
evaluated_count: number | null
|
|
102739
102846
|
rejected_count: number | null
|
|
102847
|
+
on_hold_count: number | null
|
|
102740
102848
|
shortlisted_count: number | null
|
|
102741
102849
|
offered_count: number | null
|
|
102742
102850
|
offer_accepted_count: number | null
|
|
@@ -102764,6 +102872,7 @@ export namespace Prisma {
|
|
|
102764
102872
|
screened_count: number | null
|
|
102765
102873
|
evaluated_count: number | null
|
|
102766
102874
|
rejected_count: number | null
|
|
102875
|
+
on_hold_count: number | null
|
|
102767
102876
|
shortlisted_count: number | null
|
|
102768
102877
|
offered_count: number | null
|
|
102769
102878
|
offer_accepted_count: number | null
|
|
@@ -102792,6 +102901,7 @@ export namespace Prisma {
|
|
|
102792
102901
|
screened_count: number | null
|
|
102793
102902
|
evaluated_count: number | null
|
|
102794
102903
|
rejected_count: number | null
|
|
102904
|
+
on_hold_count: number | null
|
|
102795
102905
|
shortlisted_count: number | null
|
|
102796
102906
|
offered_count: number | null
|
|
102797
102907
|
offer_accepted_count: number | null
|
|
@@ -102820,6 +102930,7 @@ export namespace Prisma {
|
|
|
102820
102930
|
screened_count: number
|
|
102821
102931
|
evaluated_count: number
|
|
102822
102932
|
rejected_count: number
|
|
102933
|
+
on_hold_count: number
|
|
102823
102934
|
shortlisted_count: number
|
|
102824
102935
|
offered_count: number
|
|
102825
102936
|
offer_accepted_count: number
|
|
@@ -102840,6 +102951,7 @@ export namespace Prisma {
|
|
|
102840
102951
|
screened_count?: true
|
|
102841
102952
|
evaluated_count?: true
|
|
102842
102953
|
rejected_count?: true
|
|
102954
|
+
on_hold_count?: true
|
|
102843
102955
|
shortlisted_count?: true
|
|
102844
102956
|
offered_count?: true
|
|
102845
102957
|
offer_accepted_count?: true
|
|
@@ -102857,6 +102969,7 @@ export namespace Prisma {
|
|
|
102857
102969
|
screened_count?: true
|
|
102858
102970
|
evaluated_count?: true
|
|
102859
102971
|
rejected_count?: true
|
|
102972
|
+
on_hold_count?: true
|
|
102860
102973
|
shortlisted_count?: true
|
|
102861
102974
|
offered_count?: true
|
|
102862
102975
|
offer_accepted_count?: true
|
|
@@ -102884,6 +102997,7 @@ export namespace Prisma {
|
|
|
102884
102997
|
screened_count?: true
|
|
102885
102998
|
evaluated_count?: true
|
|
102886
102999
|
rejected_count?: true
|
|
103000
|
+
on_hold_count?: true
|
|
102887
103001
|
shortlisted_count?: true
|
|
102888
103002
|
offered_count?: true
|
|
102889
103003
|
offer_accepted_count?: true
|
|
@@ -102912,6 +103026,7 @@ export namespace Prisma {
|
|
|
102912
103026
|
screened_count?: true
|
|
102913
103027
|
evaluated_count?: true
|
|
102914
103028
|
rejected_count?: true
|
|
103029
|
+
on_hold_count?: true
|
|
102915
103030
|
shortlisted_count?: true
|
|
102916
103031
|
offered_count?: true
|
|
102917
103032
|
offer_accepted_count?: true
|
|
@@ -102940,6 +103055,7 @@ export namespace Prisma {
|
|
|
102940
103055
|
screened_count?: true
|
|
102941
103056
|
evaluated_count?: true
|
|
102942
103057
|
rejected_count?: true
|
|
103058
|
+
on_hold_count?: true
|
|
102943
103059
|
shortlisted_count?: true
|
|
102944
103060
|
offered_count?: true
|
|
102945
103061
|
offer_accepted_count?: true
|
|
@@ -103055,6 +103171,7 @@ export namespace Prisma {
|
|
|
103055
103171
|
screened_count: number
|
|
103056
103172
|
evaluated_count: number
|
|
103057
103173
|
rejected_count: number
|
|
103174
|
+
on_hold_count: number
|
|
103058
103175
|
shortlisted_count: number
|
|
103059
103176
|
offered_count: number
|
|
103060
103177
|
offer_accepted_count: number
|
|
@@ -103102,6 +103219,7 @@ export namespace Prisma {
|
|
|
103102
103219
|
screened_count?: boolean
|
|
103103
103220
|
evaluated_count?: boolean
|
|
103104
103221
|
rejected_count?: boolean
|
|
103222
|
+
on_hold_count?: boolean
|
|
103105
103223
|
shortlisted_count?: boolean
|
|
103106
103224
|
offered_count?: boolean
|
|
103107
103225
|
offer_accepted_count?: boolean
|
|
@@ -103130,6 +103248,7 @@ export namespace Prisma {
|
|
|
103130
103248
|
screened_count?: boolean
|
|
103131
103249
|
evaluated_count?: boolean
|
|
103132
103250
|
rejected_count?: boolean
|
|
103251
|
+
on_hold_count?: boolean
|
|
103133
103252
|
shortlisted_count?: boolean
|
|
103134
103253
|
offered_count?: boolean
|
|
103135
103254
|
offer_accepted_count?: boolean
|
|
@@ -103158,6 +103277,7 @@ export namespace Prisma {
|
|
|
103158
103277
|
screened_count?: boolean
|
|
103159
103278
|
evaluated_count?: boolean
|
|
103160
103279
|
rejected_count?: boolean
|
|
103280
|
+
on_hold_count?: boolean
|
|
103161
103281
|
shortlisted_count?: boolean
|
|
103162
103282
|
offered_count?: boolean
|
|
103163
103283
|
offer_accepted_count?: boolean
|
|
@@ -103186,6 +103306,7 @@ export namespace Prisma {
|
|
|
103186
103306
|
screened_count?: boolean
|
|
103187
103307
|
evaluated_count?: boolean
|
|
103188
103308
|
rejected_count?: boolean
|
|
103309
|
+
on_hold_count?: boolean
|
|
103189
103310
|
shortlisted_count?: boolean
|
|
103190
103311
|
offered_count?: boolean
|
|
103191
103312
|
offer_accepted_count?: boolean
|
|
@@ -103198,7 +103319,7 @@ export namespace Prisma {
|
|
|
103198
103319
|
updated_at?: boolean
|
|
103199
103320
|
}
|
|
103200
103321
|
|
|
103201
|
-
export type SourceEffectivenessAnalyticsOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "job_description_id" | "source_id" | "source_name" | "source_category" | "source_colour" | "job_code" | "job_number" | "role_title" | "hiring_manager_id" | "applications_count" | "screened_count" | "evaluated_count" | "rejected_count" | "shortlisted_count" | "offered_count" | "offer_accepted_count" | "offer_declined_count" | "withdrawn_count" | "hired_count" | "total_fit_score" | "fit_score_sample_count" | "average_fit_score" | "updated_at", ExtArgs["result"]["sourceEffectivenessAnalytics"]>
|
|
103322
|
+
export type SourceEffectivenessAnalyticsOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "job_description_id" | "source_id" | "source_name" | "source_category" | "source_colour" | "job_code" | "job_number" | "role_title" | "hiring_manager_id" | "applications_count" | "screened_count" | "evaluated_count" | "rejected_count" | "on_hold_count" | "shortlisted_count" | "offered_count" | "offer_accepted_count" | "offer_declined_count" | "withdrawn_count" | "hired_count" | "total_fit_score" | "fit_score_sample_count" | "average_fit_score" | "updated_at", ExtArgs["result"]["sourceEffectivenessAnalytics"]>
|
|
103202
103323
|
|
|
103203
103324
|
export type $SourceEffectivenessAnalyticsPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
103204
103325
|
name: "SourceEffectivenessAnalytics"
|
|
@@ -103219,6 +103340,7 @@ export namespace Prisma {
|
|
|
103219
103340
|
screened_count: number
|
|
103220
103341
|
evaluated_count: number
|
|
103221
103342
|
rejected_count: number
|
|
103343
|
+
on_hold_count: number
|
|
103222
103344
|
shortlisted_count: number
|
|
103223
103345
|
offered_count: number
|
|
103224
103346
|
offer_accepted_count: number
|
|
@@ -103667,6 +103789,7 @@ export namespace Prisma {
|
|
|
103667
103789
|
readonly screened_count: FieldRef<"SourceEffectivenessAnalytics", 'Int'>
|
|
103668
103790
|
readonly evaluated_count: FieldRef<"SourceEffectivenessAnalytics", 'Int'>
|
|
103669
103791
|
readonly rejected_count: FieldRef<"SourceEffectivenessAnalytics", 'Int'>
|
|
103792
|
+
readonly on_hold_count: FieldRef<"SourceEffectivenessAnalytics", 'Int'>
|
|
103670
103793
|
readonly shortlisted_count: FieldRef<"SourceEffectivenessAnalytics", 'Int'>
|
|
103671
103794
|
readonly offered_count: FieldRef<"SourceEffectivenessAnalytics", 'Int'>
|
|
103672
103795
|
readonly offer_accepted_count: FieldRef<"SourceEffectivenessAnalytics", 'Int'>
|
|
@@ -104061,6 +104184,7 @@ export namespace Prisma {
|
|
|
104061
104184
|
screened_count: number | null
|
|
104062
104185
|
evaluated_count: number | null
|
|
104063
104186
|
rejected_count: number | null
|
|
104187
|
+
on_hold_count: number | null
|
|
104064
104188
|
shortlisted_count: number | null
|
|
104065
104189
|
offered_count: number | null
|
|
104066
104190
|
offer_accepted_count: number | null
|
|
@@ -104078,6 +104202,7 @@ export namespace Prisma {
|
|
|
104078
104202
|
screened_count: number | null
|
|
104079
104203
|
evaluated_count: number | null
|
|
104080
104204
|
rejected_count: number | null
|
|
104205
|
+
on_hold_count: number | null
|
|
104081
104206
|
shortlisted_count: number | null
|
|
104082
104207
|
offered_count: number | null
|
|
104083
104208
|
offer_accepted_count: number | null
|
|
@@ -104106,6 +104231,7 @@ export namespace Prisma {
|
|
|
104106
104231
|
screened_count: number | null
|
|
104107
104232
|
evaluated_count: number | null
|
|
104108
104233
|
rejected_count: number | null
|
|
104234
|
+
on_hold_count: number | null
|
|
104109
104235
|
shortlisted_count: number | null
|
|
104110
104236
|
offered_count: number | null
|
|
104111
104237
|
offer_accepted_count: number | null
|
|
@@ -104134,6 +104260,7 @@ export namespace Prisma {
|
|
|
104134
104260
|
screened_count: number | null
|
|
104135
104261
|
evaluated_count: number | null
|
|
104136
104262
|
rejected_count: number | null
|
|
104263
|
+
on_hold_count: number | null
|
|
104137
104264
|
shortlisted_count: number | null
|
|
104138
104265
|
offered_count: number | null
|
|
104139
104266
|
offer_accepted_count: number | null
|
|
@@ -104162,6 +104289,7 @@ export namespace Prisma {
|
|
|
104162
104289
|
screened_count: number
|
|
104163
104290
|
evaluated_count: number
|
|
104164
104291
|
rejected_count: number
|
|
104292
|
+
on_hold_count: number
|
|
104165
104293
|
shortlisted_count: number
|
|
104166
104294
|
offered_count: number
|
|
104167
104295
|
offer_accepted_count: number
|
|
@@ -104181,6 +104309,7 @@ export namespace Prisma {
|
|
|
104181
104309
|
screened_count?: true
|
|
104182
104310
|
evaluated_count?: true
|
|
104183
104311
|
rejected_count?: true
|
|
104312
|
+
on_hold_count?: true
|
|
104184
104313
|
shortlisted_count?: true
|
|
104185
104314
|
offered_count?: true
|
|
104186
104315
|
offer_accepted_count?: true
|
|
@@ -104198,6 +104327,7 @@ export namespace Prisma {
|
|
|
104198
104327
|
screened_count?: true
|
|
104199
104328
|
evaluated_count?: true
|
|
104200
104329
|
rejected_count?: true
|
|
104330
|
+
on_hold_count?: true
|
|
104201
104331
|
shortlisted_count?: true
|
|
104202
104332
|
offered_count?: true
|
|
104203
104333
|
offer_accepted_count?: true
|
|
@@ -104226,6 +104356,7 @@ export namespace Prisma {
|
|
|
104226
104356
|
screened_count?: true
|
|
104227
104357
|
evaluated_count?: true
|
|
104228
104358
|
rejected_count?: true
|
|
104359
|
+
on_hold_count?: true
|
|
104229
104360
|
shortlisted_count?: true
|
|
104230
104361
|
offered_count?: true
|
|
104231
104362
|
offer_accepted_count?: true
|
|
@@ -104254,6 +104385,7 @@ export namespace Prisma {
|
|
|
104254
104385
|
screened_count?: true
|
|
104255
104386
|
evaluated_count?: true
|
|
104256
104387
|
rejected_count?: true
|
|
104388
|
+
on_hold_count?: true
|
|
104257
104389
|
shortlisted_count?: true
|
|
104258
104390
|
offered_count?: true
|
|
104259
104391
|
offer_accepted_count?: true
|
|
@@ -104282,6 +104414,7 @@ export namespace Prisma {
|
|
|
104282
104414
|
screened_count?: true
|
|
104283
104415
|
evaluated_count?: true
|
|
104284
104416
|
rejected_count?: true
|
|
104417
|
+
on_hold_count?: true
|
|
104285
104418
|
shortlisted_count?: true
|
|
104286
104419
|
offered_count?: true
|
|
104287
104420
|
offer_accepted_count?: true
|
|
@@ -104397,6 +104530,7 @@ export namespace Prisma {
|
|
|
104397
104530
|
screened_count: number
|
|
104398
104531
|
evaluated_count: number
|
|
104399
104532
|
rejected_count: number
|
|
104533
|
+
on_hold_count: number
|
|
104400
104534
|
shortlisted_count: number
|
|
104401
104535
|
offered_count: number
|
|
104402
104536
|
offer_accepted_count: number
|
|
@@ -104444,6 +104578,7 @@ export namespace Prisma {
|
|
|
104444
104578
|
screened_count?: boolean
|
|
104445
104579
|
evaluated_count?: boolean
|
|
104446
104580
|
rejected_count?: boolean
|
|
104581
|
+
on_hold_count?: boolean
|
|
104447
104582
|
shortlisted_count?: boolean
|
|
104448
104583
|
offered_count?: boolean
|
|
104449
104584
|
offer_accepted_count?: boolean
|
|
@@ -104472,6 +104607,7 @@ export namespace Prisma {
|
|
|
104472
104607
|
screened_count?: boolean
|
|
104473
104608
|
evaluated_count?: boolean
|
|
104474
104609
|
rejected_count?: boolean
|
|
104610
|
+
on_hold_count?: boolean
|
|
104475
104611
|
shortlisted_count?: boolean
|
|
104476
104612
|
offered_count?: boolean
|
|
104477
104613
|
offer_accepted_count?: boolean
|
|
@@ -104500,6 +104636,7 @@ export namespace Prisma {
|
|
|
104500
104636
|
screened_count?: boolean
|
|
104501
104637
|
evaluated_count?: boolean
|
|
104502
104638
|
rejected_count?: boolean
|
|
104639
|
+
on_hold_count?: boolean
|
|
104503
104640
|
shortlisted_count?: boolean
|
|
104504
104641
|
offered_count?: boolean
|
|
104505
104642
|
offer_accepted_count?: boolean
|
|
@@ -104528,6 +104665,7 @@ export namespace Prisma {
|
|
|
104528
104665
|
screened_count?: boolean
|
|
104529
104666
|
evaluated_count?: boolean
|
|
104530
104667
|
rejected_count?: boolean
|
|
104668
|
+
on_hold_count?: boolean
|
|
104531
104669
|
shortlisted_count?: boolean
|
|
104532
104670
|
offered_count?: boolean
|
|
104533
104671
|
offer_accepted_count?: boolean
|
|
@@ -104539,7 +104677,7 @@ export namespace Prisma {
|
|
|
104539
104677
|
average_fit_score?: boolean
|
|
104540
104678
|
}
|
|
104541
104679
|
|
|
104542
|
-
export type SourceEffectivenessAnalyticsDailyOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "snapshot_date" | "organisation_id" | "job_description_id" | "source_id" | "source_name" | "source_category" | "source_colour" | "job_code" | "job_number" | "role_title" | "hiring_manager_id" | "applications_count" | "screened_count" | "evaluated_count" | "rejected_count" | "shortlisted_count" | "offered_count" | "offer_accepted_count" | "offer_declined_count" | "withdrawn_count" | "hired_count" | "total_fit_score" | "fit_score_sample_count" | "average_fit_score", ExtArgs["result"]["sourceEffectivenessAnalyticsDaily"]>
|
|
104680
|
+
export type SourceEffectivenessAnalyticsDailyOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "snapshot_date" | "organisation_id" | "job_description_id" | "source_id" | "source_name" | "source_category" | "source_colour" | "job_code" | "job_number" | "role_title" | "hiring_manager_id" | "applications_count" | "screened_count" | "evaluated_count" | "rejected_count" | "on_hold_count" | "shortlisted_count" | "offered_count" | "offer_accepted_count" | "offer_declined_count" | "withdrawn_count" | "hired_count" | "total_fit_score" | "fit_score_sample_count" | "average_fit_score", ExtArgs["result"]["sourceEffectivenessAnalyticsDaily"]>
|
|
104543
104681
|
|
|
104544
104682
|
export type $SourceEffectivenessAnalyticsDailyPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
104545
104683
|
name: "SourceEffectivenessAnalyticsDaily"
|
|
@@ -104561,6 +104699,7 @@ export namespace Prisma {
|
|
|
104561
104699
|
screened_count: number
|
|
104562
104700
|
evaluated_count: number
|
|
104563
104701
|
rejected_count: number
|
|
104702
|
+
on_hold_count: number
|
|
104564
104703
|
shortlisted_count: number
|
|
104565
104704
|
offered_count: number
|
|
104566
104705
|
offer_accepted_count: number
|
|
@@ -105009,6 +105148,7 @@ export namespace Prisma {
|
|
|
105009
105148
|
readonly screened_count: FieldRef<"SourceEffectivenessAnalyticsDaily", 'Int'>
|
|
105010
105149
|
readonly evaluated_count: FieldRef<"SourceEffectivenessAnalyticsDaily", 'Int'>
|
|
105011
105150
|
readonly rejected_count: FieldRef<"SourceEffectivenessAnalyticsDaily", 'Int'>
|
|
105151
|
+
readonly on_hold_count: FieldRef<"SourceEffectivenessAnalyticsDaily", 'Int'>
|
|
105012
105152
|
readonly shortlisted_count: FieldRef<"SourceEffectivenessAnalyticsDaily", 'Int'>
|
|
105013
105153
|
readonly offered_count: FieldRef<"SourceEffectivenessAnalyticsDaily", 'Int'>
|
|
105014
105154
|
readonly offer_accepted_count: FieldRef<"SourceEffectivenessAnalyticsDaily", 'Int'>
|
|
@@ -115004,6 +115144,8 @@ export namespace Prisma {
|
|
|
115004
115144
|
is_evaluated: 'is_evaluated',
|
|
115005
115145
|
is_rejected: 'is_rejected',
|
|
115006
115146
|
is_shortlisted: 'is_shortlisted',
|
|
115147
|
+
is_on_hold: 'is_on_hold',
|
|
115148
|
+
is_withdrawn: 'is_withdrawn',
|
|
115007
115149
|
has_committed_evaluation: 'has_committed_evaluation',
|
|
115008
115150
|
updated_at: 'updated_at'
|
|
115009
115151
|
};
|
|
@@ -115036,6 +115178,8 @@ export namespace Prisma {
|
|
|
115036
115178
|
is_evaluated: 'is_evaluated',
|
|
115037
115179
|
is_rejected: 'is_rejected',
|
|
115038
115180
|
is_shortlisted: 'is_shortlisted',
|
|
115181
|
+
is_on_hold: 'is_on_hold',
|
|
115182
|
+
is_withdrawn: 'is_withdrawn',
|
|
115039
115183
|
has_committed_evaluation: 'has_committed_evaluation'
|
|
115040
115184
|
};
|
|
115041
115185
|
|
|
@@ -115564,6 +115708,7 @@ export namespace Prisma {
|
|
|
115564
115708
|
title: 'title',
|
|
115565
115709
|
description: 'description',
|
|
115566
115710
|
format: 'format',
|
|
115711
|
+
focus_areas: 'focus_areas',
|
|
115567
115712
|
topics: 'topics',
|
|
115568
115713
|
assignee: 'assignee',
|
|
115569
115714
|
elimination_round: 'elimination_round',
|
|
@@ -116238,6 +116383,7 @@ export namespace Prisma {
|
|
|
116238
116383
|
order_no: 'order_no',
|
|
116239
116384
|
format: 'format',
|
|
116240
116385
|
round_purpose: 'round_purpose',
|
|
116386
|
+
focus_areas: 'focus_areas',
|
|
116241
116387
|
topics: 'topics',
|
|
116242
116388
|
assignee: 'assignee',
|
|
116243
116389
|
elimination_round: 'elimination_round',
|
|
@@ -116283,6 +116429,8 @@ export namespace Prisma {
|
|
|
116283
116429
|
ongoing_count: 'ongoing_count',
|
|
116284
116430
|
selected_count: 'selected_count',
|
|
116285
116431
|
rejected_count: 'rejected_count',
|
|
116432
|
+
on_hold_count: 'on_hold_count',
|
|
116433
|
+
withdrawn_count: 'withdrawn_count',
|
|
116286
116434
|
updated_at: 'updated_at'
|
|
116287
116435
|
};
|
|
116288
116436
|
|
|
@@ -116313,7 +116461,9 @@ export namespace Prisma {
|
|
|
116313
116461
|
unscreened_count: 'unscreened_count',
|
|
116314
116462
|
ongoing_count: 'ongoing_count',
|
|
116315
116463
|
selected_count: 'selected_count',
|
|
116316
|
-
rejected_count: 'rejected_count'
|
|
116464
|
+
rejected_count: 'rejected_count',
|
|
116465
|
+
on_hold_count: 'on_hold_count',
|
|
116466
|
+
withdrawn_count: 'withdrawn_count'
|
|
116317
116467
|
};
|
|
116318
116468
|
|
|
116319
116469
|
export type OpenJobAnalyticsDailyScalarFieldEnum = (typeof OpenJobAnalyticsDailyScalarFieldEnum)[keyof typeof OpenJobAnalyticsDailyScalarFieldEnum]
|
|
@@ -116381,9 +116531,8 @@ export namespace Prisma {
|
|
|
116381
116531
|
application_count: 'application_count',
|
|
116382
116532
|
filtered_in_count: 'filtered_in_count',
|
|
116383
116533
|
min_fit_score: 'min_fit_score',
|
|
116384
|
-
|
|
116385
|
-
|
|
116386
|
-
technical_interview_count: 'technical_interview_count',
|
|
116534
|
+
screening_count: 'screening_count',
|
|
116535
|
+
business_screening_count: 'business_screening_count',
|
|
116387
116536
|
business_round_count: 'business_round_count',
|
|
116388
116537
|
behavioral_round_count: 'behavioral_round_count',
|
|
116389
116538
|
shortlisted_count: 'shortlisted_count',
|
|
@@ -116405,9 +116554,8 @@ export namespace Prisma {
|
|
|
116405
116554
|
application_count: 'application_count',
|
|
116406
116555
|
filtered_in_count: 'filtered_in_count',
|
|
116407
116556
|
min_fit_score: 'min_fit_score',
|
|
116408
|
-
|
|
116409
|
-
|
|
116410
|
-
technical_interview_count: 'technical_interview_count',
|
|
116557
|
+
screening_count: 'screening_count',
|
|
116558
|
+
business_screening_count: 'business_screening_count',
|
|
116411
116559
|
business_round_count: 'business_round_count',
|
|
116412
116560
|
behavioral_round_count: 'behavioral_round_count',
|
|
116413
116561
|
shortlisted_count: 'shortlisted_count'
|
|
@@ -116637,6 +116785,7 @@ export namespace Prisma {
|
|
|
116637
116785
|
screened_count: 'screened_count',
|
|
116638
116786
|
evaluated_count: 'evaluated_count',
|
|
116639
116787
|
rejected_count: 'rejected_count',
|
|
116788
|
+
on_hold_count: 'on_hold_count',
|
|
116640
116789
|
shortlisted_count: 'shortlisted_count',
|
|
116641
116790
|
offered_count: 'offered_count',
|
|
116642
116791
|
offer_accepted_count: 'offer_accepted_count',
|
|
@@ -116669,6 +116818,7 @@ export namespace Prisma {
|
|
|
116669
116818
|
screened_count: 'screened_count',
|
|
116670
116819
|
evaluated_count: 'evaluated_count',
|
|
116671
116820
|
rejected_count: 'rejected_count',
|
|
116821
|
+
on_hold_count: 'on_hold_count',
|
|
116672
116822
|
shortlisted_count: 'shortlisted_count',
|
|
116673
116823
|
offered_count: 'offered_count',
|
|
116674
116824
|
offer_accepted_count: 'offer_accepted_count',
|
|
@@ -118153,6 +118303,8 @@ export namespace Prisma {
|
|
|
118153
118303
|
is_evaluated?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118154
118304
|
is_rejected?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118155
118305
|
is_shortlisted?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118306
|
+
is_on_hold?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118307
|
+
is_withdrawn?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118156
118308
|
has_committed_evaluation?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118157
118309
|
updated_at?: DateTimeFilter<"ApplicationAnalytics"> | Date | string
|
|
118158
118310
|
}
|
|
@@ -118181,6 +118333,8 @@ export namespace Prisma {
|
|
|
118181
118333
|
is_evaluated?: SortOrder
|
|
118182
118334
|
is_rejected?: SortOrder
|
|
118183
118335
|
is_shortlisted?: SortOrder
|
|
118336
|
+
is_on_hold?: SortOrder
|
|
118337
|
+
is_withdrawn?: SortOrder
|
|
118184
118338
|
has_committed_evaluation?: SortOrder
|
|
118185
118339
|
updated_at?: SortOrder
|
|
118186
118340
|
}
|
|
@@ -118212,6 +118366,8 @@ export namespace Prisma {
|
|
|
118212
118366
|
is_evaluated?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118213
118367
|
is_rejected?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118214
118368
|
is_shortlisted?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118369
|
+
is_on_hold?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118370
|
+
is_withdrawn?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118215
118371
|
has_committed_evaluation?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118216
118372
|
updated_at?: DateTimeFilter<"ApplicationAnalytics"> | Date | string
|
|
118217
118373
|
}, "id" | "application_id">
|
|
@@ -118240,6 +118396,8 @@ export namespace Prisma {
|
|
|
118240
118396
|
is_evaluated?: SortOrder
|
|
118241
118397
|
is_rejected?: SortOrder
|
|
118242
118398
|
is_shortlisted?: SortOrder
|
|
118399
|
+
is_on_hold?: SortOrder
|
|
118400
|
+
is_withdrawn?: SortOrder
|
|
118243
118401
|
has_committed_evaluation?: SortOrder
|
|
118244
118402
|
updated_at?: SortOrder
|
|
118245
118403
|
_count?: ApplicationAnalyticsCountOrderByAggregateInput
|
|
@@ -118276,6 +118434,8 @@ export namespace Prisma {
|
|
|
118276
118434
|
is_evaluated?: BoolWithAggregatesFilter<"ApplicationAnalytics"> | boolean
|
|
118277
118435
|
is_rejected?: BoolWithAggregatesFilter<"ApplicationAnalytics"> | boolean
|
|
118278
118436
|
is_shortlisted?: BoolWithAggregatesFilter<"ApplicationAnalytics"> | boolean
|
|
118437
|
+
is_on_hold?: BoolWithAggregatesFilter<"ApplicationAnalytics"> | boolean
|
|
118438
|
+
is_withdrawn?: BoolWithAggregatesFilter<"ApplicationAnalytics"> | boolean
|
|
118279
118439
|
has_committed_evaluation?: BoolWithAggregatesFilter<"ApplicationAnalytics"> | boolean
|
|
118280
118440
|
updated_at?: DateTimeWithAggregatesFilter<"ApplicationAnalytics"> | Date | string
|
|
118281
118441
|
}
|
|
@@ -118308,6 +118468,8 @@ export namespace Prisma {
|
|
|
118308
118468
|
is_evaluated?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118309
118469
|
is_rejected?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118310
118470
|
is_shortlisted?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118471
|
+
is_on_hold?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118472
|
+
is_withdrawn?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118311
118473
|
has_committed_evaluation?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118312
118474
|
}
|
|
118313
118475
|
|
|
@@ -118336,6 +118498,8 @@ export namespace Prisma {
|
|
|
118336
118498
|
is_evaluated?: SortOrder
|
|
118337
118499
|
is_rejected?: SortOrder
|
|
118338
118500
|
is_shortlisted?: SortOrder
|
|
118501
|
+
is_on_hold?: SortOrder
|
|
118502
|
+
is_withdrawn?: SortOrder
|
|
118339
118503
|
has_committed_evaluation?: SortOrder
|
|
118340
118504
|
}
|
|
118341
118505
|
|
|
@@ -118368,6 +118532,8 @@ export namespace Prisma {
|
|
|
118368
118532
|
is_evaluated?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118369
118533
|
is_rejected?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118370
118534
|
is_shortlisted?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118535
|
+
is_on_hold?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118536
|
+
is_withdrawn?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118371
118537
|
has_committed_evaluation?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118372
118538
|
}, "id" | "snapshot_date_application_id">
|
|
118373
118539
|
|
|
@@ -118396,6 +118562,8 @@ export namespace Prisma {
|
|
|
118396
118562
|
is_evaluated?: SortOrder
|
|
118397
118563
|
is_rejected?: SortOrder
|
|
118398
118564
|
is_shortlisted?: SortOrder
|
|
118565
|
+
is_on_hold?: SortOrder
|
|
118566
|
+
is_withdrawn?: SortOrder
|
|
118399
118567
|
has_committed_evaluation?: SortOrder
|
|
118400
118568
|
_count?: ApplicationAnalyticsDailyCountOrderByAggregateInput
|
|
118401
118569
|
_avg?: ApplicationAnalyticsDailyAvgOrderByAggregateInput
|
|
@@ -118432,6 +118600,8 @@ export namespace Prisma {
|
|
|
118432
118600
|
is_evaluated?: BoolWithAggregatesFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118433
118601
|
is_rejected?: BoolWithAggregatesFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118434
118602
|
is_shortlisted?: BoolWithAggregatesFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118603
|
+
is_on_hold?: BoolWithAggregatesFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118604
|
+
is_withdrawn?: BoolWithAggregatesFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118435
118605
|
has_committed_evaluation?: BoolWithAggregatesFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118436
118606
|
}
|
|
118437
118607
|
|
|
@@ -121216,6 +121386,7 @@ export namespace Prisma {
|
|
|
121216
121386
|
title?: StringFilter<"EvaluationPlan"> | string
|
|
121217
121387
|
description?: StringNullableFilter<"EvaluationPlan"> | string | null
|
|
121218
121388
|
format?: EnumEvaluationRoundFormatNullableFilter<"EvaluationPlan"> | $Enums.EvaluationRoundFormat | null
|
|
121389
|
+
focus_areas?: StringNullableListFilter<"EvaluationPlan">
|
|
121219
121390
|
topics?: StringNullableListFilter<"EvaluationPlan">
|
|
121220
121391
|
assignee?: StringNullableFilter<"EvaluationPlan"> | string | null
|
|
121221
121392
|
elimination_round?: BoolFilter<"EvaluationPlan"> | boolean
|
|
@@ -121253,6 +121424,7 @@ export namespace Prisma {
|
|
|
121253
121424
|
title?: SortOrder
|
|
121254
121425
|
description?: SortOrderInput | SortOrder
|
|
121255
121426
|
format?: SortOrderInput | SortOrder
|
|
121427
|
+
focus_areas?: SortOrder
|
|
121256
121428
|
topics?: SortOrder
|
|
121257
121429
|
assignee?: SortOrderInput | SortOrder
|
|
121258
121430
|
elimination_round?: SortOrder
|
|
@@ -121293,6 +121465,7 @@ export namespace Prisma {
|
|
|
121293
121465
|
title?: StringFilter<"EvaluationPlan"> | string
|
|
121294
121466
|
description?: StringNullableFilter<"EvaluationPlan"> | string | null
|
|
121295
121467
|
format?: EnumEvaluationRoundFormatNullableFilter<"EvaluationPlan"> | $Enums.EvaluationRoundFormat | null
|
|
121468
|
+
focus_areas?: StringNullableListFilter<"EvaluationPlan">
|
|
121296
121469
|
topics?: StringNullableListFilter<"EvaluationPlan">
|
|
121297
121470
|
assignee?: StringNullableFilter<"EvaluationPlan"> | string | null
|
|
121298
121471
|
elimination_round?: BoolFilter<"EvaluationPlan"> | boolean
|
|
@@ -121330,6 +121503,7 @@ export namespace Prisma {
|
|
|
121330
121503
|
title?: SortOrder
|
|
121331
121504
|
description?: SortOrderInput | SortOrder
|
|
121332
121505
|
format?: SortOrderInput | SortOrder
|
|
121506
|
+
focus_areas?: SortOrder
|
|
121333
121507
|
topics?: SortOrder
|
|
121334
121508
|
assignee?: SortOrderInput | SortOrder
|
|
121335
121509
|
elimination_round?: SortOrder
|
|
@@ -121368,6 +121542,7 @@ export namespace Prisma {
|
|
|
121368
121542
|
title?: StringWithAggregatesFilter<"EvaluationPlan"> | string
|
|
121369
121543
|
description?: StringNullableWithAggregatesFilter<"EvaluationPlan"> | string | null
|
|
121370
121544
|
format?: EnumEvaluationRoundFormatNullableWithAggregatesFilter<"EvaluationPlan"> | $Enums.EvaluationRoundFormat | null
|
|
121545
|
+
focus_areas?: StringNullableListFilter<"EvaluationPlan">
|
|
121371
121546
|
topics?: StringNullableListFilter<"EvaluationPlan">
|
|
121372
121547
|
assignee?: StringNullableWithAggregatesFilter<"EvaluationPlan"> | string | null
|
|
121373
121548
|
elimination_round?: BoolWithAggregatesFilter<"EvaluationPlan"> | boolean
|
|
@@ -124724,6 +124899,7 @@ export namespace Prisma {
|
|
|
124724
124899
|
order_no?: IntNullableFilter<"OngoingEvaluation"> | number | null
|
|
124725
124900
|
format?: EnumEvaluationRoundFormatNullableFilter<"OngoingEvaluation"> | $Enums.EvaluationRoundFormat | null
|
|
124726
124901
|
round_purpose?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
124902
|
+
focus_areas?: StringNullableListFilter<"OngoingEvaluation">
|
|
124727
124903
|
topics?: StringNullableListFilter<"OngoingEvaluation">
|
|
124728
124904
|
assignee?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
124729
124905
|
elimination_round?: BoolNullableFilter<"OngoingEvaluation"> | boolean | null
|
|
@@ -124772,6 +124948,7 @@ export namespace Prisma {
|
|
|
124772
124948
|
order_no?: SortOrderInput | SortOrder
|
|
124773
124949
|
format?: SortOrderInput | SortOrder
|
|
124774
124950
|
round_purpose?: SortOrderInput | SortOrder
|
|
124951
|
+
focus_areas?: SortOrder
|
|
124775
124952
|
topics?: SortOrder
|
|
124776
124953
|
assignee?: SortOrderInput | SortOrder
|
|
124777
124954
|
elimination_round?: SortOrderInput | SortOrder
|
|
@@ -124824,6 +125001,7 @@ export namespace Prisma {
|
|
|
124824
125001
|
order_no?: IntNullableFilter<"OngoingEvaluation"> | number | null
|
|
124825
125002
|
format?: EnumEvaluationRoundFormatNullableFilter<"OngoingEvaluation"> | $Enums.EvaluationRoundFormat | null
|
|
124826
125003
|
round_purpose?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
125004
|
+
focus_areas?: StringNullableListFilter<"OngoingEvaluation">
|
|
124827
125005
|
topics?: StringNullableListFilter<"OngoingEvaluation">
|
|
124828
125006
|
assignee?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
124829
125007
|
elimination_round?: BoolNullableFilter<"OngoingEvaluation"> | boolean | null
|
|
@@ -124872,6 +125050,7 @@ export namespace Prisma {
|
|
|
124872
125050
|
order_no?: SortOrderInput | SortOrder
|
|
124873
125051
|
format?: SortOrderInput | SortOrder
|
|
124874
125052
|
round_purpose?: SortOrderInput | SortOrder
|
|
125053
|
+
focus_areas?: SortOrder
|
|
124875
125054
|
topics?: SortOrder
|
|
124876
125055
|
assignee?: SortOrderInput | SortOrder
|
|
124877
125056
|
elimination_round?: SortOrderInput | SortOrder
|
|
@@ -124919,6 +125098,7 @@ export namespace Prisma {
|
|
|
124919
125098
|
order_no?: IntNullableWithAggregatesFilter<"OngoingEvaluation"> | number | null
|
|
124920
125099
|
format?: EnumEvaluationRoundFormatNullableWithAggregatesFilter<"OngoingEvaluation"> | $Enums.EvaluationRoundFormat | null
|
|
124921
125100
|
round_purpose?: StringNullableWithAggregatesFilter<"OngoingEvaluation"> | string | null
|
|
125101
|
+
focus_areas?: StringNullableListFilter<"OngoingEvaluation">
|
|
124922
125102
|
topics?: StringNullableListFilter<"OngoingEvaluation">
|
|
124923
125103
|
assignee?: StringNullableWithAggregatesFilter<"OngoingEvaluation"> | string | null
|
|
124924
125104
|
elimination_round?: BoolNullableWithAggregatesFilter<"OngoingEvaluation"> | boolean | null
|
|
@@ -124964,6 +125144,8 @@ export namespace Prisma {
|
|
|
124964
125144
|
ongoing_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124965
125145
|
selected_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124966
125146
|
rejected_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125147
|
+
on_hold_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125148
|
+
withdrawn_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124967
125149
|
updated_at?: DateTimeFilter<"OpenJobAnalytics"> | Date | string
|
|
124968
125150
|
}
|
|
124969
125151
|
|
|
@@ -124991,6 +125173,8 @@ export namespace Prisma {
|
|
|
124991
125173
|
ongoing_count?: SortOrder
|
|
124992
125174
|
selected_count?: SortOrder
|
|
124993
125175
|
rejected_count?: SortOrder
|
|
125176
|
+
on_hold_count?: SortOrder
|
|
125177
|
+
withdrawn_count?: SortOrder
|
|
124994
125178
|
updated_at?: SortOrder
|
|
124995
125179
|
}
|
|
124996
125180
|
|
|
@@ -125021,6 +125205,8 @@ export namespace Prisma {
|
|
|
125021
125205
|
ongoing_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125022
125206
|
selected_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125023
125207
|
rejected_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125208
|
+
on_hold_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125209
|
+
withdrawn_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125024
125210
|
updated_at?: DateTimeFilter<"OpenJobAnalytics"> | Date | string
|
|
125025
125211
|
}, "id" | "job_description_id">
|
|
125026
125212
|
|
|
@@ -125048,6 +125234,8 @@ export namespace Prisma {
|
|
|
125048
125234
|
ongoing_count?: SortOrder
|
|
125049
125235
|
selected_count?: SortOrder
|
|
125050
125236
|
rejected_count?: SortOrder
|
|
125237
|
+
on_hold_count?: SortOrder
|
|
125238
|
+
withdrawn_count?: SortOrder
|
|
125051
125239
|
updated_at?: SortOrder
|
|
125052
125240
|
_count?: OpenJobAnalyticsCountOrderByAggregateInput
|
|
125053
125241
|
_avg?: OpenJobAnalyticsAvgOrderByAggregateInput
|
|
@@ -125083,6 +125271,8 @@ export namespace Prisma {
|
|
|
125083
125271
|
ongoing_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125084
125272
|
selected_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125085
125273
|
rejected_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125274
|
+
on_hold_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125275
|
+
withdrawn_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125086
125276
|
updated_at?: DateTimeWithAggregatesFilter<"OpenJobAnalytics"> | Date | string
|
|
125087
125277
|
}
|
|
125088
125278
|
|
|
@@ -125114,6 +125304,8 @@ export namespace Prisma {
|
|
|
125114
125304
|
ongoing_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125115
125305
|
selected_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125116
125306
|
rejected_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125307
|
+
on_hold_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125308
|
+
withdrawn_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125117
125309
|
}
|
|
125118
125310
|
|
|
125119
125311
|
export type OpenJobAnalyticsDailyOrderByWithRelationInput = {
|
|
@@ -125141,6 +125333,8 @@ export namespace Prisma {
|
|
|
125141
125333
|
ongoing_count?: SortOrder
|
|
125142
125334
|
selected_count?: SortOrder
|
|
125143
125335
|
rejected_count?: SortOrder
|
|
125336
|
+
on_hold_count?: SortOrder
|
|
125337
|
+
withdrawn_count?: SortOrder
|
|
125144
125338
|
}
|
|
125145
125339
|
|
|
125146
125340
|
export type OpenJobAnalyticsDailyWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -125172,6 +125366,8 @@ export namespace Prisma {
|
|
|
125172
125366
|
ongoing_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125173
125367
|
selected_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125174
125368
|
rejected_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125369
|
+
on_hold_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125370
|
+
withdrawn_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125175
125371
|
}, "id" | "snapshot_date_job_description_id">
|
|
125176
125372
|
|
|
125177
125373
|
export type OpenJobAnalyticsDailyOrderByWithAggregationInput = {
|
|
@@ -125199,6 +125395,8 @@ export namespace Prisma {
|
|
|
125199
125395
|
ongoing_count?: SortOrder
|
|
125200
125396
|
selected_count?: SortOrder
|
|
125201
125397
|
rejected_count?: SortOrder
|
|
125398
|
+
on_hold_count?: SortOrder
|
|
125399
|
+
withdrawn_count?: SortOrder
|
|
125202
125400
|
_count?: OpenJobAnalyticsDailyCountOrderByAggregateInput
|
|
125203
125401
|
_avg?: OpenJobAnalyticsDailyAvgOrderByAggregateInput
|
|
125204
125402
|
_max?: OpenJobAnalyticsDailyMaxOrderByAggregateInput
|
|
@@ -125234,6 +125432,8 @@ export namespace Prisma {
|
|
|
125234
125432
|
ongoing_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125235
125433
|
selected_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125236
125434
|
rejected_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125435
|
+
on_hold_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125436
|
+
withdrawn_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125237
125437
|
}
|
|
125238
125438
|
|
|
125239
125439
|
export type OrganisationWhereInput = {
|
|
@@ -125589,9 +125789,8 @@ export namespace Prisma {
|
|
|
125589
125789
|
application_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125590
125790
|
filtered_in_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125591
125791
|
min_fit_score?: FloatNullableFilter<"PipelineDistributionAnalytics"> | number | null
|
|
125592
|
-
|
|
125593
|
-
|
|
125594
|
-
technical_interview_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125792
|
+
screening_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125793
|
+
business_screening_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125595
125794
|
business_round_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125596
125795
|
behavioral_round_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125597
125796
|
shortlisted_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
@@ -125609,9 +125808,8 @@ export namespace Prisma {
|
|
|
125609
125808
|
application_count?: SortOrder
|
|
125610
125809
|
filtered_in_count?: SortOrder
|
|
125611
125810
|
min_fit_score?: SortOrderInput | SortOrder
|
|
125612
|
-
|
|
125613
|
-
|
|
125614
|
-
technical_interview_count?: SortOrder
|
|
125811
|
+
screening_count?: SortOrder
|
|
125812
|
+
business_screening_count?: SortOrder
|
|
125615
125813
|
business_round_count?: SortOrder
|
|
125616
125814
|
behavioral_round_count?: SortOrder
|
|
125617
125815
|
shortlisted_count?: SortOrder
|
|
@@ -125632,9 +125830,8 @@ export namespace Prisma {
|
|
|
125632
125830
|
application_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125633
125831
|
filtered_in_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125634
125832
|
min_fit_score?: FloatNullableFilter<"PipelineDistributionAnalytics"> | number | null
|
|
125635
|
-
|
|
125636
|
-
|
|
125637
|
-
technical_interview_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125833
|
+
screening_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125834
|
+
business_screening_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125638
125835
|
business_round_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125639
125836
|
behavioral_round_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125640
125837
|
shortlisted_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
@@ -125652,9 +125849,8 @@ export namespace Prisma {
|
|
|
125652
125849
|
application_count?: SortOrder
|
|
125653
125850
|
filtered_in_count?: SortOrder
|
|
125654
125851
|
min_fit_score?: SortOrderInput | SortOrder
|
|
125655
|
-
|
|
125656
|
-
|
|
125657
|
-
technical_interview_count?: SortOrder
|
|
125852
|
+
screening_count?: SortOrder
|
|
125853
|
+
business_screening_count?: SortOrder
|
|
125658
125854
|
business_round_count?: SortOrder
|
|
125659
125855
|
behavioral_round_count?: SortOrder
|
|
125660
125856
|
shortlisted_count?: SortOrder
|
|
@@ -125680,9 +125876,8 @@ export namespace Prisma {
|
|
|
125680
125876
|
application_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
125681
125877
|
filtered_in_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
125682
125878
|
min_fit_score?: FloatNullableWithAggregatesFilter<"PipelineDistributionAnalytics"> | number | null
|
|
125683
|
-
|
|
125684
|
-
|
|
125685
|
-
technical_interview_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
125879
|
+
screening_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
125880
|
+
business_screening_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
125686
125881
|
business_round_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
125687
125882
|
behavioral_round_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
125688
125883
|
shortlisted_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
@@ -125704,9 +125899,8 @@ export namespace Prisma {
|
|
|
125704
125899
|
application_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125705
125900
|
filtered_in_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125706
125901
|
min_fit_score?: FloatNullableFilter<"PipelineDistributionAnalyticsDaily"> | number | null
|
|
125707
|
-
|
|
125708
|
-
|
|
125709
|
-
technical_interview_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125902
|
+
screening_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125903
|
+
business_screening_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125710
125904
|
business_round_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125711
125905
|
behavioral_round_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125712
125906
|
shortlisted_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
@@ -125724,9 +125918,8 @@ export namespace Prisma {
|
|
|
125724
125918
|
application_count?: SortOrder
|
|
125725
125919
|
filtered_in_count?: SortOrder
|
|
125726
125920
|
min_fit_score?: SortOrderInput | SortOrder
|
|
125727
|
-
|
|
125728
|
-
|
|
125729
|
-
technical_interview_count?: SortOrder
|
|
125921
|
+
screening_count?: SortOrder
|
|
125922
|
+
business_screening_count?: SortOrder
|
|
125730
125923
|
business_round_count?: SortOrder
|
|
125731
125924
|
behavioral_round_count?: SortOrder
|
|
125732
125925
|
shortlisted_count?: SortOrder
|
|
@@ -125748,9 +125941,8 @@ export namespace Prisma {
|
|
|
125748
125941
|
application_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125749
125942
|
filtered_in_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125750
125943
|
min_fit_score?: FloatNullableFilter<"PipelineDistributionAnalyticsDaily"> | number | null
|
|
125751
|
-
|
|
125752
|
-
|
|
125753
|
-
technical_interview_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125944
|
+
screening_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125945
|
+
business_screening_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125754
125946
|
business_round_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125755
125947
|
behavioral_round_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125756
125948
|
shortlisted_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
@@ -125768,9 +125960,8 @@ export namespace Prisma {
|
|
|
125768
125960
|
application_count?: SortOrder
|
|
125769
125961
|
filtered_in_count?: SortOrder
|
|
125770
125962
|
min_fit_score?: SortOrderInput | SortOrder
|
|
125771
|
-
|
|
125772
|
-
|
|
125773
|
-
technical_interview_count?: SortOrder
|
|
125963
|
+
screening_count?: SortOrder
|
|
125964
|
+
business_screening_count?: SortOrder
|
|
125774
125965
|
business_round_count?: SortOrder
|
|
125775
125966
|
behavioral_round_count?: SortOrder
|
|
125776
125967
|
shortlisted_count?: SortOrder
|
|
@@ -125796,9 +125987,8 @@ export namespace Prisma {
|
|
|
125796
125987
|
application_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125797
125988
|
filtered_in_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125798
125989
|
min_fit_score?: FloatNullableWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number | null
|
|
125799
|
-
|
|
125800
|
-
|
|
125801
|
-
technical_interview_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125990
|
+
screening_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125991
|
+
business_screening_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125802
125992
|
business_round_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125803
125993
|
behavioral_round_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125804
125994
|
shortlisted_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
@@ -126905,6 +127095,7 @@ export namespace Prisma {
|
|
|
126905
127095
|
screened_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126906
127096
|
evaluated_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126907
127097
|
rejected_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
127098
|
+
on_hold_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126908
127099
|
shortlisted_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126909
127100
|
offered_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126910
127101
|
offer_accepted_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
@@ -126933,6 +127124,7 @@ export namespace Prisma {
|
|
|
126933
127124
|
screened_count?: SortOrder
|
|
126934
127125
|
evaluated_count?: SortOrder
|
|
126935
127126
|
rejected_count?: SortOrder
|
|
127127
|
+
on_hold_count?: SortOrder
|
|
126936
127128
|
shortlisted_count?: SortOrder
|
|
126937
127129
|
offered_count?: SortOrder
|
|
126938
127130
|
offer_accepted_count?: SortOrder
|
|
@@ -126965,6 +127157,7 @@ export namespace Prisma {
|
|
|
126965
127157
|
screened_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126966
127158
|
evaluated_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126967
127159
|
rejected_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
127160
|
+
on_hold_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126968
127161
|
shortlisted_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126969
127162
|
offered_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126970
127163
|
offer_accepted_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
@@ -126993,6 +127186,7 @@ export namespace Prisma {
|
|
|
126993
127186
|
screened_count?: SortOrder
|
|
126994
127187
|
evaluated_count?: SortOrder
|
|
126995
127188
|
rejected_count?: SortOrder
|
|
127189
|
+
on_hold_count?: SortOrder
|
|
126996
127190
|
shortlisted_count?: SortOrder
|
|
126997
127191
|
offered_count?: SortOrder
|
|
126998
127192
|
offer_accepted_count?: SortOrder
|
|
@@ -127029,6 +127223,7 @@ export namespace Prisma {
|
|
|
127029
127223
|
screened_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalytics"> | number
|
|
127030
127224
|
evaluated_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalytics"> | number
|
|
127031
127225
|
rejected_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalytics"> | number
|
|
127226
|
+
on_hold_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalytics"> | number
|
|
127032
127227
|
shortlisted_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalytics"> | number
|
|
127033
127228
|
offered_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalytics"> | number
|
|
127034
127229
|
offer_accepted_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalytics"> | number
|
|
@@ -127061,6 +127256,7 @@ export namespace Prisma {
|
|
|
127061
127256
|
screened_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127062
127257
|
evaluated_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127063
127258
|
rejected_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127259
|
+
on_hold_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127064
127260
|
shortlisted_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127065
127261
|
offered_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127066
127262
|
offer_accepted_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
@@ -127089,6 +127285,7 @@ export namespace Prisma {
|
|
|
127089
127285
|
screened_count?: SortOrder
|
|
127090
127286
|
evaluated_count?: SortOrder
|
|
127091
127287
|
rejected_count?: SortOrder
|
|
127288
|
+
on_hold_count?: SortOrder
|
|
127092
127289
|
shortlisted_count?: SortOrder
|
|
127093
127290
|
offered_count?: SortOrder
|
|
127094
127291
|
offer_accepted_count?: SortOrder
|
|
@@ -127121,6 +127318,7 @@ export namespace Prisma {
|
|
|
127121
127318
|
screened_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127122
127319
|
evaluated_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127123
127320
|
rejected_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127321
|
+
on_hold_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127124
127322
|
shortlisted_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127125
127323
|
offered_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127126
127324
|
offer_accepted_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
@@ -127149,6 +127347,7 @@ export namespace Prisma {
|
|
|
127149
127347
|
screened_count?: SortOrder
|
|
127150
127348
|
evaluated_count?: SortOrder
|
|
127151
127349
|
rejected_count?: SortOrder
|
|
127350
|
+
on_hold_count?: SortOrder
|
|
127152
127351
|
shortlisted_count?: SortOrder
|
|
127153
127352
|
offered_count?: SortOrder
|
|
127154
127353
|
offer_accepted_count?: SortOrder
|
|
@@ -127185,6 +127384,7 @@ export namespace Prisma {
|
|
|
127185
127384
|
screened_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127186
127385
|
evaluated_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127187
127386
|
rejected_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127387
|
+
on_hold_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127188
127388
|
shortlisted_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127189
127389
|
offered_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127190
127390
|
offer_accepted_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
@@ -128581,6 +128781,8 @@ export namespace Prisma {
|
|
|
128581
128781
|
is_evaluated?: boolean
|
|
128582
128782
|
is_rejected?: boolean
|
|
128583
128783
|
is_shortlisted?: boolean
|
|
128784
|
+
is_on_hold?: boolean
|
|
128785
|
+
is_withdrawn?: boolean
|
|
128584
128786
|
has_committed_evaluation?: boolean
|
|
128585
128787
|
updated_at?: Date | string
|
|
128586
128788
|
}
|
|
@@ -128609,6 +128811,8 @@ export namespace Prisma {
|
|
|
128609
128811
|
is_evaluated?: boolean
|
|
128610
128812
|
is_rejected?: boolean
|
|
128611
128813
|
is_shortlisted?: boolean
|
|
128814
|
+
is_on_hold?: boolean
|
|
128815
|
+
is_withdrawn?: boolean
|
|
128612
128816
|
has_committed_evaluation?: boolean
|
|
128613
128817
|
updated_at?: Date | string
|
|
128614
128818
|
}
|
|
@@ -128637,6 +128841,8 @@ export namespace Prisma {
|
|
|
128637
128841
|
is_evaluated?: BoolFieldUpdateOperationsInput | boolean
|
|
128638
128842
|
is_rejected?: BoolFieldUpdateOperationsInput | boolean
|
|
128639
128843
|
is_shortlisted?: BoolFieldUpdateOperationsInput | boolean
|
|
128844
|
+
is_on_hold?: BoolFieldUpdateOperationsInput | boolean
|
|
128845
|
+
is_withdrawn?: BoolFieldUpdateOperationsInput | boolean
|
|
128640
128846
|
has_committed_evaluation?: BoolFieldUpdateOperationsInput | boolean
|
|
128641
128847
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
128642
128848
|
}
|
|
@@ -128665,6 +128871,8 @@ export namespace Prisma {
|
|
|
128665
128871
|
is_evaluated?: BoolFieldUpdateOperationsInput | boolean
|
|
128666
128872
|
is_rejected?: BoolFieldUpdateOperationsInput | boolean
|
|
128667
128873
|
is_shortlisted?: BoolFieldUpdateOperationsInput | boolean
|
|
128874
|
+
is_on_hold?: BoolFieldUpdateOperationsInput | boolean
|
|
128875
|
+
is_withdrawn?: BoolFieldUpdateOperationsInput | boolean
|
|
128668
128876
|
has_committed_evaluation?: BoolFieldUpdateOperationsInput | boolean
|
|
128669
128877
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
128670
128878
|
}
|
|
@@ -128693,6 +128901,8 @@ export namespace Prisma {
|
|
|
128693
128901
|
is_evaluated?: boolean
|
|
128694
128902
|
is_rejected?: boolean
|
|
128695
128903
|
is_shortlisted?: boolean
|
|
128904
|
+
is_on_hold?: boolean
|
|
128905
|
+
is_withdrawn?: boolean
|
|
128696
128906
|
has_committed_evaluation?: boolean
|
|
128697
128907
|
updated_at?: Date | string
|
|
128698
128908
|
}
|
|
@@ -128721,6 +128931,8 @@ export namespace Prisma {
|
|
|
128721
128931
|
is_evaluated?: BoolFieldUpdateOperationsInput | boolean
|
|
128722
128932
|
is_rejected?: BoolFieldUpdateOperationsInput | boolean
|
|
128723
128933
|
is_shortlisted?: BoolFieldUpdateOperationsInput | boolean
|
|
128934
|
+
is_on_hold?: BoolFieldUpdateOperationsInput | boolean
|
|
128935
|
+
is_withdrawn?: BoolFieldUpdateOperationsInput | boolean
|
|
128724
128936
|
has_committed_evaluation?: BoolFieldUpdateOperationsInput | boolean
|
|
128725
128937
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
128726
128938
|
}
|
|
@@ -128749,6 +128961,8 @@ export namespace Prisma {
|
|
|
128749
128961
|
is_evaluated?: BoolFieldUpdateOperationsInput | boolean
|
|
128750
128962
|
is_rejected?: BoolFieldUpdateOperationsInput | boolean
|
|
128751
128963
|
is_shortlisted?: BoolFieldUpdateOperationsInput | boolean
|
|
128964
|
+
is_on_hold?: BoolFieldUpdateOperationsInput | boolean
|
|
128965
|
+
is_withdrawn?: BoolFieldUpdateOperationsInput | boolean
|
|
128752
128966
|
has_committed_evaluation?: BoolFieldUpdateOperationsInput | boolean
|
|
128753
128967
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
128754
128968
|
}
|
|
@@ -128778,6 +128992,8 @@ export namespace Prisma {
|
|
|
128778
128992
|
is_evaluated?: boolean
|
|
128779
128993
|
is_rejected?: boolean
|
|
128780
128994
|
is_shortlisted?: boolean
|
|
128995
|
+
is_on_hold?: boolean
|
|
128996
|
+
is_withdrawn?: boolean
|
|
128781
128997
|
has_committed_evaluation?: boolean
|
|
128782
128998
|
}
|
|
128783
128999
|
|
|
@@ -128806,6 +129022,8 @@ export namespace Prisma {
|
|
|
128806
129022
|
is_evaluated?: boolean
|
|
128807
129023
|
is_rejected?: boolean
|
|
128808
129024
|
is_shortlisted?: boolean
|
|
129025
|
+
is_on_hold?: boolean
|
|
129026
|
+
is_withdrawn?: boolean
|
|
128809
129027
|
has_committed_evaluation?: boolean
|
|
128810
129028
|
}
|
|
128811
129029
|
|
|
@@ -128834,6 +129052,8 @@ export namespace Prisma {
|
|
|
128834
129052
|
is_evaluated?: BoolFieldUpdateOperationsInput | boolean
|
|
128835
129053
|
is_rejected?: BoolFieldUpdateOperationsInput | boolean
|
|
128836
129054
|
is_shortlisted?: BoolFieldUpdateOperationsInput | boolean
|
|
129055
|
+
is_on_hold?: BoolFieldUpdateOperationsInput | boolean
|
|
129056
|
+
is_withdrawn?: BoolFieldUpdateOperationsInput | boolean
|
|
128837
129057
|
has_committed_evaluation?: BoolFieldUpdateOperationsInput | boolean
|
|
128838
129058
|
}
|
|
128839
129059
|
|
|
@@ -128862,6 +129082,8 @@ export namespace Prisma {
|
|
|
128862
129082
|
is_evaluated?: BoolFieldUpdateOperationsInput | boolean
|
|
128863
129083
|
is_rejected?: BoolFieldUpdateOperationsInput | boolean
|
|
128864
129084
|
is_shortlisted?: BoolFieldUpdateOperationsInput | boolean
|
|
129085
|
+
is_on_hold?: BoolFieldUpdateOperationsInput | boolean
|
|
129086
|
+
is_withdrawn?: BoolFieldUpdateOperationsInput | boolean
|
|
128865
129087
|
has_committed_evaluation?: BoolFieldUpdateOperationsInput | boolean
|
|
128866
129088
|
}
|
|
128867
129089
|
|
|
@@ -128890,6 +129112,8 @@ export namespace Prisma {
|
|
|
128890
129112
|
is_evaluated?: boolean
|
|
128891
129113
|
is_rejected?: boolean
|
|
128892
129114
|
is_shortlisted?: boolean
|
|
129115
|
+
is_on_hold?: boolean
|
|
129116
|
+
is_withdrawn?: boolean
|
|
128893
129117
|
has_committed_evaluation?: boolean
|
|
128894
129118
|
}
|
|
128895
129119
|
|
|
@@ -128918,6 +129142,8 @@ export namespace Prisma {
|
|
|
128918
129142
|
is_evaluated?: BoolFieldUpdateOperationsInput | boolean
|
|
128919
129143
|
is_rejected?: BoolFieldUpdateOperationsInput | boolean
|
|
128920
129144
|
is_shortlisted?: BoolFieldUpdateOperationsInput | boolean
|
|
129145
|
+
is_on_hold?: BoolFieldUpdateOperationsInput | boolean
|
|
129146
|
+
is_withdrawn?: BoolFieldUpdateOperationsInput | boolean
|
|
128921
129147
|
has_committed_evaluation?: BoolFieldUpdateOperationsInput | boolean
|
|
128922
129148
|
}
|
|
128923
129149
|
|
|
@@ -128946,6 +129172,8 @@ export namespace Prisma {
|
|
|
128946
129172
|
is_evaluated?: BoolFieldUpdateOperationsInput | boolean
|
|
128947
129173
|
is_rejected?: BoolFieldUpdateOperationsInput | boolean
|
|
128948
129174
|
is_shortlisted?: BoolFieldUpdateOperationsInput | boolean
|
|
129175
|
+
is_on_hold?: BoolFieldUpdateOperationsInput | boolean
|
|
129176
|
+
is_withdrawn?: BoolFieldUpdateOperationsInput | boolean
|
|
128949
129177
|
has_committed_evaluation?: BoolFieldUpdateOperationsInput | boolean
|
|
128950
129178
|
}
|
|
128951
129179
|
|
|
@@ -132197,6 +132425,7 @@ export namespace Prisma {
|
|
|
132197
132425
|
title: string
|
|
132198
132426
|
description?: string | null
|
|
132199
132427
|
format?: $Enums.EvaluationRoundFormat | null
|
|
132428
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
132200
132429
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
132201
132430
|
assignee?: string | null
|
|
132202
132431
|
elimination_round?: boolean
|
|
@@ -132234,6 +132463,7 @@ export namespace Prisma {
|
|
|
132234
132463
|
title: string
|
|
132235
132464
|
description?: string | null
|
|
132236
132465
|
format?: $Enums.EvaluationRoundFormat | null
|
|
132466
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
132237
132467
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
132238
132468
|
assignee?: string | null
|
|
132239
132469
|
elimination_round?: boolean
|
|
@@ -132265,6 +132495,7 @@ export namespace Prisma {
|
|
|
132265
132495
|
title?: StringFieldUpdateOperationsInput | string
|
|
132266
132496
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132267
132497
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
132498
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
132268
132499
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
132269
132500
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132270
132501
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -132302,6 +132533,7 @@ export namespace Prisma {
|
|
|
132302
132533
|
title?: StringFieldUpdateOperationsInput | string
|
|
132303
132534
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132304
132535
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
132536
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
132305
132537
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
132306
132538
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132307
132539
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -132336,6 +132568,7 @@ export namespace Prisma {
|
|
|
132336
132568
|
title: string
|
|
132337
132569
|
description?: string | null
|
|
132338
132570
|
format?: $Enums.EvaluationRoundFormat | null
|
|
132571
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
132339
132572
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
132340
132573
|
assignee?: string | null
|
|
132341
132574
|
elimination_round?: boolean
|
|
@@ -132363,6 +132596,7 @@ export namespace Prisma {
|
|
|
132363
132596
|
title?: StringFieldUpdateOperationsInput | string
|
|
132364
132597
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132365
132598
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
132599
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
132366
132600
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
132367
132601
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132368
132602
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -132393,6 +132627,7 @@ export namespace Prisma {
|
|
|
132393
132627
|
title?: StringFieldUpdateOperationsInput | string
|
|
132394
132628
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132395
132629
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
132630
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
132396
132631
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
132397
132632
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
132398
132633
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -136370,6 +136605,7 @@ export namespace Prisma {
|
|
|
136370
136605
|
order_no?: number | null
|
|
136371
136606
|
format?: $Enums.EvaluationRoundFormat | null
|
|
136372
136607
|
round_purpose?: string | null
|
|
136608
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
136373
136609
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
136374
136610
|
assignee?: string | null
|
|
136375
136611
|
elimination_round?: boolean | null
|
|
@@ -136418,6 +136654,7 @@ export namespace Prisma {
|
|
|
136418
136654
|
order_no?: number | null
|
|
136419
136655
|
format?: $Enums.EvaluationRoundFormat | null
|
|
136420
136656
|
round_purpose?: string | null
|
|
136657
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
136421
136658
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
136422
136659
|
assignee?: string | null
|
|
136423
136660
|
elimination_round?: boolean | null
|
|
@@ -136450,6 +136687,7 @@ export namespace Prisma {
|
|
|
136450
136687
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136451
136688
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
136452
136689
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136690
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
136453
136691
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
136454
136692
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136455
136693
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -136498,6 +136736,7 @@ export namespace Prisma {
|
|
|
136498
136736
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136499
136737
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
136500
136738
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136739
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
136501
136740
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
136502
136741
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136503
136742
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -136538,6 +136777,7 @@ export namespace Prisma {
|
|
|
136538
136777
|
order_no?: number | null
|
|
136539
136778
|
format?: $Enums.EvaluationRoundFormat | null
|
|
136540
136779
|
round_purpose?: string | null
|
|
136780
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
136541
136781
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
136542
136782
|
assignee?: string | null
|
|
136543
136783
|
elimination_round?: boolean | null
|
|
@@ -136569,6 +136809,7 @@ export namespace Prisma {
|
|
|
136569
136809
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136570
136810
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
136571
136811
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136812
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
136572
136813
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
136573
136814
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136574
136815
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -136608,6 +136849,7 @@ export namespace Prisma {
|
|
|
136608
136849
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136609
136850
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
136610
136851
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136852
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
136611
136853
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
136612
136854
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
136613
136855
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -136650,6 +136892,8 @@ export namespace Prisma {
|
|
|
136650
136892
|
ongoing_count?: number
|
|
136651
136893
|
selected_count?: number
|
|
136652
136894
|
rejected_count?: number
|
|
136895
|
+
on_hold_count?: number
|
|
136896
|
+
withdrawn_count?: number
|
|
136653
136897
|
updated_at?: Date | string
|
|
136654
136898
|
}
|
|
136655
136899
|
|
|
@@ -136677,6 +136921,8 @@ export namespace Prisma {
|
|
|
136677
136921
|
ongoing_count?: number
|
|
136678
136922
|
selected_count?: number
|
|
136679
136923
|
rejected_count?: number
|
|
136924
|
+
on_hold_count?: number
|
|
136925
|
+
withdrawn_count?: number
|
|
136680
136926
|
updated_at?: Date | string
|
|
136681
136927
|
}
|
|
136682
136928
|
|
|
@@ -136704,6 +136950,8 @@ export namespace Prisma {
|
|
|
136704
136950
|
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136705
136951
|
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136706
136952
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
136953
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
136954
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
136707
136955
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136708
136956
|
}
|
|
136709
136957
|
|
|
@@ -136731,6 +136979,8 @@ export namespace Prisma {
|
|
|
136731
136979
|
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136732
136980
|
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136733
136981
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
136982
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
136983
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
136734
136984
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136735
136985
|
}
|
|
136736
136986
|
|
|
@@ -136758,6 +137008,8 @@ export namespace Prisma {
|
|
|
136758
137008
|
ongoing_count?: number
|
|
136759
137009
|
selected_count?: number
|
|
136760
137010
|
rejected_count?: number
|
|
137011
|
+
on_hold_count?: number
|
|
137012
|
+
withdrawn_count?: number
|
|
136761
137013
|
updated_at?: Date | string
|
|
136762
137014
|
}
|
|
136763
137015
|
|
|
@@ -136785,6 +137037,8 @@ export namespace Prisma {
|
|
|
136785
137037
|
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136786
137038
|
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136787
137039
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
137040
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
137041
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
136788
137042
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136789
137043
|
}
|
|
136790
137044
|
|
|
@@ -136812,6 +137066,8 @@ export namespace Prisma {
|
|
|
136812
137066
|
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136813
137067
|
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136814
137068
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
137069
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
137070
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
136815
137071
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136816
137072
|
}
|
|
136817
137073
|
|
|
@@ -136840,6 +137096,8 @@ export namespace Prisma {
|
|
|
136840
137096
|
ongoing_count?: number
|
|
136841
137097
|
selected_count?: number
|
|
136842
137098
|
rejected_count?: number
|
|
137099
|
+
on_hold_count?: number
|
|
137100
|
+
withdrawn_count?: number
|
|
136843
137101
|
}
|
|
136844
137102
|
|
|
136845
137103
|
export type OpenJobAnalyticsDailyUncheckedCreateInput = {
|
|
@@ -136867,6 +137125,8 @@ export namespace Prisma {
|
|
|
136867
137125
|
ongoing_count?: number
|
|
136868
137126
|
selected_count?: number
|
|
136869
137127
|
rejected_count?: number
|
|
137128
|
+
on_hold_count?: number
|
|
137129
|
+
withdrawn_count?: number
|
|
136870
137130
|
}
|
|
136871
137131
|
|
|
136872
137132
|
export type OpenJobAnalyticsDailyUpdateInput = {
|
|
@@ -136894,6 +137154,8 @@ export namespace Prisma {
|
|
|
136894
137154
|
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136895
137155
|
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136896
137156
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
137157
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
137158
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
136897
137159
|
}
|
|
136898
137160
|
|
|
136899
137161
|
export type OpenJobAnalyticsDailyUncheckedUpdateInput = {
|
|
@@ -136921,6 +137183,8 @@ export namespace Prisma {
|
|
|
136921
137183
|
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136922
137184
|
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136923
137185
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
137186
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
137187
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
136924
137188
|
}
|
|
136925
137189
|
|
|
136926
137190
|
export type OpenJobAnalyticsDailyCreateManyInput = {
|
|
@@ -136948,6 +137212,8 @@ export namespace Prisma {
|
|
|
136948
137212
|
ongoing_count?: number
|
|
136949
137213
|
selected_count?: number
|
|
136950
137214
|
rejected_count?: number
|
|
137215
|
+
on_hold_count?: number
|
|
137216
|
+
withdrawn_count?: number
|
|
136951
137217
|
}
|
|
136952
137218
|
|
|
136953
137219
|
export type OpenJobAnalyticsDailyUpdateManyMutationInput = {
|
|
@@ -136975,6 +137241,8 @@ export namespace Prisma {
|
|
|
136975
137241
|
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136976
137242
|
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136977
137243
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
137244
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
137245
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
136978
137246
|
}
|
|
136979
137247
|
|
|
136980
137248
|
export type OpenJobAnalyticsDailyUncheckedUpdateManyInput = {
|
|
@@ -137002,6 +137270,8 @@ export namespace Prisma {
|
|
|
137002
137270
|
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
137003
137271
|
selected_count?: IntFieldUpdateOperationsInput | number
|
|
137004
137272
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
137273
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
137274
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
137005
137275
|
}
|
|
137006
137276
|
|
|
137007
137277
|
export type OrganisationCreateInput = {
|
|
@@ -137424,9 +137694,8 @@ export namespace Prisma {
|
|
|
137424
137694
|
application_count?: number
|
|
137425
137695
|
filtered_in_count?: number
|
|
137426
137696
|
min_fit_score?: number | null
|
|
137427
|
-
|
|
137428
|
-
|
|
137429
|
-
technical_interview_count?: number
|
|
137697
|
+
screening_count?: number
|
|
137698
|
+
business_screening_count?: number
|
|
137430
137699
|
business_round_count?: number
|
|
137431
137700
|
behavioral_round_count?: number
|
|
137432
137701
|
shortlisted_count?: number
|
|
@@ -137444,9 +137713,8 @@ export namespace Prisma {
|
|
|
137444
137713
|
application_count?: number
|
|
137445
137714
|
filtered_in_count?: number
|
|
137446
137715
|
min_fit_score?: number | null
|
|
137447
|
-
|
|
137448
|
-
|
|
137449
|
-
technical_interview_count?: number
|
|
137716
|
+
screening_count?: number
|
|
137717
|
+
business_screening_count?: number
|
|
137450
137718
|
business_round_count?: number
|
|
137451
137719
|
behavioral_round_count?: number
|
|
137452
137720
|
shortlisted_count?: number
|
|
@@ -137464,9 +137732,8 @@ export namespace Prisma {
|
|
|
137464
137732
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137465
137733
|
filtered_in_count?: IntFieldUpdateOperationsInput | number
|
|
137466
137734
|
min_fit_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
137467
|
-
|
|
137468
|
-
|
|
137469
|
-
technical_interview_count?: IntFieldUpdateOperationsInput | number
|
|
137735
|
+
screening_count?: IntFieldUpdateOperationsInput | number
|
|
137736
|
+
business_screening_count?: IntFieldUpdateOperationsInput | number
|
|
137470
137737
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
137471
137738
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
137472
137739
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -137484,9 +137751,8 @@ export namespace Prisma {
|
|
|
137484
137751
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137485
137752
|
filtered_in_count?: IntFieldUpdateOperationsInput | number
|
|
137486
137753
|
min_fit_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
137487
|
-
|
|
137488
|
-
|
|
137489
|
-
technical_interview_count?: IntFieldUpdateOperationsInput | number
|
|
137754
|
+
screening_count?: IntFieldUpdateOperationsInput | number
|
|
137755
|
+
business_screening_count?: IntFieldUpdateOperationsInput | number
|
|
137490
137756
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
137491
137757
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
137492
137758
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -137504,9 +137770,8 @@ export namespace Prisma {
|
|
|
137504
137770
|
application_count?: number
|
|
137505
137771
|
filtered_in_count?: number
|
|
137506
137772
|
min_fit_score?: number | null
|
|
137507
|
-
|
|
137508
|
-
|
|
137509
|
-
technical_interview_count?: number
|
|
137773
|
+
screening_count?: number
|
|
137774
|
+
business_screening_count?: number
|
|
137510
137775
|
business_round_count?: number
|
|
137511
137776
|
behavioral_round_count?: number
|
|
137512
137777
|
shortlisted_count?: number
|
|
@@ -137524,9 +137789,8 @@ export namespace Prisma {
|
|
|
137524
137789
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137525
137790
|
filtered_in_count?: IntFieldUpdateOperationsInput | number
|
|
137526
137791
|
min_fit_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
137527
|
-
|
|
137528
|
-
|
|
137529
|
-
technical_interview_count?: IntFieldUpdateOperationsInput | number
|
|
137792
|
+
screening_count?: IntFieldUpdateOperationsInput | number
|
|
137793
|
+
business_screening_count?: IntFieldUpdateOperationsInput | number
|
|
137530
137794
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
137531
137795
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
137532
137796
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -137544,9 +137808,8 @@ export namespace Prisma {
|
|
|
137544
137808
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137545
137809
|
filtered_in_count?: IntFieldUpdateOperationsInput | number
|
|
137546
137810
|
min_fit_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
137547
|
-
|
|
137548
|
-
|
|
137549
|
-
technical_interview_count?: IntFieldUpdateOperationsInput | number
|
|
137811
|
+
screening_count?: IntFieldUpdateOperationsInput | number
|
|
137812
|
+
business_screening_count?: IntFieldUpdateOperationsInput | number
|
|
137550
137813
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
137551
137814
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
137552
137815
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -137565,9 +137828,8 @@ export namespace Prisma {
|
|
|
137565
137828
|
application_count?: number
|
|
137566
137829
|
filtered_in_count?: number
|
|
137567
137830
|
min_fit_score?: number | null
|
|
137568
|
-
|
|
137569
|
-
|
|
137570
|
-
technical_interview_count?: number
|
|
137831
|
+
screening_count?: number
|
|
137832
|
+
business_screening_count?: number
|
|
137571
137833
|
business_round_count?: number
|
|
137572
137834
|
behavioral_round_count?: number
|
|
137573
137835
|
shortlisted_count?: number
|
|
@@ -137585,9 +137847,8 @@ export namespace Prisma {
|
|
|
137585
137847
|
application_count?: number
|
|
137586
137848
|
filtered_in_count?: number
|
|
137587
137849
|
min_fit_score?: number | null
|
|
137588
|
-
|
|
137589
|
-
|
|
137590
|
-
technical_interview_count?: number
|
|
137850
|
+
screening_count?: number
|
|
137851
|
+
business_screening_count?: number
|
|
137591
137852
|
business_round_count?: number
|
|
137592
137853
|
behavioral_round_count?: number
|
|
137593
137854
|
shortlisted_count?: number
|
|
@@ -137605,9 +137866,8 @@ export namespace Prisma {
|
|
|
137605
137866
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137606
137867
|
filtered_in_count?: IntFieldUpdateOperationsInput | number
|
|
137607
137868
|
min_fit_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
137608
|
-
|
|
137609
|
-
|
|
137610
|
-
technical_interview_count?: IntFieldUpdateOperationsInput | number
|
|
137869
|
+
screening_count?: IntFieldUpdateOperationsInput | number
|
|
137870
|
+
business_screening_count?: IntFieldUpdateOperationsInput | number
|
|
137611
137871
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
137612
137872
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
137613
137873
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -137625,9 +137885,8 @@ export namespace Prisma {
|
|
|
137625
137885
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137626
137886
|
filtered_in_count?: IntFieldUpdateOperationsInput | number
|
|
137627
137887
|
min_fit_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
137628
|
-
|
|
137629
|
-
|
|
137630
|
-
technical_interview_count?: IntFieldUpdateOperationsInput | number
|
|
137888
|
+
screening_count?: IntFieldUpdateOperationsInput | number
|
|
137889
|
+
business_screening_count?: IntFieldUpdateOperationsInput | number
|
|
137631
137890
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
137632
137891
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
137633
137892
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -137645,9 +137904,8 @@ export namespace Prisma {
|
|
|
137645
137904
|
application_count?: number
|
|
137646
137905
|
filtered_in_count?: number
|
|
137647
137906
|
min_fit_score?: number | null
|
|
137648
|
-
|
|
137649
|
-
|
|
137650
|
-
technical_interview_count?: number
|
|
137907
|
+
screening_count?: number
|
|
137908
|
+
business_screening_count?: number
|
|
137651
137909
|
business_round_count?: number
|
|
137652
137910
|
behavioral_round_count?: number
|
|
137653
137911
|
shortlisted_count?: number
|
|
@@ -137665,9 +137923,8 @@ export namespace Prisma {
|
|
|
137665
137923
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137666
137924
|
filtered_in_count?: IntFieldUpdateOperationsInput | number
|
|
137667
137925
|
min_fit_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
137668
|
-
|
|
137669
|
-
|
|
137670
|
-
technical_interview_count?: IntFieldUpdateOperationsInput | number
|
|
137926
|
+
screening_count?: IntFieldUpdateOperationsInput | number
|
|
137927
|
+
business_screening_count?: IntFieldUpdateOperationsInput | number
|
|
137671
137928
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
137672
137929
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
137673
137930
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -137685,9 +137942,8 @@ export namespace Prisma {
|
|
|
137685
137942
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137686
137943
|
filtered_in_count?: IntFieldUpdateOperationsInput | number
|
|
137687
137944
|
min_fit_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
137688
|
-
|
|
137689
|
-
|
|
137690
|
-
technical_interview_count?: IntFieldUpdateOperationsInput | number
|
|
137945
|
+
screening_count?: IntFieldUpdateOperationsInput | number
|
|
137946
|
+
business_screening_count?: IntFieldUpdateOperationsInput | number
|
|
137691
137947
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
137692
137948
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
137693
137949
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -138965,6 +139221,7 @@ export namespace Prisma {
|
|
|
138965
139221
|
screened_count?: number
|
|
138966
139222
|
evaluated_count?: number
|
|
138967
139223
|
rejected_count?: number
|
|
139224
|
+
on_hold_count?: number
|
|
138968
139225
|
shortlisted_count?: number
|
|
138969
139226
|
offered_count?: number
|
|
138970
139227
|
offer_accepted_count?: number
|
|
@@ -138993,6 +139250,7 @@ export namespace Prisma {
|
|
|
138993
139250
|
screened_count?: number
|
|
138994
139251
|
evaluated_count?: number
|
|
138995
139252
|
rejected_count?: number
|
|
139253
|
+
on_hold_count?: number
|
|
138996
139254
|
shortlisted_count?: number
|
|
138997
139255
|
offered_count?: number
|
|
138998
139256
|
offer_accepted_count?: number
|
|
@@ -139021,6 +139279,7 @@ export namespace Prisma {
|
|
|
139021
139279
|
screened_count?: IntFieldUpdateOperationsInput | number
|
|
139022
139280
|
evaluated_count?: IntFieldUpdateOperationsInput | number
|
|
139023
139281
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
139282
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
139024
139283
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
139025
139284
|
offered_count?: IntFieldUpdateOperationsInput | number
|
|
139026
139285
|
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -139049,6 +139308,7 @@ export namespace Prisma {
|
|
|
139049
139308
|
screened_count?: IntFieldUpdateOperationsInput | number
|
|
139050
139309
|
evaluated_count?: IntFieldUpdateOperationsInput | number
|
|
139051
139310
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
139311
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
139052
139312
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
139053
139313
|
offered_count?: IntFieldUpdateOperationsInput | number
|
|
139054
139314
|
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -139077,6 +139337,7 @@ export namespace Prisma {
|
|
|
139077
139337
|
screened_count?: number
|
|
139078
139338
|
evaluated_count?: number
|
|
139079
139339
|
rejected_count?: number
|
|
139340
|
+
on_hold_count?: number
|
|
139080
139341
|
shortlisted_count?: number
|
|
139081
139342
|
offered_count?: number
|
|
139082
139343
|
offer_accepted_count?: number
|
|
@@ -139105,6 +139366,7 @@ export namespace Prisma {
|
|
|
139105
139366
|
screened_count?: IntFieldUpdateOperationsInput | number
|
|
139106
139367
|
evaluated_count?: IntFieldUpdateOperationsInput | number
|
|
139107
139368
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
139369
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
139108
139370
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
139109
139371
|
offered_count?: IntFieldUpdateOperationsInput | number
|
|
139110
139372
|
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -139133,6 +139395,7 @@ export namespace Prisma {
|
|
|
139133
139395
|
screened_count?: IntFieldUpdateOperationsInput | number
|
|
139134
139396
|
evaluated_count?: IntFieldUpdateOperationsInput | number
|
|
139135
139397
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
139398
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
139136
139399
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
139137
139400
|
offered_count?: IntFieldUpdateOperationsInput | number
|
|
139138
139401
|
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -139162,6 +139425,7 @@ export namespace Prisma {
|
|
|
139162
139425
|
screened_count?: number
|
|
139163
139426
|
evaluated_count?: number
|
|
139164
139427
|
rejected_count?: number
|
|
139428
|
+
on_hold_count?: number
|
|
139165
139429
|
shortlisted_count?: number
|
|
139166
139430
|
offered_count?: number
|
|
139167
139431
|
offer_accepted_count?: number
|
|
@@ -139190,6 +139454,7 @@ export namespace Prisma {
|
|
|
139190
139454
|
screened_count?: number
|
|
139191
139455
|
evaluated_count?: number
|
|
139192
139456
|
rejected_count?: number
|
|
139457
|
+
on_hold_count?: number
|
|
139193
139458
|
shortlisted_count?: number
|
|
139194
139459
|
offered_count?: number
|
|
139195
139460
|
offer_accepted_count?: number
|
|
@@ -139218,6 +139483,7 @@ export namespace Prisma {
|
|
|
139218
139483
|
screened_count?: IntFieldUpdateOperationsInput | number
|
|
139219
139484
|
evaluated_count?: IntFieldUpdateOperationsInput | number
|
|
139220
139485
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
139486
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
139221
139487
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
139222
139488
|
offered_count?: IntFieldUpdateOperationsInput | number
|
|
139223
139489
|
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -139246,6 +139512,7 @@ export namespace Prisma {
|
|
|
139246
139512
|
screened_count?: IntFieldUpdateOperationsInput | number
|
|
139247
139513
|
evaluated_count?: IntFieldUpdateOperationsInput | number
|
|
139248
139514
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
139515
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
139249
139516
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
139250
139517
|
offered_count?: IntFieldUpdateOperationsInput | number
|
|
139251
139518
|
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -139274,6 +139541,7 @@ export namespace Prisma {
|
|
|
139274
139541
|
screened_count?: number
|
|
139275
139542
|
evaluated_count?: number
|
|
139276
139543
|
rejected_count?: number
|
|
139544
|
+
on_hold_count?: number
|
|
139277
139545
|
shortlisted_count?: number
|
|
139278
139546
|
offered_count?: number
|
|
139279
139547
|
offer_accepted_count?: number
|
|
@@ -139302,6 +139570,7 @@ export namespace Prisma {
|
|
|
139302
139570
|
screened_count?: IntFieldUpdateOperationsInput | number
|
|
139303
139571
|
evaluated_count?: IntFieldUpdateOperationsInput | number
|
|
139304
139572
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
139573
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
139305
139574
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
139306
139575
|
offered_count?: IntFieldUpdateOperationsInput | number
|
|
139307
139576
|
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -139330,6 +139599,7 @@ export namespace Prisma {
|
|
|
139330
139599
|
screened_count?: IntFieldUpdateOperationsInput | number
|
|
139331
139600
|
evaluated_count?: IntFieldUpdateOperationsInput | number
|
|
139332
139601
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
139602
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
139333
139603
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
139334
139604
|
offered_count?: IntFieldUpdateOperationsInput | number
|
|
139335
139605
|
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -141035,6 +141305,8 @@ export namespace Prisma {
|
|
|
141035
141305
|
is_evaluated?: SortOrder
|
|
141036
141306
|
is_rejected?: SortOrder
|
|
141037
141307
|
is_shortlisted?: SortOrder
|
|
141308
|
+
is_on_hold?: SortOrder
|
|
141309
|
+
is_withdrawn?: SortOrder
|
|
141038
141310
|
has_committed_evaluation?: SortOrder
|
|
141039
141311
|
updated_at?: SortOrder
|
|
141040
141312
|
}
|
|
@@ -141068,6 +141340,8 @@ export namespace Prisma {
|
|
|
141068
141340
|
is_evaluated?: SortOrder
|
|
141069
141341
|
is_rejected?: SortOrder
|
|
141070
141342
|
is_shortlisted?: SortOrder
|
|
141343
|
+
is_on_hold?: SortOrder
|
|
141344
|
+
is_withdrawn?: SortOrder
|
|
141071
141345
|
has_committed_evaluation?: SortOrder
|
|
141072
141346
|
updated_at?: SortOrder
|
|
141073
141347
|
}
|
|
@@ -141096,6 +141370,8 @@ export namespace Prisma {
|
|
|
141096
141370
|
is_evaluated?: SortOrder
|
|
141097
141371
|
is_rejected?: SortOrder
|
|
141098
141372
|
is_shortlisted?: SortOrder
|
|
141373
|
+
is_on_hold?: SortOrder
|
|
141374
|
+
is_withdrawn?: SortOrder
|
|
141099
141375
|
has_committed_evaluation?: SortOrder
|
|
141100
141376
|
updated_at?: SortOrder
|
|
141101
141377
|
}
|
|
@@ -141171,6 +141447,8 @@ export namespace Prisma {
|
|
|
141171
141447
|
is_evaluated?: SortOrder
|
|
141172
141448
|
is_rejected?: SortOrder
|
|
141173
141449
|
is_shortlisted?: SortOrder
|
|
141450
|
+
is_on_hold?: SortOrder
|
|
141451
|
+
is_withdrawn?: SortOrder
|
|
141174
141452
|
has_committed_evaluation?: SortOrder
|
|
141175
141453
|
}
|
|
141176
141454
|
|
|
@@ -141204,6 +141482,8 @@ export namespace Prisma {
|
|
|
141204
141482
|
is_evaluated?: SortOrder
|
|
141205
141483
|
is_rejected?: SortOrder
|
|
141206
141484
|
is_shortlisted?: SortOrder
|
|
141485
|
+
is_on_hold?: SortOrder
|
|
141486
|
+
is_withdrawn?: SortOrder
|
|
141207
141487
|
has_committed_evaluation?: SortOrder
|
|
141208
141488
|
}
|
|
141209
141489
|
|
|
@@ -141232,6 +141512,8 @@ export namespace Prisma {
|
|
|
141232
141512
|
is_evaluated?: SortOrder
|
|
141233
141513
|
is_rejected?: SortOrder
|
|
141234
141514
|
is_shortlisted?: SortOrder
|
|
141515
|
+
is_on_hold?: SortOrder
|
|
141516
|
+
is_withdrawn?: SortOrder
|
|
141235
141517
|
has_committed_evaluation?: SortOrder
|
|
141236
141518
|
}
|
|
141237
141519
|
|
|
@@ -143434,6 +143716,7 @@ export namespace Prisma {
|
|
|
143434
143716
|
title?: SortOrder
|
|
143435
143717
|
description?: SortOrder
|
|
143436
143718
|
format?: SortOrder
|
|
143719
|
+
focus_areas?: SortOrder
|
|
143437
143720
|
topics?: SortOrder
|
|
143438
143721
|
assignee?: SortOrder
|
|
143439
143722
|
elimination_round?: SortOrder
|
|
@@ -146028,6 +146311,7 @@ export namespace Prisma {
|
|
|
146028
146311
|
order_no?: SortOrder
|
|
146029
146312
|
format?: SortOrder
|
|
146030
146313
|
round_purpose?: SortOrder
|
|
146314
|
+
focus_areas?: SortOrder
|
|
146031
146315
|
topics?: SortOrder
|
|
146032
146316
|
assignee?: SortOrder
|
|
146033
146317
|
elimination_round?: SortOrder
|
|
@@ -146183,6 +146467,8 @@ export namespace Prisma {
|
|
|
146183
146467
|
ongoing_count?: SortOrder
|
|
146184
146468
|
selected_count?: SortOrder
|
|
146185
146469
|
rejected_count?: SortOrder
|
|
146470
|
+
on_hold_count?: SortOrder
|
|
146471
|
+
withdrawn_count?: SortOrder
|
|
146186
146472
|
updated_at?: SortOrder
|
|
146187
146473
|
}
|
|
146188
146474
|
|
|
@@ -146195,6 +146481,8 @@ export namespace Prisma {
|
|
|
146195
146481
|
ongoing_count?: SortOrder
|
|
146196
146482
|
selected_count?: SortOrder
|
|
146197
146483
|
rejected_count?: SortOrder
|
|
146484
|
+
on_hold_count?: SortOrder
|
|
146485
|
+
withdrawn_count?: SortOrder
|
|
146198
146486
|
}
|
|
146199
146487
|
|
|
146200
146488
|
export type OpenJobAnalyticsMaxOrderByAggregateInput = {
|
|
@@ -146221,6 +146509,8 @@ export namespace Prisma {
|
|
|
146221
146509
|
ongoing_count?: SortOrder
|
|
146222
146510
|
selected_count?: SortOrder
|
|
146223
146511
|
rejected_count?: SortOrder
|
|
146512
|
+
on_hold_count?: SortOrder
|
|
146513
|
+
withdrawn_count?: SortOrder
|
|
146224
146514
|
updated_at?: SortOrder
|
|
146225
146515
|
}
|
|
146226
146516
|
|
|
@@ -146248,6 +146538,8 @@ export namespace Prisma {
|
|
|
146248
146538
|
ongoing_count?: SortOrder
|
|
146249
146539
|
selected_count?: SortOrder
|
|
146250
146540
|
rejected_count?: SortOrder
|
|
146541
|
+
on_hold_count?: SortOrder
|
|
146542
|
+
withdrawn_count?: SortOrder
|
|
146251
146543
|
updated_at?: SortOrder
|
|
146252
146544
|
}
|
|
146253
146545
|
|
|
@@ -146260,6 +146552,8 @@ export namespace Prisma {
|
|
|
146260
146552
|
ongoing_count?: SortOrder
|
|
146261
146553
|
selected_count?: SortOrder
|
|
146262
146554
|
rejected_count?: SortOrder
|
|
146555
|
+
on_hold_count?: SortOrder
|
|
146556
|
+
withdrawn_count?: SortOrder
|
|
146263
146557
|
}
|
|
146264
146558
|
|
|
146265
146559
|
export type EnumOpenJobClosureTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -146302,6 +146596,8 @@ export namespace Prisma {
|
|
|
146302
146596
|
ongoing_count?: SortOrder
|
|
146303
146597
|
selected_count?: SortOrder
|
|
146304
146598
|
rejected_count?: SortOrder
|
|
146599
|
+
on_hold_count?: SortOrder
|
|
146600
|
+
withdrawn_count?: SortOrder
|
|
146305
146601
|
}
|
|
146306
146602
|
|
|
146307
146603
|
export type OpenJobAnalyticsDailyAvgOrderByAggregateInput = {
|
|
@@ -146313,6 +146609,8 @@ export namespace Prisma {
|
|
|
146313
146609
|
ongoing_count?: SortOrder
|
|
146314
146610
|
selected_count?: SortOrder
|
|
146315
146611
|
rejected_count?: SortOrder
|
|
146612
|
+
on_hold_count?: SortOrder
|
|
146613
|
+
withdrawn_count?: SortOrder
|
|
146316
146614
|
}
|
|
146317
146615
|
|
|
146318
146616
|
export type OpenJobAnalyticsDailyMaxOrderByAggregateInput = {
|
|
@@ -146340,6 +146638,8 @@ export namespace Prisma {
|
|
|
146340
146638
|
ongoing_count?: SortOrder
|
|
146341
146639
|
selected_count?: SortOrder
|
|
146342
146640
|
rejected_count?: SortOrder
|
|
146641
|
+
on_hold_count?: SortOrder
|
|
146642
|
+
withdrawn_count?: SortOrder
|
|
146343
146643
|
}
|
|
146344
146644
|
|
|
146345
146645
|
export type OpenJobAnalyticsDailyMinOrderByAggregateInput = {
|
|
@@ -146367,6 +146667,8 @@ export namespace Prisma {
|
|
|
146367
146667
|
ongoing_count?: SortOrder
|
|
146368
146668
|
selected_count?: SortOrder
|
|
146369
146669
|
rejected_count?: SortOrder
|
|
146670
|
+
on_hold_count?: SortOrder
|
|
146671
|
+
withdrawn_count?: SortOrder
|
|
146370
146672
|
}
|
|
146371
146673
|
|
|
146372
146674
|
export type OpenJobAnalyticsDailySumOrderByAggregateInput = {
|
|
@@ -146378,6 +146680,8 @@ export namespace Prisma {
|
|
|
146378
146680
|
ongoing_count?: SortOrder
|
|
146379
146681
|
selected_count?: SortOrder
|
|
146380
146682
|
rejected_count?: SortOrder
|
|
146683
|
+
on_hold_count?: SortOrder
|
|
146684
|
+
withdrawn_count?: SortOrder
|
|
146381
146685
|
}
|
|
146382
146686
|
|
|
146383
146687
|
export type EnumOrganisationSizeFilter<$PrismaModel = never> = {
|
|
@@ -146666,9 +146970,8 @@ export namespace Prisma {
|
|
|
146666
146970
|
application_count?: SortOrder
|
|
146667
146971
|
filtered_in_count?: SortOrder
|
|
146668
146972
|
min_fit_score?: SortOrder
|
|
146669
|
-
|
|
146670
|
-
|
|
146671
|
-
technical_interview_count?: SortOrder
|
|
146973
|
+
screening_count?: SortOrder
|
|
146974
|
+
business_screening_count?: SortOrder
|
|
146672
146975
|
business_round_count?: SortOrder
|
|
146673
146976
|
behavioral_round_count?: SortOrder
|
|
146674
146977
|
shortlisted_count?: SortOrder
|
|
@@ -146680,9 +146983,8 @@ export namespace Prisma {
|
|
|
146680
146983
|
application_count?: SortOrder
|
|
146681
146984
|
filtered_in_count?: SortOrder
|
|
146682
146985
|
min_fit_score?: SortOrder
|
|
146683
|
-
|
|
146684
|
-
|
|
146685
|
-
technical_interview_count?: SortOrder
|
|
146986
|
+
screening_count?: SortOrder
|
|
146987
|
+
business_screening_count?: SortOrder
|
|
146686
146988
|
business_round_count?: SortOrder
|
|
146687
146989
|
behavioral_round_count?: SortOrder
|
|
146688
146990
|
shortlisted_count?: SortOrder
|
|
@@ -146699,9 +147001,8 @@ export namespace Prisma {
|
|
|
146699
147001
|
application_count?: SortOrder
|
|
146700
147002
|
filtered_in_count?: SortOrder
|
|
146701
147003
|
min_fit_score?: SortOrder
|
|
146702
|
-
|
|
146703
|
-
|
|
146704
|
-
technical_interview_count?: SortOrder
|
|
147004
|
+
screening_count?: SortOrder
|
|
147005
|
+
business_screening_count?: SortOrder
|
|
146705
147006
|
business_round_count?: SortOrder
|
|
146706
147007
|
behavioral_round_count?: SortOrder
|
|
146707
147008
|
shortlisted_count?: SortOrder
|
|
@@ -146719,9 +147020,8 @@ export namespace Prisma {
|
|
|
146719
147020
|
application_count?: SortOrder
|
|
146720
147021
|
filtered_in_count?: SortOrder
|
|
146721
147022
|
min_fit_score?: SortOrder
|
|
146722
|
-
|
|
146723
|
-
|
|
146724
|
-
technical_interview_count?: SortOrder
|
|
147023
|
+
screening_count?: SortOrder
|
|
147024
|
+
business_screening_count?: SortOrder
|
|
146725
147025
|
business_round_count?: SortOrder
|
|
146726
147026
|
behavioral_round_count?: SortOrder
|
|
146727
147027
|
shortlisted_count?: SortOrder
|
|
@@ -146733,9 +147033,8 @@ export namespace Prisma {
|
|
|
146733
147033
|
application_count?: SortOrder
|
|
146734
147034
|
filtered_in_count?: SortOrder
|
|
146735
147035
|
min_fit_score?: SortOrder
|
|
146736
|
-
|
|
146737
|
-
|
|
146738
|
-
technical_interview_count?: SortOrder
|
|
147036
|
+
screening_count?: SortOrder
|
|
147037
|
+
business_screening_count?: SortOrder
|
|
146739
147038
|
business_round_count?: SortOrder
|
|
146740
147039
|
behavioral_round_count?: SortOrder
|
|
146741
147040
|
shortlisted_count?: SortOrder
|
|
@@ -146758,9 +147057,8 @@ export namespace Prisma {
|
|
|
146758
147057
|
application_count?: SortOrder
|
|
146759
147058
|
filtered_in_count?: SortOrder
|
|
146760
147059
|
min_fit_score?: SortOrder
|
|
146761
|
-
|
|
146762
|
-
|
|
146763
|
-
technical_interview_count?: SortOrder
|
|
147060
|
+
screening_count?: SortOrder
|
|
147061
|
+
business_screening_count?: SortOrder
|
|
146764
147062
|
business_round_count?: SortOrder
|
|
146765
147063
|
behavioral_round_count?: SortOrder
|
|
146766
147064
|
shortlisted_count?: SortOrder
|
|
@@ -146771,9 +147069,8 @@ export namespace Prisma {
|
|
|
146771
147069
|
application_count?: SortOrder
|
|
146772
147070
|
filtered_in_count?: SortOrder
|
|
146773
147071
|
min_fit_score?: SortOrder
|
|
146774
|
-
|
|
146775
|
-
|
|
146776
|
-
technical_interview_count?: SortOrder
|
|
147072
|
+
screening_count?: SortOrder
|
|
147073
|
+
business_screening_count?: SortOrder
|
|
146777
147074
|
business_round_count?: SortOrder
|
|
146778
147075
|
behavioral_round_count?: SortOrder
|
|
146779
147076
|
shortlisted_count?: SortOrder
|
|
@@ -146791,9 +147088,8 @@ export namespace Prisma {
|
|
|
146791
147088
|
application_count?: SortOrder
|
|
146792
147089
|
filtered_in_count?: SortOrder
|
|
146793
147090
|
min_fit_score?: SortOrder
|
|
146794
|
-
|
|
146795
|
-
|
|
146796
|
-
technical_interview_count?: SortOrder
|
|
147091
|
+
screening_count?: SortOrder
|
|
147092
|
+
business_screening_count?: SortOrder
|
|
146797
147093
|
business_round_count?: SortOrder
|
|
146798
147094
|
behavioral_round_count?: SortOrder
|
|
146799
147095
|
shortlisted_count?: SortOrder
|
|
@@ -146811,9 +147107,8 @@ export namespace Prisma {
|
|
|
146811
147107
|
application_count?: SortOrder
|
|
146812
147108
|
filtered_in_count?: SortOrder
|
|
146813
147109
|
min_fit_score?: SortOrder
|
|
146814
|
-
|
|
146815
|
-
|
|
146816
|
-
technical_interview_count?: SortOrder
|
|
147110
|
+
screening_count?: SortOrder
|
|
147111
|
+
business_screening_count?: SortOrder
|
|
146817
147112
|
business_round_count?: SortOrder
|
|
146818
147113
|
behavioral_round_count?: SortOrder
|
|
146819
147114
|
shortlisted_count?: SortOrder
|
|
@@ -146824,9 +147119,8 @@ export namespace Prisma {
|
|
|
146824
147119
|
application_count?: SortOrder
|
|
146825
147120
|
filtered_in_count?: SortOrder
|
|
146826
147121
|
min_fit_score?: SortOrder
|
|
146827
|
-
|
|
146828
|
-
|
|
146829
|
-
technical_interview_count?: SortOrder
|
|
147122
|
+
screening_count?: SortOrder
|
|
147123
|
+
business_screening_count?: SortOrder
|
|
146830
147124
|
business_round_count?: SortOrder
|
|
146831
147125
|
behavioral_round_count?: SortOrder
|
|
146832
147126
|
shortlisted_count?: SortOrder
|
|
@@ -147520,6 +147814,7 @@ export namespace Prisma {
|
|
|
147520
147814
|
screened_count?: SortOrder
|
|
147521
147815
|
evaluated_count?: SortOrder
|
|
147522
147816
|
rejected_count?: SortOrder
|
|
147817
|
+
on_hold_count?: SortOrder
|
|
147523
147818
|
shortlisted_count?: SortOrder
|
|
147524
147819
|
offered_count?: SortOrder
|
|
147525
147820
|
offer_accepted_count?: SortOrder
|
|
@@ -147538,6 +147833,7 @@ export namespace Prisma {
|
|
|
147538
147833
|
screened_count?: SortOrder
|
|
147539
147834
|
evaluated_count?: SortOrder
|
|
147540
147835
|
rejected_count?: SortOrder
|
|
147836
|
+
on_hold_count?: SortOrder
|
|
147541
147837
|
shortlisted_count?: SortOrder
|
|
147542
147838
|
offered_count?: SortOrder
|
|
147543
147839
|
offer_accepted_count?: SortOrder
|
|
@@ -147565,6 +147861,7 @@ export namespace Prisma {
|
|
|
147565
147861
|
screened_count?: SortOrder
|
|
147566
147862
|
evaluated_count?: SortOrder
|
|
147567
147863
|
rejected_count?: SortOrder
|
|
147864
|
+
on_hold_count?: SortOrder
|
|
147568
147865
|
shortlisted_count?: SortOrder
|
|
147569
147866
|
offered_count?: SortOrder
|
|
147570
147867
|
offer_accepted_count?: SortOrder
|
|
@@ -147593,6 +147890,7 @@ export namespace Prisma {
|
|
|
147593
147890
|
screened_count?: SortOrder
|
|
147594
147891
|
evaluated_count?: SortOrder
|
|
147595
147892
|
rejected_count?: SortOrder
|
|
147893
|
+
on_hold_count?: SortOrder
|
|
147596
147894
|
shortlisted_count?: SortOrder
|
|
147597
147895
|
offered_count?: SortOrder
|
|
147598
147896
|
offer_accepted_count?: SortOrder
|
|
@@ -147611,6 +147909,7 @@ export namespace Prisma {
|
|
|
147611
147909
|
screened_count?: SortOrder
|
|
147612
147910
|
evaluated_count?: SortOrder
|
|
147613
147911
|
rejected_count?: SortOrder
|
|
147912
|
+
on_hold_count?: SortOrder
|
|
147614
147913
|
shortlisted_count?: SortOrder
|
|
147615
147914
|
offered_count?: SortOrder
|
|
147616
147915
|
offer_accepted_count?: SortOrder
|
|
@@ -147646,6 +147945,7 @@ export namespace Prisma {
|
|
|
147646
147945
|
screened_count?: SortOrder
|
|
147647
147946
|
evaluated_count?: SortOrder
|
|
147648
147947
|
rejected_count?: SortOrder
|
|
147948
|
+
on_hold_count?: SortOrder
|
|
147649
147949
|
shortlisted_count?: SortOrder
|
|
147650
147950
|
offered_count?: SortOrder
|
|
147651
147951
|
offer_accepted_count?: SortOrder
|
|
@@ -147663,6 +147963,7 @@ export namespace Prisma {
|
|
|
147663
147963
|
screened_count?: SortOrder
|
|
147664
147964
|
evaluated_count?: SortOrder
|
|
147665
147965
|
rejected_count?: SortOrder
|
|
147966
|
+
on_hold_count?: SortOrder
|
|
147666
147967
|
shortlisted_count?: SortOrder
|
|
147667
147968
|
offered_count?: SortOrder
|
|
147668
147969
|
offer_accepted_count?: SortOrder
|
|
@@ -147691,6 +147992,7 @@ export namespace Prisma {
|
|
|
147691
147992
|
screened_count?: SortOrder
|
|
147692
147993
|
evaluated_count?: SortOrder
|
|
147693
147994
|
rejected_count?: SortOrder
|
|
147995
|
+
on_hold_count?: SortOrder
|
|
147694
147996
|
shortlisted_count?: SortOrder
|
|
147695
147997
|
offered_count?: SortOrder
|
|
147696
147998
|
offer_accepted_count?: SortOrder
|
|
@@ -147719,6 +148021,7 @@ export namespace Prisma {
|
|
|
147719
148021
|
screened_count?: SortOrder
|
|
147720
148022
|
evaluated_count?: SortOrder
|
|
147721
148023
|
rejected_count?: SortOrder
|
|
148024
|
+
on_hold_count?: SortOrder
|
|
147722
148025
|
shortlisted_count?: SortOrder
|
|
147723
148026
|
offered_count?: SortOrder
|
|
147724
148027
|
offer_accepted_count?: SortOrder
|
|
@@ -147736,6 +148039,7 @@ export namespace Prisma {
|
|
|
147736
148039
|
screened_count?: SortOrder
|
|
147737
148040
|
evaluated_count?: SortOrder
|
|
147738
148041
|
rejected_count?: SortOrder
|
|
148042
|
+
on_hold_count?: SortOrder
|
|
147739
148043
|
shortlisted_count?: SortOrder
|
|
147740
148044
|
offered_count?: SortOrder
|
|
147741
148045
|
offer_accepted_count?: SortOrder
|
|
@@ -150403,6 +150707,10 @@ export namespace Prisma {
|
|
|
150403
150707
|
update?: XOR<XOR<AssignmentUpdateToOneWithWhereWithoutZip_documentInput, AssignmentUpdateWithoutZip_documentInput>, AssignmentUncheckedUpdateWithoutZip_documentInput>
|
|
150404
150708
|
}
|
|
150405
150709
|
|
|
150710
|
+
export type EvaluationPlanCreatefocus_areasInput = {
|
|
150711
|
+
set: string[]
|
|
150712
|
+
}
|
|
150713
|
+
|
|
150406
150714
|
export type EvaluationPlanCreatetopicsInput = {
|
|
150407
150715
|
set: string[]
|
|
150408
150716
|
}
|
|
@@ -150481,6 +150789,11 @@ export namespace Prisma {
|
|
|
150481
150789
|
connect?: OngoingEvaluationWhereUniqueInput | OngoingEvaluationWhereUniqueInput[]
|
|
150482
150790
|
}
|
|
150483
150791
|
|
|
150792
|
+
export type EvaluationPlanUpdatefocus_areasInput = {
|
|
150793
|
+
set?: string[]
|
|
150794
|
+
push?: string | string[]
|
|
150795
|
+
}
|
|
150796
|
+
|
|
150484
150797
|
export type EvaluationPlanUpdatetopicsInput = {
|
|
150485
150798
|
set?: string[]
|
|
150486
150799
|
push?: string | string[]
|
|
@@ -152606,6 +152919,10 @@ export namespace Prisma {
|
|
|
152606
152919
|
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutNotesInput, UserUpdateWithoutNotesInput>, UserUncheckedUpdateWithoutNotesInput>
|
|
152607
152920
|
}
|
|
152608
152921
|
|
|
152922
|
+
export type OngoingEvaluationCreatefocus_areasInput = {
|
|
152923
|
+
set: string[]
|
|
152924
|
+
}
|
|
152925
|
+
|
|
152609
152926
|
export type OngoingEvaluationCreatetopicsInput = {
|
|
152610
152927
|
set: string[]
|
|
152611
152928
|
}
|
|
@@ -152678,6 +152995,11 @@ export namespace Prisma {
|
|
|
152678
152995
|
set?: $Enums.OngoingEvaluationRoundStatus | null
|
|
152679
152996
|
}
|
|
152680
152997
|
|
|
152998
|
+
export type OngoingEvaluationUpdatefocus_areasInput = {
|
|
152999
|
+
set?: string[]
|
|
153000
|
+
push?: string | string[]
|
|
153001
|
+
}
|
|
153002
|
+
|
|
152681
153003
|
export type OngoingEvaluationUpdatetopicsInput = {
|
|
152682
153004
|
set?: string[]
|
|
152683
153005
|
push?: string | string[]
|
|
@@ -159869,6 +160191,7 @@ export namespace Prisma {
|
|
|
159869
160191
|
title: string
|
|
159870
160192
|
description?: string | null
|
|
159871
160193
|
format?: $Enums.EvaluationRoundFormat | null
|
|
160194
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
159872
160195
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
159873
160196
|
assignee?: string | null
|
|
159874
160197
|
elimination_round?: boolean
|
|
@@ -159905,6 +160228,7 @@ export namespace Prisma {
|
|
|
159905
160228
|
title: string
|
|
159906
160229
|
description?: string | null
|
|
159907
160230
|
format?: $Enums.EvaluationRoundFormat | null
|
|
160231
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
159908
160232
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
159909
160233
|
assignee?: string | null
|
|
159910
160234
|
elimination_round?: boolean
|
|
@@ -160795,6 +161119,7 @@ export namespace Prisma {
|
|
|
160795
161119
|
order_no?: number | null
|
|
160796
161120
|
format?: $Enums.EvaluationRoundFormat | null
|
|
160797
161121
|
round_purpose?: string | null
|
|
161122
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
160798
161123
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
160799
161124
|
assignee?: string | null
|
|
160800
161125
|
elimination_round?: boolean | null
|
|
@@ -160841,6 +161166,7 @@ export namespace Prisma {
|
|
|
160841
161166
|
order_no?: number | null
|
|
160842
161167
|
format?: $Enums.EvaluationRoundFormat | null
|
|
160843
161168
|
round_purpose?: string | null
|
|
161169
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
160844
161170
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
160845
161171
|
assignee?: string | null
|
|
160846
161172
|
elimination_round?: boolean | null
|
|
@@ -161118,6 +161444,7 @@ export namespace Prisma {
|
|
|
161118
161444
|
title?: StringFieldUpdateOperationsInput | string
|
|
161119
161445
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
161120
161446
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
161447
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
161121
161448
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
161122
161449
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
161123
161450
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -161154,6 +161481,7 @@ export namespace Prisma {
|
|
|
161154
161481
|
title?: StringFieldUpdateOperationsInput | string
|
|
161155
161482
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
161156
161483
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
161484
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
161157
161485
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
161158
161486
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
161159
161487
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -162042,6 +162370,7 @@ export namespace Prisma {
|
|
|
162042
162370
|
order_no?: IntNullableFilter<"OngoingEvaluation"> | number | null
|
|
162043
162371
|
format?: EnumEvaluationRoundFormatNullableFilter<"OngoingEvaluation"> | $Enums.EvaluationRoundFormat | null
|
|
162044
162372
|
round_purpose?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
162373
|
+
focus_areas?: StringNullableListFilter<"OngoingEvaluation">
|
|
162045
162374
|
topics?: StringNullableListFilter<"OngoingEvaluation">
|
|
162046
162375
|
assignee?: StringNullableFilter<"OngoingEvaluation"> | string | null
|
|
162047
162376
|
elimination_round?: BoolNullableFilter<"OngoingEvaluation"> | boolean | null
|
|
@@ -163650,6 +163979,7 @@ export namespace Prisma {
|
|
|
163650
163979
|
order_no?: number | null
|
|
163651
163980
|
format?: $Enums.EvaluationRoundFormat | null
|
|
163652
163981
|
round_purpose?: string | null
|
|
163982
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
163653
163983
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
163654
163984
|
assignee?: string | null
|
|
163655
163985
|
elimination_round?: boolean | null
|
|
@@ -163696,6 +164026,7 @@ export namespace Prisma {
|
|
|
163696
164026
|
order_no?: number | null
|
|
163697
164027
|
format?: $Enums.EvaluationRoundFormat | null
|
|
163698
164028
|
round_purpose?: string | null
|
|
164029
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
163699
164030
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
163700
164031
|
assignee?: string | null
|
|
163701
164032
|
elimination_round?: boolean | null
|
|
@@ -164438,6 +164769,7 @@ export namespace Prisma {
|
|
|
164438
164769
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
164439
164770
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
164440
164771
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
164772
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
164441
164773
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
164442
164774
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
164443
164775
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -164484,6 +164816,7 @@ export namespace Prisma {
|
|
|
164484
164816
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
164485
164817
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
164486
164818
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
164819
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
164487
164820
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
164488
164821
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
164489
164822
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -164715,6 +165048,7 @@ export namespace Prisma {
|
|
|
164715
165048
|
title: string
|
|
164716
165049
|
description?: string | null
|
|
164717
165050
|
format?: $Enums.EvaluationRoundFormat | null
|
|
165051
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
164718
165052
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
164719
165053
|
assignee?: string | null
|
|
164720
165054
|
elimination_round?: boolean
|
|
@@ -164750,6 +165084,7 @@ export namespace Prisma {
|
|
|
164750
165084
|
title: string
|
|
164751
165085
|
description?: string | null
|
|
164752
165086
|
format?: $Enums.EvaluationRoundFormat | null
|
|
165087
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
164753
165088
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
164754
165089
|
assignee?: string | null
|
|
164755
165090
|
elimination_round?: boolean
|
|
@@ -164999,6 +165334,7 @@ export namespace Prisma {
|
|
|
164999
165334
|
title?: StringFilter<"EvaluationPlan"> | string
|
|
165000
165335
|
description?: StringNullableFilter<"EvaluationPlan"> | string | null
|
|
165001
165336
|
format?: EnumEvaluationRoundFormatNullableFilter<"EvaluationPlan"> | $Enums.EvaluationRoundFormat | null
|
|
165337
|
+
focus_areas?: StringNullableListFilter<"EvaluationPlan">
|
|
165002
165338
|
topics?: StringNullableListFilter<"EvaluationPlan">
|
|
165003
165339
|
assignee?: StringNullableFilter<"EvaluationPlan"> | string | null
|
|
165004
165340
|
elimination_round?: BoolFilter<"EvaluationPlan"> | boolean
|
|
@@ -165856,6 +166192,7 @@ export namespace Prisma {
|
|
|
165856
166192
|
order_no?: number | null
|
|
165857
166193
|
format?: $Enums.EvaluationRoundFormat | null
|
|
165858
166194
|
round_purpose?: string | null
|
|
166195
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
165859
166196
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
165860
166197
|
assignee?: string | null
|
|
165861
166198
|
elimination_round?: boolean | null
|
|
@@ -165903,6 +166240,7 @@ export namespace Prisma {
|
|
|
165903
166240
|
order_no?: number | null
|
|
165904
166241
|
format?: $Enums.EvaluationRoundFormat | null
|
|
165905
166242
|
round_purpose?: string | null
|
|
166243
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
165906
166244
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
165907
166245
|
assignee?: string | null
|
|
165908
166246
|
elimination_round?: boolean | null
|
|
@@ -166730,6 +167068,7 @@ export namespace Prisma {
|
|
|
166730
167068
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
166731
167069
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
166732
167070
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
167071
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
166733
167072
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
166734
167073
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166735
167074
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -166777,6 +167116,7 @@ export namespace Prisma {
|
|
|
166777
167116
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
166778
167117
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
166779
167118
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
167119
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
166780
167120
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
166781
167121
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
166782
167122
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -167132,6 +167472,7 @@ export namespace Prisma {
|
|
|
167132
167472
|
title: string
|
|
167133
167473
|
description?: string | null
|
|
167134
167474
|
format?: $Enums.EvaluationRoundFormat | null
|
|
167475
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
167135
167476
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
167136
167477
|
assignee?: string | null
|
|
167137
167478
|
elimination_round?: boolean
|
|
@@ -167167,6 +167508,7 @@ export namespace Prisma {
|
|
|
167167
167508
|
title: string
|
|
167168
167509
|
description?: string | null
|
|
167169
167510
|
format?: $Enums.EvaluationRoundFormat | null
|
|
167511
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
167170
167512
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
167171
167513
|
assignee?: string | null
|
|
167172
167514
|
elimination_round?: boolean
|
|
@@ -172927,6 +173269,7 @@ export namespace Prisma {
|
|
|
172927
173269
|
order_no?: number | null
|
|
172928
173270
|
format?: $Enums.EvaluationRoundFormat | null
|
|
172929
173271
|
round_purpose?: string | null
|
|
173272
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
172930
173273
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
172931
173274
|
assignee?: string | null
|
|
172932
173275
|
elimination_round?: boolean | null
|
|
@@ -172973,6 +173316,7 @@ export namespace Prisma {
|
|
|
172973
173316
|
order_no?: number | null
|
|
172974
173317
|
format?: $Enums.EvaluationRoundFormat | null
|
|
172975
173318
|
round_purpose?: string | null
|
|
173319
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
172976
173320
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
172977
173321
|
assignee?: string | null
|
|
172978
173322
|
elimination_round?: boolean | null
|
|
@@ -176088,6 +176432,7 @@ export namespace Prisma {
|
|
|
176088
176432
|
title: string
|
|
176089
176433
|
description?: string | null
|
|
176090
176434
|
format?: $Enums.EvaluationRoundFormat | null
|
|
176435
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
176091
176436
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
176092
176437
|
assignee?: string | null
|
|
176093
176438
|
elimination_round?: boolean
|
|
@@ -176124,6 +176469,7 @@ export namespace Prisma {
|
|
|
176124
176469
|
title: string
|
|
176125
176470
|
description?: string | null
|
|
176126
176471
|
format?: $Enums.EvaluationRoundFormat | null
|
|
176472
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
176127
176473
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
176128
176474
|
assignee?: string | null
|
|
176129
176475
|
elimination_round?: boolean
|
|
@@ -176248,6 +176594,7 @@ export namespace Prisma {
|
|
|
176248
176594
|
order_no?: number | null
|
|
176249
176595
|
format?: $Enums.EvaluationRoundFormat | null
|
|
176250
176596
|
round_purpose?: string | null
|
|
176597
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
176251
176598
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
176252
176599
|
assignee?: string | null
|
|
176253
176600
|
elimination_round?: boolean | null
|
|
@@ -176294,6 +176641,7 @@ export namespace Prisma {
|
|
|
176294
176641
|
order_no?: number | null
|
|
176295
176642
|
format?: $Enums.EvaluationRoundFormat | null
|
|
176296
176643
|
round_purpose?: string | null
|
|
176644
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
176297
176645
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
176298
176646
|
assignee?: string | null
|
|
176299
176647
|
elimination_round?: boolean | null
|
|
@@ -177217,6 +177565,7 @@ export namespace Prisma {
|
|
|
177217
177565
|
title?: StringFieldUpdateOperationsInput | string
|
|
177218
177566
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
177219
177567
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
177568
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
177220
177569
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
177221
177570
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
177222
177571
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -177253,6 +177602,7 @@ export namespace Prisma {
|
|
|
177253
177602
|
title?: StringFieldUpdateOperationsInput | string
|
|
177254
177603
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
177255
177604
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
177605
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
177256
177606
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
177257
177607
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
177258
177608
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -177389,6 +177739,7 @@ export namespace Prisma {
|
|
|
177389
177739
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
177390
177740
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
177391
177741
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
177742
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
177392
177743
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
177393
177744
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
177394
177745
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -177435,6 +177786,7 @@ export namespace Prisma {
|
|
|
177435
177786
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
177436
177787
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
177437
177788
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
177789
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
177438
177790
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
177439
177791
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
177440
177792
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -179843,6 +180195,7 @@ export namespace Prisma {
|
|
|
179843
180195
|
title: string
|
|
179844
180196
|
description?: string | null
|
|
179845
180197
|
format?: $Enums.EvaluationRoundFormat | null
|
|
180198
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
179846
180199
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
179847
180200
|
assignee?: string | null
|
|
179848
180201
|
elimination_round?: boolean
|
|
@@ -179878,6 +180231,7 @@ export namespace Prisma {
|
|
|
179878
180231
|
title: string
|
|
179879
180232
|
description?: string | null
|
|
179880
180233
|
format?: $Enums.EvaluationRoundFormat | null
|
|
180234
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
179881
180235
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
179882
180236
|
assignee?: string | null
|
|
179883
180237
|
elimination_round?: boolean
|
|
@@ -179927,6 +180281,7 @@ export namespace Prisma {
|
|
|
179927
180281
|
order_no?: number | null
|
|
179928
180282
|
format?: $Enums.EvaluationRoundFormat | null
|
|
179929
180283
|
round_purpose?: string | null
|
|
180284
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
179930
180285
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
179931
180286
|
assignee?: string | null
|
|
179932
180287
|
elimination_round?: boolean | null
|
|
@@ -179973,6 +180328,7 @@ export namespace Prisma {
|
|
|
179973
180328
|
order_no?: number | null
|
|
179974
180329
|
format?: $Enums.EvaluationRoundFormat | null
|
|
179975
180330
|
round_purpose?: string | null
|
|
180331
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
179976
180332
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
179977
180333
|
assignee?: string | null
|
|
179978
180334
|
elimination_round?: boolean | null
|
|
@@ -185058,6 +185414,7 @@ export namespace Prisma {
|
|
|
185058
185414
|
title: string
|
|
185059
185415
|
description?: string | null
|
|
185060
185416
|
format?: $Enums.EvaluationRoundFormat | null
|
|
185417
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
185061
185418
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
185062
185419
|
assignee?: string | null
|
|
185063
185420
|
elimination_round?: boolean
|
|
@@ -185094,6 +185451,7 @@ export namespace Prisma {
|
|
|
185094
185451
|
title: string
|
|
185095
185452
|
description?: string | null
|
|
185096
185453
|
format?: $Enums.EvaluationRoundFormat | null
|
|
185454
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
185097
185455
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
185098
185456
|
assignee?: string | null
|
|
185099
185457
|
elimination_round?: boolean
|
|
@@ -185878,6 +186236,7 @@ export namespace Prisma {
|
|
|
185878
186236
|
title?: StringFieldUpdateOperationsInput | string
|
|
185879
186237
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
185880
186238
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
186239
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
185881
186240
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
185882
186241
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
185883
186242
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -185914,6 +186273,7 @@ export namespace Prisma {
|
|
|
185914
186273
|
title?: StringFieldUpdateOperationsInput | string
|
|
185915
186274
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
185916
186275
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
186276
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
185917
186277
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
185918
186278
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
185919
186279
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -187103,6 +187463,7 @@ export namespace Prisma {
|
|
|
187103
187463
|
order_no?: number | null
|
|
187104
187464
|
format?: $Enums.EvaluationRoundFormat | null
|
|
187105
187465
|
round_purpose?: string | null
|
|
187466
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
187106
187467
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
187107
187468
|
assignee?: string | null
|
|
187108
187469
|
elimination_round?: boolean | null
|
|
@@ -187149,6 +187510,7 @@ export namespace Prisma {
|
|
|
187149
187510
|
order_no?: number | null
|
|
187150
187511
|
format?: $Enums.EvaluationRoundFormat | null
|
|
187151
187512
|
round_purpose?: string | null
|
|
187513
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
187152
187514
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
187153
187515
|
assignee?: string | null
|
|
187154
187516
|
elimination_round?: boolean | null
|
|
@@ -189237,6 +189599,7 @@ export namespace Prisma {
|
|
|
189237
189599
|
title: string
|
|
189238
189600
|
description?: string | null
|
|
189239
189601
|
format?: $Enums.EvaluationRoundFormat | null
|
|
189602
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
189240
189603
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
189241
189604
|
assignee?: string | null
|
|
189242
189605
|
elimination_round?: boolean
|
|
@@ -189273,6 +189636,7 @@ export namespace Prisma {
|
|
|
189273
189636
|
title: string
|
|
189274
189637
|
description?: string | null
|
|
189275
189638
|
format?: $Enums.EvaluationRoundFormat | null
|
|
189639
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
189276
189640
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
189277
189641
|
assignee?: string | null
|
|
189278
189642
|
elimination_round?: boolean
|
|
@@ -189575,6 +189939,7 @@ export namespace Prisma {
|
|
|
189575
189939
|
title?: StringFieldUpdateOperationsInput | string
|
|
189576
189940
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
189577
189941
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
189942
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
189578
189943
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
189579
189944
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
189580
189945
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -189611,6 +189976,7 @@ export namespace Prisma {
|
|
|
189611
189976
|
title?: StringFieldUpdateOperationsInput | string
|
|
189612
189977
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
189613
189978
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
189979
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
189614
189980
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
189615
189981
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
189616
189982
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -190789,6 +191155,7 @@ export namespace Prisma {
|
|
|
190789
191155
|
order_no?: number | null
|
|
190790
191156
|
format?: $Enums.EvaluationRoundFormat | null
|
|
190791
191157
|
round_purpose?: string | null
|
|
191158
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
190792
191159
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
190793
191160
|
assignee?: string | null
|
|
190794
191161
|
elimination_round?: boolean | null
|
|
@@ -190835,6 +191202,7 @@ export namespace Prisma {
|
|
|
190835
191202
|
order_no?: number | null
|
|
190836
191203
|
format?: $Enums.EvaluationRoundFormat | null
|
|
190837
191204
|
round_purpose?: string | null
|
|
191205
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
190838
191206
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
190839
191207
|
assignee?: string | null
|
|
190840
191208
|
elimination_round?: boolean | null
|
|
@@ -194597,6 +194965,7 @@ export namespace Prisma {
|
|
|
194597
194965
|
order_no?: number | null
|
|
194598
194966
|
format?: $Enums.EvaluationRoundFormat | null
|
|
194599
194967
|
round_purpose?: string | null
|
|
194968
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
194600
194969
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
194601
194970
|
assignee?: string | null
|
|
194602
194971
|
elimination_round?: boolean | null
|
|
@@ -194643,6 +195012,7 @@ export namespace Prisma {
|
|
|
194643
195012
|
order_no?: number | null
|
|
194644
195013
|
format?: $Enums.EvaluationRoundFormat | null
|
|
194645
195014
|
round_purpose?: string | null
|
|
195015
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
194646
195016
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
194647
195017
|
assignee?: string | null
|
|
194648
195018
|
elimination_round?: boolean | null
|
|
@@ -197509,6 +197879,7 @@ export namespace Prisma {
|
|
|
197509
197879
|
order_no?: number | null
|
|
197510
197880
|
format?: $Enums.EvaluationRoundFormat | null
|
|
197511
197881
|
round_purpose?: string | null
|
|
197882
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
197512
197883
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
197513
197884
|
assignee?: string | null
|
|
197514
197885
|
elimination_round?: boolean | null
|
|
@@ -197860,6 +198231,7 @@ export namespace Prisma {
|
|
|
197860
198231
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
197861
198232
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
197862
198233
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
198234
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
197863
198235
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
197864
198236
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
197865
198237
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -197906,6 +198278,7 @@ export namespace Prisma {
|
|
|
197906
198278
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
197907
198279
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
197908
198280
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
198281
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
197909
198282
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
197910
198283
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
197911
198284
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -197945,6 +198318,7 @@ export namespace Prisma {
|
|
|
197945
198318
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
197946
198319
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
197947
198320
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
198321
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
197948
198322
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
197949
198323
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
197950
198324
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -198355,6 +198729,7 @@ export namespace Prisma {
|
|
|
198355
198729
|
title: string
|
|
198356
198730
|
description?: string | null
|
|
198357
198731
|
format?: $Enums.EvaluationRoundFormat | null
|
|
198732
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
198358
198733
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
198359
198734
|
assignee?: string | null
|
|
198360
198735
|
elimination_round?: boolean
|
|
@@ -198503,6 +198878,7 @@ export namespace Prisma {
|
|
|
198503
198878
|
title?: StringFieldUpdateOperationsInput | string
|
|
198504
198879
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
198505
198880
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
198881
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
198506
198882
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
198507
198883
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
198508
198884
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -198538,6 +198914,7 @@ export namespace Prisma {
|
|
|
198538
198914
|
title?: StringFieldUpdateOperationsInput | string
|
|
198539
198915
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
198540
198916
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
198917
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
198541
198918
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
198542
198919
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
198543
198920
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -198571,6 +198948,7 @@ export namespace Prisma {
|
|
|
198571
198948
|
title?: StringFieldUpdateOperationsInput | string
|
|
198572
198949
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
198573
198950
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
198951
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
198574
198952
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
198575
198953
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
198576
198954
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -198600,6 +198978,7 @@ export namespace Prisma {
|
|
|
198600
198978
|
title: string
|
|
198601
198979
|
description?: string | null
|
|
198602
198980
|
format?: $Enums.EvaluationRoundFormat | null
|
|
198981
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
198603
198982
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
198604
198983
|
assignee?: string | null
|
|
198605
198984
|
elimination_round?: boolean
|
|
@@ -198652,6 +199031,7 @@ export namespace Prisma {
|
|
|
198652
199031
|
title?: StringFieldUpdateOperationsInput | string
|
|
198653
199032
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
198654
199033
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
199034
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
198655
199035
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
198656
199036
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
198657
199037
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -198687,6 +199067,7 @@ export namespace Prisma {
|
|
|
198687
199067
|
title?: StringFieldUpdateOperationsInput | string
|
|
198688
199068
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
198689
199069
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
199070
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
198690
199071
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
198691
199072
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
198692
199073
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -198720,6 +199101,7 @@ export namespace Prisma {
|
|
|
198720
199101
|
title?: StringFieldUpdateOperationsInput | string
|
|
198721
199102
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
198722
199103
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
199104
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
198723
199105
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
198724
199106
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
198725
199107
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -199305,6 +199687,7 @@ export namespace Prisma {
|
|
|
199305
199687
|
order_no?: number | null
|
|
199306
199688
|
format?: $Enums.EvaluationRoundFormat | null
|
|
199307
199689
|
round_purpose?: string | null
|
|
199690
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
199308
199691
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
199309
199692
|
assignee?: string | null
|
|
199310
199693
|
elimination_round?: boolean | null
|
|
@@ -199652,6 +200035,7 @@ export namespace Prisma {
|
|
|
199652
200035
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
199653
200036
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
199654
200037
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
200038
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
199655
200039
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
199656
200040
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
199657
200041
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -199698,6 +200082,7 @@ export namespace Prisma {
|
|
|
199698
200082
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
199699
200083
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
199700
200084
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
200085
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
199701
200086
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
199702
200087
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
199703
200088
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -199737,6 +200122,7 @@ export namespace Prisma {
|
|
|
199737
200122
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
199738
200123
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
199739
200124
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
200125
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
199740
200126
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
199741
200127
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
199742
200128
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -200312,6 +200698,7 @@ export namespace Prisma {
|
|
|
200312
200698
|
title: string
|
|
200313
200699
|
description?: string | null
|
|
200314
200700
|
format?: $Enums.EvaluationRoundFormat | null
|
|
200701
|
+
focus_areas?: EvaluationPlanCreatefocus_areasInput | string[]
|
|
200315
200702
|
topics?: EvaluationPlanCreatetopicsInput | string[]
|
|
200316
200703
|
assignee?: string | null
|
|
200317
200704
|
elimination_round?: boolean
|
|
@@ -200354,6 +200741,7 @@ export namespace Prisma {
|
|
|
200354
200741
|
order_no?: number | null
|
|
200355
200742
|
format?: $Enums.EvaluationRoundFormat | null
|
|
200356
200743
|
round_purpose?: string | null
|
|
200744
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
200357
200745
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
200358
200746
|
assignee?: string | null
|
|
200359
200747
|
elimination_round?: boolean | null
|
|
@@ -200965,6 +201353,7 @@ export namespace Prisma {
|
|
|
200965
201353
|
title?: StringFieldUpdateOperationsInput | string
|
|
200966
201354
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
200967
201355
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
201356
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
200968
201357
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
200969
201358
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
200970
201359
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -201000,6 +201389,7 @@ export namespace Prisma {
|
|
|
201000
201389
|
title?: StringFieldUpdateOperationsInput | string
|
|
201001
201390
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
201002
201391
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
201392
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
201003
201393
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
201004
201394
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
201005
201395
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -201033,6 +201423,7 @@ export namespace Prisma {
|
|
|
201033
201423
|
title?: StringFieldUpdateOperationsInput | string
|
|
201034
201424
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
201035
201425
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
201426
|
+
focus_areas?: EvaluationPlanUpdatefocus_areasInput | string[]
|
|
201036
201427
|
topics?: EvaluationPlanUpdatetopicsInput | string[]
|
|
201037
201428
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
201038
201429
|
elimination_round?: BoolFieldUpdateOperationsInput | boolean
|
|
@@ -201068,6 +201459,7 @@ export namespace Prisma {
|
|
|
201068
201459
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
201069
201460
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
201070
201461
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
201462
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
201071
201463
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
201072
201464
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
201073
201465
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -201114,6 +201506,7 @@ export namespace Prisma {
|
|
|
201114
201506
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
201115
201507
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
201116
201508
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
201509
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
201117
201510
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
201118
201511
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
201119
201512
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -201153,6 +201546,7 @@ export namespace Prisma {
|
|
|
201153
201546
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
201154
201547
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
201155
201548
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
201549
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
201156
201550
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
201157
201551
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
201158
201552
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -202214,6 +202608,7 @@ export namespace Prisma {
|
|
|
202214
202608
|
order_no?: number | null
|
|
202215
202609
|
format?: $Enums.EvaluationRoundFormat | null
|
|
202216
202610
|
round_purpose?: string | null
|
|
202611
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
202217
202612
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
202218
202613
|
assignee?: string | null
|
|
202219
202614
|
elimination_round?: boolean | null
|
|
@@ -203550,6 +203945,7 @@ export namespace Prisma {
|
|
|
203550
203945
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
203551
203946
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
203552
203947
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
203948
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
203553
203949
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
203554
203950
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
203555
203951
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -203596,6 +203992,7 @@ export namespace Prisma {
|
|
|
203596
203992
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
203597
203993
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
203598
203994
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
203995
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
203599
203996
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
203600
203997
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
203601
203998
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -203635,6 +204032,7 @@ export namespace Prisma {
|
|
|
203635
204032
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
203636
204033
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
203637
204034
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
204035
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
203638
204036
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
203639
204037
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
203640
204038
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -204511,6 +204909,7 @@ export namespace Prisma {
|
|
|
204511
204909
|
order_no?: number | null
|
|
204512
204910
|
format?: $Enums.EvaluationRoundFormat | null
|
|
204513
204911
|
round_purpose?: string | null
|
|
204912
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
204514
204913
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
204515
204914
|
assignee?: string | null
|
|
204516
204915
|
elimination_round?: boolean | null
|
|
@@ -204847,6 +205246,7 @@ export namespace Prisma {
|
|
|
204847
205246
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
204848
205247
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
204849
205248
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
205249
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
204850
205250
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
204851
205251
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
204852
205252
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -204893,6 +205293,7 @@ export namespace Prisma {
|
|
|
204893
205293
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
204894
205294
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
204895
205295
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
205296
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
204896
205297
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
204897
205298
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
204898
205299
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -204932,6 +205333,7 @@ export namespace Prisma {
|
|
|
204932
205333
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
204933
205334
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
204934
205335
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
205336
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
204935
205337
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
204936
205338
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
204937
205339
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -205731,6 +206133,7 @@ export namespace Prisma {
|
|
|
205731
206133
|
order_no?: number | null
|
|
205732
206134
|
format?: $Enums.EvaluationRoundFormat | null
|
|
205733
206135
|
round_purpose?: string | null
|
|
206136
|
+
focus_areas?: OngoingEvaluationCreatefocus_areasInput | string[]
|
|
205734
206137
|
topics?: OngoingEvaluationCreatetopicsInput | string[]
|
|
205735
206138
|
assignee?: string | null
|
|
205736
206139
|
elimination_round?: boolean | null
|
|
@@ -207319,6 +207722,7 @@ export namespace Prisma {
|
|
|
207319
207722
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
207320
207723
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
207321
207724
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
207725
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
207322
207726
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
207323
207727
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
207324
207728
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -207365,6 +207769,7 @@ export namespace Prisma {
|
|
|
207365
207769
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
207366
207770
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
207367
207771
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
207772
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
207368
207773
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
207369
207774
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
207370
207775
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
@@ -207404,6 +207809,7 @@ export namespace Prisma {
|
|
|
207404
207809
|
order_no?: NullableIntFieldUpdateOperationsInput | number | null
|
|
207405
207810
|
format?: NullableEnumEvaluationRoundFormatFieldUpdateOperationsInput | $Enums.EvaluationRoundFormat | null
|
|
207406
207811
|
round_purpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
207812
|
+
focus_areas?: OngoingEvaluationUpdatefocus_areasInput | string[]
|
|
207407
207813
|
topics?: OngoingEvaluationUpdatetopicsInput | string[]
|
|
207408
207814
|
assignee?: NullableStringFieldUpdateOperationsInput | string | null
|
|
207409
207815
|
elimination_round?: NullableBoolFieldUpdateOperationsInput | boolean | null
|