@adaptware/eagles-db 0.5.11 → 0.5.14
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 +16 -7
- package/client/index-browser.js +9 -1
- package/client/index.d.ts +283 -3
- package/client/index.js +16 -7
- package/client/package.json +1 -1
- package/client/schema.prisma +10 -2
- package/client/wasm.js +16 -7
- package/package.json +1 -1
- package/prisma/schema/applications.prisma +26 -19
- package/prisma/schema/competencyDictionary.prisma +38 -0
- package/prisma/schema/fitCheck.prisma +24 -42
- package/prisma/schema/interview.prisma +2 -0
- package/prisma/schema/jobDescription.prisma +1 -0
- package/prisma/schema/migrations/20260522120000_ongoing_evaluation_record_kind/migration.sql +25 -0
- package/prisma/schema/migrations/20260523120000_replace_record_kind_with_is_committed/migration.sql +24 -0
- package/prisma/schema/migrations/20260528120000_drop_job_description_recommendation_config/migration.sql +2 -0
- package/prisma/schema/migrations/20260710120000_add_resume_rendered_export_fields/migration.sql +9 -0
- package/prisma/schema/migrations/20260714120000_add_job_description_display_html_document/migration.sql +8 -0
- package/prisma/schema/migrations/20260716120000_add_offer_letters/migration.sql +183 -0
- package/prisma/schema/migrations/20260716140000_offer_schema_refinements/migration.sql +13 -0
- package/prisma/schema/migrations/20260716160000_offer_schema_hardening/migration.sql +95 -0
- package/prisma/schema/migrations/20260716180000_offer_letter_template_config/migration.sql +2 -0
- package/prisma/schema/migrations/20260716190000_add_evaluation_focus_areas/migration.sql +6 -0
- package/prisma/schema/migrations/20260717120000_offer_workflow_approval/migration.sql +30 -0
- package/prisma/schema/migrations/20260720120000_offer_letter_template_is_draft/migration.sql +5 -0
- package/prisma/schema/migrations/20260720140000_offer_status_split/migration.sql +51 -0
- package/prisma/schema/migrations/20260720140001_offer_status_split_backfill/migration.sql +37 -0
- package/prisma/schema/migrations/20260722120000_offer_draft_edited_html/migration.sql +13 -0
- package/prisma/schema/migrations/20260723150000_offer_withdraw_actor_no_show_reason/migration.sql +10 -0
- package/prisma/schema/migrations/20260724120000_open_job_offer_accepted_declined_counts/migration.sql +7 -0
- package/prisma/schema/ongoingEvaluation.prisma +2 -0
- package/prisma/schema/organisation.prisma +1 -0
- package/prisma/schema/pipelineDistributionAnalytics.prisma +8 -0
- package/client/libquery_engine-darwin.dylib.node +0 -0
- package/prisma/.DS_Store +0 -0
- package/prisma/migrations/20260519120000_migrate_shortlisted_to_selected/migration.sql +0 -2
- package/prisma/schema/.DS_Store +0 -0
- package/prisma/schema/migrations/20260519120000_add_analytics_schema/migration.sql +0 -84
- package/prisma/schema/migrations/20260625120000_add_interviewer_analytics/migration.sql +0 -26
- package/prisma/schema/migrations/20260629120000_add_user_lifecycle_activity_events/migration.sql +0 -13
- package/prisma/schema/migrations/20260629140000_drop_organisation_org_code/migration.sql +0 -2
- package/prisma/schema/migrations/20260629160000_employee_codes_dual_interviewer_analytics/migration.sql +0 -87
- package/prisma/schema/migrations/20260630120000_add_application_sources/migration.sql +0 -38
- package/prisma/schema/migrations/20260701120000_add_source_effectiveness_analytics/migration.sql +0 -40
- package/prisma/schema/migrations/20260702120000_add_analytics_daily_tables/migration.sql +0 -232
- package/prisma/schema/migrations/20260716120000_evaluation_category_four_values/migration.sql +0 -204
- package/prisma/schema/migrations/20260716130000_application_withdrawn_analytics/migration.sql +0 -31
package/client/index.d.ts
CHANGED
|
@@ -108157,6 +108157,10 @@ export namespace Prisma {
|
|
|
108157
108157
|
business_round_count: number | null
|
|
108158
108158
|
behavioral_round_count: number | null
|
|
108159
108159
|
shortlisted_count: number | null
|
|
108160
|
+
offered_count: number | null
|
|
108161
|
+
offer_accepted_count: number | null
|
|
108162
|
+
offer_declined_count: number | null
|
|
108163
|
+
withdrawn_count: number | null
|
|
108160
108164
|
}
|
|
108161
108165
|
|
|
108162
108166
|
export type PipelineDistributionAnalyticsSumAggregateOutputType = {
|
|
@@ -108169,6 +108173,10 @@ export namespace Prisma {
|
|
|
108169
108173
|
business_round_count: number | null
|
|
108170
108174
|
behavioral_round_count: number | null
|
|
108171
108175
|
shortlisted_count: number | null
|
|
108176
|
+
offered_count: number | null
|
|
108177
|
+
offer_accepted_count: number | null
|
|
108178
|
+
offer_declined_count: number | null
|
|
108179
|
+
withdrawn_count: number | null
|
|
108172
108180
|
}
|
|
108173
108181
|
|
|
108174
108182
|
export type PipelineDistributionAnalyticsMinAggregateOutputType = {
|
|
@@ -108187,6 +108195,10 @@ export namespace Prisma {
|
|
|
108187
108195
|
business_round_count: number | null
|
|
108188
108196
|
behavioral_round_count: number | null
|
|
108189
108197
|
shortlisted_count: number | null
|
|
108198
|
+
offered_count: number | null
|
|
108199
|
+
offer_accepted_count: number | null
|
|
108200
|
+
offer_declined_count: number | null
|
|
108201
|
+
withdrawn_count: number | null
|
|
108190
108202
|
updated_at: Date | null
|
|
108191
108203
|
}
|
|
108192
108204
|
|
|
@@ -108206,6 +108218,10 @@ export namespace Prisma {
|
|
|
108206
108218
|
business_round_count: number | null
|
|
108207
108219
|
behavioral_round_count: number | null
|
|
108208
108220
|
shortlisted_count: number | null
|
|
108221
|
+
offered_count: number | null
|
|
108222
|
+
offer_accepted_count: number | null
|
|
108223
|
+
offer_declined_count: number | null
|
|
108224
|
+
withdrawn_count: number | null
|
|
108209
108225
|
updated_at: Date | null
|
|
108210
108226
|
}
|
|
108211
108227
|
|
|
@@ -108225,6 +108241,10 @@ export namespace Prisma {
|
|
|
108225
108241
|
business_round_count: number
|
|
108226
108242
|
behavioral_round_count: number
|
|
108227
108243
|
shortlisted_count: number
|
|
108244
|
+
offered_count: number
|
|
108245
|
+
offer_accepted_count: number
|
|
108246
|
+
offer_declined_count: number
|
|
108247
|
+
withdrawn_count: number
|
|
108228
108248
|
updated_at: number
|
|
108229
108249
|
_all: number
|
|
108230
108250
|
}
|
|
@@ -108240,6 +108260,10 @@ export namespace Prisma {
|
|
|
108240
108260
|
business_round_count?: true
|
|
108241
108261
|
behavioral_round_count?: true
|
|
108242
108262
|
shortlisted_count?: true
|
|
108263
|
+
offered_count?: true
|
|
108264
|
+
offer_accepted_count?: true
|
|
108265
|
+
offer_declined_count?: true
|
|
108266
|
+
withdrawn_count?: true
|
|
108243
108267
|
}
|
|
108244
108268
|
|
|
108245
108269
|
export type PipelineDistributionAnalyticsSumAggregateInputType = {
|
|
@@ -108252,6 +108276,10 @@ export namespace Prisma {
|
|
|
108252
108276
|
business_round_count?: true
|
|
108253
108277
|
behavioral_round_count?: true
|
|
108254
108278
|
shortlisted_count?: true
|
|
108279
|
+
offered_count?: true
|
|
108280
|
+
offer_accepted_count?: true
|
|
108281
|
+
offer_declined_count?: true
|
|
108282
|
+
withdrawn_count?: true
|
|
108255
108283
|
}
|
|
108256
108284
|
|
|
108257
108285
|
export type PipelineDistributionAnalyticsMinAggregateInputType = {
|
|
@@ -108270,6 +108298,10 @@ export namespace Prisma {
|
|
|
108270
108298
|
business_round_count?: true
|
|
108271
108299
|
behavioral_round_count?: true
|
|
108272
108300
|
shortlisted_count?: true
|
|
108301
|
+
offered_count?: true
|
|
108302
|
+
offer_accepted_count?: true
|
|
108303
|
+
offer_declined_count?: true
|
|
108304
|
+
withdrawn_count?: true
|
|
108273
108305
|
updated_at?: true
|
|
108274
108306
|
}
|
|
108275
108307
|
|
|
@@ -108289,6 +108321,10 @@ export namespace Prisma {
|
|
|
108289
108321
|
business_round_count?: true
|
|
108290
108322
|
behavioral_round_count?: true
|
|
108291
108323
|
shortlisted_count?: true
|
|
108324
|
+
offered_count?: true
|
|
108325
|
+
offer_accepted_count?: true
|
|
108326
|
+
offer_declined_count?: true
|
|
108327
|
+
withdrawn_count?: true
|
|
108292
108328
|
updated_at?: true
|
|
108293
108329
|
}
|
|
108294
108330
|
|
|
@@ -108308,6 +108344,10 @@ export namespace Prisma {
|
|
|
108308
108344
|
business_round_count?: true
|
|
108309
108345
|
behavioral_round_count?: true
|
|
108310
108346
|
shortlisted_count?: true
|
|
108347
|
+
offered_count?: true
|
|
108348
|
+
offer_accepted_count?: true
|
|
108349
|
+
offer_declined_count?: true
|
|
108350
|
+
withdrawn_count?: true
|
|
108311
108351
|
updated_at?: true
|
|
108312
108352
|
_all?: true
|
|
108313
108353
|
}
|
|
@@ -108414,6 +108454,10 @@ export namespace Prisma {
|
|
|
108414
108454
|
business_round_count: number
|
|
108415
108455
|
behavioral_round_count: number
|
|
108416
108456
|
shortlisted_count: number
|
|
108457
|
+
offered_count: number
|
|
108458
|
+
offer_accepted_count: number
|
|
108459
|
+
offer_declined_count: number
|
|
108460
|
+
withdrawn_count: number
|
|
108417
108461
|
updated_at: Date
|
|
108418
108462
|
_count: PipelineDistributionAnalyticsCountAggregateOutputType | null
|
|
108419
108463
|
_avg: PipelineDistributionAnalyticsAvgAggregateOutputType | null
|
|
@@ -108452,6 +108496,10 @@ export namespace Prisma {
|
|
|
108452
108496
|
business_round_count?: boolean
|
|
108453
108497
|
behavioral_round_count?: boolean
|
|
108454
108498
|
shortlisted_count?: boolean
|
|
108499
|
+
offered_count?: boolean
|
|
108500
|
+
offer_accepted_count?: boolean
|
|
108501
|
+
offer_declined_count?: boolean
|
|
108502
|
+
withdrawn_count?: boolean
|
|
108455
108503
|
updated_at?: boolean
|
|
108456
108504
|
}, ExtArgs["result"]["pipelineDistributionAnalytics"]>
|
|
108457
108505
|
|
|
@@ -108471,6 +108519,10 @@ export namespace Prisma {
|
|
|
108471
108519
|
business_round_count?: boolean
|
|
108472
108520
|
behavioral_round_count?: boolean
|
|
108473
108521
|
shortlisted_count?: boolean
|
|
108522
|
+
offered_count?: boolean
|
|
108523
|
+
offer_accepted_count?: boolean
|
|
108524
|
+
offer_declined_count?: boolean
|
|
108525
|
+
withdrawn_count?: boolean
|
|
108474
108526
|
updated_at?: boolean
|
|
108475
108527
|
}, ExtArgs["result"]["pipelineDistributionAnalytics"]>
|
|
108476
108528
|
|
|
@@ -108490,6 +108542,10 @@ export namespace Prisma {
|
|
|
108490
108542
|
business_round_count?: boolean
|
|
108491
108543
|
behavioral_round_count?: boolean
|
|
108492
108544
|
shortlisted_count?: boolean
|
|
108545
|
+
offered_count?: boolean
|
|
108546
|
+
offer_accepted_count?: boolean
|
|
108547
|
+
offer_declined_count?: boolean
|
|
108548
|
+
withdrawn_count?: boolean
|
|
108493
108549
|
updated_at?: boolean
|
|
108494
108550
|
}, ExtArgs["result"]["pipelineDistributionAnalytics"]>
|
|
108495
108551
|
|
|
@@ -108509,10 +108565,14 @@ export namespace Prisma {
|
|
|
108509
108565
|
business_round_count?: boolean
|
|
108510
108566
|
behavioral_round_count?: boolean
|
|
108511
108567
|
shortlisted_count?: boolean
|
|
108568
|
+
offered_count?: boolean
|
|
108569
|
+
offer_accepted_count?: boolean
|
|
108570
|
+
offer_declined_count?: boolean
|
|
108571
|
+
withdrawn_count?: boolean
|
|
108512
108572
|
updated_at?: boolean
|
|
108513
108573
|
}
|
|
108514
108574
|
|
|
108515
|
-
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"]>
|
|
108575
|
+
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" | "offered_count" | "offer_accepted_count" | "offer_declined_count" | "withdrawn_count" | "updated_at", ExtArgs["result"]["pipelineDistributionAnalytics"]>
|
|
108516
108576
|
|
|
108517
108577
|
export type $PipelineDistributionAnalyticsPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
108518
108578
|
name: "PipelineDistributionAnalytics"
|
|
@@ -108533,6 +108593,10 @@ export namespace Prisma {
|
|
|
108533
108593
|
business_round_count: number
|
|
108534
108594
|
behavioral_round_count: number
|
|
108535
108595
|
shortlisted_count: number
|
|
108596
|
+
offered_count: number
|
|
108597
|
+
offer_accepted_count: number
|
|
108598
|
+
offer_declined_count: number
|
|
108599
|
+
withdrawn_count: number
|
|
108536
108600
|
updated_at: Date
|
|
108537
108601
|
}, ExtArgs["result"]["pipelineDistributionAnalytics"]>
|
|
108538
108602
|
composites: {}
|
|
@@ -108972,6 +109036,10 @@ export namespace Prisma {
|
|
|
108972
109036
|
readonly business_round_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
108973
109037
|
readonly behavioral_round_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
108974
109038
|
readonly shortlisted_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
109039
|
+
readonly offered_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
109040
|
+
readonly offer_accepted_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
109041
|
+
readonly offer_declined_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
109042
|
+
readonly withdrawn_count: FieldRef<"PipelineDistributionAnalytics", 'Int'>
|
|
108975
109043
|
readonly updated_at: FieldRef<"PipelineDistributionAnalytics", 'DateTime'>
|
|
108976
109044
|
}
|
|
108977
109045
|
|
|
@@ -109361,6 +109429,10 @@ export namespace Prisma {
|
|
|
109361
109429
|
business_round_count: number | null
|
|
109362
109430
|
behavioral_round_count: number | null
|
|
109363
109431
|
shortlisted_count: number | null
|
|
109432
|
+
offered_count: number | null
|
|
109433
|
+
offer_accepted_count: number | null
|
|
109434
|
+
offer_declined_count: number | null
|
|
109435
|
+
withdrawn_count: number | null
|
|
109364
109436
|
}
|
|
109365
109437
|
|
|
109366
109438
|
export type PipelineDistributionAnalyticsDailySumAggregateOutputType = {
|
|
@@ -109373,6 +109445,10 @@ export namespace Prisma {
|
|
|
109373
109445
|
business_round_count: number | null
|
|
109374
109446
|
behavioral_round_count: number | null
|
|
109375
109447
|
shortlisted_count: number | null
|
|
109448
|
+
offered_count: number | null
|
|
109449
|
+
offer_accepted_count: number | null
|
|
109450
|
+
offer_declined_count: number | null
|
|
109451
|
+
withdrawn_count: number | null
|
|
109376
109452
|
}
|
|
109377
109453
|
|
|
109378
109454
|
export type PipelineDistributionAnalyticsDailyMinAggregateOutputType = {
|
|
@@ -109392,6 +109468,10 @@ export namespace Prisma {
|
|
|
109392
109468
|
business_round_count: number | null
|
|
109393
109469
|
behavioral_round_count: number | null
|
|
109394
109470
|
shortlisted_count: number | null
|
|
109471
|
+
offered_count: number | null
|
|
109472
|
+
offer_accepted_count: number | null
|
|
109473
|
+
offer_declined_count: number | null
|
|
109474
|
+
withdrawn_count: number | null
|
|
109395
109475
|
}
|
|
109396
109476
|
|
|
109397
109477
|
export type PipelineDistributionAnalyticsDailyMaxAggregateOutputType = {
|
|
@@ -109411,6 +109491,10 @@ export namespace Prisma {
|
|
|
109411
109491
|
business_round_count: number | null
|
|
109412
109492
|
behavioral_round_count: number | null
|
|
109413
109493
|
shortlisted_count: number | null
|
|
109494
|
+
offered_count: number | null
|
|
109495
|
+
offer_accepted_count: number | null
|
|
109496
|
+
offer_declined_count: number | null
|
|
109497
|
+
withdrawn_count: number | null
|
|
109414
109498
|
}
|
|
109415
109499
|
|
|
109416
109500
|
export type PipelineDistributionAnalyticsDailyCountAggregateOutputType = {
|
|
@@ -109430,6 +109514,10 @@ export namespace Prisma {
|
|
|
109430
109514
|
business_round_count: number
|
|
109431
109515
|
behavioral_round_count: number
|
|
109432
109516
|
shortlisted_count: number
|
|
109517
|
+
offered_count: number
|
|
109518
|
+
offer_accepted_count: number
|
|
109519
|
+
offer_declined_count: number
|
|
109520
|
+
withdrawn_count: number
|
|
109433
109521
|
_all: number
|
|
109434
109522
|
}
|
|
109435
109523
|
|
|
@@ -109444,6 +109532,10 @@ export namespace Prisma {
|
|
|
109444
109532
|
business_round_count?: true
|
|
109445
109533
|
behavioral_round_count?: true
|
|
109446
109534
|
shortlisted_count?: true
|
|
109535
|
+
offered_count?: true
|
|
109536
|
+
offer_accepted_count?: true
|
|
109537
|
+
offer_declined_count?: true
|
|
109538
|
+
withdrawn_count?: true
|
|
109447
109539
|
}
|
|
109448
109540
|
|
|
109449
109541
|
export type PipelineDistributionAnalyticsDailySumAggregateInputType = {
|
|
@@ -109456,6 +109548,10 @@ export namespace Prisma {
|
|
|
109456
109548
|
business_round_count?: true
|
|
109457
109549
|
behavioral_round_count?: true
|
|
109458
109550
|
shortlisted_count?: true
|
|
109551
|
+
offered_count?: true
|
|
109552
|
+
offer_accepted_count?: true
|
|
109553
|
+
offer_declined_count?: true
|
|
109554
|
+
withdrawn_count?: true
|
|
109459
109555
|
}
|
|
109460
109556
|
|
|
109461
109557
|
export type PipelineDistributionAnalyticsDailyMinAggregateInputType = {
|
|
@@ -109475,6 +109571,10 @@ export namespace Prisma {
|
|
|
109475
109571
|
business_round_count?: true
|
|
109476
109572
|
behavioral_round_count?: true
|
|
109477
109573
|
shortlisted_count?: true
|
|
109574
|
+
offered_count?: true
|
|
109575
|
+
offer_accepted_count?: true
|
|
109576
|
+
offer_declined_count?: true
|
|
109577
|
+
withdrawn_count?: true
|
|
109478
109578
|
}
|
|
109479
109579
|
|
|
109480
109580
|
export type PipelineDistributionAnalyticsDailyMaxAggregateInputType = {
|
|
@@ -109494,6 +109594,10 @@ export namespace Prisma {
|
|
|
109494
109594
|
business_round_count?: true
|
|
109495
109595
|
behavioral_round_count?: true
|
|
109496
109596
|
shortlisted_count?: true
|
|
109597
|
+
offered_count?: true
|
|
109598
|
+
offer_accepted_count?: true
|
|
109599
|
+
offer_declined_count?: true
|
|
109600
|
+
withdrawn_count?: true
|
|
109497
109601
|
}
|
|
109498
109602
|
|
|
109499
109603
|
export type PipelineDistributionAnalyticsDailyCountAggregateInputType = {
|
|
@@ -109513,6 +109617,10 @@ export namespace Prisma {
|
|
|
109513
109617
|
business_round_count?: true
|
|
109514
109618
|
behavioral_round_count?: true
|
|
109515
109619
|
shortlisted_count?: true
|
|
109620
|
+
offered_count?: true
|
|
109621
|
+
offer_accepted_count?: true
|
|
109622
|
+
offer_declined_count?: true
|
|
109623
|
+
withdrawn_count?: true
|
|
109516
109624
|
_all?: true
|
|
109517
109625
|
}
|
|
109518
109626
|
|
|
@@ -109619,6 +109727,10 @@ export namespace Prisma {
|
|
|
109619
109727
|
business_round_count: number
|
|
109620
109728
|
behavioral_round_count: number
|
|
109621
109729
|
shortlisted_count: number
|
|
109730
|
+
offered_count: number
|
|
109731
|
+
offer_accepted_count: number
|
|
109732
|
+
offer_declined_count: number
|
|
109733
|
+
withdrawn_count: number
|
|
109622
109734
|
_count: PipelineDistributionAnalyticsDailyCountAggregateOutputType | null
|
|
109623
109735
|
_avg: PipelineDistributionAnalyticsDailyAvgAggregateOutputType | null
|
|
109624
109736
|
_sum: PipelineDistributionAnalyticsDailySumAggregateOutputType | null
|
|
@@ -109657,6 +109769,10 @@ export namespace Prisma {
|
|
|
109657
109769
|
business_round_count?: boolean
|
|
109658
109770
|
behavioral_round_count?: boolean
|
|
109659
109771
|
shortlisted_count?: boolean
|
|
109772
|
+
offered_count?: boolean
|
|
109773
|
+
offer_accepted_count?: boolean
|
|
109774
|
+
offer_declined_count?: boolean
|
|
109775
|
+
withdrawn_count?: boolean
|
|
109660
109776
|
}, ExtArgs["result"]["pipelineDistributionAnalyticsDaily"]>
|
|
109661
109777
|
|
|
109662
109778
|
export type PipelineDistributionAnalyticsDailySelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -109676,6 +109792,10 @@ export namespace Prisma {
|
|
|
109676
109792
|
business_round_count?: boolean
|
|
109677
109793
|
behavioral_round_count?: boolean
|
|
109678
109794
|
shortlisted_count?: boolean
|
|
109795
|
+
offered_count?: boolean
|
|
109796
|
+
offer_accepted_count?: boolean
|
|
109797
|
+
offer_declined_count?: boolean
|
|
109798
|
+
withdrawn_count?: boolean
|
|
109679
109799
|
}, ExtArgs["result"]["pipelineDistributionAnalyticsDaily"]>
|
|
109680
109800
|
|
|
109681
109801
|
export type PipelineDistributionAnalyticsDailySelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -109695,6 +109815,10 @@ export namespace Prisma {
|
|
|
109695
109815
|
business_round_count?: boolean
|
|
109696
109816
|
behavioral_round_count?: boolean
|
|
109697
109817
|
shortlisted_count?: boolean
|
|
109818
|
+
offered_count?: boolean
|
|
109819
|
+
offer_accepted_count?: boolean
|
|
109820
|
+
offer_declined_count?: boolean
|
|
109821
|
+
withdrawn_count?: boolean
|
|
109698
109822
|
}, ExtArgs["result"]["pipelineDistributionAnalyticsDaily"]>
|
|
109699
109823
|
|
|
109700
109824
|
export type PipelineDistributionAnalyticsDailySelectScalar = {
|
|
@@ -109714,9 +109838,13 @@ export namespace Prisma {
|
|
|
109714
109838
|
business_round_count?: boolean
|
|
109715
109839
|
behavioral_round_count?: boolean
|
|
109716
109840
|
shortlisted_count?: boolean
|
|
109841
|
+
offered_count?: boolean
|
|
109842
|
+
offer_accepted_count?: boolean
|
|
109843
|
+
offer_declined_count?: boolean
|
|
109844
|
+
withdrawn_count?: boolean
|
|
109717
109845
|
}
|
|
109718
109846
|
|
|
109719
|
-
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"]>
|
|
109847
|
+
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" | "offered_count" | "offer_accepted_count" | "offer_declined_count" | "withdrawn_count", ExtArgs["result"]["pipelineDistributionAnalyticsDaily"]>
|
|
109720
109848
|
|
|
109721
109849
|
export type $PipelineDistributionAnalyticsDailyPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
109722
109850
|
name: "PipelineDistributionAnalyticsDaily"
|
|
@@ -109738,6 +109866,10 @@ export namespace Prisma {
|
|
|
109738
109866
|
business_round_count: number
|
|
109739
109867
|
behavioral_round_count: number
|
|
109740
109868
|
shortlisted_count: number
|
|
109869
|
+
offered_count: number
|
|
109870
|
+
offer_accepted_count: number
|
|
109871
|
+
offer_declined_count: number
|
|
109872
|
+
withdrawn_count: number
|
|
109741
109873
|
}, ExtArgs["result"]["pipelineDistributionAnalyticsDaily"]>
|
|
109742
109874
|
composites: {}
|
|
109743
109875
|
}
|
|
@@ -110177,6 +110309,10 @@ export namespace Prisma {
|
|
|
110177
110309
|
readonly business_round_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
110178
110310
|
readonly behavioral_round_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
110179
110311
|
readonly shortlisted_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
110312
|
+
readonly offered_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
110313
|
+
readonly offer_accepted_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
110314
|
+
readonly offer_declined_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
110315
|
+
readonly withdrawn_count: FieldRef<"PipelineDistributionAnalyticsDaily", 'Int'>
|
|
110180
110316
|
}
|
|
110181
110317
|
|
|
110182
110318
|
|
|
@@ -141650,6 +141786,10 @@ export namespace Prisma {
|
|
|
141650
141786
|
business_round_count: 'business_round_count',
|
|
141651
141787
|
behavioral_round_count: 'behavioral_round_count',
|
|
141652
141788
|
shortlisted_count: 'shortlisted_count',
|
|
141789
|
+
offered_count: 'offered_count',
|
|
141790
|
+
offer_accepted_count: 'offer_accepted_count',
|
|
141791
|
+
offer_declined_count: 'offer_declined_count',
|
|
141792
|
+
withdrawn_count: 'withdrawn_count',
|
|
141653
141793
|
updated_at: 'updated_at'
|
|
141654
141794
|
};
|
|
141655
141795
|
|
|
@@ -141672,7 +141812,11 @@ export namespace Prisma {
|
|
|
141672
141812
|
business_screening_count: 'business_screening_count',
|
|
141673
141813
|
business_round_count: 'business_round_count',
|
|
141674
141814
|
behavioral_round_count: 'behavioral_round_count',
|
|
141675
|
-
shortlisted_count: 'shortlisted_count'
|
|
141815
|
+
shortlisted_count: 'shortlisted_count',
|
|
141816
|
+
offered_count: 'offered_count',
|
|
141817
|
+
offer_accepted_count: 'offer_accepted_count',
|
|
141818
|
+
offer_declined_count: 'offer_declined_count',
|
|
141819
|
+
withdrawn_count: 'withdrawn_count'
|
|
141676
141820
|
};
|
|
141677
141821
|
|
|
141678
141822
|
export type PipelineDistributionAnalyticsDailyScalarFieldEnum = (typeof PipelineDistributionAnalyticsDailyScalarFieldEnum)[keyof typeof PipelineDistributionAnalyticsDailyScalarFieldEnum]
|
|
@@ -152963,6 +153107,10 @@ export namespace Prisma {
|
|
|
152963
153107
|
business_round_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
152964
153108
|
behavioral_round_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
152965
153109
|
shortlisted_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
153110
|
+
offered_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
153111
|
+
offer_accepted_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
153112
|
+
offer_declined_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
153113
|
+
withdrawn_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
152966
153114
|
updated_at?: DateTimeFilter<"PipelineDistributionAnalytics"> | Date | string
|
|
152967
153115
|
}
|
|
152968
153116
|
|
|
@@ -152982,6 +153130,10 @@ export namespace Prisma {
|
|
|
152982
153130
|
business_round_count?: SortOrder
|
|
152983
153131
|
behavioral_round_count?: SortOrder
|
|
152984
153132
|
shortlisted_count?: SortOrder
|
|
153133
|
+
offered_count?: SortOrder
|
|
153134
|
+
offer_accepted_count?: SortOrder
|
|
153135
|
+
offer_declined_count?: SortOrder
|
|
153136
|
+
withdrawn_count?: SortOrder
|
|
152985
153137
|
updated_at?: SortOrder
|
|
152986
153138
|
}
|
|
152987
153139
|
|
|
@@ -153004,6 +153156,10 @@ export namespace Prisma {
|
|
|
153004
153156
|
business_round_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
153005
153157
|
behavioral_round_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
153006
153158
|
shortlisted_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
153159
|
+
offered_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
153160
|
+
offer_accepted_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
153161
|
+
offer_declined_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
153162
|
+
withdrawn_count?: IntFilter<"PipelineDistributionAnalytics"> | number
|
|
153007
153163
|
updated_at?: DateTimeFilter<"PipelineDistributionAnalytics"> | Date | string
|
|
153008
153164
|
}, "id" | "job_description_id">
|
|
153009
153165
|
|
|
@@ -153023,6 +153179,10 @@ export namespace Prisma {
|
|
|
153023
153179
|
business_round_count?: SortOrder
|
|
153024
153180
|
behavioral_round_count?: SortOrder
|
|
153025
153181
|
shortlisted_count?: SortOrder
|
|
153182
|
+
offered_count?: SortOrder
|
|
153183
|
+
offer_accepted_count?: SortOrder
|
|
153184
|
+
offer_declined_count?: SortOrder
|
|
153185
|
+
withdrawn_count?: SortOrder
|
|
153026
153186
|
updated_at?: SortOrder
|
|
153027
153187
|
_count?: PipelineDistributionAnalyticsCountOrderByAggregateInput
|
|
153028
153188
|
_avg?: PipelineDistributionAnalyticsAvgOrderByAggregateInput
|
|
@@ -153050,6 +153210,10 @@ export namespace Prisma {
|
|
|
153050
153210
|
business_round_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
153051
153211
|
behavioral_round_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
153052
153212
|
shortlisted_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
153213
|
+
offered_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
153214
|
+
offer_accepted_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
153215
|
+
offer_declined_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
153216
|
+
withdrawn_count?: IntWithAggregatesFilter<"PipelineDistributionAnalytics"> | number
|
|
153053
153217
|
updated_at?: DateTimeWithAggregatesFilter<"PipelineDistributionAnalytics"> | Date | string
|
|
153054
153218
|
}
|
|
153055
153219
|
|
|
@@ -153073,6 +153237,10 @@ export namespace Prisma {
|
|
|
153073
153237
|
business_round_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153074
153238
|
behavioral_round_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153075
153239
|
shortlisted_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153240
|
+
offered_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153241
|
+
offer_accepted_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153242
|
+
offer_declined_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153243
|
+
withdrawn_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153076
153244
|
}
|
|
153077
153245
|
|
|
153078
153246
|
export type PipelineDistributionAnalyticsDailyOrderByWithRelationInput = {
|
|
@@ -153092,6 +153260,10 @@ export namespace Prisma {
|
|
|
153092
153260
|
business_round_count?: SortOrder
|
|
153093
153261
|
behavioral_round_count?: SortOrder
|
|
153094
153262
|
shortlisted_count?: SortOrder
|
|
153263
|
+
offered_count?: SortOrder
|
|
153264
|
+
offer_accepted_count?: SortOrder
|
|
153265
|
+
offer_declined_count?: SortOrder
|
|
153266
|
+
withdrawn_count?: SortOrder
|
|
153095
153267
|
}
|
|
153096
153268
|
|
|
153097
153269
|
export type PipelineDistributionAnalyticsDailyWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -153115,6 +153287,10 @@ export namespace Prisma {
|
|
|
153115
153287
|
business_round_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153116
153288
|
behavioral_round_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153117
153289
|
shortlisted_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153290
|
+
offered_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153291
|
+
offer_accepted_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153292
|
+
offer_declined_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153293
|
+
withdrawn_count?: IntFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153118
153294
|
}, "id" | "snapshot_date_job_description_id">
|
|
153119
153295
|
|
|
153120
153296
|
export type PipelineDistributionAnalyticsDailyOrderByWithAggregationInput = {
|
|
@@ -153134,6 +153310,10 @@ export namespace Prisma {
|
|
|
153134
153310
|
business_round_count?: SortOrder
|
|
153135
153311
|
behavioral_round_count?: SortOrder
|
|
153136
153312
|
shortlisted_count?: SortOrder
|
|
153313
|
+
offered_count?: SortOrder
|
|
153314
|
+
offer_accepted_count?: SortOrder
|
|
153315
|
+
offer_declined_count?: SortOrder
|
|
153316
|
+
withdrawn_count?: SortOrder
|
|
153137
153317
|
_count?: PipelineDistributionAnalyticsDailyCountOrderByAggregateInput
|
|
153138
153318
|
_avg?: PipelineDistributionAnalyticsDailyAvgOrderByAggregateInput
|
|
153139
153319
|
_max?: PipelineDistributionAnalyticsDailyMaxOrderByAggregateInput
|
|
@@ -153161,6 +153341,10 @@ export namespace Prisma {
|
|
|
153161
153341
|
business_round_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153162
153342
|
behavioral_round_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153163
153343
|
shortlisted_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153344
|
+
offered_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153345
|
+
offer_accepted_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153346
|
+
offer_declined_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153347
|
+
withdrawn_count?: IntWithAggregatesFilter<"PipelineDistributionAnalyticsDaily"> | number
|
|
153164
153348
|
}
|
|
153165
153349
|
|
|
153166
153350
|
export type AsyncOperationWhereInput = {
|
|
@@ -167182,6 +167366,10 @@ export namespace Prisma {
|
|
|
167182
167366
|
business_round_count?: number
|
|
167183
167367
|
behavioral_round_count?: number
|
|
167184
167368
|
shortlisted_count?: number
|
|
167369
|
+
offered_count?: number
|
|
167370
|
+
offer_accepted_count?: number
|
|
167371
|
+
offer_declined_count?: number
|
|
167372
|
+
withdrawn_count?: number
|
|
167185
167373
|
updated_at?: Date | string
|
|
167186
167374
|
}
|
|
167187
167375
|
|
|
@@ -167201,6 +167389,10 @@ export namespace Prisma {
|
|
|
167201
167389
|
business_round_count?: number
|
|
167202
167390
|
behavioral_round_count?: number
|
|
167203
167391
|
shortlisted_count?: number
|
|
167392
|
+
offered_count?: number
|
|
167393
|
+
offer_accepted_count?: number
|
|
167394
|
+
offer_declined_count?: number
|
|
167395
|
+
withdrawn_count?: number
|
|
167204
167396
|
updated_at?: Date | string
|
|
167205
167397
|
}
|
|
167206
167398
|
|
|
@@ -167220,6 +167412,10 @@ export namespace Prisma {
|
|
|
167220
167412
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
167221
167413
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
167222
167414
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
167415
|
+
offered_count?: IntFieldUpdateOperationsInput | number
|
|
167416
|
+
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
167417
|
+
offer_declined_count?: IntFieldUpdateOperationsInput | number
|
|
167418
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
167223
167419
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
167224
167420
|
}
|
|
167225
167421
|
|
|
@@ -167239,6 +167435,10 @@ export namespace Prisma {
|
|
|
167239
167435
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
167240
167436
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
167241
167437
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
167438
|
+
offered_count?: IntFieldUpdateOperationsInput | number
|
|
167439
|
+
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
167440
|
+
offer_declined_count?: IntFieldUpdateOperationsInput | number
|
|
167441
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
167242
167442
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
167243
167443
|
}
|
|
167244
167444
|
|
|
@@ -167258,6 +167458,10 @@ export namespace Prisma {
|
|
|
167258
167458
|
business_round_count?: number
|
|
167259
167459
|
behavioral_round_count?: number
|
|
167260
167460
|
shortlisted_count?: number
|
|
167461
|
+
offered_count?: number
|
|
167462
|
+
offer_accepted_count?: number
|
|
167463
|
+
offer_declined_count?: number
|
|
167464
|
+
withdrawn_count?: number
|
|
167261
167465
|
updated_at?: Date | string
|
|
167262
167466
|
}
|
|
167263
167467
|
|
|
@@ -167277,6 +167481,10 @@ export namespace Prisma {
|
|
|
167277
167481
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
167278
167482
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
167279
167483
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
167484
|
+
offered_count?: IntFieldUpdateOperationsInput | number
|
|
167485
|
+
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
167486
|
+
offer_declined_count?: IntFieldUpdateOperationsInput | number
|
|
167487
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
167280
167488
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
167281
167489
|
}
|
|
167282
167490
|
|
|
@@ -167296,6 +167504,10 @@ export namespace Prisma {
|
|
|
167296
167504
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
167297
167505
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
167298
167506
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
167507
|
+
offered_count?: IntFieldUpdateOperationsInput | number
|
|
167508
|
+
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
167509
|
+
offer_declined_count?: IntFieldUpdateOperationsInput | number
|
|
167510
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
167299
167511
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
167300
167512
|
}
|
|
167301
167513
|
|
|
@@ -167316,6 +167528,10 @@ export namespace Prisma {
|
|
|
167316
167528
|
business_round_count?: number
|
|
167317
167529
|
behavioral_round_count?: number
|
|
167318
167530
|
shortlisted_count?: number
|
|
167531
|
+
offered_count?: number
|
|
167532
|
+
offer_accepted_count?: number
|
|
167533
|
+
offer_declined_count?: number
|
|
167534
|
+
withdrawn_count?: number
|
|
167319
167535
|
}
|
|
167320
167536
|
|
|
167321
167537
|
export type PipelineDistributionAnalyticsDailyUncheckedCreateInput = {
|
|
@@ -167335,6 +167551,10 @@ export namespace Prisma {
|
|
|
167335
167551
|
business_round_count?: number
|
|
167336
167552
|
behavioral_round_count?: number
|
|
167337
167553
|
shortlisted_count?: number
|
|
167554
|
+
offered_count?: number
|
|
167555
|
+
offer_accepted_count?: number
|
|
167556
|
+
offer_declined_count?: number
|
|
167557
|
+
withdrawn_count?: number
|
|
167338
167558
|
}
|
|
167339
167559
|
|
|
167340
167560
|
export type PipelineDistributionAnalyticsDailyUpdateInput = {
|
|
@@ -167354,6 +167574,10 @@ export namespace Prisma {
|
|
|
167354
167574
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
167355
167575
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
167356
167576
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
167577
|
+
offered_count?: IntFieldUpdateOperationsInput | number
|
|
167578
|
+
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
167579
|
+
offer_declined_count?: IntFieldUpdateOperationsInput | number
|
|
167580
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
167357
167581
|
}
|
|
167358
167582
|
|
|
167359
167583
|
export type PipelineDistributionAnalyticsDailyUncheckedUpdateInput = {
|
|
@@ -167373,6 +167597,10 @@ export namespace Prisma {
|
|
|
167373
167597
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
167374
167598
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
167375
167599
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
167600
|
+
offered_count?: IntFieldUpdateOperationsInput | number
|
|
167601
|
+
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
167602
|
+
offer_declined_count?: IntFieldUpdateOperationsInput | number
|
|
167603
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
167376
167604
|
}
|
|
167377
167605
|
|
|
167378
167606
|
export type PipelineDistributionAnalyticsDailyCreateManyInput = {
|
|
@@ -167392,6 +167620,10 @@ export namespace Prisma {
|
|
|
167392
167620
|
business_round_count?: number
|
|
167393
167621
|
behavioral_round_count?: number
|
|
167394
167622
|
shortlisted_count?: number
|
|
167623
|
+
offered_count?: number
|
|
167624
|
+
offer_accepted_count?: number
|
|
167625
|
+
offer_declined_count?: number
|
|
167626
|
+
withdrawn_count?: number
|
|
167395
167627
|
}
|
|
167396
167628
|
|
|
167397
167629
|
export type PipelineDistributionAnalyticsDailyUpdateManyMutationInput = {
|
|
@@ -167411,6 +167643,10 @@ export namespace Prisma {
|
|
|
167411
167643
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
167412
167644
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
167413
167645
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
167646
|
+
offered_count?: IntFieldUpdateOperationsInput | number
|
|
167647
|
+
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
167648
|
+
offer_declined_count?: IntFieldUpdateOperationsInput | number
|
|
167649
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
167414
167650
|
}
|
|
167415
167651
|
|
|
167416
167652
|
export type PipelineDistributionAnalyticsDailyUncheckedUpdateManyInput = {
|
|
@@ -167430,6 +167666,10 @@ export namespace Prisma {
|
|
|
167430
167666
|
business_round_count?: IntFieldUpdateOperationsInput | number
|
|
167431
167667
|
behavioral_round_count?: IntFieldUpdateOperationsInput | number
|
|
167432
167668
|
shortlisted_count?: IntFieldUpdateOperationsInput | number
|
|
167669
|
+
offered_count?: IntFieldUpdateOperationsInput | number
|
|
167670
|
+
offer_accepted_count?: IntFieldUpdateOperationsInput | number
|
|
167671
|
+
offer_declined_count?: IntFieldUpdateOperationsInput | number
|
|
167672
|
+
withdrawn_count?: IntFieldUpdateOperationsInput | number
|
|
167433
167673
|
}
|
|
167434
167674
|
|
|
167435
167675
|
export type AsyncOperationCreateInput = {
|
|
@@ -178352,6 +178592,10 @@ export namespace Prisma {
|
|
|
178352
178592
|
business_round_count?: SortOrder
|
|
178353
178593
|
behavioral_round_count?: SortOrder
|
|
178354
178594
|
shortlisted_count?: SortOrder
|
|
178595
|
+
offered_count?: SortOrder
|
|
178596
|
+
offer_accepted_count?: SortOrder
|
|
178597
|
+
offer_declined_count?: SortOrder
|
|
178598
|
+
withdrawn_count?: SortOrder
|
|
178355
178599
|
updated_at?: SortOrder
|
|
178356
178600
|
}
|
|
178357
178601
|
|
|
@@ -178365,6 +178609,10 @@ export namespace Prisma {
|
|
|
178365
178609
|
business_round_count?: SortOrder
|
|
178366
178610
|
behavioral_round_count?: SortOrder
|
|
178367
178611
|
shortlisted_count?: SortOrder
|
|
178612
|
+
offered_count?: SortOrder
|
|
178613
|
+
offer_accepted_count?: SortOrder
|
|
178614
|
+
offer_declined_count?: SortOrder
|
|
178615
|
+
withdrawn_count?: SortOrder
|
|
178368
178616
|
}
|
|
178369
178617
|
|
|
178370
178618
|
export type PipelineDistributionAnalyticsMaxOrderByAggregateInput = {
|
|
@@ -178383,6 +178631,10 @@ export namespace Prisma {
|
|
|
178383
178631
|
business_round_count?: SortOrder
|
|
178384
178632
|
behavioral_round_count?: SortOrder
|
|
178385
178633
|
shortlisted_count?: SortOrder
|
|
178634
|
+
offered_count?: SortOrder
|
|
178635
|
+
offer_accepted_count?: SortOrder
|
|
178636
|
+
offer_declined_count?: SortOrder
|
|
178637
|
+
withdrawn_count?: SortOrder
|
|
178386
178638
|
updated_at?: SortOrder
|
|
178387
178639
|
}
|
|
178388
178640
|
|
|
@@ -178402,6 +178654,10 @@ export namespace Prisma {
|
|
|
178402
178654
|
business_round_count?: SortOrder
|
|
178403
178655
|
behavioral_round_count?: SortOrder
|
|
178404
178656
|
shortlisted_count?: SortOrder
|
|
178657
|
+
offered_count?: SortOrder
|
|
178658
|
+
offer_accepted_count?: SortOrder
|
|
178659
|
+
offer_declined_count?: SortOrder
|
|
178660
|
+
withdrawn_count?: SortOrder
|
|
178405
178661
|
updated_at?: SortOrder
|
|
178406
178662
|
}
|
|
178407
178663
|
|
|
@@ -178415,6 +178671,10 @@ export namespace Prisma {
|
|
|
178415
178671
|
business_round_count?: SortOrder
|
|
178416
178672
|
behavioral_round_count?: SortOrder
|
|
178417
178673
|
shortlisted_count?: SortOrder
|
|
178674
|
+
offered_count?: SortOrder
|
|
178675
|
+
offer_accepted_count?: SortOrder
|
|
178676
|
+
offer_declined_count?: SortOrder
|
|
178677
|
+
withdrawn_count?: SortOrder
|
|
178418
178678
|
}
|
|
178419
178679
|
|
|
178420
178680
|
export type PipelineDistributionAnalyticsDailySnapshot_dateJob_description_idCompoundUniqueInput = {
|
|
@@ -178439,6 +178699,10 @@ export namespace Prisma {
|
|
|
178439
178699
|
business_round_count?: SortOrder
|
|
178440
178700
|
behavioral_round_count?: SortOrder
|
|
178441
178701
|
shortlisted_count?: SortOrder
|
|
178702
|
+
offered_count?: SortOrder
|
|
178703
|
+
offer_accepted_count?: SortOrder
|
|
178704
|
+
offer_declined_count?: SortOrder
|
|
178705
|
+
withdrawn_count?: SortOrder
|
|
178442
178706
|
}
|
|
178443
178707
|
|
|
178444
178708
|
export type PipelineDistributionAnalyticsDailyAvgOrderByAggregateInput = {
|
|
@@ -178451,6 +178715,10 @@ export namespace Prisma {
|
|
|
178451
178715
|
business_round_count?: SortOrder
|
|
178452
178716
|
behavioral_round_count?: SortOrder
|
|
178453
178717
|
shortlisted_count?: SortOrder
|
|
178718
|
+
offered_count?: SortOrder
|
|
178719
|
+
offer_accepted_count?: SortOrder
|
|
178720
|
+
offer_declined_count?: SortOrder
|
|
178721
|
+
withdrawn_count?: SortOrder
|
|
178454
178722
|
}
|
|
178455
178723
|
|
|
178456
178724
|
export type PipelineDistributionAnalyticsDailyMaxOrderByAggregateInput = {
|
|
@@ -178470,6 +178738,10 @@ export namespace Prisma {
|
|
|
178470
178738
|
business_round_count?: SortOrder
|
|
178471
178739
|
behavioral_round_count?: SortOrder
|
|
178472
178740
|
shortlisted_count?: SortOrder
|
|
178741
|
+
offered_count?: SortOrder
|
|
178742
|
+
offer_accepted_count?: SortOrder
|
|
178743
|
+
offer_declined_count?: SortOrder
|
|
178744
|
+
withdrawn_count?: SortOrder
|
|
178473
178745
|
}
|
|
178474
178746
|
|
|
178475
178747
|
export type PipelineDistributionAnalyticsDailyMinOrderByAggregateInput = {
|
|
@@ -178489,6 +178761,10 @@ export namespace Prisma {
|
|
|
178489
178761
|
business_round_count?: SortOrder
|
|
178490
178762
|
behavioral_round_count?: SortOrder
|
|
178491
178763
|
shortlisted_count?: SortOrder
|
|
178764
|
+
offered_count?: SortOrder
|
|
178765
|
+
offer_accepted_count?: SortOrder
|
|
178766
|
+
offer_declined_count?: SortOrder
|
|
178767
|
+
withdrawn_count?: SortOrder
|
|
178492
178768
|
}
|
|
178493
178769
|
|
|
178494
178770
|
export type PipelineDistributionAnalyticsDailySumOrderByAggregateInput = {
|
|
@@ -178501,6 +178777,10 @@ export namespace Prisma {
|
|
|
178501
178777
|
business_round_count?: SortOrder
|
|
178502
178778
|
behavioral_round_count?: SortOrder
|
|
178503
178779
|
shortlisted_count?: SortOrder
|
|
178780
|
+
offered_count?: SortOrder
|
|
178781
|
+
offer_accepted_count?: SortOrder
|
|
178782
|
+
offer_declined_count?: SortOrder
|
|
178783
|
+
withdrawn_count?: SortOrder
|
|
178504
178784
|
}
|
|
178505
178785
|
|
|
178506
178786
|
export type EnumAsyncOperationStatusFilter<$PrismaModel = never> = {
|