@adaptware/eagles-db 0.4.42 → 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 +26 -16
- package/client/index-browser.js +21 -11
- package/client/index.d.ts +481 -223
- package/client/index.js +26 -16
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/client/package.json +1 -1
- package/client/schema.prisma +23 -13
- package/client/wasm.js +26 -16
- 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 +2 -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/openJobAnalytics.prisma +4 -0
- package/prisma/schema/pipelineDistributionAnalytics.prisma +4 -6
- package/prisma/schema/sourceEffectivenessAnalytics.prisma +2 -0
- package/prisma/schema/migrations/20260519120000_interview_deadline/migration.sql +0 -2
- package/prisma/schema/migrations/20260520120000_interview_duration_drop_deadline/migration.sql +0 -30
- package/prisma/schema/migrations/20260602120000_resume_file_hash_drop_unique/migration.sql +0 -2
- package/prisma/schema/migrations/20260603120000_job_application_field_is_mandatory/migration.sql +0 -2
- package/prisma/schema/migrations/20260604120000_job_application_response_updated_by_organisation/migration.sql +0 -2
- package/prisma/schema/migrations/20260605120000_drop_document_application_id/migration.sql +0 -3
- package/prisma/schema/migrations/20260610120000_jaf_template_model/migration.sql +0 -70
- package/prisma/schema/migrations/20260610130000_assignment_document_fks/migration.sql +0 -15
- package/prisma/schema/migrations/20260610140000_jaf_draft_activation/migration.sql +0 -12
- package/prisma/schema/migrations/20260713120000_add_focus_areas_backfill/migration.sql +0 -16
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
|
|
|
@@ -81103,6 +81157,8 @@ export namespace Prisma {
|
|
|
81103
81157
|
ongoing_count: number | null
|
|
81104
81158
|
selected_count: number | null
|
|
81105
81159
|
rejected_count: number | null
|
|
81160
|
+
on_hold_count: number | null
|
|
81161
|
+
withdrawn_count: number | null
|
|
81106
81162
|
}
|
|
81107
81163
|
|
|
81108
81164
|
export type OpenJobAnalyticsSumAggregateOutputType = {
|
|
@@ -81114,6 +81170,8 @@ export namespace Prisma {
|
|
|
81114
81170
|
ongoing_count: number | null
|
|
81115
81171
|
selected_count: number | null
|
|
81116
81172
|
rejected_count: number | null
|
|
81173
|
+
on_hold_count: number | null
|
|
81174
|
+
withdrawn_count: number | null
|
|
81117
81175
|
}
|
|
81118
81176
|
|
|
81119
81177
|
export type OpenJobAnalyticsMinAggregateOutputType = {
|
|
@@ -81140,6 +81198,8 @@ export namespace Prisma {
|
|
|
81140
81198
|
ongoing_count: number | null
|
|
81141
81199
|
selected_count: number | null
|
|
81142
81200
|
rejected_count: number | null
|
|
81201
|
+
on_hold_count: number | null
|
|
81202
|
+
withdrawn_count: number | null
|
|
81143
81203
|
updated_at: Date | null
|
|
81144
81204
|
}
|
|
81145
81205
|
|
|
@@ -81167,6 +81227,8 @@ export namespace Prisma {
|
|
|
81167
81227
|
ongoing_count: number | null
|
|
81168
81228
|
selected_count: number | null
|
|
81169
81229
|
rejected_count: number | null
|
|
81230
|
+
on_hold_count: number | null
|
|
81231
|
+
withdrawn_count: number | null
|
|
81170
81232
|
updated_at: Date | null
|
|
81171
81233
|
}
|
|
81172
81234
|
|
|
@@ -81194,6 +81256,8 @@ export namespace Prisma {
|
|
|
81194
81256
|
ongoing_count: number
|
|
81195
81257
|
selected_count: number
|
|
81196
81258
|
rejected_count: number
|
|
81259
|
+
on_hold_count: number
|
|
81260
|
+
withdrawn_count: number
|
|
81197
81261
|
updated_at: number
|
|
81198
81262
|
_all: number
|
|
81199
81263
|
}
|
|
@@ -81208,6 +81272,8 @@ export namespace Prisma {
|
|
|
81208
81272
|
ongoing_count?: true
|
|
81209
81273
|
selected_count?: true
|
|
81210
81274
|
rejected_count?: true
|
|
81275
|
+
on_hold_count?: true
|
|
81276
|
+
withdrawn_count?: true
|
|
81211
81277
|
}
|
|
81212
81278
|
|
|
81213
81279
|
export type OpenJobAnalyticsSumAggregateInputType = {
|
|
@@ -81219,6 +81285,8 @@ export namespace Prisma {
|
|
|
81219
81285
|
ongoing_count?: true
|
|
81220
81286
|
selected_count?: true
|
|
81221
81287
|
rejected_count?: true
|
|
81288
|
+
on_hold_count?: true
|
|
81289
|
+
withdrawn_count?: true
|
|
81222
81290
|
}
|
|
81223
81291
|
|
|
81224
81292
|
export type OpenJobAnalyticsMinAggregateInputType = {
|
|
@@ -81245,6 +81313,8 @@ export namespace Prisma {
|
|
|
81245
81313
|
ongoing_count?: true
|
|
81246
81314
|
selected_count?: true
|
|
81247
81315
|
rejected_count?: true
|
|
81316
|
+
on_hold_count?: true
|
|
81317
|
+
withdrawn_count?: true
|
|
81248
81318
|
updated_at?: true
|
|
81249
81319
|
}
|
|
81250
81320
|
|
|
@@ -81272,6 +81342,8 @@ export namespace Prisma {
|
|
|
81272
81342
|
ongoing_count?: true
|
|
81273
81343
|
selected_count?: true
|
|
81274
81344
|
rejected_count?: true
|
|
81345
|
+
on_hold_count?: true
|
|
81346
|
+
withdrawn_count?: true
|
|
81275
81347
|
updated_at?: true
|
|
81276
81348
|
}
|
|
81277
81349
|
|
|
@@ -81299,6 +81371,8 @@ export namespace Prisma {
|
|
|
81299
81371
|
ongoing_count?: true
|
|
81300
81372
|
selected_count?: true
|
|
81301
81373
|
rejected_count?: true
|
|
81374
|
+
on_hold_count?: true
|
|
81375
|
+
withdrawn_count?: true
|
|
81302
81376
|
updated_at?: true
|
|
81303
81377
|
_all?: true
|
|
81304
81378
|
}
|
|
@@ -81413,6 +81487,8 @@ export namespace Prisma {
|
|
|
81413
81487
|
ongoing_count: number
|
|
81414
81488
|
selected_count: number
|
|
81415
81489
|
rejected_count: number
|
|
81490
|
+
on_hold_count: number
|
|
81491
|
+
withdrawn_count: number
|
|
81416
81492
|
updated_at: Date
|
|
81417
81493
|
_count: OpenJobAnalyticsCountAggregateOutputType | null
|
|
81418
81494
|
_avg: OpenJobAnalyticsAvgAggregateOutputType | null
|
|
@@ -81459,6 +81535,8 @@ export namespace Prisma {
|
|
|
81459
81535
|
ongoing_count?: boolean
|
|
81460
81536
|
selected_count?: boolean
|
|
81461
81537
|
rejected_count?: boolean
|
|
81538
|
+
on_hold_count?: boolean
|
|
81539
|
+
withdrawn_count?: boolean
|
|
81462
81540
|
updated_at?: boolean
|
|
81463
81541
|
}, ExtArgs["result"]["openJobAnalytics"]>
|
|
81464
81542
|
|
|
@@ -81486,6 +81564,8 @@ export namespace Prisma {
|
|
|
81486
81564
|
ongoing_count?: boolean
|
|
81487
81565
|
selected_count?: boolean
|
|
81488
81566
|
rejected_count?: boolean
|
|
81567
|
+
on_hold_count?: boolean
|
|
81568
|
+
withdrawn_count?: boolean
|
|
81489
81569
|
updated_at?: boolean
|
|
81490
81570
|
}, ExtArgs["result"]["openJobAnalytics"]>
|
|
81491
81571
|
|
|
@@ -81513,6 +81593,8 @@ export namespace Prisma {
|
|
|
81513
81593
|
ongoing_count?: boolean
|
|
81514
81594
|
selected_count?: boolean
|
|
81515
81595
|
rejected_count?: boolean
|
|
81596
|
+
on_hold_count?: boolean
|
|
81597
|
+
withdrawn_count?: boolean
|
|
81516
81598
|
updated_at?: boolean
|
|
81517
81599
|
}, ExtArgs["result"]["openJobAnalytics"]>
|
|
81518
81600
|
|
|
@@ -81540,10 +81622,12 @@ export namespace Prisma {
|
|
|
81540
81622
|
ongoing_count?: boolean
|
|
81541
81623
|
selected_count?: boolean
|
|
81542
81624
|
rejected_count?: boolean
|
|
81625
|
+
on_hold_count?: boolean
|
|
81626
|
+
withdrawn_count?: boolean
|
|
81543
81627
|
updated_at?: boolean
|
|
81544
81628
|
}
|
|
81545
81629
|
|
|
81546
|
-
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"]>
|
|
81547
81631
|
|
|
81548
81632
|
export type $OpenJobAnalyticsPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
81549
81633
|
name: "OpenJobAnalytics"
|
|
@@ -81572,6 +81656,8 @@ export namespace Prisma {
|
|
|
81572
81656
|
ongoing_count: number
|
|
81573
81657
|
selected_count: number
|
|
81574
81658
|
rejected_count: number
|
|
81659
|
+
on_hold_count: number
|
|
81660
|
+
withdrawn_count: number
|
|
81575
81661
|
updated_at: Date
|
|
81576
81662
|
}, ExtArgs["result"]["openJobAnalytics"]>
|
|
81577
81663
|
composites: {}
|
|
@@ -82019,6 +82105,8 @@ export namespace Prisma {
|
|
|
82019
82105
|
readonly ongoing_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
82020
82106
|
readonly selected_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
82021
82107
|
readonly rejected_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
82108
|
+
readonly on_hold_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
82109
|
+
readonly withdrawn_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
82022
82110
|
readonly updated_at: FieldRef<"OpenJobAnalytics", 'DateTime'>
|
|
82023
82111
|
}
|
|
82024
82112
|
|
|
@@ -82407,6 +82495,8 @@ export namespace Prisma {
|
|
|
82407
82495
|
ongoing_count: number | null
|
|
82408
82496
|
selected_count: number | null
|
|
82409
82497
|
rejected_count: number | null
|
|
82498
|
+
on_hold_count: number | null
|
|
82499
|
+
withdrawn_count: number | null
|
|
82410
82500
|
}
|
|
82411
82501
|
|
|
82412
82502
|
export type OpenJobAnalyticsDailySumAggregateOutputType = {
|
|
@@ -82418,6 +82508,8 @@ export namespace Prisma {
|
|
|
82418
82508
|
ongoing_count: number | null
|
|
82419
82509
|
selected_count: number | null
|
|
82420
82510
|
rejected_count: number | null
|
|
82511
|
+
on_hold_count: number | null
|
|
82512
|
+
withdrawn_count: number | null
|
|
82421
82513
|
}
|
|
82422
82514
|
|
|
82423
82515
|
export type OpenJobAnalyticsDailyMinAggregateOutputType = {
|
|
@@ -82445,6 +82537,8 @@ export namespace Prisma {
|
|
|
82445
82537
|
ongoing_count: number | null
|
|
82446
82538
|
selected_count: number | null
|
|
82447
82539
|
rejected_count: number | null
|
|
82540
|
+
on_hold_count: number | null
|
|
82541
|
+
withdrawn_count: number | null
|
|
82448
82542
|
}
|
|
82449
82543
|
|
|
82450
82544
|
export type OpenJobAnalyticsDailyMaxAggregateOutputType = {
|
|
@@ -82472,6 +82566,8 @@ export namespace Prisma {
|
|
|
82472
82566
|
ongoing_count: number | null
|
|
82473
82567
|
selected_count: number | null
|
|
82474
82568
|
rejected_count: number | null
|
|
82569
|
+
on_hold_count: number | null
|
|
82570
|
+
withdrawn_count: number | null
|
|
82475
82571
|
}
|
|
82476
82572
|
|
|
82477
82573
|
export type OpenJobAnalyticsDailyCountAggregateOutputType = {
|
|
@@ -82499,6 +82595,8 @@ export namespace Prisma {
|
|
|
82499
82595
|
ongoing_count: number
|
|
82500
82596
|
selected_count: number
|
|
82501
82597
|
rejected_count: number
|
|
82598
|
+
on_hold_count: number
|
|
82599
|
+
withdrawn_count: number
|
|
82502
82600
|
_all: number
|
|
82503
82601
|
}
|
|
82504
82602
|
|
|
@@ -82512,6 +82610,8 @@ export namespace Prisma {
|
|
|
82512
82610
|
ongoing_count?: true
|
|
82513
82611
|
selected_count?: true
|
|
82514
82612
|
rejected_count?: true
|
|
82613
|
+
on_hold_count?: true
|
|
82614
|
+
withdrawn_count?: true
|
|
82515
82615
|
}
|
|
82516
82616
|
|
|
82517
82617
|
export type OpenJobAnalyticsDailySumAggregateInputType = {
|
|
@@ -82523,6 +82623,8 @@ export namespace Prisma {
|
|
|
82523
82623
|
ongoing_count?: true
|
|
82524
82624
|
selected_count?: true
|
|
82525
82625
|
rejected_count?: true
|
|
82626
|
+
on_hold_count?: true
|
|
82627
|
+
withdrawn_count?: true
|
|
82526
82628
|
}
|
|
82527
82629
|
|
|
82528
82630
|
export type OpenJobAnalyticsDailyMinAggregateInputType = {
|
|
@@ -82550,6 +82652,8 @@ export namespace Prisma {
|
|
|
82550
82652
|
ongoing_count?: true
|
|
82551
82653
|
selected_count?: true
|
|
82552
82654
|
rejected_count?: true
|
|
82655
|
+
on_hold_count?: true
|
|
82656
|
+
withdrawn_count?: true
|
|
82553
82657
|
}
|
|
82554
82658
|
|
|
82555
82659
|
export type OpenJobAnalyticsDailyMaxAggregateInputType = {
|
|
@@ -82577,6 +82681,8 @@ export namespace Prisma {
|
|
|
82577
82681
|
ongoing_count?: true
|
|
82578
82682
|
selected_count?: true
|
|
82579
82683
|
rejected_count?: true
|
|
82684
|
+
on_hold_count?: true
|
|
82685
|
+
withdrawn_count?: true
|
|
82580
82686
|
}
|
|
82581
82687
|
|
|
82582
82688
|
export type OpenJobAnalyticsDailyCountAggregateInputType = {
|
|
@@ -82604,6 +82710,8 @@ export namespace Prisma {
|
|
|
82604
82710
|
ongoing_count?: true
|
|
82605
82711
|
selected_count?: true
|
|
82606
82712
|
rejected_count?: true
|
|
82713
|
+
on_hold_count?: true
|
|
82714
|
+
withdrawn_count?: true
|
|
82607
82715
|
_all?: true
|
|
82608
82716
|
}
|
|
82609
82717
|
|
|
@@ -82718,6 +82826,8 @@ export namespace Prisma {
|
|
|
82718
82826
|
ongoing_count: number
|
|
82719
82827
|
selected_count: number
|
|
82720
82828
|
rejected_count: number
|
|
82829
|
+
on_hold_count: number
|
|
82830
|
+
withdrawn_count: number
|
|
82721
82831
|
_count: OpenJobAnalyticsDailyCountAggregateOutputType | null
|
|
82722
82832
|
_avg: OpenJobAnalyticsDailyAvgAggregateOutputType | null
|
|
82723
82833
|
_sum: OpenJobAnalyticsDailySumAggregateOutputType | null
|
|
@@ -82764,6 +82874,8 @@ export namespace Prisma {
|
|
|
82764
82874
|
ongoing_count?: boolean
|
|
82765
82875
|
selected_count?: boolean
|
|
82766
82876
|
rejected_count?: boolean
|
|
82877
|
+
on_hold_count?: boolean
|
|
82878
|
+
withdrawn_count?: boolean
|
|
82767
82879
|
}, ExtArgs["result"]["openJobAnalyticsDaily"]>
|
|
82768
82880
|
|
|
82769
82881
|
export type OpenJobAnalyticsDailySelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -82791,6 +82903,8 @@ export namespace Prisma {
|
|
|
82791
82903
|
ongoing_count?: boolean
|
|
82792
82904
|
selected_count?: boolean
|
|
82793
82905
|
rejected_count?: boolean
|
|
82906
|
+
on_hold_count?: boolean
|
|
82907
|
+
withdrawn_count?: boolean
|
|
82794
82908
|
}, ExtArgs["result"]["openJobAnalyticsDaily"]>
|
|
82795
82909
|
|
|
82796
82910
|
export type OpenJobAnalyticsDailySelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -82818,6 +82932,8 @@ export namespace Prisma {
|
|
|
82818
82932
|
ongoing_count?: boolean
|
|
82819
82933
|
selected_count?: boolean
|
|
82820
82934
|
rejected_count?: boolean
|
|
82935
|
+
on_hold_count?: boolean
|
|
82936
|
+
withdrawn_count?: boolean
|
|
82821
82937
|
}, ExtArgs["result"]["openJobAnalyticsDaily"]>
|
|
82822
82938
|
|
|
82823
82939
|
export type OpenJobAnalyticsDailySelectScalar = {
|
|
@@ -82845,9 +82961,11 @@ export namespace Prisma {
|
|
|
82845
82961
|
ongoing_count?: boolean
|
|
82846
82962
|
selected_count?: boolean
|
|
82847
82963
|
rejected_count?: boolean
|
|
82964
|
+
on_hold_count?: boolean
|
|
82965
|
+
withdrawn_count?: boolean
|
|
82848
82966
|
}
|
|
82849
82967
|
|
|
82850
|
-
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"]>
|
|
82851
82969
|
|
|
82852
82970
|
export type $OpenJobAnalyticsDailyPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
82853
82971
|
name: "OpenJobAnalyticsDaily"
|
|
@@ -82877,6 +82995,8 @@ export namespace Prisma {
|
|
|
82877
82995
|
ongoing_count: number
|
|
82878
82996
|
selected_count: number
|
|
82879
82997
|
rejected_count: number
|
|
82998
|
+
on_hold_count: number
|
|
82999
|
+
withdrawn_count: number
|
|
82880
83000
|
}, ExtArgs["result"]["openJobAnalyticsDaily"]>
|
|
82881
83001
|
composites: {}
|
|
82882
83002
|
}
|
|
@@ -83324,6 +83444,8 @@ export namespace Prisma {
|
|
|
83324
83444
|
readonly ongoing_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83325
83445
|
readonly selected_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83326
83446
|
readonly rejected_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83447
|
+
readonly on_hold_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83448
|
+
readonly withdrawn_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83327
83449
|
}
|
|
83328
83450
|
|
|
83329
83451
|
|
|
@@ -87905,9 +88027,8 @@ export namespace Prisma {
|
|
|
87905
88027
|
application_count: number | null
|
|
87906
88028
|
filtered_in_count: number | null
|
|
87907
88029
|
min_fit_score: number | null
|
|
87908
|
-
|
|
87909
|
-
|
|
87910
|
-
technical_interview_count: number | null
|
|
88030
|
+
screening_count: number | null
|
|
88031
|
+
business_screening_count: number | null
|
|
87911
88032
|
business_round_count: number | null
|
|
87912
88033
|
behavioral_round_count: number | null
|
|
87913
88034
|
shortlisted_count: number | null
|
|
@@ -87918,9 +88039,8 @@ export namespace Prisma {
|
|
|
87918
88039
|
application_count: number | null
|
|
87919
88040
|
filtered_in_count: number | null
|
|
87920
88041
|
min_fit_score: number | null
|
|
87921
|
-
|
|
87922
|
-
|
|
87923
|
-
technical_interview_count: number | null
|
|
88042
|
+
screening_count: number | null
|
|
88043
|
+
business_screening_count: number | null
|
|
87924
88044
|
business_round_count: number | null
|
|
87925
88045
|
behavioral_round_count: number | null
|
|
87926
88046
|
shortlisted_count: number | null
|
|
@@ -87937,9 +88057,8 @@ export namespace Prisma {
|
|
|
87937
88057
|
application_count: number | null
|
|
87938
88058
|
filtered_in_count: number | null
|
|
87939
88059
|
min_fit_score: number | null
|
|
87940
|
-
|
|
87941
|
-
|
|
87942
|
-
technical_interview_count: number | null
|
|
88060
|
+
screening_count: number | null
|
|
88061
|
+
business_screening_count: number | null
|
|
87943
88062
|
business_round_count: number | null
|
|
87944
88063
|
behavioral_round_count: number | null
|
|
87945
88064
|
shortlisted_count: number | null
|
|
@@ -87957,9 +88076,8 @@ export namespace Prisma {
|
|
|
87957
88076
|
application_count: number | null
|
|
87958
88077
|
filtered_in_count: number | null
|
|
87959
88078
|
min_fit_score: number | null
|
|
87960
|
-
|
|
87961
|
-
|
|
87962
|
-
technical_interview_count: number | null
|
|
88079
|
+
screening_count: number | null
|
|
88080
|
+
business_screening_count: number | null
|
|
87963
88081
|
business_round_count: number | null
|
|
87964
88082
|
behavioral_round_count: number | null
|
|
87965
88083
|
shortlisted_count: number | null
|
|
@@ -87977,9 +88095,8 @@ export namespace Prisma {
|
|
|
87977
88095
|
application_count: number
|
|
87978
88096
|
filtered_in_count: number
|
|
87979
88097
|
min_fit_score: number
|
|
87980
|
-
|
|
87981
|
-
|
|
87982
|
-
technical_interview_count: number
|
|
88098
|
+
screening_count: number
|
|
88099
|
+
business_screening_count: number
|
|
87983
88100
|
business_round_count: number
|
|
87984
88101
|
behavioral_round_count: number
|
|
87985
88102
|
shortlisted_count: number
|
|
@@ -87993,9 +88110,8 @@ export namespace Prisma {
|
|
|
87993
88110
|
application_count?: true
|
|
87994
88111
|
filtered_in_count?: true
|
|
87995
88112
|
min_fit_score?: true
|
|
87996
|
-
|
|
87997
|
-
|
|
87998
|
-
technical_interview_count?: true
|
|
88113
|
+
screening_count?: true
|
|
88114
|
+
business_screening_count?: true
|
|
87999
88115
|
business_round_count?: true
|
|
88000
88116
|
behavioral_round_count?: true
|
|
88001
88117
|
shortlisted_count?: true
|
|
@@ -88006,9 +88122,8 @@ export namespace Prisma {
|
|
|
88006
88122
|
application_count?: true
|
|
88007
88123
|
filtered_in_count?: true
|
|
88008
88124
|
min_fit_score?: true
|
|
88009
|
-
|
|
88010
|
-
|
|
88011
|
-
technical_interview_count?: true
|
|
88125
|
+
screening_count?: true
|
|
88126
|
+
business_screening_count?: true
|
|
88012
88127
|
business_round_count?: true
|
|
88013
88128
|
behavioral_round_count?: true
|
|
88014
88129
|
shortlisted_count?: true
|
|
@@ -88025,9 +88140,8 @@ export namespace Prisma {
|
|
|
88025
88140
|
application_count?: true
|
|
88026
88141
|
filtered_in_count?: true
|
|
88027
88142
|
min_fit_score?: true
|
|
88028
|
-
|
|
88029
|
-
|
|
88030
|
-
technical_interview_count?: true
|
|
88143
|
+
screening_count?: true
|
|
88144
|
+
business_screening_count?: true
|
|
88031
88145
|
business_round_count?: true
|
|
88032
88146
|
behavioral_round_count?: true
|
|
88033
88147
|
shortlisted_count?: true
|
|
@@ -88045,9 +88159,8 @@ export namespace Prisma {
|
|
|
88045
88159
|
application_count?: true
|
|
88046
88160
|
filtered_in_count?: true
|
|
88047
88161
|
min_fit_score?: true
|
|
88048
|
-
|
|
88049
|
-
|
|
88050
|
-
technical_interview_count?: true
|
|
88162
|
+
screening_count?: true
|
|
88163
|
+
business_screening_count?: true
|
|
88051
88164
|
business_round_count?: true
|
|
88052
88165
|
behavioral_round_count?: true
|
|
88053
88166
|
shortlisted_count?: true
|
|
@@ -88065,9 +88178,8 @@ export namespace Prisma {
|
|
|
88065
88178
|
application_count?: true
|
|
88066
88179
|
filtered_in_count?: true
|
|
88067
88180
|
min_fit_score?: true
|
|
88068
|
-
|
|
88069
|
-
|
|
88070
|
-
technical_interview_count?: true
|
|
88181
|
+
screening_count?: true
|
|
88182
|
+
business_screening_count?: true
|
|
88071
88183
|
business_round_count?: true
|
|
88072
88184
|
behavioral_round_count?: true
|
|
88073
88185
|
shortlisted_count?: true
|
|
@@ -88172,9 +88284,8 @@ export namespace Prisma {
|
|
|
88172
88284
|
application_count: number
|
|
88173
88285
|
filtered_in_count: number
|
|
88174
88286
|
min_fit_score: number | null
|
|
88175
|
-
|
|
88176
|
-
|
|
88177
|
-
technical_interview_count: number
|
|
88287
|
+
screening_count: number
|
|
88288
|
+
business_screening_count: number
|
|
88178
88289
|
business_round_count: number
|
|
88179
88290
|
behavioral_round_count: number
|
|
88180
88291
|
shortlisted_count: number
|
|
@@ -88211,9 +88322,8 @@ export namespace Prisma {
|
|
|
88211
88322
|
application_count?: boolean
|
|
88212
88323
|
filtered_in_count?: boolean
|
|
88213
88324
|
min_fit_score?: boolean
|
|
88214
|
-
|
|
88215
|
-
|
|
88216
|
-
technical_interview_count?: boolean
|
|
88325
|
+
screening_count?: boolean
|
|
88326
|
+
business_screening_count?: boolean
|
|
88217
88327
|
business_round_count?: boolean
|
|
88218
88328
|
behavioral_round_count?: boolean
|
|
88219
88329
|
shortlisted_count?: boolean
|
|
@@ -88231,9 +88341,8 @@ export namespace Prisma {
|
|
|
88231
88341
|
application_count?: boolean
|
|
88232
88342
|
filtered_in_count?: boolean
|
|
88233
88343
|
min_fit_score?: boolean
|
|
88234
|
-
|
|
88235
|
-
|
|
88236
|
-
technical_interview_count?: boolean
|
|
88344
|
+
screening_count?: boolean
|
|
88345
|
+
business_screening_count?: boolean
|
|
88237
88346
|
business_round_count?: boolean
|
|
88238
88347
|
behavioral_round_count?: boolean
|
|
88239
88348
|
shortlisted_count?: boolean
|
|
@@ -88251,9 +88360,8 @@ export namespace Prisma {
|
|
|
88251
88360
|
application_count?: boolean
|
|
88252
88361
|
filtered_in_count?: boolean
|
|
88253
88362
|
min_fit_score?: boolean
|
|
88254
|
-
|
|
88255
|
-
|
|
88256
|
-
technical_interview_count?: boolean
|
|
88363
|
+
screening_count?: boolean
|
|
88364
|
+
business_screening_count?: boolean
|
|
88257
88365
|
business_round_count?: boolean
|
|
88258
88366
|
behavioral_round_count?: boolean
|
|
88259
88367
|
shortlisted_count?: boolean
|
|
@@ -88271,16 +88379,15 @@ export namespace Prisma {
|
|
|
88271
88379
|
application_count?: boolean
|
|
88272
88380
|
filtered_in_count?: boolean
|
|
88273
88381
|
min_fit_score?: boolean
|
|
88274
|
-
|
|
88275
|
-
|
|
88276
|
-
technical_interview_count?: boolean
|
|
88382
|
+
screening_count?: boolean
|
|
88383
|
+
business_screening_count?: boolean
|
|
88277
88384
|
business_round_count?: boolean
|
|
88278
88385
|
behavioral_round_count?: boolean
|
|
88279
88386
|
shortlisted_count?: boolean
|
|
88280
88387
|
updated_at?: boolean
|
|
88281
88388
|
}
|
|
88282
88389
|
|
|
88283
|
-
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"]>
|
|
88284
88391
|
|
|
88285
88392
|
export type $PipelineDistributionAnalyticsPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
88286
88393
|
name: "PipelineDistributionAnalytics"
|
|
@@ -88296,9 +88403,8 @@ export namespace Prisma {
|
|
|
88296
88403
|
application_count: number
|
|
88297
88404
|
filtered_in_count: number
|
|
88298
88405
|
min_fit_score: number | null
|
|
88299
|
-
|
|
88300
|
-
|
|
88301
|
-
technical_interview_count: number
|
|
88406
|
+
screening_count: number
|
|
88407
|
+
business_screening_count: number
|
|
88302
88408
|
business_round_count: number
|
|
88303
88409
|
behavioral_round_count: number
|
|
88304
88410
|
shortlisted_count: number
|
|
@@ -88736,9 +88842,8 @@ export namespace Prisma {
|
|
|
88736
88842
|
readonly application_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
88737
88843
|
readonly filtered_in_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
88738
88844
|
readonly min_fit_score: FieldRef<"PipelineDistributionAnalytics", 'Float'>
|
|
88739
|
-
readonly
|
|
88740
|
-
readonly
|
|
88741
|
-
readonly technical_interview_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
88845
|
+
readonly screening_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
88846
|
+
readonly business_screening_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
88742
88847
|
readonly business_round_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
88743
88848
|
readonly behavioral_round_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
88744
88849
|
readonly shortlisted_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
@@ -89126,9 +89231,8 @@ export namespace Prisma {
|
|
|
89126
89231
|
application_count: number | null
|
|
89127
89232
|
filtered_in_count: number | null
|
|
89128
89233
|
min_fit_score: number | null
|
|
89129
|
-
|
|
89130
|
-
|
|
89131
|
-
technical_interview_count: number | null
|
|
89234
|
+
screening_count: number | null
|
|
89235
|
+
business_screening_count: number | null
|
|
89132
89236
|
business_round_count: number | null
|
|
89133
89237
|
behavioral_round_count: number | null
|
|
89134
89238
|
shortlisted_count: number | null
|
|
@@ -89139,9 +89243,8 @@ export namespace Prisma {
|
|
|
89139
89243
|
application_count: number | null
|
|
89140
89244
|
filtered_in_count: number | null
|
|
89141
89245
|
min_fit_score: number | null
|
|
89142
|
-
|
|
89143
|
-
|
|
89144
|
-
technical_interview_count: number | null
|
|
89246
|
+
screening_count: number | null
|
|
89247
|
+
business_screening_count: number | null
|
|
89145
89248
|
business_round_count: number | null
|
|
89146
89249
|
behavioral_round_count: number | null
|
|
89147
89250
|
shortlisted_count: number | null
|
|
@@ -89159,9 +89262,8 @@ export namespace Prisma {
|
|
|
89159
89262
|
application_count: number | null
|
|
89160
89263
|
filtered_in_count: number | null
|
|
89161
89264
|
min_fit_score: number | null
|
|
89162
|
-
|
|
89163
|
-
|
|
89164
|
-
technical_interview_count: number | null
|
|
89265
|
+
screening_count: number | null
|
|
89266
|
+
business_screening_count: number | null
|
|
89165
89267
|
business_round_count: number | null
|
|
89166
89268
|
behavioral_round_count: number | null
|
|
89167
89269
|
shortlisted_count: number | null
|
|
@@ -89179,9 +89281,8 @@ export namespace Prisma {
|
|
|
89179
89281
|
application_count: number | null
|
|
89180
89282
|
filtered_in_count: number | null
|
|
89181
89283
|
min_fit_score: number | null
|
|
89182
|
-
|
|
89183
|
-
|
|
89184
|
-
technical_interview_count: number | null
|
|
89284
|
+
screening_count: number | null
|
|
89285
|
+
business_screening_count: number | null
|
|
89185
89286
|
business_round_count: number | null
|
|
89186
89287
|
behavioral_round_count: number | null
|
|
89187
89288
|
shortlisted_count: number | null
|
|
@@ -89199,9 +89300,8 @@ export namespace Prisma {
|
|
|
89199
89300
|
application_count: number
|
|
89200
89301
|
filtered_in_count: number
|
|
89201
89302
|
min_fit_score: number
|
|
89202
|
-
|
|
89203
|
-
|
|
89204
|
-
technical_interview_count: number
|
|
89303
|
+
screening_count: number
|
|
89304
|
+
business_screening_count: number
|
|
89205
89305
|
business_round_count: number
|
|
89206
89306
|
behavioral_round_count: number
|
|
89207
89307
|
shortlisted_count: number
|
|
@@ -89214,9 +89314,8 @@ export namespace Prisma {
|
|
|
89214
89314
|
application_count?: true
|
|
89215
89315
|
filtered_in_count?: true
|
|
89216
89316
|
min_fit_score?: true
|
|
89217
|
-
|
|
89218
|
-
|
|
89219
|
-
technical_interview_count?: true
|
|
89317
|
+
screening_count?: true
|
|
89318
|
+
business_screening_count?: true
|
|
89220
89319
|
business_round_count?: true
|
|
89221
89320
|
behavioral_round_count?: true
|
|
89222
89321
|
shortlisted_count?: true
|
|
@@ -89227,9 +89326,8 @@ export namespace Prisma {
|
|
|
89227
89326
|
application_count?: true
|
|
89228
89327
|
filtered_in_count?: true
|
|
89229
89328
|
min_fit_score?: true
|
|
89230
|
-
|
|
89231
|
-
|
|
89232
|
-
technical_interview_count?: true
|
|
89329
|
+
screening_count?: true
|
|
89330
|
+
business_screening_count?: true
|
|
89233
89331
|
business_round_count?: true
|
|
89234
89332
|
behavioral_round_count?: true
|
|
89235
89333
|
shortlisted_count?: true
|
|
@@ -89247,9 +89345,8 @@ export namespace Prisma {
|
|
|
89247
89345
|
application_count?: true
|
|
89248
89346
|
filtered_in_count?: true
|
|
89249
89347
|
min_fit_score?: true
|
|
89250
|
-
|
|
89251
|
-
|
|
89252
|
-
technical_interview_count?: true
|
|
89348
|
+
screening_count?: true
|
|
89349
|
+
business_screening_count?: true
|
|
89253
89350
|
business_round_count?: true
|
|
89254
89351
|
behavioral_round_count?: true
|
|
89255
89352
|
shortlisted_count?: true
|
|
@@ -89267,9 +89364,8 @@ export namespace Prisma {
|
|
|
89267
89364
|
application_count?: true
|
|
89268
89365
|
filtered_in_count?: true
|
|
89269
89366
|
min_fit_score?: true
|
|
89270
|
-
|
|
89271
|
-
|
|
89272
|
-
technical_interview_count?: true
|
|
89367
|
+
screening_count?: true
|
|
89368
|
+
business_screening_count?: true
|
|
89273
89369
|
business_round_count?: true
|
|
89274
89370
|
behavioral_round_count?: true
|
|
89275
89371
|
shortlisted_count?: true
|
|
@@ -89287,9 +89383,8 @@ export namespace Prisma {
|
|
|
89287
89383
|
application_count?: true
|
|
89288
89384
|
filtered_in_count?: true
|
|
89289
89385
|
min_fit_score?: true
|
|
89290
|
-
|
|
89291
|
-
|
|
89292
|
-
technical_interview_count?: true
|
|
89386
|
+
screening_count?: true
|
|
89387
|
+
business_screening_count?: true
|
|
89293
89388
|
business_round_count?: true
|
|
89294
89389
|
behavioral_round_count?: true
|
|
89295
89390
|
shortlisted_count?: true
|
|
@@ -89394,9 +89489,8 @@ export namespace Prisma {
|
|
|
89394
89489
|
application_count: number
|
|
89395
89490
|
filtered_in_count: number
|
|
89396
89491
|
min_fit_score: number | null
|
|
89397
|
-
|
|
89398
|
-
|
|
89399
|
-
technical_interview_count: number
|
|
89492
|
+
screening_count: number
|
|
89493
|
+
business_screening_count: number
|
|
89400
89494
|
business_round_count: number
|
|
89401
89495
|
behavioral_round_count: number
|
|
89402
89496
|
shortlisted_count: number
|
|
@@ -89433,9 +89527,8 @@ export namespace Prisma {
|
|
|
89433
89527
|
application_count?: boolean
|
|
89434
89528
|
filtered_in_count?: boolean
|
|
89435
89529
|
min_fit_score?: boolean
|
|
89436
|
-
|
|
89437
|
-
|
|
89438
|
-
technical_interview_count?: boolean
|
|
89530
|
+
screening_count?: boolean
|
|
89531
|
+
business_screening_count?: boolean
|
|
89439
89532
|
business_round_count?: boolean
|
|
89440
89533
|
behavioral_round_count?: boolean
|
|
89441
89534
|
shortlisted_count?: boolean
|
|
@@ -89453,9 +89546,8 @@ export namespace Prisma {
|
|
|
89453
89546
|
application_count?: boolean
|
|
89454
89547
|
filtered_in_count?: boolean
|
|
89455
89548
|
min_fit_score?: boolean
|
|
89456
|
-
|
|
89457
|
-
|
|
89458
|
-
technical_interview_count?: boolean
|
|
89549
|
+
screening_count?: boolean
|
|
89550
|
+
business_screening_count?: boolean
|
|
89459
89551
|
business_round_count?: boolean
|
|
89460
89552
|
behavioral_round_count?: boolean
|
|
89461
89553
|
shortlisted_count?: boolean
|
|
@@ -89473,9 +89565,8 @@ export namespace Prisma {
|
|
|
89473
89565
|
application_count?: boolean
|
|
89474
89566
|
filtered_in_count?: boolean
|
|
89475
89567
|
min_fit_score?: boolean
|
|
89476
|
-
|
|
89477
|
-
|
|
89478
|
-
technical_interview_count?: boolean
|
|
89568
|
+
screening_count?: boolean
|
|
89569
|
+
business_screening_count?: boolean
|
|
89479
89570
|
business_round_count?: boolean
|
|
89480
89571
|
behavioral_round_count?: boolean
|
|
89481
89572
|
shortlisted_count?: boolean
|
|
@@ -89493,15 +89584,14 @@ export namespace Prisma {
|
|
|
89493
89584
|
application_count?: boolean
|
|
89494
89585
|
filtered_in_count?: boolean
|
|
89495
89586
|
min_fit_score?: boolean
|
|
89496
|
-
|
|
89497
|
-
|
|
89498
|
-
technical_interview_count?: boolean
|
|
89587
|
+
screening_count?: boolean
|
|
89588
|
+
business_screening_count?: boolean
|
|
89499
89589
|
business_round_count?: boolean
|
|
89500
89590
|
behavioral_round_count?: boolean
|
|
89501
89591
|
shortlisted_count?: boolean
|
|
89502
89592
|
}
|
|
89503
89593
|
|
|
89504
|
-
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"]>
|
|
89505
89595
|
|
|
89506
89596
|
export type $PipelineDistributionAnalyticsDailyPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
89507
89597
|
name: "PipelineDistributionAnalyticsDaily"
|
|
@@ -89518,9 +89608,8 @@ export namespace Prisma {
|
|
|
89518
89608
|
application_count: number
|
|
89519
89609
|
filtered_in_count: number
|
|
89520
89610
|
min_fit_score: number | null
|
|
89521
|
-
|
|
89522
|
-
|
|
89523
|
-
technical_interview_count: number
|
|
89611
|
+
screening_count: number
|
|
89612
|
+
business_screening_count: number
|
|
89524
89613
|
business_round_count: number
|
|
89525
89614
|
behavioral_round_count: number
|
|
89526
89615
|
shortlisted_count: number
|
|
@@ -89958,9 +90047,8 @@ export namespace Prisma {
|
|
|
89958
90047
|
readonly application_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
89959
90048
|
readonly filtered_in_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
89960
90049
|
readonly min_fit_score: FieldRef<"PipelineDistributionAnalyticsDaily", 'Float'>
|
|
89961
|
-
readonly
|
|
89962
|
-
readonly
|
|
89963
|
-
readonly technical_interview_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
90050
|
+
readonly screening_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
90051
|
+
readonly business_screening_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
89964
90052
|
readonly business_round_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
89965
90053
|
readonly behavioral_round_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
89966
90054
|
readonly shortlisted_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
@@ -102738,6 +102826,7 @@ export namespace Prisma {
|
|
|
102738
102826
|
screened_count: number | null
|
|
102739
102827
|
evaluated_count: number | null
|
|
102740
102828
|
rejected_count: number | null
|
|
102829
|
+
on_hold_count: number | null
|
|
102741
102830
|
shortlisted_count: number | null
|
|
102742
102831
|
offered_count: number | null
|
|
102743
102832
|
offer_accepted_count: number | null
|
|
@@ -102755,6 +102844,7 @@ export namespace Prisma {
|
|
|
102755
102844
|
screened_count: number | null
|
|
102756
102845
|
evaluated_count: number | null
|
|
102757
102846
|
rejected_count: number | null
|
|
102847
|
+
on_hold_count: number | null
|
|
102758
102848
|
shortlisted_count: number | null
|
|
102759
102849
|
offered_count: number | null
|
|
102760
102850
|
offer_accepted_count: number | null
|
|
@@ -102782,6 +102872,7 @@ export namespace Prisma {
|
|
|
102782
102872
|
screened_count: number | null
|
|
102783
102873
|
evaluated_count: number | null
|
|
102784
102874
|
rejected_count: number | null
|
|
102875
|
+
on_hold_count: number | null
|
|
102785
102876
|
shortlisted_count: number | null
|
|
102786
102877
|
offered_count: number | null
|
|
102787
102878
|
offer_accepted_count: number | null
|
|
@@ -102810,6 +102901,7 @@ export namespace Prisma {
|
|
|
102810
102901
|
screened_count: number | null
|
|
102811
102902
|
evaluated_count: number | null
|
|
102812
102903
|
rejected_count: number | null
|
|
102904
|
+
on_hold_count: number | null
|
|
102813
102905
|
shortlisted_count: number | null
|
|
102814
102906
|
offered_count: number | null
|
|
102815
102907
|
offer_accepted_count: number | null
|
|
@@ -102838,6 +102930,7 @@ export namespace Prisma {
|
|
|
102838
102930
|
screened_count: number
|
|
102839
102931
|
evaluated_count: number
|
|
102840
102932
|
rejected_count: number
|
|
102933
|
+
on_hold_count: number
|
|
102841
102934
|
shortlisted_count: number
|
|
102842
102935
|
offered_count: number
|
|
102843
102936
|
offer_accepted_count: number
|
|
@@ -102858,6 +102951,7 @@ export namespace Prisma {
|
|
|
102858
102951
|
screened_count?: true
|
|
102859
102952
|
evaluated_count?: true
|
|
102860
102953
|
rejected_count?: true
|
|
102954
|
+
on_hold_count?: true
|
|
102861
102955
|
shortlisted_count?: true
|
|
102862
102956
|
offered_count?: true
|
|
102863
102957
|
offer_accepted_count?: true
|
|
@@ -102875,6 +102969,7 @@ export namespace Prisma {
|
|
|
102875
102969
|
screened_count?: true
|
|
102876
102970
|
evaluated_count?: true
|
|
102877
102971
|
rejected_count?: true
|
|
102972
|
+
on_hold_count?: true
|
|
102878
102973
|
shortlisted_count?: true
|
|
102879
102974
|
offered_count?: true
|
|
102880
102975
|
offer_accepted_count?: true
|
|
@@ -102902,6 +102997,7 @@ export namespace Prisma {
|
|
|
102902
102997
|
screened_count?: true
|
|
102903
102998
|
evaluated_count?: true
|
|
102904
102999
|
rejected_count?: true
|
|
103000
|
+
on_hold_count?: true
|
|
102905
103001
|
shortlisted_count?: true
|
|
102906
103002
|
offered_count?: true
|
|
102907
103003
|
offer_accepted_count?: true
|
|
@@ -102930,6 +103026,7 @@ export namespace Prisma {
|
|
|
102930
103026
|
screened_count?: true
|
|
102931
103027
|
evaluated_count?: true
|
|
102932
103028
|
rejected_count?: true
|
|
103029
|
+
on_hold_count?: true
|
|
102933
103030
|
shortlisted_count?: true
|
|
102934
103031
|
offered_count?: true
|
|
102935
103032
|
offer_accepted_count?: true
|
|
@@ -102958,6 +103055,7 @@ export namespace Prisma {
|
|
|
102958
103055
|
screened_count?: true
|
|
102959
103056
|
evaluated_count?: true
|
|
102960
103057
|
rejected_count?: true
|
|
103058
|
+
on_hold_count?: true
|
|
102961
103059
|
shortlisted_count?: true
|
|
102962
103060
|
offered_count?: true
|
|
102963
103061
|
offer_accepted_count?: true
|
|
@@ -103073,6 +103171,7 @@ export namespace Prisma {
|
|
|
103073
103171
|
screened_count: number
|
|
103074
103172
|
evaluated_count: number
|
|
103075
103173
|
rejected_count: number
|
|
103174
|
+
on_hold_count: number
|
|
103076
103175
|
shortlisted_count: number
|
|
103077
103176
|
offered_count: number
|
|
103078
103177
|
offer_accepted_count: number
|
|
@@ -103120,6 +103219,7 @@ export namespace Prisma {
|
|
|
103120
103219
|
screened_count?: boolean
|
|
103121
103220
|
evaluated_count?: boolean
|
|
103122
103221
|
rejected_count?: boolean
|
|
103222
|
+
on_hold_count?: boolean
|
|
103123
103223
|
shortlisted_count?: boolean
|
|
103124
103224
|
offered_count?: boolean
|
|
103125
103225
|
offer_accepted_count?: boolean
|
|
@@ -103148,6 +103248,7 @@ export namespace Prisma {
|
|
|
103148
103248
|
screened_count?: boolean
|
|
103149
103249
|
evaluated_count?: boolean
|
|
103150
103250
|
rejected_count?: boolean
|
|
103251
|
+
on_hold_count?: boolean
|
|
103151
103252
|
shortlisted_count?: boolean
|
|
103152
103253
|
offered_count?: boolean
|
|
103153
103254
|
offer_accepted_count?: boolean
|
|
@@ -103176,6 +103277,7 @@ export namespace Prisma {
|
|
|
103176
103277
|
screened_count?: boolean
|
|
103177
103278
|
evaluated_count?: boolean
|
|
103178
103279
|
rejected_count?: boolean
|
|
103280
|
+
on_hold_count?: boolean
|
|
103179
103281
|
shortlisted_count?: boolean
|
|
103180
103282
|
offered_count?: boolean
|
|
103181
103283
|
offer_accepted_count?: boolean
|
|
@@ -103204,6 +103306,7 @@ export namespace Prisma {
|
|
|
103204
103306
|
screened_count?: boolean
|
|
103205
103307
|
evaluated_count?: boolean
|
|
103206
103308
|
rejected_count?: boolean
|
|
103309
|
+
on_hold_count?: boolean
|
|
103207
103310
|
shortlisted_count?: boolean
|
|
103208
103311
|
offered_count?: boolean
|
|
103209
103312
|
offer_accepted_count?: boolean
|
|
@@ -103216,7 +103319,7 @@ export namespace Prisma {
|
|
|
103216
103319
|
updated_at?: boolean
|
|
103217
103320
|
}
|
|
103218
103321
|
|
|
103219
|
-
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"]>
|
|
103220
103323
|
|
|
103221
103324
|
export type $SourceEffectivenessAnalyticsPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
103222
103325
|
name: "SourceEffectivenessAnalytics"
|
|
@@ -103237,6 +103340,7 @@ export namespace Prisma {
|
|
|
103237
103340
|
screened_count: number
|
|
103238
103341
|
evaluated_count: number
|
|
103239
103342
|
rejected_count: number
|
|
103343
|
+
on_hold_count: number
|
|
103240
103344
|
shortlisted_count: number
|
|
103241
103345
|
offered_count: number
|
|
103242
103346
|
offer_accepted_count: number
|
|
@@ -103685,6 +103789,7 @@ export namespace Prisma {
|
|
|
103685
103789
|
readonly screened_count: FieldRef<"SourceEffectivenessAnalytics", 'Int'>
|
|
103686
103790
|
readonly evaluated_count: FieldRef<"SourceEffectivenessAnalytics", 'Int'>
|
|
103687
103791
|
readonly rejected_count: FieldRef<"SourceEffectivenessAnalytics", 'Int'>
|
|
103792
|
+
readonly on_hold_count: FieldRef<"SourceEffectivenessAnalytics", 'Int'>
|
|
103688
103793
|
readonly shortlisted_count: FieldRef<"SourceEffectivenessAnalytics", 'Int'>
|
|
103689
103794
|
readonly offered_count: FieldRef<"SourceEffectivenessAnalytics", 'Int'>
|
|
103690
103795
|
readonly offer_accepted_count: FieldRef<"SourceEffectivenessAnalytics", 'Int'>
|
|
@@ -104079,6 +104184,7 @@ export namespace Prisma {
|
|
|
104079
104184
|
screened_count: number | null
|
|
104080
104185
|
evaluated_count: number | null
|
|
104081
104186
|
rejected_count: number | null
|
|
104187
|
+
on_hold_count: number | null
|
|
104082
104188
|
shortlisted_count: number | null
|
|
104083
104189
|
offered_count: number | null
|
|
104084
104190
|
offer_accepted_count: number | null
|
|
@@ -104096,6 +104202,7 @@ export namespace Prisma {
|
|
|
104096
104202
|
screened_count: number | null
|
|
104097
104203
|
evaluated_count: number | null
|
|
104098
104204
|
rejected_count: number | null
|
|
104205
|
+
on_hold_count: number | null
|
|
104099
104206
|
shortlisted_count: number | null
|
|
104100
104207
|
offered_count: number | null
|
|
104101
104208
|
offer_accepted_count: number | null
|
|
@@ -104124,6 +104231,7 @@ export namespace Prisma {
|
|
|
104124
104231
|
screened_count: number | null
|
|
104125
104232
|
evaluated_count: number | null
|
|
104126
104233
|
rejected_count: number | null
|
|
104234
|
+
on_hold_count: number | null
|
|
104127
104235
|
shortlisted_count: number | null
|
|
104128
104236
|
offered_count: number | null
|
|
104129
104237
|
offer_accepted_count: number | null
|
|
@@ -104152,6 +104260,7 @@ export namespace Prisma {
|
|
|
104152
104260
|
screened_count: number | null
|
|
104153
104261
|
evaluated_count: number | null
|
|
104154
104262
|
rejected_count: number | null
|
|
104263
|
+
on_hold_count: number | null
|
|
104155
104264
|
shortlisted_count: number | null
|
|
104156
104265
|
offered_count: number | null
|
|
104157
104266
|
offer_accepted_count: number | null
|
|
@@ -104180,6 +104289,7 @@ export namespace Prisma {
|
|
|
104180
104289
|
screened_count: number
|
|
104181
104290
|
evaluated_count: number
|
|
104182
104291
|
rejected_count: number
|
|
104292
|
+
on_hold_count: number
|
|
104183
104293
|
shortlisted_count: number
|
|
104184
104294
|
offered_count: number
|
|
104185
104295
|
offer_accepted_count: number
|
|
@@ -104199,6 +104309,7 @@ export namespace Prisma {
|
|
|
104199
104309
|
screened_count?: true
|
|
104200
104310
|
evaluated_count?: true
|
|
104201
104311
|
rejected_count?: true
|
|
104312
|
+
on_hold_count?: true
|
|
104202
104313
|
shortlisted_count?: true
|
|
104203
104314
|
offered_count?: true
|
|
104204
104315
|
offer_accepted_count?: true
|
|
@@ -104216,6 +104327,7 @@ export namespace Prisma {
|
|
|
104216
104327
|
screened_count?: true
|
|
104217
104328
|
evaluated_count?: true
|
|
104218
104329
|
rejected_count?: true
|
|
104330
|
+
on_hold_count?: true
|
|
104219
104331
|
shortlisted_count?: true
|
|
104220
104332
|
offered_count?: true
|
|
104221
104333
|
offer_accepted_count?: true
|
|
@@ -104244,6 +104356,7 @@ export namespace Prisma {
|
|
|
104244
104356
|
screened_count?: true
|
|
104245
104357
|
evaluated_count?: true
|
|
104246
104358
|
rejected_count?: true
|
|
104359
|
+
on_hold_count?: true
|
|
104247
104360
|
shortlisted_count?: true
|
|
104248
104361
|
offered_count?: true
|
|
104249
104362
|
offer_accepted_count?: true
|
|
@@ -104272,6 +104385,7 @@ export namespace Prisma {
|
|
|
104272
104385
|
screened_count?: true
|
|
104273
104386
|
evaluated_count?: true
|
|
104274
104387
|
rejected_count?: true
|
|
104388
|
+
on_hold_count?: true
|
|
104275
104389
|
shortlisted_count?: true
|
|
104276
104390
|
offered_count?: true
|
|
104277
104391
|
offer_accepted_count?: true
|
|
@@ -104300,6 +104414,7 @@ export namespace Prisma {
|
|
|
104300
104414
|
screened_count?: true
|
|
104301
104415
|
evaluated_count?: true
|
|
104302
104416
|
rejected_count?: true
|
|
104417
|
+
on_hold_count?: true
|
|
104303
104418
|
shortlisted_count?: true
|
|
104304
104419
|
offered_count?: true
|
|
104305
104420
|
offer_accepted_count?: true
|
|
@@ -104415,6 +104530,7 @@ export namespace Prisma {
|
|
|
104415
104530
|
screened_count: number
|
|
104416
104531
|
evaluated_count: number
|
|
104417
104532
|
rejected_count: number
|
|
104533
|
+
on_hold_count: number
|
|
104418
104534
|
shortlisted_count: number
|
|
104419
104535
|
offered_count: number
|
|
104420
104536
|
offer_accepted_count: number
|
|
@@ -104462,6 +104578,7 @@ export namespace Prisma {
|
|
|
104462
104578
|
screened_count?: boolean
|
|
104463
104579
|
evaluated_count?: boolean
|
|
104464
104580
|
rejected_count?: boolean
|
|
104581
|
+
on_hold_count?: boolean
|
|
104465
104582
|
shortlisted_count?: boolean
|
|
104466
104583
|
offered_count?: boolean
|
|
104467
104584
|
offer_accepted_count?: boolean
|
|
@@ -104490,6 +104607,7 @@ export namespace Prisma {
|
|
|
104490
104607
|
screened_count?: boolean
|
|
104491
104608
|
evaluated_count?: boolean
|
|
104492
104609
|
rejected_count?: boolean
|
|
104610
|
+
on_hold_count?: boolean
|
|
104493
104611
|
shortlisted_count?: boolean
|
|
104494
104612
|
offered_count?: boolean
|
|
104495
104613
|
offer_accepted_count?: boolean
|
|
@@ -104518,6 +104636,7 @@ export namespace Prisma {
|
|
|
104518
104636
|
screened_count?: boolean
|
|
104519
104637
|
evaluated_count?: boolean
|
|
104520
104638
|
rejected_count?: boolean
|
|
104639
|
+
on_hold_count?: boolean
|
|
104521
104640
|
shortlisted_count?: boolean
|
|
104522
104641
|
offered_count?: boolean
|
|
104523
104642
|
offer_accepted_count?: boolean
|
|
@@ -104546,6 +104665,7 @@ export namespace Prisma {
|
|
|
104546
104665
|
screened_count?: boolean
|
|
104547
104666
|
evaluated_count?: boolean
|
|
104548
104667
|
rejected_count?: boolean
|
|
104668
|
+
on_hold_count?: boolean
|
|
104549
104669
|
shortlisted_count?: boolean
|
|
104550
104670
|
offered_count?: boolean
|
|
104551
104671
|
offer_accepted_count?: boolean
|
|
@@ -104557,7 +104677,7 @@ export namespace Prisma {
|
|
|
104557
104677
|
average_fit_score?: boolean
|
|
104558
104678
|
}
|
|
104559
104679
|
|
|
104560
|
-
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"]>
|
|
104561
104681
|
|
|
104562
104682
|
export type $SourceEffectivenessAnalyticsDailyPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
104563
104683
|
name: "SourceEffectivenessAnalyticsDaily"
|
|
@@ -104579,6 +104699,7 @@ export namespace Prisma {
|
|
|
104579
104699
|
screened_count: number
|
|
104580
104700
|
evaluated_count: number
|
|
104581
104701
|
rejected_count: number
|
|
104702
|
+
on_hold_count: number
|
|
104582
104703
|
shortlisted_count: number
|
|
104583
104704
|
offered_count: number
|
|
104584
104705
|
offer_accepted_count: number
|
|
@@ -105027,6 +105148,7 @@ export namespace Prisma {
|
|
|
105027
105148
|
readonly screened_count: FieldRef<"SourceEffectivenessAnalyticsDaily", 'Int'>
|
|
105028
105149
|
readonly evaluated_count: FieldRef<"SourceEffectivenessAnalyticsDaily", 'Int'>
|
|
105029
105150
|
readonly rejected_count: FieldRef<"SourceEffectivenessAnalyticsDaily", 'Int'>
|
|
105151
|
+
readonly on_hold_count: FieldRef<"SourceEffectivenessAnalyticsDaily", 'Int'>
|
|
105030
105152
|
readonly shortlisted_count: FieldRef<"SourceEffectivenessAnalyticsDaily", 'Int'>
|
|
105031
105153
|
readonly offered_count: FieldRef<"SourceEffectivenessAnalyticsDaily", 'Int'>
|
|
105032
105154
|
readonly offer_accepted_count: FieldRef<"SourceEffectivenessAnalyticsDaily", 'Int'>
|
|
@@ -115022,6 +115144,8 @@ export namespace Prisma {
|
|
|
115022
115144
|
is_evaluated: 'is_evaluated',
|
|
115023
115145
|
is_rejected: 'is_rejected',
|
|
115024
115146
|
is_shortlisted: 'is_shortlisted',
|
|
115147
|
+
is_on_hold: 'is_on_hold',
|
|
115148
|
+
is_withdrawn: 'is_withdrawn',
|
|
115025
115149
|
has_committed_evaluation: 'has_committed_evaluation',
|
|
115026
115150
|
updated_at: 'updated_at'
|
|
115027
115151
|
};
|
|
@@ -115054,6 +115178,8 @@ export namespace Prisma {
|
|
|
115054
115178
|
is_evaluated: 'is_evaluated',
|
|
115055
115179
|
is_rejected: 'is_rejected',
|
|
115056
115180
|
is_shortlisted: 'is_shortlisted',
|
|
115181
|
+
is_on_hold: 'is_on_hold',
|
|
115182
|
+
is_withdrawn: 'is_withdrawn',
|
|
115057
115183
|
has_committed_evaluation: 'has_committed_evaluation'
|
|
115058
115184
|
};
|
|
115059
115185
|
|
|
@@ -116303,6 +116429,8 @@ export namespace Prisma {
|
|
|
116303
116429
|
ongoing_count: 'ongoing_count',
|
|
116304
116430
|
selected_count: 'selected_count',
|
|
116305
116431
|
rejected_count: 'rejected_count',
|
|
116432
|
+
on_hold_count: 'on_hold_count',
|
|
116433
|
+
withdrawn_count: 'withdrawn_count',
|
|
116306
116434
|
updated_at: 'updated_at'
|
|
116307
116435
|
};
|
|
116308
116436
|
|
|
@@ -116333,7 +116461,9 @@ export namespace Prisma {
|
|
|
116333
116461
|
unscreened_count: 'unscreened_count',
|
|
116334
116462
|
ongoing_count: 'ongoing_count',
|
|
116335
116463
|
selected_count: 'selected_count',
|
|
116336
|
-
rejected_count: 'rejected_count'
|
|
116464
|
+
rejected_count: 'rejected_count',
|
|
116465
|
+
on_hold_count: 'on_hold_count',
|
|
116466
|
+
withdrawn_count: 'withdrawn_count'
|
|
116337
116467
|
};
|
|
116338
116468
|
|
|
116339
116469
|
export type OpenJobAnalyticsDailyScalarFieldEnum = (typeof OpenJobAnalyticsDailyScalarFieldEnum)[keyof typeof OpenJobAnalyticsDailyScalarFieldEnum]
|
|
@@ -116401,9 +116531,8 @@ export namespace Prisma {
|
|
|
116401
116531
|
application_count: 'application_count',
|
|
116402
116532
|
filtered_in_count: 'filtered_in_count',
|
|
116403
116533
|
min_fit_score: 'min_fit_score',
|
|
116404
|
-
|
|
116405
|
-
|
|
116406
|
-
technical_interview_count: 'technical_interview_count',
|
|
116534
|
+
screening_count: 'screening_count',
|
|
116535
|
+
business_screening_count: 'business_screening_count',
|
|
116407
116536
|
business_round_count: 'business_round_count',
|
|
116408
116537
|
behavioral_round_count: 'behavioral_round_count',
|
|
116409
116538
|
shortlisted_count: 'shortlisted_count',
|
|
@@ -116425,9 +116554,8 @@ export namespace Prisma {
|
|
|
116425
116554
|
application_count: 'application_count',
|
|
116426
116555
|
filtered_in_count: 'filtered_in_count',
|
|
116427
116556
|
min_fit_score: 'min_fit_score',
|
|
116428
|
-
|
|
116429
|
-
|
|
116430
|
-
technical_interview_count: 'technical_interview_count',
|
|
116557
|
+
screening_count: 'screening_count',
|
|
116558
|
+
business_screening_count: 'business_screening_count',
|
|
116431
116559
|
business_round_count: 'business_round_count',
|
|
116432
116560
|
behavioral_round_count: 'behavioral_round_count',
|
|
116433
116561
|
shortlisted_count: 'shortlisted_count'
|
|
@@ -116657,6 +116785,7 @@ export namespace Prisma {
|
|
|
116657
116785
|
screened_count: 'screened_count',
|
|
116658
116786
|
evaluated_count: 'evaluated_count',
|
|
116659
116787
|
rejected_count: 'rejected_count',
|
|
116788
|
+
on_hold_count: 'on_hold_count',
|
|
116660
116789
|
shortlisted_count: 'shortlisted_count',
|
|
116661
116790
|
offered_count: 'offered_count',
|
|
116662
116791
|
offer_accepted_count: 'offer_accepted_count',
|
|
@@ -116689,6 +116818,7 @@ export namespace Prisma {
|
|
|
116689
116818
|
screened_count: 'screened_count',
|
|
116690
116819
|
evaluated_count: 'evaluated_count',
|
|
116691
116820
|
rejected_count: 'rejected_count',
|
|
116821
|
+
on_hold_count: 'on_hold_count',
|
|
116692
116822
|
shortlisted_count: 'shortlisted_count',
|
|
116693
116823
|
offered_count: 'offered_count',
|
|
116694
116824
|
offer_accepted_count: 'offer_accepted_count',
|
|
@@ -118173,6 +118303,8 @@ export namespace Prisma {
|
|
|
118173
118303
|
is_evaluated?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118174
118304
|
is_rejected?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118175
118305
|
is_shortlisted?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118306
|
+
is_on_hold?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118307
|
+
is_withdrawn?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118176
118308
|
has_committed_evaluation?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118177
118309
|
updated_at?: DateTimeFilter<"ApplicationAnalytics"> | Date | string
|
|
118178
118310
|
}
|
|
@@ -118201,6 +118333,8 @@ export namespace Prisma {
|
|
|
118201
118333
|
is_evaluated?: SortOrder
|
|
118202
118334
|
is_rejected?: SortOrder
|
|
118203
118335
|
is_shortlisted?: SortOrder
|
|
118336
|
+
is_on_hold?: SortOrder
|
|
118337
|
+
is_withdrawn?: SortOrder
|
|
118204
118338
|
has_committed_evaluation?: SortOrder
|
|
118205
118339
|
updated_at?: SortOrder
|
|
118206
118340
|
}
|
|
@@ -118232,6 +118366,8 @@ export namespace Prisma {
|
|
|
118232
118366
|
is_evaluated?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118233
118367
|
is_rejected?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118234
118368
|
is_shortlisted?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118369
|
+
is_on_hold?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118370
|
+
is_withdrawn?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118235
118371
|
has_committed_evaluation?: BoolFilter<"ApplicationAnalytics"> | boolean
|
|
118236
118372
|
updated_at?: DateTimeFilter<"ApplicationAnalytics"> | Date | string
|
|
118237
118373
|
}, "id" | "application_id">
|
|
@@ -118260,6 +118396,8 @@ export namespace Prisma {
|
|
|
118260
118396
|
is_evaluated?: SortOrder
|
|
118261
118397
|
is_rejected?: SortOrder
|
|
118262
118398
|
is_shortlisted?: SortOrder
|
|
118399
|
+
is_on_hold?: SortOrder
|
|
118400
|
+
is_withdrawn?: SortOrder
|
|
118263
118401
|
has_committed_evaluation?: SortOrder
|
|
118264
118402
|
updated_at?: SortOrder
|
|
118265
118403
|
_count?: ApplicationAnalyticsCountOrderByAggregateInput
|
|
@@ -118296,6 +118434,8 @@ export namespace Prisma {
|
|
|
118296
118434
|
is_evaluated?: BoolWithAggregatesFilter<"ApplicationAnalytics"> | boolean
|
|
118297
118435
|
is_rejected?: BoolWithAggregatesFilter<"ApplicationAnalytics"> | boolean
|
|
118298
118436
|
is_shortlisted?: BoolWithAggregatesFilter<"ApplicationAnalytics"> | boolean
|
|
118437
|
+
is_on_hold?: BoolWithAggregatesFilter<"ApplicationAnalytics"> | boolean
|
|
118438
|
+
is_withdrawn?: BoolWithAggregatesFilter<"ApplicationAnalytics"> | boolean
|
|
118299
118439
|
has_committed_evaluation?: BoolWithAggregatesFilter<"ApplicationAnalytics"> | boolean
|
|
118300
118440
|
updated_at?: DateTimeWithAggregatesFilter<"ApplicationAnalytics"> | Date | string
|
|
118301
118441
|
}
|
|
@@ -118328,6 +118468,8 @@ export namespace Prisma {
|
|
|
118328
118468
|
is_evaluated?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118329
118469
|
is_rejected?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118330
118470
|
is_shortlisted?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118471
|
+
is_on_hold?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118472
|
+
is_withdrawn?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118331
118473
|
has_committed_evaluation?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118332
118474
|
}
|
|
118333
118475
|
|
|
@@ -118356,6 +118498,8 @@ export namespace Prisma {
|
|
|
118356
118498
|
is_evaluated?: SortOrder
|
|
118357
118499
|
is_rejected?: SortOrder
|
|
118358
118500
|
is_shortlisted?: SortOrder
|
|
118501
|
+
is_on_hold?: SortOrder
|
|
118502
|
+
is_withdrawn?: SortOrder
|
|
118359
118503
|
has_committed_evaluation?: SortOrder
|
|
118360
118504
|
}
|
|
118361
118505
|
|
|
@@ -118388,6 +118532,8 @@ export namespace Prisma {
|
|
|
118388
118532
|
is_evaluated?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118389
118533
|
is_rejected?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118390
118534
|
is_shortlisted?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118535
|
+
is_on_hold?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118536
|
+
is_withdrawn?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118391
118537
|
has_committed_evaluation?: BoolFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118392
118538
|
}, "id" | "snapshot_date_application_id">
|
|
118393
118539
|
|
|
@@ -118416,6 +118562,8 @@ export namespace Prisma {
|
|
|
118416
118562
|
is_evaluated?: SortOrder
|
|
118417
118563
|
is_rejected?: SortOrder
|
|
118418
118564
|
is_shortlisted?: SortOrder
|
|
118565
|
+
is_on_hold?: SortOrder
|
|
118566
|
+
is_withdrawn?: SortOrder
|
|
118419
118567
|
has_committed_evaluation?: SortOrder
|
|
118420
118568
|
_count?: ApplicationAnalyticsDailyCountOrderByAggregateInput
|
|
118421
118569
|
_avg?: ApplicationAnalyticsDailyAvgOrderByAggregateInput
|
|
@@ -118452,6 +118600,8 @@ export namespace Prisma {
|
|
|
118452
118600
|
is_evaluated?: BoolWithAggregatesFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118453
118601
|
is_rejected?: BoolWithAggregatesFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118454
118602
|
is_shortlisted?: BoolWithAggregatesFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118603
|
+
is_on_hold?: BoolWithAggregatesFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118604
|
+
is_withdrawn?: BoolWithAggregatesFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118455
118605
|
has_committed_evaluation?: BoolWithAggregatesFilter<"ApplicationAnalyticsDaily"> | boolean
|
|
118456
118606
|
}
|
|
118457
118607
|
|
|
@@ -124994,6 +125144,8 @@ export namespace Prisma {
|
|
|
124994
125144
|
ongoing_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124995
125145
|
selected_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124996
125146
|
rejected_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125147
|
+
on_hold_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125148
|
+
withdrawn_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124997
125149
|
updated_at?: DateTimeFilter<"OpenJobAnalytics"> | Date | string
|
|
124998
125150
|
}
|
|
124999
125151
|
|
|
@@ -125021,6 +125173,8 @@ export namespace Prisma {
|
|
|
125021
125173
|
ongoing_count?: SortOrder
|
|
125022
125174
|
selected_count?: SortOrder
|
|
125023
125175
|
rejected_count?: SortOrder
|
|
125176
|
+
on_hold_count?: SortOrder
|
|
125177
|
+
withdrawn_count?: SortOrder
|
|
125024
125178
|
updated_at?: SortOrder
|
|
125025
125179
|
}
|
|
125026
125180
|
|
|
@@ -125051,6 +125205,8 @@ export namespace Prisma {
|
|
|
125051
125205
|
ongoing_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125052
125206
|
selected_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125053
125207
|
rejected_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125208
|
+
on_hold_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125209
|
+
withdrawn_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125054
125210
|
updated_at?: DateTimeFilter<"OpenJobAnalytics"> | Date | string
|
|
125055
125211
|
}, "id" | "job_description_id">
|
|
125056
125212
|
|
|
@@ -125078,6 +125234,8 @@ export namespace Prisma {
|
|
|
125078
125234
|
ongoing_count?: SortOrder
|
|
125079
125235
|
selected_count?: SortOrder
|
|
125080
125236
|
rejected_count?: SortOrder
|
|
125237
|
+
on_hold_count?: SortOrder
|
|
125238
|
+
withdrawn_count?: SortOrder
|
|
125081
125239
|
updated_at?: SortOrder
|
|
125082
125240
|
_count?: OpenJobAnalyticsCountOrderByAggregateInput
|
|
125083
125241
|
_avg?: OpenJobAnalyticsAvgOrderByAggregateInput
|
|
@@ -125113,6 +125271,8 @@ export namespace Prisma {
|
|
|
125113
125271
|
ongoing_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125114
125272
|
selected_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125115
125273
|
rejected_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125274
|
+
on_hold_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125275
|
+
withdrawn_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125116
125276
|
updated_at?: DateTimeWithAggregatesFilter<"OpenJobAnalytics"> | Date | string
|
|
125117
125277
|
}
|
|
125118
125278
|
|
|
@@ -125144,6 +125304,8 @@ export namespace Prisma {
|
|
|
125144
125304
|
ongoing_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125145
125305
|
selected_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125146
125306
|
rejected_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125307
|
+
on_hold_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125308
|
+
withdrawn_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125147
125309
|
}
|
|
125148
125310
|
|
|
125149
125311
|
export type OpenJobAnalyticsDailyOrderByWithRelationInput = {
|
|
@@ -125171,6 +125333,8 @@ export namespace Prisma {
|
|
|
125171
125333
|
ongoing_count?: SortOrder
|
|
125172
125334
|
selected_count?: SortOrder
|
|
125173
125335
|
rejected_count?: SortOrder
|
|
125336
|
+
on_hold_count?: SortOrder
|
|
125337
|
+
withdrawn_count?: SortOrder
|
|
125174
125338
|
}
|
|
125175
125339
|
|
|
125176
125340
|
export type OpenJobAnalyticsDailyWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -125202,6 +125366,8 @@ export namespace Prisma {
|
|
|
125202
125366
|
ongoing_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125203
125367
|
selected_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125204
125368
|
rejected_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125369
|
+
on_hold_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125370
|
+
withdrawn_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125205
125371
|
}, "id" | "snapshot_date_job_description_id">
|
|
125206
125372
|
|
|
125207
125373
|
export type OpenJobAnalyticsDailyOrderByWithAggregationInput = {
|
|
@@ -125229,6 +125395,8 @@ export namespace Prisma {
|
|
|
125229
125395
|
ongoing_count?: SortOrder
|
|
125230
125396
|
selected_count?: SortOrder
|
|
125231
125397
|
rejected_count?: SortOrder
|
|
125398
|
+
on_hold_count?: SortOrder
|
|
125399
|
+
withdrawn_count?: SortOrder
|
|
125232
125400
|
_count?: OpenJobAnalyticsDailyCountOrderByAggregateInput
|
|
125233
125401
|
_avg?: OpenJobAnalyticsDailyAvgOrderByAggregateInput
|
|
125234
125402
|
_max?: OpenJobAnalyticsDailyMaxOrderByAggregateInput
|
|
@@ -125264,6 +125432,8 @@ export namespace Prisma {
|
|
|
125264
125432
|
ongoing_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125265
125433
|
selected_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125266
125434
|
rejected_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125435
|
+
on_hold_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125436
|
+
withdrawn_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125267
125437
|
}
|
|
125268
125438
|
|
|
125269
125439
|
export type OrganisationWhereInput = {
|
|
@@ -125619,9 +125789,8 @@ export namespace Prisma {
|
|
|
125619
125789
|
application_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125620
125790
|
filtered_in_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125621
125791
|
min_fit_score?: FloatNullableFilter<"PipelineDistributionAnalytics"> | number | null
|
|
125622
|
-
|
|
125623
|
-
|
|
125624
|
-
technical_interview_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125792
|
+
screening_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125793
|
+
business_screening_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125625
125794
|
business_round_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125626
125795
|
behavioral_round_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125627
125796
|
shortlisted_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
@@ -125639,9 +125808,8 @@ export namespace Prisma {
|
|
|
125639
125808
|
application_count?: SortOrder
|
|
125640
125809
|
filtered_in_count?: SortOrder
|
|
125641
125810
|
min_fit_score?: SortOrderInput | SortOrder
|
|
125642
|
-
|
|
125643
|
-
|
|
125644
|
-
technical_interview_count?: SortOrder
|
|
125811
|
+
screening_count?: SortOrder
|
|
125812
|
+
business_screening_count?: SortOrder
|
|
125645
125813
|
business_round_count?: SortOrder
|
|
125646
125814
|
behavioral_round_count?: SortOrder
|
|
125647
125815
|
shortlisted_count?: SortOrder
|
|
@@ -125662,9 +125830,8 @@ export namespace Prisma {
|
|
|
125662
125830
|
application_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125663
125831
|
filtered_in_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125664
125832
|
min_fit_score?: FloatNullableFilter<"PipelineDistributionAnalytics"> | number | null
|
|
125665
|
-
|
|
125666
|
-
|
|
125667
|
-
technical_interview_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125833
|
+
screening_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125834
|
+
business_screening_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125668
125835
|
business_round_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125669
125836
|
behavioral_round_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
125670
125837
|
shortlisted_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
@@ -125682,9 +125849,8 @@ export namespace Prisma {
|
|
|
125682
125849
|
application_count?: SortOrder
|
|
125683
125850
|
filtered_in_count?: SortOrder
|
|
125684
125851
|
min_fit_score?: SortOrderInput | SortOrder
|
|
125685
|
-
|
|
125686
|
-
|
|
125687
|
-
technical_interview_count?: SortOrder
|
|
125852
|
+
screening_count?: SortOrder
|
|
125853
|
+
business_screening_count?: SortOrder
|
|
125688
125854
|
business_round_count?: SortOrder
|
|
125689
125855
|
behavioral_round_count?: SortOrder
|
|
125690
125856
|
shortlisted_count?: SortOrder
|
|
@@ -125710,9 +125876,8 @@ export namespace Prisma {
|
|
|
125710
125876
|
application_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
125711
125877
|
filtered_in_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
125712
125878
|
min_fit_score?: FloatNullableWithAggregatesFilter<"PipelineDistributionAnalytics"> | number | null
|
|
125713
|
-
|
|
125714
|
-
|
|
125715
|
-
technical_interview_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
125879
|
+
screening_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
125880
|
+
business_screening_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
125716
125881
|
business_round_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
125717
125882
|
behavioral_round_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
125718
125883
|
shortlisted_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
@@ -125734,9 +125899,8 @@ export namespace Prisma {
|
|
|
125734
125899
|
application_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125735
125900
|
filtered_in_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125736
125901
|
min_fit_score?: FloatNullableFilter<"PipelineDistributionAnalyticsDaily"> | number | null
|
|
125737
|
-
|
|
125738
|
-
|
|
125739
|
-
technical_interview_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125902
|
+
screening_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125903
|
+
business_screening_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125740
125904
|
business_round_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125741
125905
|
behavioral_round_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125742
125906
|
shortlisted_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
@@ -125754,9 +125918,8 @@ export namespace Prisma {
|
|
|
125754
125918
|
application_count?: SortOrder
|
|
125755
125919
|
filtered_in_count?: SortOrder
|
|
125756
125920
|
min_fit_score?: SortOrderInput | SortOrder
|
|
125757
|
-
|
|
125758
|
-
|
|
125759
|
-
technical_interview_count?: SortOrder
|
|
125921
|
+
screening_count?: SortOrder
|
|
125922
|
+
business_screening_count?: SortOrder
|
|
125760
125923
|
business_round_count?: SortOrder
|
|
125761
125924
|
behavioral_round_count?: SortOrder
|
|
125762
125925
|
shortlisted_count?: SortOrder
|
|
@@ -125778,9 +125941,8 @@ export namespace Prisma {
|
|
|
125778
125941
|
application_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125779
125942
|
filtered_in_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125780
125943
|
min_fit_score?: FloatNullableFilter<"PipelineDistributionAnalyticsDaily"> | number | null
|
|
125781
|
-
|
|
125782
|
-
|
|
125783
|
-
technical_interview_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125944
|
+
screening_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125945
|
+
business_screening_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125784
125946
|
business_round_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125785
125947
|
behavioral_round_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125786
125948
|
shortlisted_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
@@ -125798,9 +125960,8 @@ export namespace Prisma {
|
|
|
125798
125960
|
application_count?: SortOrder
|
|
125799
125961
|
filtered_in_count?: SortOrder
|
|
125800
125962
|
min_fit_score?: SortOrderInput | SortOrder
|
|
125801
|
-
|
|
125802
|
-
|
|
125803
|
-
technical_interview_count?: SortOrder
|
|
125963
|
+
screening_count?: SortOrder
|
|
125964
|
+
business_screening_count?: SortOrder
|
|
125804
125965
|
business_round_count?: SortOrder
|
|
125805
125966
|
behavioral_round_count?: SortOrder
|
|
125806
125967
|
shortlisted_count?: SortOrder
|
|
@@ -125826,9 +125987,8 @@ export namespace Prisma {
|
|
|
125826
125987
|
application_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125827
125988
|
filtered_in_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125828
125989
|
min_fit_score?: FloatNullableWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number | null
|
|
125829
|
-
|
|
125830
|
-
|
|
125831
|
-
technical_interview_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125990
|
+
screening_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125991
|
+
business_screening_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125832
125992
|
business_round_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125833
125993
|
behavioral_round_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
125834
125994
|
shortlisted_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
@@ -126935,6 +127095,7 @@ export namespace Prisma {
|
|
|
126935
127095
|
screened_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126936
127096
|
evaluated_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126937
127097
|
rejected_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
127098
|
+
on_hold_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126938
127099
|
shortlisted_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126939
127100
|
offered_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126940
127101
|
offer_accepted_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
@@ -126963,6 +127124,7 @@ export namespace Prisma {
|
|
|
126963
127124
|
screened_count?: SortOrder
|
|
126964
127125
|
evaluated_count?: SortOrder
|
|
126965
127126
|
rejected_count?: SortOrder
|
|
127127
|
+
on_hold_count?: SortOrder
|
|
126966
127128
|
shortlisted_count?: SortOrder
|
|
126967
127129
|
offered_count?: SortOrder
|
|
126968
127130
|
offer_accepted_count?: SortOrder
|
|
@@ -126995,6 +127157,7 @@ export namespace Prisma {
|
|
|
126995
127157
|
screened_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126996
127158
|
evaluated_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126997
127159
|
rejected_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
127160
|
+
on_hold_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126998
127161
|
shortlisted_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
126999
127162
|
offered_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
127000
127163
|
offer_accepted_count?: IntFilter<"SourceEffectivenessAnalytics"> | number
|
|
@@ -127023,6 +127186,7 @@ export namespace Prisma {
|
|
|
127023
127186
|
screened_count?: SortOrder
|
|
127024
127187
|
evaluated_count?: SortOrder
|
|
127025
127188
|
rejected_count?: SortOrder
|
|
127189
|
+
on_hold_count?: SortOrder
|
|
127026
127190
|
shortlisted_count?: SortOrder
|
|
127027
127191
|
offered_count?: SortOrder
|
|
127028
127192
|
offer_accepted_count?: SortOrder
|
|
@@ -127059,6 +127223,7 @@ export namespace Prisma {
|
|
|
127059
127223
|
screened_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalytics"> | number
|
|
127060
127224
|
evaluated_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalytics"> | number
|
|
127061
127225
|
rejected_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalytics"> | number
|
|
127226
|
+
on_hold_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalytics"> | number
|
|
127062
127227
|
shortlisted_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalytics"> | number
|
|
127063
127228
|
offered_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalytics"> | number
|
|
127064
127229
|
offer_accepted_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalytics"> | number
|
|
@@ -127091,6 +127256,7 @@ export namespace Prisma {
|
|
|
127091
127256
|
screened_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127092
127257
|
evaluated_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127093
127258
|
rejected_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127259
|
+
on_hold_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127094
127260
|
shortlisted_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127095
127261
|
offered_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127096
127262
|
offer_accepted_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
@@ -127119,6 +127285,7 @@ export namespace Prisma {
|
|
|
127119
127285
|
screened_count?: SortOrder
|
|
127120
127286
|
evaluated_count?: SortOrder
|
|
127121
127287
|
rejected_count?: SortOrder
|
|
127288
|
+
on_hold_count?: SortOrder
|
|
127122
127289
|
shortlisted_count?: SortOrder
|
|
127123
127290
|
offered_count?: SortOrder
|
|
127124
127291
|
offer_accepted_count?: SortOrder
|
|
@@ -127151,6 +127318,7 @@ export namespace Prisma {
|
|
|
127151
127318
|
screened_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127152
127319
|
evaluated_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127153
127320
|
rejected_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127321
|
+
on_hold_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127154
127322
|
shortlisted_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127155
127323
|
offered_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127156
127324
|
offer_accepted_count?: IntFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
@@ -127179,6 +127347,7 @@ export namespace Prisma {
|
|
|
127179
127347
|
screened_count?: SortOrder
|
|
127180
127348
|
evaluated_count?: SortOrder
|
|
127181
127349
|
rejected_count?: SortOrder
|
|
127350
|
+
on_hold_count?: SortOrder
|
|
127182
127351
|
shortlisted_count?: SortOrder
|
|
127183
127352
|
offered_count?: SortOrder
|
|
127184
127353
|
offer_accepted_count?: SortOrder
|
|
@@ -127215,6 +127384,7 @@ export namespace Prisma {
|
|
|
127215
127384
|
screened_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127216
127385
|
evaluated_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127217
127386
|
rejected_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127387
|
+
on_hold_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127218
127388
|
shortlisted_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127219
127389
|
offered_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
127220
127390
|
offer_accepted_count?: IntWithAggregatesFilter<"SourceEffectivenessAnalyticsDaily"> | number
|
|
@@ -128611,6 +128781,8 @@ export namespace Prisma {
|
|
|
128611
128781
|
is_evaluated?: boolean
|
|
128612
128782
|
is_rejected?: boolean
|
|
128613
128783
|
is_shortlisted?: boolean
|
|
128784
|
+
is_on_hold?: boolean
|
|
128785
|
+
is_withdrawn?: boolean
|
|
128614
128786
|
has_committed_evaluation?: boolean
|
|
128615
128787
|
updated_at?: Date | string
|
|
128616
128788
|
}
|
|
@@ -128639,6 +128811,8 @@ export namespace Prisma {
|
|
|
128639
128811
|
is_evaluated?: boolean
|
|
128640
128812
|
is_rejected?: boolean
|
|
128641
128813
|
is_shortlisted?: boolean
|
|
128814
|
+
is_on_hold?: boolean
|
|
128815
|
+
is_withdrawn?: boolean
|
|
128642
128816
|
has_committed_evaluation?: boolean
|
|
128643
128817
|
updated_at?: Date | string
|
|
128644
128818
|
}
|
|
@@ -128667,6 +128841,8 @@ export namespace Prisma {
|
|
|
128667
128841
|
is_evaluated?: BoolFieldUpdateOperationsInput | boolean
|
|
128668
128842
|
is_rejected?: BoolFieldUpdateOperationsInput | boolean
|
|
128669
128843
|
is_shortlisted?: BoolFieldUpdateOperationsInput | boolean
|
|
128844
|
+
is_on_hold?: BoolFieldUpdateOperationsInput | boolean
|
|
128845
|
+
is_withdrawn?: BoolFieldUpdateOperationsInput | boolean
|
|
128670
128846
|
has_committed_evaluation?: BoolFieldUpdateOperationsInput | boolean
|
|
128671
128847
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
128672
128848
|
}
|
|
@@ -128695,6 +128871,8 @@ export namespace Prisma {
|
|
|
128695
128871
|
is_evaluated?: BoolFieldUpdateOperationsInput | boolean
|
|
128696
128872
|
is_rejected?: BoolFieldUpdateOperationsInput | boolean
|
|
128697
128873
|
is_shortlisted?: BoolFieldUpdateOperationsInput | boolean
|
|
128874
|
+
is_on_hold?: BoolFieldUpdateOperationsInput | boolean
|
|
128875
|
+
is_withdrawn?: BoolFieldUpdateOperationsInput | boolean
|
|
128698
128876
|
has_committed_evaluation?: BoolFieldUpdateOperationsInput | boolean
|
|
128699
128877
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
128700
128878
|
}
|
|
@@ -128723,6 +128901,8 @@ export namespace Prisma {
|
|
|
128723
128901
|
is_evaluated?: boolean
|
|
128724
128902
|
is_rejected?: boolean
|
|
128725
128903
|
is_shortlisted?: boolean
|
|
128904
|
+
is_on_hold?: boolean
|
|
128905
|
+
is_withdrawn?: boolean
|
|
128726
128906
|
has_committed_evaluation?: boolean
|
|
128727
128907
|
updated_at?: Date | string
|
|
128728
128908
|
}
|
|
@@ -128751,6 +128931,8 @@ export namespace Prisma {
|
|
|
128751
128931
|
is_evaluated?: BoolFieldUpdateOperationsInput | boolean
|
|
128752
128932
|
is_rejected?: BoolFieldUpdateOperationsInput | boolean
|
|
128753
128933
|
is_shortlisted?: BoolFieldUpdateOperationsInput | boolean
|
|
128934
|
+
is_on_hold?: BoolFieldUpdateOperationsInput | boolean
|
|
128935
|
+
is_withdrawn?: BoolFieldUpdateOperationsInput | boolean
|
|
128754
128936
|
has_committed_evaluation?: BoolFieldUpdateOperationsInput | boolean
|
|
128755
128937
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
128756
128938
|
}
|
|
@@ -128779,6 +128961,8 @@ export namespace Prisma {
|
|
|
128779
128961
|
is_evaluated?: BoolFieldUpdateOperationsInput | boolean
|
|
128780
128962
|
is_rejected?: BoolFieldUpdateOperationsInput | boolean
|
|
128781
128963
|
is_shortlisted?: BoolFieldUpdateOperationsInput | boolean
|
|
128964
|
+
is_on_hold?: BoolFieldUpdateOperationsInput | boolean
|
|
128965
|
+
is_withdrawn?: BoolFieldUpdateOperationsInput | boolean
|
|
128782
128966
|
has_committed_evaluation?: BoolFieldUpdateOperationsInput | boolean
|
|
128783
128967
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
128784
128968
|
}
|
|
@@ -128808,6 +128992,8 @@ export namespace Prisma {
|
|
|
128808
128992
|
is_evaluated?: boolean
|
|
128809
128993
|
is_rejected?: boolean
|
|
128810
128994
|
is_shortlisted?: boolean
|
|
128995
|
+
is_on_hold?: boolean
|
|
128996
|
+
is_withdrawn?: boolean
|
|
128811
128997
|
has_committed_evaluation?: boolean
|
|
128812
128998
|
}
|
|
128813
128999
|
|
|
@@ -128836,6 +129022,8 @@ export namespace Prisma {
|
|
|
128836
129022
|
is_evaluated?: boolean
|
|
128837
129023
|
is_rejected?: boolean
|
|
128838
129024
|
is_shortlisted?: boolean
|
|
129025
|
+
is_on_hold?: boolean
|
|
129026
|
+
is_withdrawn?: boolean
|
|
128839
129027
|
has_committed_evaluation?: boolean
|
|
128840
129028
|
}
|
|
128841
129029
|
|
|
@@ -128864,6 +129052,8 @@ export namespace Prisma {
|
|
|
128864
129052
|
is_evaluated?: BoolFieldUpdateOperationsInput | boolean
|
|
128865
129053
|
is_rejected?: BoolFieldUpdateOperationsInput | boolean
|
|
128866
129054
|
is_shortlisted?: BoolFieldUpdateOperationsInput | boolean
|
|
129055
|
+
is_on_hold?: BoolFieldUpdateOperationsInput | boolean
|
|
129056
|
+
is_withdrawn?: BoolFieldUpdateOperationsInput | boolean
|
|
128867
129057
|
has_committed_evaluation?: BoolFieldUpdateOperationsInput | boolean
|
|
128868
129058
|
}
|
|
128869
129059
|
|
|
@@ -128892,6 +129082,8 @@ export namespace Prisma {
|
|
|
128892
129082
|
is_evaluated?: BoolFieldUpdateOperationsInput | boolean
|
|
128893
129083
|
is_rejected?: BoolFieldUpdateOperationsInput | boolean
|
|
128894
129084
|
is_shortlisted?: BoolFieldUpdateOperationsInput | boolean
|
|
129085
|
+
is_on_hold?: BoolFieldUpdateOperationsInput | boolean
|
|
129086
|
+
is_withdrawn?: BoolFieldUpdateOperationsInput | boolean
|
|
128895
129087
|
has_committed_evaluation?: BoolFieldUpdateOperationsInput | boolean
|
|
128896
129088
|
}
|
|
128897
129089
|
|
|
@@ -128920,6 +129112,8 @@ export namespace Prisma {
|
|
|
128920
129112
|
is_evaluated?: boolean
|
|
128921
129113
|
is_rejected?: boolean
|
|
128922
129114
|
is_shortlisted?: boolean
|
|
129115
|
+
is_on_hold?: boolean
|
|
129116
|
+
is_withdrawn?: boolean
|
|
128923
129117
|
has_committed_evaluation?: boolean
|
|
128924
129118
|
}
|
|
128925
129119
|
|
|
@@ -128948,6 +129142,8 @@ export namespace Prisma {
|
|
|
128948
129142
|
is_evaluated?: BoolFieldUpdateOperationsInput | boolean
|
|
128949
129143
|
is_rejected?: BoolFieldUpdateOperationsInput | boolean
|
|
128950
129144
|
is_shortlisted?: BoolFieldUpdateOperationsInput | boolean
|
|
129145
|
+
is_on_hold?: BoolFieldUpdateOperationsInput | boolean
|
|
129146
|
+
is_withdrawn?: BoolFieldUpdateOperationsInput | boolean
|
|
128951
129147
|
has_committed_evaluation?: BoolFieldUpdateOperationsInput | boolean
|
|
128952
129148
|
}
|
|
128953
129149
|
|
|
@@ -128976,6 +129172,8 @@ export namespace Prisma {
|
|
|
128976
129172
|
is_evaluated?: BoolFieldUpdateOperationsInput | boolean
|
|
128977
129173
|
is_rejected?: BoolFieldUpdateOperationsInput | boolean
|
|
128978
129174
|
is_shortlisted?: BoolFieldUpdateOperationsInput | boolean
|
|
129175
|
+
is_on_hold?: BoolFieldUpdateOperationsInput | boolean
|
|
129176
|
+
is_withdrawn?: BoolFieldUpdateOperationsInput | boolean
|
|
128979
129177
|
has_committed_evaluation?: BoolFieldUpdateOperationsInput | boolean
|
|
128980
129178
|
}
|
|
128981
129179
|
|
|
@@ -136694,6 +136892,8 @@ export namespace Prisma {
|
|
|
136694
136892
|
ongoing_count?: number
|
|
136695
136893
|
selected_count?: number
|
|
136696
136894
|
rejected_count?: number
|
|
136895
|
+
on_hold_count?: number
|
|
136896
|
+
withdrawn_count?: number
|
|
136697
136897
|
updated_at?: Date | string
|
|
136698
136898
|
}
|
|
136699
136899
|
|
|
@@ -136721,6 +136921,8 @@ export namespace Prisma {
|
|
|
136721
136921
|
ongoing_count?: number
|
|
136722
136922
|
selected_count?: number
|
|
136723
136923
|
rejected_count?: number
|
|
136924
|
+
on_hold_count?: number
|
|
136925
|
+
withdrawn_count?: number
|
|
136724
136926
|
updated_at?: Date | string
|
|
136725
136927
|
}
|
|
136726
136928
|
|
|
@@ -136748,6 +136950,8 @@ export namespace Prisma {
|
|
|
136748
136950
|
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136749
136951
|
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136750
136952
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
136953
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
136954
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
136751
136955
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136752
136956
|
}
|
|
136753
136957
|
|
|
@@ -136775,6 +136979,8 @@ export namespace Prisma {
|
|
|
136775
136979
|
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136776
136980
|
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136777
136981
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
136982
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
136983
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
136778
136984
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136779
136985
|
}
|
|
136780
136986
|
|
|
@@ -136802,6 +137008,8 @@ export namespace Prisma {
|
|
|
136802
137008
|
ongoing_count?: number
|
|
136803
137009
|
selected_count?: number
|
|
136804
137010
|
rejected_count?: number
|
|
137011
|
+
on_hold_count?: number
|
|
137012
|
+
withdrawn_count?: number
|
|
136805
137013
|
updated_at?: Date | string
|
|
136806
137014
|
}
|
|
136807
137015
|
|
|
@@ -136829,6 +137037,8 @@ export namespace Prisma {
|
|
|
136829
137037
|
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136830
137038
|
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136831
137039
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
137040
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
137041
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
136832
137042
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136833
137043
|
}
|
|
136834
137044
|
|
|
@@ -136856,6 +137066,8 @@ export namespace Prisma {
|
|
|
136856
137066
|
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136857
137067
|
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136858
137068
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
137069
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
137070
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
136859
137071
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136860
137072
|
}
|
|
136861
137073
|
|
|
@@ -136884,6 +137096,8 @@ export namespace Prisma {
|
|
|
136884
137096
|
ongoing_count?: number
|
|
136885
137097
|
selected_count?: number
|
|
136886
137098
|
rejected_count?: number
|
|
137099
|
+
on_hold_count?: number
|
|
137100
|
+
withdrawn_count?: number
|
|
136887
137101
|
}
|
|
136888
137102
|
|
|
136889
137103
|
export type OpenJobAnalyticsDailyUncheckedCreateInput = {
|
|
@@ -136911,6 +137125,8 @@ export namespace Prisma {
|
|
|
136911
137125
|
ongoing_count?: number
|
|
136912
137126
|
selected_count?: number
|
|
136913
137127
|
rejected_count?: number
|
|
137128
|
+
on_hold_count?: number
|
|
137129
|
+
withdrawn_count?: number
|
|
136914
137130
|
}
|
|
136915
137131
|
|
|
136916
137132
|
export type OpenJobAnalyticsDailyUpdateInput = {
|
|
@@ -136938,6 +137154,8 @@ export namespace Prisma {
|
|
|
136938
137154
|
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136939
137155
|
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136940
137156
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
137157
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
137158
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
136941
137159
|
}
|
|
136942
137160
|
|
|
136943
137161
|
export type OpenJobAnalyticsDailyUncheckedUpdateInput = {
|
|
@@ -136965,6 +137183,8 @@ export namespace Prisma {
|
|
|
136965
137183
|
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136966
137184
|
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136967
137185
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
137186
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
137187
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
136968
137188
|
}
|
|
136969
137189
|
|
|
136970
137190
|
export type OpenJobAnalyticsDailyCreateManyInput = {
|
|
@@ -136992,6 +137212,8 @@ export namespace Prisma {
|
|
|
136992
137212
|
ongoing_count?: number
|
|
136993
137213
|
selected_count?: number
|
|
136994
137214
|
rejected_count?: number
|
|
137215
|
+
on_hold_count?: number
|
|
137216
|
+
withdrawn_count?: number
|
|
136995
137217
|
}
|
|
136996
137218
|
|
|
136997
137219
|
export type OpenJobAnalyticsDailyUpdateManyMutationInput = {
|
|
@@ -137019,6 +137241,8 @@ export namespace Prisma {
|
|
|
137019
137241
|
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
137020
137242
|
selected_count?: IntFieldUpdateOperationsInput | number
|
|
137021
137243
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
137244
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
137245
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
137022
137246
|
}
|
|
137023
137247
|
|
|
137024
137248
|
export type OpenJobAnalyticsDailyUncheckedUpdateManyInput = {
|
|
@@ -137046,6 +137270,8 @@ export namespace Prisma {
|
|
|
137046
137270
|
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
137047
137271
|
selected_count?: IntFieldUpdateOperationsInput | number
|
|
137048
137272
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
137273
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
137274
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
137049
137275
|
}
|
|
137050
137276
|
|
|
137051
137277
|
export type OrganisationCreateInput = {
|
|
@@ -137468,9 +137694,8 @@ export namespace Prisma {
|
|
|
137468
137694
|
application_count?: number
|
|
137469
137695
|
filtered_in_count?: number
|
|
137470
137696
|
min_fit_score?: number | null
|
|
137471
|
-
|
|
137472
|
-
|
|
137473
|
-
technical_interview_count?: number
|
|
137697
|
+
screening_count?: number
|
|
137698
|
+
business_screening_count?: number
|
|
137474
137699
|
business_round_count?: number
|
|
137475
137700
|
behavioral_round_count?: number
|
|
137476
137701
|
shortlisted_count?: number
|
|
@@ -137488,9 +137713,8 @@ export namespace Prisma {
|
|
|
137488
137713
|
application_count?: number
|
|
137489
137714
|
filtered_in_count?: number
|
|
137490
137715
|
min_fit_score?: number | null
|
|
137491
|
-
|
|
137492
|
-
|
|
137493
|
-
technical_interview_count?: number
|
|
137716
|
+
screening_count?: number
|
|
137717
|
+
business_screening_count?: number
|
|
137494
137718
|
business_round_count?: number
|
|
137495
137719
|
behavioral_round_count?: number
|
|
137496
137720
|
shortlisted_count?: number
|
|
@@ -137508,9 +137732,8 @@ export namespace Prisma {
|
|
|
137508
137732
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137509
137733
|
filtered_in_count?: IntFieldUpdateOperationsInput | number
|
|
137510
137734
|
min_fit_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
137511
|
-
|
|
137512
|
-
|
|
137513
|
-
technical_interview_count?: IntFieldUpdateOperationsInput | number
|
|
137735
|
+
screening_count?: IntFieldUpdateOperationsInput | number
|
|
137736
|
+
business_screening_count?: IntFieldUpdateOperationsInput | number
|
|
137514
137737
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
137515
137738
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
137516
137739
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -137528,9 +137751,8 @@ export namespace Prisma {
|
|
|
137528
137751
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137529
137752
|
filtered_in_count?: IntFieldUpdateOperationsInput | number
|
|
137530
137753
|
min_fit_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
137531
|
-
|
|
137532
|
-
|
|
137533
|
-
technical_interview_count?: IntFieldUpdateOperationsInput | number
|
|
137754
|
+
screening_count?: IntFieldUpdateOperationsInput | number
|
|
137755
|
+
business_screening_count?: IntFieldUpdateOperationsInput | number
|
|
137534
137756
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
137535
137757
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
137536
137758
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -137548,9 +137770,8 @@ export namespace Prisma {
|
|
|
137548
137770
|
application_count?: number
|
|
137549
137771
|
filtered_in_count?: number
|
|
137550
137772
|
min_fit_score?: number | null
|
|
137551
|
-
|
|
137552
|
-
|
|
137553
|
-
technical_interview_count?: number
|
|
137773
|
+
screening_count?: number
|
|
137774
|
+
business_screening_count?: number
|
|
137554
137775
|
business_round_count?: number
|
|
137555
137776
|
behavioral_round_count?: number
|
|
137556
137777
|
shortlisted_count?: number
|
|
@@ -137568,9 +137789,8 @@ export namespace Prisma {
|
|
|
137568
137789
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137569
137790
|
filtered_in_count?: IntFieldUpdateOperationsInput | number
|
|
137570
137791
|
min_fit_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
137571
|
-
|
|
137572
|
-
|
|
137573
|
-
technical_interview_count?: IntFieldUpdateOperationsInput | number
|
|
137792
|
+
screening_count?: IntFieldUpdateOperationsInput | number
|
|
137793
|
+
business_screening_count?: IntFieldUpdateOperationsInput | number
|
|
137574
137794
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
137575
137795
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
137576
137796
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -137588,9 +137808,8 @@ export namespace Prisma {
|
|
|
137588
137808
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137589
137809
|
filtered_in_count?: IntFieldUpdateOperationsInput | number
|
|
137590
137810
|
min_fit_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
137591
|
-
|
|
137592
|
-
|
|
137593
|
-
technical_interview_count?: IntFieldUpdateOperationsInput | number
|
|
137811
|
+
screening_count?: IntFieldUpdateOperationsInput | number
|
|
137812
|
+
business_screening_count?: IntFieldUpdateOperationsInput | number
|
|
137594
137813
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
137595
137814
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
137596
137815
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -137609,9 +137828,8 @@ export namespace Prisma {
|
|
|
137609
137828
|
application_count?: number
|
|
137610
137829
|
filtered_in_count?: number
|
|
137611
137830
|
min_fit_score?: number | null
|
|
137612
|
-
|
|
137613
|
-
|
|
137614
|
-
technical_interview_count?: number
|
|
137831
|
+
screening_count?: number
|
|
137832
|
+
business_screening_count?: number
|
|
137615
137833
|
business_round_count?: number
|
|
137616
137834
|
behavioral_round_count?: number
|
|
137617
137835
|
shortlisted_count?: number
|
|
@@ -137629,9 +137847,8 @@ export namespace Prisma {
|
|
|
137629
137847
|
application_count?: number
|
|
137630
137848
|
filtered_in_count?: number
|
|
137631
137849
|
min_fit_score?: number | null
|
|
137632
|
-
|
|
137633
|
-
|
|
137634
|
-
technical_interview_count?: number
|
|
137850
|
+
screening_count?: number
|
|
137851
|
+
business_screening_count?: number
|
|
137635
137852
|
business_round_count?: number
|
|
137636
137853
|
behavioral_round_count?: number
|
|
137637
137854
|
shortlisted_count?: number
|
|
@@ -137649,9 +137866,8 @@ export namespace Prisma {
|
|
|
137649
137866
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137650
137867
|
filtered_in_count?: IntFieldUpdateOperationsInput | number
|
|
137651
137868
|
min_fit_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
137652
|
-
|
|
137653
|
-
|
|
137654
|
-
technical_interview_count?: IntFieldUpdateOperationsInput | number
|
|
137869
|
+
screening_count?: IntFieldUpdateOperationsInput | number
|
|
137870
|
+
business_screening_count?: IntFieldUpdateOperationsInput | number
|
|
137655
137871
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
137656
137872
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
137657
137873
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -137669,9 +137885,8 @@ export namespace Prisma {
|
|
|
137669
137885
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137670
137886
|
filtered_in_count?: IntFieldUpdateOperationsInput | number
|
|
137671
137887
|
min_fit_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
137672
|
-
|
|
137673
|
-
|
|
137674
|
-
technical_interview_count?: IntFieldUpdateOperationsInput | number
|
|
137888
|
+
screening_count?: IntFieldUpdateOperationsInput | number
|
|
137889
|
+
business_screening_count?: IntFieldUpdateOperationsInput | number
|
|
137675
137890
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
137676
137891
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
137677
137892
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -137689,9 +137904,8 @@ export namespace Prisma {
|
|
|
137689
137904
|
application_count?: number
|
|
137690
137905
|
filtered_in_count?: number
|
|
137691
137906
|
min_fit_score?: number | null
|
|
137692
|
-
|
|
137693
|
-
|
|
137694
|
-
technical_interview_count?: number
|
|
137907
|
+
screening_count?: number
|
|
137908
|
+
business_screening_count?: number
|
|
137695
137909
|
business_round_count?: number
|
|
137696
137910
|
behavioral_round_count?: number
|
|
137697
137911
|
shortlisted_count?: number
|
|
@@ -137709,9 +137923,8 @@ export namespace Prisma {
|
|
|
137709
137923
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137710
137924
|
filtered_in_count?: IntFieldUpdateOperationsInput | number
|
|
137711
137925
|
min_fit_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
137712
|
-
|
|
137713
|
-
|
|
137714
|
-
technical_interview_count?: IntFieldUpdateOperationsInput | number
|
|
137926
|
+
screening_count?: IntFieldUpdateOperationsInput | number
|
|
137927
|
+
business_screening_count?: IntFieldUpdateOperationsInput | number
|
|
137715
137928
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
137716
137929
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
137717
137930
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -137729,9 +137942,8 @@ export namespace Prisma {
|
|
|
137729
137942
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137730
137943
|
filtered_in_count?: IntFieldUpdateOperationsInput | number
|
|
137731
137944
|
min_fit_score?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
137732
|
-
|
|
137733
|
-
|
|
137734
|
-
technical_interview_count?: IntFieldUpdateOperationsInput | number
|
|
137945
|
+
screening_count?: IntFieldUpdateOperationsInput | number
|
|
137946
|
+
business_screening_count?: IntFieldUpdateOperationsInput | number
|
|
137735
137947
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
137736
137948
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
137737
137949
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -139009,6 +139221,7 @@ export namespace Prisma {
|
|
|
139009
139221
|
screened_count?: number
|
|
139010
139222
|
evaluated_count?: number
|
|
139011
139223
|
rejected_count?: number
|
|
139224
|
+
on_hold_count?: number
|
|
139012
139225
|
shortlisted_count?: number
|
|
139013
139226
|
offered_count?: number
|
|
139014
139227
|
offer_accepted_count?: number
|
|
@@ -139037,6 +139250,7 @@ export namespace Prisma {
|
|
|
139037
139250
|
screened_count?: number
|
|
139038
139251
|
evaluated_count?: number
|
|
139039
139252
|
rejected_count?: number
|
|
139253
|
+
on_hold_count?: number
|
|
139040
139254
|
shortlisted_count?: number
|
|
139041
139255
|
offered_count?: number
|
|
139042
139256
|
offer_accepted_count?: number
|
|
@@ -139065,6 +139279,7 @@ export namespace Prisma {
|
|
|
139065
139279
|
screened_count?: IntFieldUpdateOperationsInput | number
|
|
139066
139280
|
evaluated_count?: IntFieldUpdateOperationsInput | number
|
|
139067
139281
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
139282
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
139068
139283
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
139069
139284
|
offered_count?: IntFieldUpdateOperationsInput | number
|
|
139070
139285
|
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -139093,6 +139308,7 @@ export namespace Prisma {
|
|
|
139093
139308
|
screened_count?: IntFieldUpdateOperationsInput | number
|
|
139094
139309
|
evaluated_count?: IntFieldUpdateOperationsInput | number
|
|
139095
139310
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
139311
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
139096
139312
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
139097
139313
|
offered_count?: IntFieldUpdateOperationsInput | number
|
|
139098
139314
|
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -139121,6 +139337,7 @@ export namespace Prisma {
|
|
|
139121
139337
|
screened_count?: number
|
|
139122
139338
|
evaluated_count?: number
|
|
139123
139339
|
rejected_count?: number
|
|
139340
|
+
on_hold_count?: number
|
|
139124
139341
|
shortlisted_count?: number
|
|
139125
139342
|
offered_count?: number
|
|
139126
139343
|
offer_accepted_count?: number
|
|
@@ -139149,6 +139366,7 @@ export namespace Prisma {
|
|
|
139149
139366
|
screened_count?: IntFieldUpdateOperationsInput | number
|
|
139150
139367
|
evaluated_count?: IntFieldUpdateOperationsInput | number
|
|
139151
139368
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
139369
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
139152
139370
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
139153
139371
|
offered_count?: IntFieldUpdateOperationsInput | number
|
|
139154
139372
|
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -139177,6 +139395,7 @@ export namespace Prisma {
|
|
|
139177
139395
|
screened_count?: IntFieldUpdateOperationsInput | number
|
|
139178
139396
|
evaluated_count?: IntFieldUpdateOperationsInput | number
|
|
139179
139397
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
139398
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
139180
139399
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
139181
139400
|
offered_count?: IntFieldUpdateOperationsInput | number
|
|
139182
139401
|
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -139206,6 +139425,7 @@ export namespace Prisma {
|
|
|
139206
139425
|
screened_count?: number
|
|
139207
139426
|
evaluated_count?: number
|
|
139208
139427
|
rejected_count?: number
|
|
139428
|
+
on_hold_count?: number
|
|
139209
139429
|
shortlisted_count?: number
|
|
139210
139430
|
offered_count?: number
|
|
139211
139431
|
offer_accepted_count?: number
|
|
@@ -139234,6 +139454,7 @@ export namespace Prisma {
|
|
|
139234
139454
|
screened_count?: number
|
|
139235
139455
|
evaluated_count?: number
|
|
139236
139456
|
rejected_count?: number
|
|
139457
|
+
on_hold_count?: number
|
|
139237
139458
|
shortlisted_count?: number
|
|
139238
139459
|
offered_count?: number
|
|
139239
139460
|
offer_accepted_count?: number
|
|
@@ -139262,6 +139483,7 @@ export namespace Prisma {
|
|
|
139262
139483
|
screened_count?: IntFieldUpdateOperationsInput | number
|
|
139263
139484
|
evaluated_count?: IntFieldUpdateOperationsInput | number
|
|
139264
139485
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
139486
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
139265
139487
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
139266
139488
|
offered_count?: IntFieldUpdateOperationsInput | number
|
|
139267
139489
|
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -139290,6 +139512,7 @@ export namespace Prisma {
|
|
|
139290
139512
|
screened_count?: IntFieldUpdateOperationsInput | number
|
|
139291
139513
|
evaluated_count?: IntFieldUpdateOperationsInput | number
|
|
139292
139514
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
139515
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
139293
139516
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
139294
139517
|
offered_count?: IntFieldUpdateOperationsInput | number
|
|
139295
139518
|
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -139318,6 +139541,7 @@ export namespace Prisma {
|
|
|
139318
139541
|
screened_count?: number
|
|
139319
139542
|
evaluated_count?: number
|
|
139320
139543
|
rejected_count?: number
|
|
139544
|
+
on_hold_count?: number
|
|
139321
139545
|
shortlisted_count?: number
|
|
139322
139546
|
offered_count?: number
|
|
139323
139547
|
offer_accepted_count?: number
|
|
@@ -139346,6 +139570,7 @@ export namespace Prisma {
|
|
|
139346
139570
|
screened_count?: IntFieldUpdateOperationsInput | number
|
|
139347
139571
|
evaluated_count?: IntFieldUpdateOperationsInput | number
|
|
139348
139572
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
139573
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
139349
139574
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
139350
139575
|
offered_count?: IntFieldUpdateOperationsInput | number
|
|
139351
139576
|
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -139374,6 +139599,7 @@ export namespace Prisma {
|
|
|
139374
139599
|
screened_count?: IntFieldUpdateOperationsInput | number
|
|
139375
139600
|
evaluated_count?: IntFieldUpdateOperationsInput | number
|
|
139376
139601
|
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
139602
|
+
on_hold_count?: IntFieldUpdateOperationsInput | number
|
|
139377
139603
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
139378
139604
|
offered_count?: IntFieldUpdateOperationsInput | number
|
|
139379
139605
|
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
@@ -141079,6 +141305,8 @@ export namespace Prisma {
|
|
|
141079
141305
|
is_evaluated?: SortOrder
|
|
141080
141306
|
is_rejected?: SortOrder
|
|
141081
141307
|
is_shortlisted?: SortOrder
|
|
141308
|
+
is_on_hold?: SortOrder
|
|
141309
|
+
is_withdrawn?: SortOrder
|
|
141082
141310
|
has_committed_evaluation?: SortOrder
|
|
141083
141311
|
updated_at?: SortOrder
|
|
141084
141312
|
}
|
|
@@ -141112,6 +141340,8 @@ export namespace Prisma {
|
|
|
141112
141340
|
is_evaluated?: SortOrder
|
|
141113
141341
|
is_rejected?: SortOrder
|
|
141114
141342
|
is_shortlisted?: SortOrder
|
|
141343
|
+
is_on_hold?: SortOrder
|
|
141344
|
+
is_withdrawn?: SortOrder
|
|
141115
141345
|
has_committed_evaluation?: SortOrder
|
|
141116
141346
|
updated_at?: SortOrder
|
|
141117
141347
|
}
|
|
@@ -141140,6 +141370,8 @@ export namespace Prisma {
|
|
|
141140
141370
|
is_evaluated?: SortOrder
|
|
141141
141371
|
is_rejected?: SortOrder
|
|
141142
141372
|
is_shortlisted?: SortOrder
|
|
141373
|
+
is_on_hold?: SortOrder
|
|
141374
|
+
is_withdrawn?: SortOrder
|
|
141143
141375
|
has_committed_evaluation?: SortOrder
|
|
141144
141376
|
updated_at?: SortOrder
|
|
141145
141377
|
}
|
|
@@ -141215,6 +141447,8 @@ export namespace Prisma {
|
|
|
141215
141447
|
is_evaluated?: SortOrder
|
|
141216
141448
|
is_rejected?: SortOrder
|
|
141217
141449
|
is_shortlisted?: SortOrder
|
|
141450
|
+
is_on_hold?: SortOrder
|
|
141451
|
+
is_withdrawn?: SortOrder
|
|
141218
141452
|
has_committed_evaluation?: SortOrder
|
|
141219
141453
|
}
|
|
141220
141454
|
|
|
@@ -141248,6 +141482,8 @@ export namespace Prisma {
|
|
|
141248
141482
|
is_evaluated?: SortOrder
|
|
141249
141483
|
is_rejected?: SortOrder
|
|
141250
141484
|
is_shortlisted?: SortOrder
|
|
141485
|
+
is_on_hold?: SortOrder
|
|
141486
|
+
is_withdrawn?: SortOrder
|
|
141251
141487
|
has_committed_evaluation?: SortOrder
|
|
141252
141488
|
}
|
|
141253
141489
|
|
|
@@ -141276,6 +141512,8 @@ export namespace Prisma {
|
|
|
141276
141512
|
is_evaluated?: SortOrder
|
|
141277
141513
|
is_rejected?: SortOrder
|
|
141278
141514
|
is_shortlisted?: SortOrder
|
|
141515
|
+
is_on_hold?: SortOrder
|
|
141516
|
+
is_withdrawn?: SortOrder
|
|
141279
141517
|
has_committed_evaluation?: SortOrder
|
|
141280
141518
|
}
|
|
141281
141519
|
|
|
@@ -146229,6 +146467,8 @@ export namespace Prisma {
|
|
|
146229
146467
|
ongoing_count?: SortOrder
|
|
146230
146468
|
selected_count?: SortOrder
|
|
146231
146469
|
rejected_count?: SortOrder
|
|
146470
|
+
on_hold_count?: SortOrder
|
|
146471
|
+
withdrawn_count?: SortOrder
|
|
146232
146472
|
updated_at?: SortOrder
|
|
146233
146473
|
}
|
|
146234
146474
|
|
|
@@ -146241,6 +146481,8 @@ export namespace Prisma {
|
|
|
146241
146481
|
ongoing_count?: SortOrder
|
|
146242
146482
|
selected_count?: SortOrder
|
|
146243
146483
|
rejected_count?: SortOrder
|
|
146484
|
+
on_hold_count?: SortOrder
|
|
146485
|
+
withdrawn_count?: SortOrder
|
|
146244
146486
|
}
|
|
146245
146487
|
|
|
146246
146488
|
export type OpenJobAnalyticsMaxOrderByAggregateInput = {
|
|
@@ -146267,6 +146509,8 @@ export namespace Prisma {
|
|
|
146267
146509
|
ongoing_count?: SortOrder
|
|
146268
146510
|
selected_count?: SortOrder
|
|
146269
146511
|
rejected_count?: SortOrder
|
|
146512
|
+
on_hold_count?: SortOrder
|
|
146513
|
+
withdrawn_count?: SortOrder
|
|
146270
146514
|
updated_at?: SortOrder
|
|
146271
146515
|
}
|
|
146272
146516
|
|
|
@@ -146294,6 +146538,8 @@ export namespace Prisma {
|
|
|
146294
146538
|
ongoing_count?: SortOrder
|
|
146295
146539
|
selected_count?: SortOrder
|
|
146296
146540
|
rejected_count?: SortOrder
|
|
146541
|
+
on_hold_count?: SortOrder
|
|
146542
|
+
withdrawn_count?: SortOrder
|
|
146297
146543
|
updated_at?: SortOrder
|
|
146298
146544
|
}
|
|
146299
146545
|
|
|
@@ -146306,6 +146552,8 @@ export namespace Prisma {
|
|
|
146306
146552
|
ongoing_count?: SortOrder
|
|
146307
146553
|
selected_count?: SortOrder
|
|
146308
146554
|
rejected_count?: SortOrder
|
|
146555
|
+
on_hold_count?: SortOrder
|
|
146556
|
+
withdrawn_count?: SortOrder
|
|
146309
146557
|
}
|
|
146310
146558
|
|
|
146311
146559
|
export type EnumOpenJobClosureTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -146348,6 +146596,8 @@ export namespace Prisma {
|
|
|
146348
146596
|
ongoing_count?: SortOrder
|
|
146349
146597
|
selected_count?: SortOrder
|
|
146350
146598
|
rejected_count?: SortOrder
|
|
146599
|
+
on_hold_count?: SortOrder
|
|
146600
|
+
withdrawn_count?: SortOrder
|
|
146351
146601
|
}
|
|
146352
146602
|
|
|
146353
146603
|
export type OpenJobAnalyticsDailyAvgOrderByAggregateInput = {
|
|
@@ -146359,6 +146609,8 @@ export namespace Prisma {
|
|
|
146359
146609
|
ongoing_count?: SortOrder
|
|
146360
146610
|
selected_count?: SortOrder
|
|
146361
146611
|
rejected_count?: SortOrder
|
|
146612
|
+
on_hold_count?: SortOrder
|
|
146613
|
+
withdrawn_count?: SortOrder
|
|
146362
146614
|
}
|
|
146363
146615
|
|
|
146364
146616
|
export type OpenJobAnalyticsDailyMaxOrderByAggregateInput = {
|
|
@@ -146386,6 +146638,8 @@ export namespace Prisma {
|
|
|
146386
146638
|
ongoing_count?: SortOrder
|
|
146387
146639
|
selected_count?: SortOrder
|
|
146388
146640
|
rejected_count?: SortOrder
|
|
146641
|
+
on_hold_count?: SortOrder
|
|
146642
|
+
withdrawn_count?: SortOrder
|
|
146389
146643
|
}
|
|
146390
146644
|
|
|
146391
146645
|
export type OpenJobAnalyticsDailyMinOrderByAggregateInput = {
|
|
@@ -146413,6 +146667,8 @@ export namespace Prisma {
|
|
|
146413
146667
|
ongoing_count?: SortOrder
|
|
146414
146668
|
selected_count?: SortOrder
|
|
146415
146669
|
rejected_count?: SortOrder
|
|
146670
|
+
on_hold_count?: SortOrder
|
|
146671
|
+
withdrawn_count?: SortOrder
|
|
146416
146672
|
}
|
|
146417
146673
|
|
|
146418
146674
|
export type OpenJobAnalyticsDailySumOrderByAggregateInput = {
|
|
@@ -146424,6 +146680,8 @@ export namespace Prisma {
|
|
|
146424
146680
|
ongoing_count?: SortOrder
|
|
146425
146681
|
selected_count?: SortOrder
|
|
146426
146682
|
rejected_count?: SortOrder
|
|
146683
|
+
on_hold_count?: SortOrder
|
|
146684
|
+
withdrawn_count?: SortOrder
|
|
146427
146685
|
}
|
|
146428
146686
|
|
|
146429
146687
|
export type EnumOrganisationSizeFilter<$PrismaModel = never> = {
|
|
@@ -146712,9 +146970,8 @@ export namespace Prisma {
|
|
|
146712
146970
|
application_count?: SortOrder
|
|
146713
146971
|
filtered_in_count?: SortOrder
|
|
146714
146972
|
min_fit_score?: SortOrder
|
|
146715
|
-
|
|
146716
|
-
|
|
146717
|
-
technical_interview_count?: SortOrder
|
|
146973
|
+
screening_count?: SortOrder
|
|
146974
|
+
business_screening_count?: SortOrder
|
|
146718
146975
|
business_round_count?: SortOrder
|
|
146719
146976
|
behavioral_round_count?: SortOrder
|
|
146720
146977
|
shortlisted_count?: SortOrder
|
|
@@ -146726,9 +146983,8 @@ export namespace Prisma {
|
|
|
146726
146983
|
application_count?: SortOrder
|
|
146727
146984
|
filtered_in_count?: SortOrder
|
|
146728
146985
|
min_fit_score?: SortOrder
|
|
146729
|
-
|
|
146730
|
-
|
|
146731
|
-
technical_interview_count?: SortOrder
|
|
146986
|
+
screening_count?: SortOrder
|
|
146987
|
+
business_screening_count?: SortOrder
|
|
146732
146988
|
business_round_count?: SortOrder
|
|
146733
146989
|
behavioral_round_count?: SortOrder
|
|
146734
146990
|
shortlisted_count?: SortOrder
|
|
@@ -146745,9 +147001,8 @@ export namespace Prisma {
|
|
|
146745
147001
|
application_count?: SortOrder
|
|
146746
147002
|
filtered_in_count?: SortOrder
|
|
146747
147003
|
min_fit_score?: SortOrder
|
|
146748
|
-
|
|
146749
|
-
|
|
146750
|
-
technical_interview_count?: SortOrder
|
|
147004
|
+
screening_count?: SortOrder
|
|
147005
|
+
business_screening_count?: SortOrder
|
|
146751
147006
|
business_round_count?: SortOrder
|
|
146752
147007
|
behavioral_round_count?: SortOrder
|
|
146753
147008
|
shortlisted_count?: SortOrder
|
|
@@ -146765,9 +147020,8 @@ export namespace Prisma {
|
|
|
146765
147020
|
application_count?: SortOrder
|
|
146766
147021
|
filtered_in_count?: SortOrder
|
|
146767
147022
|
min_fit_score?: SortOrder
|
|
146768
|
-
|
|
146769
|
-
|
|
146770
|
-
technical_interview_count?: SortOrder
|
|
147023
|
+
screening_count?: SortOrder
|
|
147024
|
+
business_screening_count?: SortOrder
|
|
146771
147025
|
business_round_count?: SortOrder
|
|
146772
147026
|
behavioral_round_count?: SortOrder
|
|
146773
147027
|
shortlisted_count?: SortOrder
|
|
@@ -146779,9 +147033,8 @@ export namespace Prisma {
|
|
|
146779
147033
|
application_count?: SortOrder
|
|
146780
147034
|
filtered_in_count?: SortOrder
|
|
146781
147035
|
min_fit_score?: SortOrder
|
|
146782
|
-
|
|
146783
|
-
|
|
146784
|
-
technical_interview_count?: SortOrder
|
|
147036
|
+
screening_count?: SortOrder
|
|
147037
|
+
business_screening_count?: SortOrder
|
|
146785
147038
|
business_round_count?: SortOrder
|
|
146786
147039
|
behavioral_round_count?: SortOrder
|
|
146787
147040
|
shortlisted_count?: SortOrder
|
|
@@ -146804,9 +147057,8 @@ export namespace Prisma {
|
|
|
146804
147057
|
application_count?: SortOrder
|
|
146805
147058
|
filtered_in_count?: SortOrder
|
|
146806
147059
|
min_fit_score?: SortOrder
|
|
146807
|
-
|
|
146808
|
-
|
|
146809
|
-
technical_interview_count?: SortOrder
|
|
147060
|
+
screening_count?: SortOrder
|
|
147061
|
+
business_screening_count?: SortOrder
|
|
146810
147062
|
business_round_count?: SortOrder
|
|
146811
147063
|
behavioral_round_count?: SortOrder
|
|
146812
147064
|
shortlisted_count?: SortOrder
|
|
@@ -146817,9 +147069,8 @@ export namespace Prisma {
|
|
|
146817
147069
|
application_count?: SortOrder
|
|
146818
147070
|
filtered_in_count?: SortOrder
|
|
146819
147071
|
min_fit_score?: SortOrder
|
|
146820
|
-
|
|
146821
|
-
|
|
146822
|
-
technical_interview_count?: SortOrder
|
|
147072
|
+
screening_count?: SortOrder
|
|
147073
|
+
business_screening_count?: SortOrder
|
|
146823
147074
|
business_round_count?: SortOrder
|
|
146824
147075
|
behavioral_round_count?: SortOrder
|
|
146825
147076
|
shortlisted_count?: SortOrder
|
|
@@ -146837,9 +147088,8 @@ export namespace Prisma {
|
|
|
146837
147088
|
application_count?: SortOrder
|
|
146838
147089
|
filtered_in_count?: SortOrder
|
|
146839
147090
|
min_fit_score?: SortOrder
|
|
146840
|
-
|
|
146841
|
-
|
|
146842
|
-
technical_interview_count?: SortOrder
|
|
147091
|
+
screening_count?: SortOrder
|
|
147092
|
+
business_screening_count?: SortOrder
|
|
146843
147093
|
business_round_count?: SortOrder
|
|
146844
147094
|
behavioral_round_count?: SortOrder
|
|
146845
147095
|
shortlisted_count?: SortOrder
|
|
@@ -146857,9 +147107,8 @@ export namespace Prisma {
|
|
|
146857
147107
|
application_count?: SortOrder
|
|
146858
147108
|
filtered_in_count?: SortOrder
|
|
146859
147109
|
min_fit_score?: SortOrder
|
|
146860
|
-
|
|
146861
|
-
|
|
146862
|
-
technical_interview_count?: SortOrder
|
|
147110
|
+
screening_count?: SortOrder
|
|
147111
|
+
business_screening_count?: SortOrder
|
|
146863
147112
|
business_round_count?: SortOrder
|
|
146864
147113
|
behavioral_round_count?: SortOrder
|
|
146865
147114
|
shortlisted_count?: SortOrder
|
|
@@ -146870,9 +147119,8 @@ export namespace Prisma {
|
|
|
146870
147119
|
application_count?: SortOrder
|
|
146871
147120
|
filtered_in_count?: SortOrder
|
|
146872
147121
|
min_fit_score?: SortOrder
|
|
146873
|
-
|
|
146874
|
-
|
|
146875
|
-
technical_interview_count?: SortOrder
|
|
147122
|
+
screening_count?: SortOrder
|
|
147123
|
+
business_screening_count?: SortOrder
|
|
146876
147124
|
business_round_count?: SortOrder
|
|
146877
147125
|
behavioral_round_count?: SortOrder
|
|
146878
147126
|
shortlisted_count?: SortOrder
|
|
@@ -147566,6 +147814,7 @@ export namespace Prisma {
|
|
|
147566
147814
|
screened_count?: SortOrder
|
|
147567
147815
|
evaluated_count?: SortOrder
|
|
147568
147816
|
rejected_count?: SortOrder
|
|
147817
|
+
on_hold_count?: SortOrder
|
|
147569
147818
|
shortlisted_count?: SortOrder
|
|
147570
147819
|
offered_count?: SortOrder
|
|
147571
147820
|
offer_accepted_count?: SortOrder
|
|
@@ -147584,6 +147833,7 @@ export namespace Prisma {
|
|
|
147584
147833
|
screened_count?: SortOrder
|
|
147585
147834
|
evaluated_count?: SortOrder
|
|
147586
147835
|
rejected_count?: SortOrder
|
|
147836
|
+
on_hold_count?: SortOrder
|
|
147587
147837
|
shortlisted_count?: SortOrder
|
|
147588
147838
|
offered_count?: SortOrder
|
|
147589
147839
|
offer_accepted_count?: SortOrder
|
|
@@ -147611,6 +147861,7 @@ export namespace Prisma {
|
|
|
147611
147861
|
screened_count?: SortOrder
|
|
147612
147862
|
evaluated_count?: SortOrder
|
|
147613
147863
|
rejected_count?: SortOrder
|
|
147864
|
+
on_hold_count?: SortOrder
|
|
147614
147865
|
shortlisted_count?: SortOrder
|
|
147615
147866
|
offered_count?: SortOrder
|
|
147616
147867
|
offer_accepted_count?: SortOrder
|
|
@@ -147639,6 +147890,7 @@ export namespace Prisma {
|
|
|
147639
147890
|
screened_count?: SortOrder
|
|
147640
147891
|
evaluated_count?: SortOrder
|
|
147641
147892
|
rejected_count?: SortOrder
|
|
147893
|
+
on_hold_count?: SortOrder
|
|
147642
147894
|
shortlisted_count?: SortOrder
|
|
147643
147895
|
offered_count?: SortOrder
|
|
147644
147896
|
offer_accepted_count?: SortOrder
|
|
@@ -147657,6 +147909,7 @@ export namespace Prisma {
|
|
|
147657
147909
|
screened_count?: SortOrder
|
|
147658
147910
|
evaluated_count?: SortOrder
|
|
147659
147911
|
rejected_count?: SortOrder
|
|
147912
|
+
on_hold_count?: SortOrder
|
|
147660
147913
|
shortlisted_count?: SortOrder
|
|
147661
147914
|
offered_count?: SortOrder
|
|
147662
147915
|
offer_accepted_count?: SortOrder
|
|
@@ -147692,6 +147945,7 @@ export namespace Prisma {
|
|
|
147692
147945
|
screened_count?: SortOrder
|
|
147693
147946
|
evaluated_count?: SortOrder
|
|
147694
147947
|
rejected_count?: SortOrder
|
|
147948
|
+
on_hold_count?: SortOrder
|
|
147695
147949
|
shortlisted_count?: SortOrder
|
|
147696
147950
|
offered_count?: SortOrder
|
|
147697
147951
|
offer_accepted_count?: SortOrder
|
|
@@ -147709,6 +147963,7 @@ export namespace Prisma {
|
|
|
147709
147963
|
screened_count?: SortOrder
|
|
147710
147964
|
evaluated_count?: SortOrder
|
|
147711
147965
|
rejected_count?: SortOrder
|
|
147966
|
+
on_hold_count?: SortOrder
|
|
147712
147967
|
shortlisted_count?: SortOrder
|
|
147713
147968
|
offered_count?: SortOrder
|
|
147714
147969
|
offer_accepted_count?: SortOrder
|
|
@@ -147737,6 +147992,7 @@ export namespace Prisma {
|
|
|
147737
147992
|
screened_count?: SortOrder
|
|
147738
147993
|
evaluated_count?: SortOrder
|
|
147739
147994
|
rejected_count?: SortOrder
|
|
147995
|
+
on_hold_count?: SortOrder
|
|
147740
147996
|
shortlisted_count?: SortOrder
|
|
147741
147997
|
offered_count?: SortOrder
|
|
147742
147998
|
offer_accepted_count?: SortOrder
|
|
@@ -147765,6 +148021,7 @@ export namespace Prisma {
|
|
|
147765
148021
|
screened_count?: SortOrder
|
|
147766
148022
|
evaluated_count?: SortOrder
|
|
147767
148023
|
rejected_count?: SortOrder
|
|
148024
|
+
on_hold_count?: SortOrder
|
|
147768
148025
|
shortlisted_count?: SortOrder
|
|
147769
148026
|
offered_count?: SortOrder
|
|
147770
148027
|
offer_accepted_count?: SortOrder
|
|
@@ -147782,6 +148039,7 @@ export namespace Prisma {
|
|
|
147782
148039
|
screened_count?: SortOrder
|
|
147783
148040
|
evaluated_count?: SortOrder
|
|
147784
148041
|
rejected_count?: SortOrder
|
|
148042
|
+
on_hold_count?: SortOrder
|
|
147785
148043
|
shortlisted_count?: SortOrder
|
|
147786
148044
|
offered_count?: SortOrder
|
|
147787
148045
|
offer_accepted_count?: SortOrder
|