@adaptware/eagles-db 0.4.37 → 0.4.38
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 +11 -15
- package/client/index-browser.js +8 -12
- package/client/index.d.ts +282 -422
- package/client/index.js +11 -15
- package/client/package.json +1 -1
- package/client/schema.prisma +10 -14
- package/client/wasm.js +11 -15
- package/package.json +1 -1
- package/prisma/schema/openJobAnalytics.prisma +10 -14
package/client/index.d.ts
CHANGED
|
@@ -81018,12 +81018,10 @@ export namespace Prisma {
|
|
|
81018
81018
|
vacancies: number | null
|
|
81019
81019
|
time_to_hire_days: number | null
|
|
81020
81020
|
application_count: number | null
|
|
81021
|
-
|
|
81022
|
-
|
|
81023
|
-
|
|
81024
|
-
|
|
81025
|
-
offered_count: number | null
|
|
81026
|
-
hired_count: number | null
|
|
81021
|
+
unscreened_count: number | null
|
|
81022
|
+
ongoing_count: number | null
|
|
81023
|
+
selected_count: number | null
|
|
81024
|
+
rejected_count: number | null
|
|
81027
81025
|
}
|
|
81028
81026
|
|
|
81029
81027
|
export type OpenJobAnalyticsSumAggregateOutputType = {
|
|
@@ -81031,12 +81029,10 @@ export namespace Prisma {
|
|
|
81031
81029
|
vacancies: number | null
|
|
81032
81030
|
time_to_hire_days: number | null
|
|
81033
81031
|
application_count: number | null
|
|
81034
|
-
|
|
81035
|
-
|
|
81036
|
-
|
|
81037
|
-
|
|
81038
|
-
offered_count: number | null
|
|
81039
|
-
hired_count: number | null
|
|
81032
|
+
unscreened_count: number | null
|
|
81033
|
+
ongoing_count: number | null
|
|
81034
|
+
selected_count: number | null
|
|
81035
|
+
rejected_count: number | null
|
|
81040
81036
|
}
|
|
81041
81037
|
|
|
81042
81038
|
export type OpenJobAnalyticsMinAggregateOutputType = {
|
|
@@ -81059,12 +81055,10 @@ export namespace Prisma {
|
|
|
81059
81055
|
closure_type: $Enums.OpenJobClosureType | null
|
|
81060
81056
|
time_to_hire_days: number | null
|
|
81061
81057
|
application_count: number | null
|
|
81062
|
-
|
|
81063
|
-
|
|
81064
|
-
|
|
81065
|
-
|
|
81066
|
-
offered_count: number | null
|
|
81067
|
-
hired_count: number | null
|
|
81058
|
+
unscreened_count: number | null
|
|
81059
|
+
ongoing_count: number | null
|
|
81060
|
+
selected_count: number | null
|
|
81061
|
+
rejected_count: number | null
|
|
81068
81062
|
updated_at: Date | null
|
|
81069
81063
|
}
|
|
81070
81064
|
|
|
@@ -81088,12 +81082,10 @@ export namespace Prisma {
|
|
|
81088
81082
|
closure_type: $Enums.OpenJobClosureType | null
|
|
81089
81083
|
time_to_hire_days: number | null
|
|
81090
81084
|
application_count: number | null
|
|
81091
|
-
|
|
81092
|
-
|
|
81093
|
-
|
|
81094
|
-
|
|
81095
|
-
offered_count: number | null
|
|
81096
|
-
hired_count: number | null
|
|
81085
|
+
unscreened_count: number | null
|
|
81086
|
+
ongoing_count: number | null
|
|
81087
|
+
selected_count: number | null
|
|
81088
|
+
rejected_count: number | null
|
|
81097
81089
|
updated_at: Date | null
|
|
81098
81090
|
}
|
|
81099
81091
|
|
|
@@ -81117,12 +81109,10 @@ export namespace Prisma {
|
|
|
81117
81109
|
closure_type: number
|
|
81118
81110
|
time_to_hire_days: number
|
|
81119
81111
|
application_count: number
|
|
81120
|
-
|
|
81121
|
-
|
|
81122
|
-
|
|
81123
|
-
|
|
81124
|
-
offered_count: number
|
|
81125
|
-
hired_count: number
|
|
81112
|
+
unscreened_count: number
|
|
81113
|
+
ongoing_count: number
|
|
81114
|
+
selected_count: number
|
|
81115
|
+
rejected_count: number
|
|
81126
81116
|
updated_at: number
|
|
81127
81117
|
_all: number
|
|
81128
81118
|
}
|
|
@@ -81133,12 +81123,10 @@ export namespace Prisma {
|
|
|
81133
81123
|
vacancies?: true
|
|
81134
81124
|
time_to_hire_days?: true
|
|
81135
81125
|
application_count?: true
|
|
81136
|
-
|
|
81137
|
-
|
|
81138
|
-
|
|
81139
|
-
|
|
81140
|
-
offered_count?: true
|
|
81141
|
-
hired_count?: true
|
|
81126
|
+
unscreened_count?: true
|
|
81127
|
+
ongoing_count?: true
|
|
81128
|
+
selected_count?: true
|
|
81129
|
+
rejected_count?: true
|
|
81142
81130
|
}
|
|
81143
81131
|
|
|
81144
81132
|
export type OpenJobAnalyticsSumAggregateInputType = {
|
|
@@ -81146,12 +81134,10 @@ export namespace Prisma {
|
|
|
81146
81134
|
vacancies?: true
|
|
81147
81135
|
time_to_hire_days?: true
|
|
81148
81136
|
application_count?: true
|
|
81149
|
-
|
|
81150
|
-
|
|
81151
|
-
|
|
81152
|
-
|
|
81153
|
-
offered_count?: true
|
|
81154
|
-
hired_count?: true
|
|
81137
|
+
unscreened_count?: true
|
|
81138
|
+
ongoing_count?: true
|
|
81139
|
+
selected_count?: true
|
|
81140
|
+
rejected_count?: true
|
|
81155
81141
|
}
|
|
81156
81142
|
|
|
81157
81143
|
export type OpenJobAnalyticsMinAggregateInputType = {
|
|
@@ -81174,12 +81160,10 @@ export namespace Prisma {
|
|
|
81174
81160
|
closure_type?: true
|
|
81175
81161
|
time_to_hire_days?: true
|
|
81176
81162
|
application_count?: true
|
|
81177
|
-
|
|
81178
|
-
|
|
81179
|
-
|
|
81180
|
-
|
|
81181
|
-
offered_count?: true
|
|
81182
|
-
hired_count?: true
|
|
81163
|
+
unscreened_count?: true
|
|
81164
|
+
ongoing_count?: true
|
|
81165
|
+
selected_count?: true
|
|
81166
|
+
rejected_count?: true
|
|
81183
81167
|
updated_at?: true
|
|
81184
81168
|
}
|
|
81185
81169
|
|
|
@@ -81203,12 +81187,10 @@ export namespace Prisma {
|
|
|
81203
81187
|
closure_type?: true
|
|
81204
81188
|
time_to_hire_days?: true
|
|
81205
81189
|
application_count?: true
|
|
81206
|
-
|
|
81207
|
-
|
|
81208
|
-
|
|
81209
|
-
|
|
81210
|
-
offered_count?: true
|
|
81211
|
-
hired_count?: true
|
|
81190
|
+
unscreened_count?: true
|
|
81191
|
+
ongoing_count?: true
|
|
81192
|
+
selected_count?: true
|
|
81193
|
+
rejected_count?: true
|
|
81212
81194
|
updated_at?: true
|
|
81213
81195
|
}
|
|
81214
81196
|
|
|
@@ -81232,12 +81214,10 @@ export namespace Prisma {
|
|
|
81232
81214
|
closure_type?: true
|
|
81233
81215
|
time_to_hire_days?: true
|
|
81234
81216
|
application_count?: true
|
|
81235
|
-
|
|
81236
|
-
|
|
81237
|
-
|
|
81238
|
-
|
|
81239
|
-
offered_count?: true
|
|
81240
|
-
hired_count?: true
|
|
81217
|
+
unscreened_count?: true
|
|
81218
|
+
ongoing_count?: true
|
|
81219
|
+
selected_count?: true
|
|
81220
|
+
rejected_count?: true
|
|
81241
81221
|
updated_at?: true
|
|
81242
81222
|
_all?: true
|
|
81243
81223
|
}
|
|
@@ -81348,12 +81328,10 @@ export namespace Prisma {
|
|
|
81348
81328
|
closure_type: $Enums.OpenJobClosureType | null
|
|
81349
81329
|
time_to_hire_days: number | null
|
|
81350
81330
|
application_count: number
|
|
81351
|
-
|
|
81352
|
-
|
|
81353
|
-
|
|
81354
|
-
|
|
81355
|
-
offered_count: number
|
|
81356
|
-
hired_count: number
|
|
81331
|
+
unscreened_count: number
|
|
81332
|
+
ongoing_count: number
|
|
81333
|
+
selected_count: number
|
|
81334
|
+
rejected_count: number
|
|
81357
81335
|
updated_at: Date
|
|
81358
81336
|
_count: OpenJobAnalyticsCountAggregateOutputType | null
|
|
81359
81337
|
_avg: OpenJobAnalyticsAvgAggregateOutputType | null
|
|
@@ -81396,12 +81374,10 @@ export namespace Prisma {
|
|
|
81396
81374
|
closure_type?: boolean
|
|
81397
81375
|
time_to_hire_days?: boolean
|
|
81398
81376
|
application_count?: boolean
|
|
81399
|
-
|
|
81400
|
-
|
|
81401
|
-
|
|
81402
|
-
|
|
81403
|
-
offered_count?: boolean
|
|
81404
|
-
hired_count?: boolean
|
|
81377
|
+
unscreened_count?: boolean
|
|
81378
|
+
ongoing_count?: boolean
|
|
81379
|
+
selected_count?: boolean
|
|
81380
|
+
rejected_count?: boolean
|
|
81405
81381
|
updated_at?: boolean
|
|
81406
81382
|
}, ExtArgs["result"]["openJobAnalytics"]>
|
|
81407
81383
|
|
|
@@ -81425,12 +81401,10 @@ export namespace Prisma {
|
|
|
81425
81401
|
closure_type?: boolean
|
|
81426
81402
|
time_to_hire_days?: boolean
|
|
81427
81403
|
application_count?: boolean
|
|
81428
|
-
|
|
81429
|
-
|
|
81430
|
-
|
|
81431
|
-
|
|
81432
|
-
offered_count?: boolean
|
|
81433
|
-
hired_count?: boolean
|
|
81404
|
+
unscreened_count?: boolean
|
|
81405
|
+
ongoing_count?: boolean
|
|
81406
|
+
selected_count?: boolean
|
|
81407
|
+
rejected_count?: boolean
|
|
81434
81408
|
updated_at?: boolean
|
|
81435
81409
|
}, ExtArgs["result"]["openJobAnalytics"]>
|
|
81436
81410
|
|
|
@@ -81454,12 +81428,10 @@ export namespace Prisma {
|
|
|
81454
81428
|
closure_type?: boolean
|
|
81455
81429
|
time_to_hire_days?: boolean
|
|
81456
81430
|
application_count?: boolean
|
|
81457
|
-
|
|
81458
|
-
|
|
81459
|
-
|
|
81460
|
-
|
|
81461
|
-
offered_count?: boolean
|
|
81462
|
-
hired_count?: boolean
|
|
81431
|
+
unscreened_count?: boolean
|
|
81432
|
+
ongoing_count?: boolean
|
|
81433
|
+
selected_count?: boolean
|
|
81434
|
+
rejected_count?: boolean
|
|
81463
81435
|
updated_at?: boolean
|
|
81464
81436
|
}, ExtArgs["result"]["openJobAnalytics"]>
|
|
81465
81437
|
|
|
@@ -81483,16 +81455,14 @@ export namespace Prisma {
|
|
|
81483
81455
|
closure_type?: boolean
|
|
81484
81456
|
time_to_hire_days?: boolean
|
|
81485
81457
|
application_count?: boolean
|
|
81486
|
-
|
|
81487
|
-
|
|
81488
|
-
|
|
81489
|
-
|
|
81490
|
-
offered_count?: boolean
|
|
81491
|
-
hired_count?: boolean
|
|
81458
|
+
unscreened_count?: boolean
|
|
81459
|
+
ongoing_count?: boolean
|
|
81460
|
+
selected_count?: boolean
|
|
81461
|
+
rejected_count?: boolean
|
|
81492
81462
|
updated_at?: boolean
|
|
81493
81463
|
}
|
|
81494
81464
|
|
|
81495
|
-
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" | "
|
|
81465
|
+
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"]>
|
|
81496
81466
|
|
|
81497
81467
|
export type $OpenJobAnalyticsPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
81498
81468
|
name: "OpenJobAnalytics"
|
|
@@ -81517,12 +81487,10 @@ export namespace Prisma {
|
|
|
81517
81487
|
closure_type: $Enums.OpenJobClosureType | null
|
|
81518
81488
|
time_to_hire_days: number | null
|
|
81519
81489
|
application_count: number
|
|
81520
|
-
|
|
81521
|
-
|
|
81522
|
-
|
|
81523
|
-
|
|
81524
|
-
offered_count: number
|
|
81525
|
-
hired_count: number
|
|
81490
|
+
unscreened_count: number
|
|
81491
|
+
ongoing_count: number
|
|
81492
|
+
selected_count: number
|
|
81493
|
+
rejected_count: number
|
|
81526
81494
|
updated_at: Date
|
|
81527
81495
|
}, ExtArgs["result"]["openJobAnalytics"]>
|
|
81528
81496
|
composites: {}
|
|
@@ -81966,12 +81934,10 @@ export namespace Prisma {
|
|
|
81966
81934
|
readonly closure_type: FieldRef<"OpenJobAnalytics", 'OpenJobClosureType'>
|
|
81967
81935
|
readonly time_to_hire_days: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
81968
81936
|
readonly application_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
81969
|
-
readonly
|
|
81970
|
-
readonly
|
|
81971
|
-
readonly
|
|
81972
|
-
readonly
|
|
81973
|
-
readonly offered_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
81974
|
-
readonly hired_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
81937
|
+
readonly unscreened_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
81938
|
+
readonly ongoing_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
81939
|
+
readonly selected_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
81940
|
+
readonly rejected_count: FieldRef<"OpenJobAnalytics", 'Int'>
|
|
81975
81941
|
readonly updated_at: FieldRef<"OpenJobAnalytics", 'DateTime'>
|
|
81976
81942
|
}
|
|
81977
81943
|
|
|
@@ -82356,12 +82322,10 @@ export namespace Prisma {
|
|
|
82356
82322
|
vacancies: number | null
|
|
82357
82323
|
time_to_hire_days: number | null
|
|
82358
82324
|
application_count: number | null
|
|
82359
|
-
|
|
82360
|
-
|
|
82361
|
-
|
|
82362
|
-
|
|
82363
|
-
offered_count: number | null
|
|
82364
|
-
hired_count: number | null
|
|
82325
|
+
unscreened_count: number | null
|
|
82326
|
+
ongoing_count: number | null
|
|
82327
|
+
selected_count: number | null
|
|
82328
|
+
rejected_count: number | null
|
|
82365
82329
|
}
|
|
82366
82330
|
|
|
82367
82331
|
export type OpenJobAnalyticsDailySumAggregateOutputType = {
|
|
@@ -82369,12 +82333,10 @@ export namespace Prisma {
|
|
|
82369
82333
|
vacancies: number | null
|
|
82370
82334
|
time_to_hire_days: number | null
|
|
82371
82335
|
application_count: number | null
|
|
82372
|
-
|
|
82373
|
-
|
|
82374
|
-
|
|
82375
|
-
|
|
82376
|
-
offered_count: number | null
|
|
82377
|
-
hired_count: number | null
|
|
82336
|
+
unscreened_count: number | null
|
|
82337
|
+
ongoing_count: number | null
|
|
82338
|
+
selected_count: number | null
|
|
82339
|
+
rejected_count: number | null
|
|
82378
82340
|
}
|
|
82379
82341
|
|
|
82380
82342
|
export type OpenJobAnalyticsDailyMinAggregateOutputType = {
|
|
@@ -82398,12 +82360,10 @@ export namespace Prisma {
|
|
|
82398
82360
|
closure_type: $Enums.OpenJobClosureType | null
|
|
82399
82361
|
time_to_hire_days: number | null
|
|
82400
82362
|
application_count: number | null
|
|
82401
|
-
|
|
82402
|
-
|
|
82403
|
-
|
|
82404
|
-
|
|
82405
|
-
offered_count: number | null
|
|
82406
|
-
hired_count: number | null
|
|
82363
|
+
unscreened_count: number | null
|
|
82364
|
+
ongoing_count: number | null
|
|
82365
|
+
selected_count: number | null
|
|
82366
|
+
rejected_count: number | null
|
|
82407
82367
|
}
|
|
82408
82368
|
|
|
82409
82369
|
export type OpenJobAnalyticsDailyMaxAggregateOutputType = {
|
|
@@ -82427,12 +82387,10 @@ export namespace Prisma {
|
|
|
82427
82387
|
closure_type: $Enums.OpenJobClosureType | null
|
|
82428
82388
|
time_to_hire_days: number | null
|
|
82429
82389
|
application_count: number | null
|
|
82430
|
-
|
|
82431
|
-
|
|
82432
|
-
|
|
82433
|
-
|
|
82434
|
-
offered_count: number | null
|
|
82435
|
-
hired_count: number | null
|
|
82390
|
+
unscreened_count: number | null
|
|
82391
|
+
ongoing_count: number | null
|
|
82392
|
+
selected_count: number | null
|
|
82393
|
+
rejected_count: number | null
|
|
82436
82394
|
}
|
|
82437
82395
|
|
|
82438
82396
|
export type OpenJobAnalyticsDailyCountAggregateOutputType = {
|
|
@@ -82456,12 +82414,10 @@ export namespace Prisma {
|
|
|
82456
82414
|
closure_type: number
|
|
82457
82415
|
time_to_hire_days: number
|
|
82458
82416
|
application_count: number
|
|
82459
|
-
|
|
82460
|
-
|
|
82461
|
-
|
|
82462
|
-
|
|
82463
|
-
offered_count: number
|
|
82464
|
-
hired_count: number
|
|
82417
|
+
unscreened_count: number
|
|
82418
|
+
ongoing_count: number
|
|
82419
|
+
selected_count: number
|
|
82420
|
+
rejected_count: number
|
|
82465
82421
|
_all: number
|
|
82466
82422
|
}
|
|
82467
82423
|
|
|
@@ -82471,12 +82427,10 @@ export namespace Prisma {
|
|
|
82471
82427
|
vacancies?: true
|
|
82472
82428
|
time_to_hire_days?: true
|
|
82473
82429
|
application_count?: true
|
|
82474
|
-
|
|
82475
|
-
|
|
82476
|
-
|
|
82477
|
-
|
|
82478
|
-
offered_count?: true
|
|
82479
|
-
hired_count?: true
|
|
82430
|
+
unscreened_count?: true
|
|
82431
|
+
ongoing_count?: true
|
|
82432
|
+
selected_count?: true
|
|
82433
|
+
rejected_count?: true
|
|
82480
82434
|
}
|
|
82481
82435
|
|
|
82482
82436
|
export type OpenJobAnalyticsDailySumAggregateInputType = {
|
|
@@ -82484,12 +82438,10 @@ export namespace Prisma {
|
|
|
82484
82438
|
vacancies?: true
|
|
82485
82439
|
time_to_hire_days?: true
|
|
82486
82440
|
application_count?: true
|
|
82487
|
-
|
|
82488
|
-
|
|
82489
|
-
|
|
82490
|
-
|
|
82491
|
-
offered_count?: true
|
|
82492
|
-
hired_count?: true
|
|
82441
|
+
unscreened_count?: true
|
|
82442
|
+
ongoing_count?: true
|
|
82443
|
+
selected_count?: true
|
|
82444
|
+
rejected_count?: true
|
|
82493
82445
|
}
|
|
82494
82446
|
|
|
82495
82447
|
export type OpenJobAnalyticsDailyMinAggregateInputType = {
|
|
@@ -82513,12 +82465,10 @@ export namespace Prisma {
|
|
|
82513
82465
|
closure_type?: true
|
|
82514
82466
|
time_to_hire_days?: true
|
|
82515
82467
|
application_count?: true
|
|
82516
|
-
|
|
82517
|
-
|
|
82518
|
-
|
|
82519
|
-
|
|
82520
|
-
offered_count?: true
|
|
82521
|
-
hired_count?: true
|
|
82468
|
+
unscreened_count?: true
|
|
82469
|
+
ongoing_count?: true
|
|
82470
|
+
selected_count?: true
|
|
82471
|
+
rejected_count?: true
|
|
82522
82472
|
}
|
|
82523
82473
|
|
|
82524
82474
|
export type OpenJobAnalyticsDailyMaxAggregateInputType = {
|
|
@@ -82542,12 +82492,10 @@ export namespace Prisma {
|
|
|
82542
82492
|
closure_type?: true
|
|
82543
82493
|
time_to_hire_days?: true
|
|
82544
82494
|
application_count?: true
|
|
82545
|
-
|
|
82546
|
-
|
|
82547
|
-
|
|
82548
|
-
|
|
82549
|
-
offered_count?: true
|
|
82550
|
-
hired_count?: true
|
|
82495
|
+
unscreened_count?: true
|
|
82496
|
+
ongoing_count?: true
|
|
82497
|
+
selected_count?: true
|
|
82498
|
+
rejected_count?: true
|
|
82551
82499
|
}
|
|
82552
82500
|
|
|
82553
82501
|
export type OpenJobAnalyticsDailyCountAggregateInputType = {
|
|
@@ -82571,12 +82519,10 @@ export namespace Prisma {
|
|
|
82571
82519
|
closure_type?: true
|
|
82572
82520
|
time_to_hire_days?: true
|
|
82573
82521
|
application_count?: true
|
|
82574
|
-
|
|
82575
|
-
|
|
82576
|
-
|
|
82577
|
-
|
|
82578
|
-
offered_count?: true
|
|
82579
|
-
hired_count?: true
|
|
82522
|
+
unscreened_count?: true
|
|
82523
|
+
ongoing_count?: true
|
|
82524
|
+
selected_count?: true
|
|
82525
|
+
rejected_count?: true
|
|
82580
82526
|
_all?: true
|
|
82581
82527
|
}
|
|
82582
82528
|
|
|
@@ -82687,12 +82633,10 @@ export namespace Prisma {
|
|
|
82687
82633
|
closure_type: $Enums.OpenJobClosureType | null
|
|
82688
82634
|
time_to_hire_days: number | null
|
|
82689
82635
|
application_count: number
|
|
82690
|
-
|
|
82691
|
-
|
|
82692
|
-
|
|
82693
|
-
|
|
82694
|
-
offered_count: number
|
|
82695
|
-
hired_count: number
|
|
82636
|
+
unscreened_count: number
|
|
82637
|
+
ongoing_count: number
|
|
82638
|
+
selected_count: number
|
|
82639
|
+
rejected_count: number
|
|
82696
82640
|
_count: OpenJobAnalyticsDailyCountAggregateOutputType | null
|
|
82697
82641
|
_avg: OpenJobAnalyticsDailyAvgAggregateOutputType | null
|
|
82698
82642
|
_sum: OpenJobAnalyticsDailySumAggregateOutputType | null
|
|
@@ -82735,12 +82679,10 @@ export namespace Prisma {
|
|
|
82735
82679
|
closure_type?: boolean
|
|
82736
82680
|
time_to_hire_days?: boolean
|
|
82737
82681
|
application_count?: boolean
|
|
82738
|
-
|
|
82739
|
-
|
|
82740
|
-
|
|
82741
|
-
|
|
82742
|
-
offered_count?: boolean
|
|
82743
|
-
hired_count?: boolean
|
|
82682
|
+
unscreened_count?: boolean
|
|
82683
|
+
ongoing_count?: boolean
|
|
82684
|
+
selected_count?: boolean
|
|
82685
|
+
rejected_count?: boolean
|
|
82744
82686
|
}, ExtArgs["result"]["openJobAnalyticsDaily"]>
|
|
82745
82687
|
|
|
82746
82688
|
export type OpenJobAnalyticsDailySelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -82764,12 +82706,10 @@ export namespace Prisma {
|
|
|
82764
82706
|
closure_type?: boolean
|
|
82765
82707
|
time_to_hire_days?: boolean
|
|
82766
82708
|
application_count?: boolean
|
|
82767
|
-
|
|
82768
|
-
|
|
82769
|
-
|
|
82770
|
-
|
|
82771
|
-
offered_count?: boolean
|
|
82772
|
-
hired_count?: boolean
|
|
82709
|
+
unscreened_count?: boolean
|
|
82710
|
+
ongoing_count?: boolean
|
|
82711
|
+
selected_count?: boolean
|
|
82712
|
+
rejected_count?: boolean
|
|
82773
82713
|
}, ExtArgs["result"]["openJobAnalyticsDaily"]>
|
|
82774
82714
|
|
|
82775
82715
|
export type OpenJobAnalyticsDailySelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
@@ -82793,12 +82733,10 @@ export namespace Prisma {
|
|
|
82793
82733
|
closure_type?: boolean
|
|
82794
82734
|
time_to_hire_days?: boolean
|
|
82795
82735
|
application_count?: boolean
|
|
82796
|
-
|
|
82797
|
-
|
|
82798
|
-
|
|
82799
|
-
|
|
82800
|
-
offered_count?: boolean
|
|
82801
|
-
hired_count?: boolean
|
|
82736
|
+
unscreened_count?: boolean
|
|
82737
|
+
ongoing_count?: boolean
|
|
82738
|
+
selected_count?: boolean
|
|
82739
|
+
rejected_count?: boolean
|
|
82802
82740
|
}, ExtArgs["result"]["openJobAnalyticsDaily"]>
|
|
82803
82741
|
|
|
82804
82742
|
export type OpenJobAnalyticsDailySelectScalar = {
|
|
@@ -82822,15 +82760,13 @@ export namespace Prisma {
|
|
|
82822
82760
|
closure_type?: boolean
|
|
82823
82761
|
time_to_hire_days?: boolean
|
|
82824
82762
|
application_count?: boolean
|
|
82825
|
-
|
|
82826
|
-
|
|
82827
|
-
|
|
82828
|
-
|
|
82829
|
-
offered_count?: boolean
|
|
82830
|
-
hired_count?: boolean
|
|
82763
|
+
unscreened_count?: boolean
|
|
82764
|
+
ongoing_count?: boolean
|
|
82765
|
+
selected_count?: boolean
|
|
82766
|
+
rejected_count?: boolean
|
|
82831
82767
|
}
|
|
82832
82768
|
|
|
82833
|
-
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" | "
|
|
82769
|
+
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"]>
|
|
82834
82770
|
|
|
82835
82771
|
export type $OpenJobAnalyticsDailyPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
82836
82772
|
name: "OpenJobAnalyticsDaily"
|
|
@@ -82856,12 +82792,10 @@ export namespace Prisma {
|
|
|
82856
82792
|
closure_type: $Enums.OpenJobClosureType | null
|
|
82857
82793
|
time_to_hire_days: number | null
|
|
82858
82794
|
application_count: number
|
|
82859
|
-
|
|
82860
|
-
|
|
82861
|
-
|
|
82862
|
-
|
|
82863
|
-
offered_count: number
|
|
82864
|
-
hired_count: number
|
|
82795
|
+
unscreened_count: number
|
|
82796
|
+
ongoing_count: number
|
|
82797
|
+
selected_count: number
|
|
82798
|
+
rejected_count: number
|
|
82865
82799
|
}, ExtArgs["result"]["openJobAnalyticsDaily"]>
|
|
82866
82800
|
composites: {}
|
|
82867
82801
|
}
|
|
@@ -83305,12 +83239,10 @@ export namespace Prisma {
|
|
|
83305
83239
|
readonly closure_type: FieldRef<"OpenJobAnalyticsDaily", 'OpenJobClosureType'>
|
|
83306
83240
|
readonly time_to_hire_days: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83307
83241
|
readonly application_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83308
|
-
readonly
|
|
83309
|
-
readonly
|
|
83310
|
-
readonly
|
|
83311
|
-
readonly
|
|
83312
|
-
readonly offered_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83313
|
-
readonly hired_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83242
|
+
readonly unscreened_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83243
|
+
readonly ongoing_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83244
|
+
readonly selected_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83245
|
+
readonly rejected_count: FieldRef<"OpenJobAnalyticsDaily", 'Int'>
|
|
83314
83246
|
}
|
|
83315
83247
|
|
|
83316
83248
|
|
|
@@ -116283,12 +116215,10 @@ export namespace Prisma {
|
|
|
116283
116215
|
closure_type: 'closure_type',
|
|
116284
116216
|
time_to_hire_days: 'time_to_hire_days',
|
|
116285
116217
|
application_count: 'application_count',
|
|
116286
|
-
|
|
116287
|
-
|
|
116288
|
-
|
|
116289
|
-
|
|
116290
|
-
offered_count: 'offered_count',
|
|
116291
|
-
hired_count: 'hired_count',
|
|
116218
|
+
unscreened_count: 'unscreened_count',
|
|
116219
|
+
ongoing_count: 'ongoing_count',
|
|
116220
|
+
selected_count: 'selected_count',
|
|
116221
|
+
rejected_count: 'rejected_count',
|
|
116292
116222
|
updated_at: 'updated_at'
|
|
116293
116223
|
};
|
|
116294
116224
|
|
|
@@ -116316,12 +116246,10 @@ export namespace Prisma {
|
|
|
116316
116246
|
closure_type: 'closure_type',
|
|
116317
116247
|
time_to_hire_days: 'time_to_hire_days',
|
|
116318
116248
|
application_count: 'application_count',
|
|
116319
|
-
|
|
116320
|
-
|
|
116321
|
-
|
|
116322
|
-
|
|
116323
|
-
offered_count: 'offered_count',
|
|
116324
|
-
hired_count: 'hired_count'
|
|
116249
|
+
unscreened_count: 'unscreened_count',
|
|
116250
|
+
ongoing_count: 'ongoing_count',
|
|
116251
|
+
selected_count: 'selected_count',
|
|
116252
|
+
rejected_count: 'rejected_count'
|
|
116325
116253
|
};
|
|
116326
116254
|
|
|
116327
116255
|
export type OpenJobAnalyticsDailyScalarFieldEnum = (typeof OpenJobAnalyticsDailyScalarFieldEnum)[keyof typeof OpenJobAnalyticsDailyScalarFieldEnum]
|
|
@@ -124957,12 +124885,10 @@ export namespace Prisma {
|
|
|
124957
124885
|
closure_type?: EnumOpenJobClosureTypeNullableFilter<"OpenJobAnalytics"> | $Enums.OpenJobClosureType | null
|
|
124958
124886
|
time_to_hire_days?: IntNullableFilter<"OpenJobAnalytics"> | number | null
|
|
124959
124887
|
application_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124960
|
-
|
|
124961
|
-
|
|
124962
|
-
|
|
124963
|
-
|
|
124964
|
-
offered_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124965
|
-
hired_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124888
|
+
unscreened_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124889
|
+
ongoing_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124890
|
+
selected_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124891
|
+
rejected_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124966
124892
|
updated_at?: DateTimeFilter<"OpenJobAnalytics"> | Date | string
|
|
124967
124893
|
}
|
|
124968
124894
|
|
|
@@ -124986,12 +124912,10 @@ export namespace Prisma {
|
|
|
124986
124912
|
closure_type?: SortOrderInput | SortOrder
|
|
124987
124913
|
time_to_hire_days?: SortOrderInput | SortOrder
|
|
124988
124914
|
application_count?: SortOrder
|
|
124989
|
-
|
|
124990
|
-
|
|
124991
|
-
|
|
124992
|
-
|
|
124993
|
-
offered_count?: SortOrder
|
|
124994
|
-
hired_count?: SortOrder
|
|
124915
|
+
unscreened_count?: SortOrder
|
|
124916
|
+
ongoing_count?: SortOrder
|
|
124917
|
+
selected_count?: SortOrder
|
|
124918
|
+
rejected_count?: SortOrder
|
|
124995
124919
|
updated_at?: SortOrder
|
|
124996
124920
|
}
|
|
124997
124921
|
|
|
@@ -125018,12 +124942,10 @@ export namespace Prisma {
|
|
|
125018
124942
|
closure_type?: EnumOpenJobClosureTypeNullableFilter<"OpenJobAnalytics"> | $Enums.OpenJobClosureType | null
|
|
125019
124943
|
time_to_hire_days?: IntNullableFilter<"OpenJobAnalytics"> | number | null
|
|
125020
124944
|
application_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125021
|
-
|
|
125022
|
-
|
|
125023
|
-
|
|
125024
|
-
|
|
125025
|
-
offered_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125026
|
-
hired_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124945
|
+
unscreened_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124946
|
+
ongoing_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124947
|
+
selected_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
124948
|
+
rejected_count?: IntFilter<"OpenJobAnalytics"> | number
|
|
125027
124949
|
updated_at?: DateTimeFilter<"OpenJobAnalytics"> | Date | string
|
|
125028
124950
|
}, "id" | "job_description_id">
|
|
125029
124951
|
|
|
@@ -125047,12 +124969,10 @@ export namespace Prisma {
|
|
|
125047
124969
|
closure_type?: SortOrderInput | SortOrder
|
|
125048
124970
|
time_to_hire_days?: SortOrderInput | SortOrder
|
|
125049
124971
|
application_count?: SortOrder
|
|
125050
|
-
|
|
125051
|
-
|
|
125052
|
-
|
|
125053
|
-
|
|
125054
|
-
offered_count?: SortOrder
|
|
125055
|
-
hired_count?: SortOrder
|
|
124972
|
+
unscreened_count?: SortOrder
|
|
124973
|
+
ongoing_count?: SortOrder
|
|
124974
|
+
selected_count?: SortOrder
|
|
124975
|
+
rejected_count?: SortOrder
|
|
125056
124976
|
updated_at?: SortOrder
|
|
125057
124977
|
_count?: OpenJobAnalyticsCountOrderByAggregateInput
|
|
125058
124978
|
_avg?: OpenJobAnalyticsAvgOrderByAggregateInput
|
|
@@ -125084,12 +125004,10 @@ export namespace Prisma {
|
|
|
125084
125004
|
closure_type?: EnumOpenJobClosureTypeNullableWithAggregatesFilter<"OpenJobAnalytics"> | $Enums.OpenJobClosureType | null
|
|
125085
125005
|
time_to_hire_days?: IntNullableWithAggregatesFilter<"OpenJobAnalytics"> | number | null
|
|
125086
125006
|
application_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125087
|
-
|
|
125088
|
-
|
|
125089
|
-
|
|
125090
|
-
|
|
125091
|
-
offered_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125092
|
-
hired_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125007
|
+
unscreened_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125008
|
+
ongoing_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125009
|
+
selected_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125010
|
+
rejected_count?: IntWithAggregatesFilter<"OpenJobAnalytics"> | number
|
|
125093
125011
|
updated_at?: DateTimeWithAggregatesFilter<"OpenJobAnalytics"> | Date | string
|
|
125094
125012
|
}
|
|
125095
125013
|
|
|
@@ -125117,12 +125035,10 @@ export namespace Prisma {
|
|
|
125117
125035
|
closure_type?: EnumOpenJobClosureTypeNullableFilter<"OpenJobAnalyticsDaily"> | $Enums.OpenJobClosureType | null
|
|
125118
125036
|
time_to_hire_days?: IntNullableFilter<"OpenJobAnalyticsDaily"> | number | null
|
|
125119
125037
|
application_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125120
|
-
|
|
125121
|
-
|
|
125122
|
-
|
|
125123
|
-
|
|
125124
|
-
offered_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125125
|
-
hired_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125038
|
+
unscreened_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125039
|
+
ongoing_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125040
|
+
selected_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125041
|
+
rejected_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125126
125042
|
}
|
|
125127
125043
|
|
|
125128
125044
|
export type OpenJobAnalyticsDailyOrderByWithRelationInput = {
|
|
@@ -125146,12 +125062,10 @@ export namespace Prisma {
|
|
|
125146
125062
|
closure_type?: SortOrderInput | SortOrder
|
|
125147
125063
|
time_to_hire_days?: SortOrderInput | SortOrder
|
|
125148
125064
|
application_count?: SortOrder
|
|
125149
|
-
|
|
125150
|
-
|
|
125151
|
-
|
|
125152
|
-
|
|
125153
|
-
offered_count?: SortOrder
|
|
125154
|
-
hired_count?: SortOrder
|
|
125065
|
+
unscreened_count?: SortOrder
|
|
125066
|
+
ongoing_count?: SortOrder
|
|
125067
|
+
selected_count?: SortOrder
|
|
125068
|
+
rejected_count?: SortOrder
|
|
125155
125069
|
}
|
|
125156
125070
|
|
|
125157
125071
|
export type OpenJobAnalyticsDailyWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -125179,12 +125093,10 @@ export namespace Prisma {
|
|
|
125179
125093
|
closure_type?: EnumOpenJobClosureTypeNullableFilter<"OpenJobAnalyticsDaily"> | $Enums.OpenJobClosureType | null
|
|
125180
125094
|
time_to_hire_days?: IntNullableFilter<"OpenJobAnalyticsDaily"> | number | null
|
|
125181
125095
|
application_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125182
|
-
|
|
125183
|
-
|
|
125184
|
-
|
|
125185
|
-
|
|
125186
|
-
offered_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125187
|
-
hired_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125096
|
+
unscreened_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125097
|
+
ongoing_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125098
|
+
selected_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125099
|
+
rejected_count?: IntFilter<"OpenJobAnalyticsDaily"> | number
|
|
125188
125100
|
}, "id" | "snapshot_date_job_description_id">
|
|
125189
125101
|
|
|
125190
125102
|
export type OpenJobAnalyticsDailyOrderByWithAggregationInput = {
|
|
@@ -125208,12 +125120,10 @@ export namespace Prisma {
|
|
|
125208
125120
|
closure_type?: SortOrderInput | SortOrder
|
|
125209
125121
|
time_to_hire_days?: SortOrderInput | SortOrder
|
|
125210
125122
|
application_count?: SortOrder
|
|
125211
|
-
|
|
125212
|
-
|
|
125213
|
-
|
|
125214
|
-
|
|
125215
|
-
offered_count?: SortOrder
|
|
125216
|
-
hired_count?: SortOrder
|
|
125123
|
+
unscreened_count?: SortOrder
|
|
125124
|
+
ongoing_count?: SortOrder
|
|
125125
|
+
selected_count?: SortOrder
|
|
125126
|
+
rejected_count?: SortOrder
|
|
125217
125127
|
_count?: OpenJobAnalyticsDailyCountOrderByAggregateInput
|
|
125218
125128
|
_avg?: OpenJobAnalyticsDailyAvgOrderByAggregateInput
|
|
125219
125129
|
_max?: OpenJobAnalyticsDailyMaxOrderByAggregateInput
|
|
@@ -125245,12 +125155,10 @@ export namespace Prisma {
|
|
|
125245
125155
|
closure_type?: EnumOpenJobClosureTypeNullableWithAggregatesFilter<"OpenJobAnalyticsDaily"> | $Enums.OpenJobClosureType | null
|
|
125246
125156
|
time_to_hire_days?: IntNullableWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number | null
|
|
125247
125157
|
application_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125248
|
-
|
|
125249
|
-
|
|
125250
|
-
|
|
125251
|
-
|
|
125252
|
-
offered_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125253
|
-
hired_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125158
|
+
unscreened_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125159
|
+
ongoing_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125160
|
+
selected_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125161
|
+
rejected_count?: IntWithAggregatesFilter<"OpenJobAnalyticsDaily"> | number
|
|
125254
125162
|
}
|
|
125255
125163
|
|
|
125256
125164
|
export type OrganisationWhereInput = {
|
|
@@ -136653,12 +136561,10 @@ export namespace Prisma {
|
|
|
136653
136561
|
closure_type?: $Enums.OpenJobClosureType | null
|
|
136654
136562
|
time_to_hire_days?: number | null
|
|
136655
136563
|
application_count?: number
|
|
136656
|
-
|
|
136657
|
-
|
|
136658
|
-
|
|
136659
|
-
|
|
136660
|
-
offered_count?: number
|
|
136661
|
-
hired_count?: number
|
|
136564
|
+
unscreened_count?: number
|
|
136565
|
+
ongoing_count?: number
|
|
136566
|
+
selected_count?: number
|
|
136567
|
+
rejected_count?: number
|
|
136662
136568
|
updated_at?: Date | string
|
|
136663
136569
|
}
|
|
136664
136570
|
|
|
@@ -136682,12 +136588,10 @@ export namespace Prisma {
|
|
|
136682
136588
|
closure_type?: $Enums.OpenJobClosureType | null
|
|
136683
136589
|
time_to_hire_days?: number | null
|
|
136684
136590
|
application_count?: number
|
|
136685
|
-
|
|
136686
|
-
|
|
136687
|
-
|
|
136688
|
-
|
|
136689
|
-
offered_count?: number
|
|
136690
|
-
hired_count?: number
|
|
136591
|
+
unscreened_count?: number
|
|
136592
|
+
ongoing_count?: number
|
|
136593
|
+
selected_count?: number
|
|
136594
|
+
rejected_count?: number
|
|
136691
136595
|
updated_at?: Date | string
|
|
136692
136596
|
}
|
|
136693
136597
|
|
|
@@ -136711,12 +136615,10 @@ export namespace Prisma {
|
|
|
136711
136615
|
closure_type?: NullableEnumOpenJobClosureTypeFieldUpdateOperationsInput | $Enums.OpenJobClosureType | null
|
|
136712
136616
|
time_to_hire_days?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136713
136617
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
136714
|
-
|
|
136715
|
-
|
|
136716
|
-
|
|
136717
|
-
|
|
136718
|
-
offered_count?: IntFieldUpdateOperationsInput | number
|
|
136719
|
-
hired_count?: IntFieldUpdateOperationsInput | number
|
|
136618
|
+
unscreened_count?: IntFieldUpdateOperationsInput | number
|
|
136619
|
+
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136620
|
+
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136621
|
+
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
136720
136622
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136721
136623
|
}
|
|
136722
136624
|
|
|
@@ -136740,12 +136642,10 @@ export namespace Prisma {
|
|
|
136740
136642
|
closure_type?: NullableEnumOpenJobClosureTypeFieldUpdateOperationsInput | $Enums.OpenJobClosureType | null
|
|
136741
136643
|
time_to_hire_days?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136742
136644
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
136743
|
-
|
|
136744
|
-
|
|
136745
|
-
|
|
136746
|
-
|
|
136747
|
-
offered_count?: IntFieldUpdateOperationsInput | number
|
|
136748
|
-
hired_count?: IntFieldUpdateOperationsInput | number
|
|
136645
|
+
unscreened_count?: IntFieldUpdateOperationsInput | number
|
|
136646
|
+
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136647
|
+
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136648
|
+
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
136749
136649
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136750
136650
|
}
|
|
136751
136651
|
|
|
@@ -136769,12 +136669,10 @@ export namespace Prisma {
|
|
|
136769
136669
|
closure_type?: $Enums.OpenJobClosureType | null
|
|
136770
136670
|
time_to_hire_days?: number | null
|
|
136771
136671
|
application_count?: number
|
|
136772
|
-
|
|
136773
|
-
|
|
136774
|
-
|
|
136775
|
-
|
|
136776
|
-
offered_count?: number
|
|
136777
|
-
hired_count?: number
|
|
136672
|
+
unscreened_count?: number
|
|
136673
|
+
ongoing_count?: number
|
|
136674
|
+
selected_count?: number
|
|
136675
|
+
rejected_count?: number
|
|
136778
136676
|
updated_at?: Date | string
|
|
136779
136677
|
}
|
|
136780
136678
|
|
|
@@ -136798,12 +136696,10 @@ export namespace Prisma {
|
|
|
136798
136696
|
closure_type?: NullableEnumOpenJobClosureTypeFieldUpdateOperationsInput | $Enums.OpenJobClosureType | null
|
|
136799
136697
|
time_to_hire_days?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136800
136698
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
136801
|
-
|
|
136802
|
-
|
|
136803
|
-
|
|
136804
|
-
|
|
136805
|
-
offered_count?: IntFieldUpdateOperationsInput | number
|
|
136806
|
-
hired_count?: IntFieldUpdateOperationsInput | number
|
|
136699
|
+
unscreened_count?: IntFieldUpdateOperationsInput | number
|
|
136700
|
+
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136701
|
+
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136702
|
+
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
136807
136703
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136808
136704
|
}
|
|
136809
136705
|
|
|
@@ -136827,12 +136723,10 @@ export namespace Prisma {
|
|
|
136827
136723
|
closure_type?: NullableEnumOpenJobClosureTypeFieldUpdateOperationsInput | $Enums.OpenJobClosureType | null
|
|
136828
136724
|
time_to_hire_days?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136829
136725
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
136830
|
-
|
|
136831
|
-
|
|
136832
|
-
|
|
136833
|
-
|
|
136834
|
-
offered_count?: IntFieldUpdateOperationsInput | number
|
|
136835
|
-
hired_count?: IntFieldUpdateOperationsInput | number
|
|
136726
|
+
unscreened_count?: IntFieldUpdateOperationsInput | number
|
|
136727
|
+
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136728
|
+
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136729
|
+
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
136836
136730
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
136837
136731
|
}
|
|
136838
136732
|
|
|
@@ -136857,12 +136751,10 @@ export namespace Prisma {
|
|
|
136857
136751
|
closure_type?: $Enums.OpenJobClosureType | null
|
|
136858
136752
|
time_to_hire_days?: number | null
|
|
136859
136753
|
application_count?: number
|
|
136860
|
-
|
|
136861
|
-
|
|
136862
|
-
|
|
136863
|
-
|
|
136864
|
-
offered_count?: number
|
|
136865
|
-
hired_count?: number
|
|
136754
|
+
unscreened_count?: number
|
|
136755
|
+
ongoing_count?: number
|
|
136756
|
+
selected_count?: number
|
|
136757
|
+
rejected_count?: number
|
|
136866
136758
|
}
|
|
136867
136759
|
|
|
136868
136760
|
export type OpenJobAnalyticsDailyUncheckedCreateInput = {
|
|
@@ -136886,12 +136778,10 @@ export namespace Prisma {
|
|
|
136886
136778
|
closure_type?: $Enums.OpenJobClosureType | null
|
|
136887
136779
|
time_to_hire_days?: number | null
|
|
136888
136780
|
application_count?: number
|
|
136889
|
-
|
|
136890
|
-
|
|
136891
|
-
|
|
136892
|
-
|
|
136893
|
-
offered_count?: number
|
|
136894
|
-
hired_count?: number
|
|
136781
|
+
unscreened_count?: number
|
|
136782
|
+
ongoing_count?: number
|
|
136783
|
+
selected_count?: number
|
|
136784
|
+
rejected_count?: number
|
|
136895
136785
|
}
|
|
136896
136786
|
|
|
136897
136787
|
export type OpenJobAnalyticsDailyUpdateInput = {
|
|
@@ -136915,12 +136805,10 @@ export namespace Prisma {
|
|
|
136915
136805
|
closure_type?: NullableEnumOpenJobClosureTypeFieldUpdateOperationsInput | $Enums.OpenJobClosureType | null
|
|
136916
136806
|
time_to_hire_days?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136917
136807
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
136918
|
-
|
|
136919
|
-
|
|
136920
|
-
|
|
136921
|
-
|
|
136922
|
-
offered_count?: IntFieldUpdateOperationsInput | number
|
|
136923
|
-
hired_count?: IntFieldUpdateOperationsInput | number
|
|
136808
|
+
unscreened_count?: IntFieldUpdateOperationsInput | number
|
|
136809
|
+
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136810
|
+
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136811
|
+
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
136924
136812
|
}
|
|
136925
136813
|
|
|
136926
136814
|
export type OpenJobAnalyticsDailyUncheckedUpdateInput = {
|
|
@@ -136944,12 +136832,10 @@ export namespace Prisma {
|
|
|
136944
136832
|
closure_type?: NullableEnumOpenJobClosureTypeFieldUpdateOperationsInput | $Enums.OpenJobClosureType | null
|
|
136945
136833
|
time_to_hire_days?: NullableIntFieldUpdateOperationsInput | number | null
|
|
136946
136834
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
136947
|
-
|
|
136948
|
-
|
|
136949
|
-
|
|
136950
|
-
|
|
136951
|
-
offered_count?: IntFieldUpdateOperationsInput | number
|
|
136952
|
-
hired_count?: IntFieldUpdateOperationsInput | number
|
|
136835
|
+
unscreened_count?: IntFieldUpdateOperationsInput | number
|
|
136836
|
+
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136837
|
+
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136838
|
+
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
136953
136839
|
}
|
|
136954
136840
|
|
|
136955
136841
|
export type OpenJobAnalyticsDailyCreateManyInput = {
|
|
@@ -136973,12 +136859,10 @@ export namespace Prisma {
|
|
|
136973
136859
|
closure_type?: $Enums.OpenJobClosureType | null
|
|
136974
136860
|
time_to_hire_days?: number | null
|
|
136975
136861
|
application_count?: number
|
|
136976
|
-
|
|
136977
|
-
|
|
136978
|
-
|
|
136979
|
-
|
|
136980
|
-
offered_count?: number
|
|
136981
|
-
hired_count?: number
|
|
136862
|
+
unscreened_count?: number
|
|
136863
|
+
ongoing_count?: number
|
|
136864
|
+
selected_count?: number
|
|
136865
|
+
rejected_count?: number
|
|
136982
136866
|
}
|
|
136983
136867
|
|
|
136984
136868
|
export type OpenJobAnalyticsDailyUpdateManyMutationInput = {
|
|
@@ -137002,12 +136886,10 @@ export namespace Prisma {
|
|
|
137002
136886
|
closure_type?: NullableEnumOpenJobClosureTypeFieldUpdateOperationsInput | $Enums.OpenJobClosureType | null
|
|
137003
136887
|
time_to_hire_days?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137004
136888
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137005
|
-
|
|
137006
|
-
|
|
137007
|
-
|
|
137008
|
-
|
|
137009
|
-
offered_count?: IntFieldUpdateOperationsInput | number
|
|
137010
|
-
hired_count?: IntFieldUpdateOperationsInput | number
|
|
136889
|
+
unscreened_count?: IntFieldUpdateOperationsInput | number
|
|
136890
|
+
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136891
|
+
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136892
|
+
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
137011
136893
|
}
|
|
137012
136894
|
|
|
137013
136895
|
export type OpenJobAnalyticsDailyUncheckedUpdateManyInput = {
|
|
@@ -137031,12 +136913,10 @@ export namespace Prisma {
|
|
|
137031
136913
|
closure_type?: NullableEnumOpenJobClosureTypeFieldUpdateOperationsInput | $Enums.OpenJobClosureType | null
|
|
137032
136914
|
time_to_hire_days?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137033
136915
|
application_count?: IntFieldUpdateOperationsInput | number
|
|
137034
|
-
|
|
137035
|
-
|
|
137036
|
-
|
|
137037
|
-
|
|
137038
|
-
offered_count?: IntFieldUpdateOperationsInput | number
|
|
137039
|
-
hired_count?: IntFieldUpdateOperationsInput | number
|
|
136916
|
+
unscreened_count?: IntFieldUpdateOperationsInput | number
|
|
136917
|
+
ongoing_count?: IntFieldUpdateOperationsInput | number
|
|
136918
|
+
selected_count?: IntFieldUpdateOperationsInput | number
|
|
136919
|
+
rejected_count?: IntFieldUpdateOperationsInput | number
|
|
137040
136920
|
}
|
|
137041
136921
|
|
|
137042
136922
|
export type OrganisationCreateInput = {
|
|
@@ -146211,12 +146091,10 @@ export namespace Prisma {
|
|
|
146211
146091
|
closure_type?: SortOrder
|
|
146212
146092
|
time_to_hire_days?: SortOrder
|
|
146213
146093
|
application_count?: SortOrder
|
|
146214
|
-
|
|
146215
|
-
|
|
146216
|
-
|
|
146217
|
-
|
|
146218
|
-
offered_count?: SortOrder
|
|
146219
|
-
hired_count?: SortOrder
|
|
146094
|
+
unscreened_count?: SortOrder
|
|
146095
|
+
ongoing_count?: SortOrder
|
|
146096
|
+
selected_count?: SortOrder
|
|
146097
|
+
rejected_count?: SortOrder
|
|
146220
146098
|
updated_at?: SortOrder
|
|
146221
146099
|
}
|
|
146222
146100
|
|
|
@@ -146225,12 +146103,10 @@ export namespace Prisma {
|
|
|
146225
146103
|
vacancies?: SortOrder
|
|
146226
146104
|
time_to_hire_days?: SortOrder
|
|
146227
146105
|
application_count?: SortOrder
|
|
146228
|
-
|
|
146229
|
-
|
|
146230
|
-
|
|
146231
|
-
|
|
146232
|
-
offered_count?: SortOrder
|
|
146233
|
-
hired_count?: SortOrder
|
|
146106
|
+
unscreened_count?: SortOrder
|
|
146107
|
+
ongoing_count?: SortOrder
|
|
146108
|
+
selected_count?: SortOrder
|
|
146109
|
+
rejected_count?: SortOrder
|
|
146234
146110
|
}
|
|
146235
146111
|
|
|
146236
146112
|
export type OpenJobAnalyticsMaxOrderByAggregateInput = {
|
|
@@ -146253,12 +146129,10 @@ export namespace Prisma {
|
|
|
146253
146129
|
closure_type?: SortOrder
|
|
146254
146130
|
time_to_hire_days?: SortOrder
|
|
146255
146131
|
application_count?: SortOrder
|
|
146256
|
-
|
|
146257
|
-
|
|
146258
|
-
|
|
146259
|
-
|
|
146260
|
-
offered_count?: SortOrder
|
|
146261
|
-
hired_count?: SortOrder
|
|
146132
|
+
unscreened_count?: SortOrder
|
|
146133
|
+
ongoing_count?: SortOrder
|
|
146134
|
+
selected_count?: SortOrder
|
|
146135
|
+
rejected_count?: SortOrder
|
|
146262
146136
|
updated_at?: SortOrder
|
|
146263
146137
|
}
|
|
146264
146138
|
|
|
@@ -146282,12 +146156,10 @@ export namespace Prisma {
|
|
|
146282
146156
|
closure_type?: SortOrder
|
|
146283
146157
|
time_to_hire_days?: SortOrder
|
|
146284
146158
|
application_count?: SortOrder
|
|
146285
|
-
|
|
146286
|
-
|
|
146287
|
-
|
|
146288
|
-
|
|
146289
|
-
offered_count?: SortOrder
|
|
146290
|
-
hired_count?: SortOrder
|
|
146159
|
+
unscreened_count?: SortOrder
|
|
146160
|
+
ongoing_count?: SortOrder
|
|
146161
|
+
selected_count?: SortOrder
|
|
146162
|
+
rejected_count?: SortOrder
|
|
146291
146163
|
updated_at?: SortOrder
|
|
146292
146164
|
}
|
|
146293
146165
|
|
|
@@ -146296,12 +146168,10 @@ export namespace Prisma {
|
|
|
146296
146168
|
vacancies?: SortOrder
|
|
146297
146169
|
time_to_hire_days?: SortOrder
|
|
146298
146170
|
application_count?: SortOrder
|
|
146299
|
-
|
|
146300
|
-
|
|
146301
|
-
|
|
146302
|
-
|
|
146303
|
-
offered_count?: SortOrder
|
|
146304
|
-
hired_count?: SortOrder
|
|
146171
|
+
unscreened_count?: SortOrder
|
|
146172
|
+
ongoing_count?: SortOrder
|
|
146173
|
+
selected_count?: SortOrder
|
|
146174
|
+
rejected_count?: SortOrder
|
|
146305
146175
|
}
|
|
146306
146176
|
|
|
146307
146177
|
export type EnumOpenJobClosureTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -146340,12 +146210,10 @@ export namespace Prisma {
|
|
|
146340
146210
|
closure_type?: SortOrder
|
|
146341
146211
|
time_to_hire_days?: SortOrder
|
|
146342
146212
|
application_count?: SortOrder
|
|
146343
|
-
|
|
146344
|
-
|
|
146345
|
-
|
|
146346
|
-
|
|
146347
|
-
offered_count?: SortOrder
|
|
146348
|
-
hired_count?: SortOrder
|
|
146213
|
+
unscreened_count?: SortOrder
|
|
146214
|
+
ongoing_count?: SortOrder
|
|
146215
|
+
selected_count?: SortOrder
|
|
146216
|
+
rejected_count?: SortOrder
|
|
146349
146217
|
}
|
|
146350
146218
|
|
|
146351
146219
|
export type OpenJobAnalyticsDailyAvgOrderByAggregateInput = {
|
|
@@ -146353,12 +146221,10 @@ export namespace Prisma {
|
|
|
146353
146221
|
vacancies?: SortOrder
|
|
146354
146222
|
time_to_hire_days?: SortOrder
|
|
146355
146223
|
application_count?: SortOrder
|
|
146356
|
-
|
|
146357
|
-
|
|
146358
|
-
|
|
146359
|
-
|
|
146360
|
-
offered_count?: SortOrder
|
|
146361
|
-
hired_count?: SortOrder
|
|
146224
|
+
unscreened_count?: SortOrder
|
|
146225
|
+
ongoing_count?: SortOrder
|
|
146226
|
+
selected_count?: SortOrder
|
|
146227
|
+
rejected_count?: SortOrder
|
|
146362
146228
|
}
|
|
146363
146229
|
|
|
146364
146230
|
export type OpenJobAnalyticsDailyMaxOrderByAggregateInput = {
|
|
@@ -146382,12 +146248,10 @@ export namespace Prisma {
|
|
|
146382
146248
|
closure_type?: SortOrder
|
|
146383
146249
|
time_to_hire_days?: SortOrder
|
|
146384
146250
|
application_count?: SortOrder
|
|
146385
|
-
|
|
146386
|
-
|
|
146387
|
-
|
|
146388
|
-
|
|
146389
|
-
offered_count?: SortOrder
|
|
146390
|
-
hired_count?: SortOrder
|
|
146251
|
+
unscreened_count?: SortOrder
|
|
146252
|
+
ongoing_count?: SortOrder
|
|
146253
|
+
selected_count?: SortOrder
|
|
146254
|
+
rejected_count?: SortOrder
|
|
146391
146255
|
}
|
|
146392
146256
|
|
|
146393
146257
|
export type OpenJobAnalyticsDailyMinOrderByAggregateInput = {
|
|
@@ -146411,12 +146275,10 @@ export namespace Prisma {
|
|
|
146411
146275
|
closure_type?: SortOrder
|
|
146412
146276
|
time_to_hire_days?: SortOrder
|
|
146413
146277
|
application_count?: SortOrder
|
|
146414
|
-
|
|
146415
|
-
|
|
146416
|
-
|
|
146417
|
-
|
|
146418
|
-
offered_count?: SortOrder
|
|
146419
|
-
hired_count?: SortOrder
|
|
146278
|
+
unscreened_count?: SortOrder
|
|
146279
|
+
ongoing_count?: SortOrder
|
|
146280
|
+
selected_count?: SortOrder
|
|
146281
|
+
rejected_count?: SortOrder
|
|
146420
146282
|
}
|
|
146421
146283
|
|
|
146422
146284
|
export type OpenJobAnalyticsDailySumOrderByAggregateInput = {
|
|
@@ -146424,12 +146286,10 @@ export namespace Prisma {
|
|
|
146424
146286
|
vacancies?: SortOrder
|
|
146425
146287
|
time_to_hire_days?: SortOrder
|
|
146426
146288
|
application_count?: SortOrder
|
|
146427
|
-
|
|
146428
|
-
|
|
146429
|
-
|
|
146430
|
-
|
|
146431
|
-
offered_count?: SortOrder
|
|
146432
|
-
hired_count?: SortOrder
|
|
146289
|
+
unscreened_count?: SortOrder
|
|
146290
|
+
ongoing_count?: SortOrder
|
|
146291
|
+
selected_count?: SortOrder
|
|
146292
|
+
rejected_count?: SortOrder
|
|
146433
146293
|
}
|
|
146434
146294
|
|
|
146435
146295
|
export type EnumOrganisationSizeFilter<$PrismaModel = never> = {
|