procbay-schema 1.0.4 → 1.0.6
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/package.json +1 -1
- package/prisma/migrations/20250729122612_removed_vendor_related_fields/migration.sql +0 -0
- package/prisma/migrations/20250729122741_alter_vendor_refrence_table/migration.sql +0 -0
- package/prisma/migrations/20250805054844_alter_tables/migration.sql +2 -0
- package/prisma/migrations/20250805092858_added_uuid_to_budget_tables/migration.sql +42 -0
- package/prisma/migrations/20250806062243_alter_code_in_department_budget/migration.sql +14 -0
- package/prisma/schema.prisma +120 -114
- package/prisma/seeders/template.seed.js +2 -0
- package/src/prisma/edge.js +9 -3
- package/src/prisma/index-browser.js +6 -0
- package/src/prisma/index.d.ts +281 -10
- package/src/prisma/index.js +9 -3
- package/src/prisma/package.json +1 -1
- package/src/prisma/schema.prisma +6 -0
- package/src/prisma/wasm.js +6 -0
package/src/prisma/index.d.ts
CHANGED
|
@@ -109426,6 +109426,7 @@ export namespace Prisma {
|
|
|
109426
109426
|
|
|
109427
109427
|
export type BudgetMinAggregateOutputType = {
|
|
109428
109428
|
id: number | null
|
|
109429
|
+
uuid: string | null
|
|
109429
109430
|
company_name: string | null
|
|
109430
109431
|
fiscal_year: string | null
|
|
109431
109432
|
currency: string | null
|
|
@@ -109443,6 +109444,7 @@ export namespace Prisma {
|
|
|
109443
109444
|
|
|
109444
109445
|
export type BudgetMaxAggregateOutputType = {
|
|
109445
109446
|
id: number | null
|
|
109447
|
+
uuid: string | null
|
|
109446
109448
|
company_name: string | null
|
|
109447
109449
|
fiscal_year: string | null
|
|
109448
109450
|
currency: string | null
|
|
@@ -109460,6 +109462,7 @@ export namespace Prisma {
|
|
|
109460
109462
|
|
|
109461
109463
|
export type BudgetCountAggregateOutputType = {
|
|
109462
109464
|
id: number
|
|
109465
|
+
uuid: number
|
|
109463
109466
|
company_name: number
|
|
109464
109467
|
fiscal_year: number
|
|
109465
109468
|
currency: number
|
|
@@ -109495,6 +109498,7 @@ export namespace Prisma {
|
|
|
109495
109498
|
|
|
109496
109499
|
export type BudgetMinAggregateInputType = {
|
|
109497
109500
|
id?: true
|
|
109501
|
+
uuid?: true
|
|
109498
109502
|
company_name?: true
|
|
109499
109503
|
fiscal_year?: true
|
|
109500
109504
|
currency?: true
|
|
@@ -109512,6 +109516,7 @@ export namespace Prisma {
|
|
|
109512
109516
|
|
|
109513
109517
|
export type BudgetMaxAggregateInputType = {
|
|
109514
109518
|
id?: true
|
|
109519
|
+
uuid?: true
|
|
109515
109520
|
company_name?: true
|
|
109516
109521
|
fiscal_year?: true
|
|
109517
109522
|
currency?: true
|
|
@@ -109529,6 +109534,7 @@ export namespace Prisma {
|
|
|
109529
109534
|
|
|
109530
109535
|
export type BudgetCountAggregateInputType = {
|
|
109531
109536
|
id?: true
|
|
109537
|
+
uuid?: true
|
|
109532
109538
|
company_name?: true
|
|
109533
109539
|
fiscal_year?: true
|
|
109534
109540
|
currency?: true
|
|
@@ -109633,6 +109639,7 @@ export namespace Prisma {
|
|
|
109633
109639
|
|
|
109634
109640
|
export type BudgetGroupByOutputType = {
|
|
109635
109641
|
id: number
|
|
109642
|
+
uuid: string | null
|
|
109636
109643
|
company_name: string | null
|
|
109637
109644
|
fiscal_year: string | null
|
|
109638
109645
|
currency: string | null
|
|
@@ -109669,6 +109676,7 @@ export namespace Prisma {
|
|
|
109669
109676
|
|
|
109670
109677
|
export type BudgetSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
109671
109678
|
id?: boolean
|
|
109679
|
+
uuid?: boolean
|
|
109672
109680
|
company_name?: boolean
|
|
109673
109681
|
fiscal_year?: boolean
|
|
109674
109682
|
currency?: boolean
|
|
@@ -109689,6 +109697,7 @@ export namespace Prisma {
|
|
|
109689
109697
|
|
|
109690
109698
|
export type BudgetSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
109691
109699
|
id?: boolean
|
|
109700
|
+
uuid?: boolean
|
|
109692
109701
|
company_name?: boolean
|
|
109693
109702
|
fiscal_year?: boolean
|
|
109694
109703
|
currency?: boolean
|
|
@@ -109706,6 +109715,7 @@ export namespace Prisma {
|
|
|
109706
109715
|
|
|
109707
109716
|
export type BudgetSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
109708
109717
|
id?: boolean
|
|
109718
|
+
uuid?: boolean
|
|
109709
109719
|
company_name?: boolean
|
|
109710
109720
|
fiscal_year?: boolean
|
|
109711
109721
|
currency?: boolean
|
|
@@ -109723,6 +109733,7 @@ export namespace Prisma {
|
|
|
109723
109733
|
|
|
109724
109734
|
export type BudgetSelectScalar = {
|
|
109725
109735
|
id?: boolean
|
|
109736
|
+
uuid?: boolean
|
|
109726
109737
|
company_name?: boolean
|
|
109727
109738
|
fiscal_year?: boolean
|
|
109728
109739
|
currency?: boolean
|
|
@@ -109738,7 +109749,7 @@ export namespace Prisma {
|
|
|
109738
109749
|
deleted_by?: boolean
|
|
109739
109750
|
}
|
|
109740
109751
|
|
|
109741
|
-
export type BudgetOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "company_name" | "fiscal_year" | "currency" | "total_annual_budget" | "description" | "status" | "created_by" | "created_at" | "updated_by" | "updated_at" | "is_deleted" | "deleted_at" | "deleted_by", ExtArgs["result"]["budget"]>
|
|
109752
|
+
export type BudgetOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "uuid" | "company_name" | "fiscal_year" | "currency" | "total_annual_budget" | "description" | "status" | "created_by" | "created_at" | "updated_by" | "updated_at" | "is_deleted" | "deleted_at" | "deleted_by", ExtArgs["result"]["budget"]>
|
|
109742
109753
|
export type BudgetInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
109743
109754
|
department_budgets?: boolean | Budget$department_budgetsArgs<ExtArgs>
|
|
109744
109755
|
supporting_documents?: boolean | Budget$supporting_documentsArgs<ExtArgs>
|
|
@@ -109755,6 +109766,7 @@ export namespace Prisma {
|
|
|
109755
109766
|
}
|
|
109756
109767
|
scalars: $Extensions.GetPayloadResult<{
|
|
109757
109768
|
id: number
|
|
109769
|
+
uuid: string | null
|
|
109758
109770
|
company_name: string | null
|
|
109759
109771
|
fiscal_year: string | null
|
|
109760
109772
|
currency: string | null
|
|
@@ -110194,6 +110206,7 @@ export namespace Prisma {
|
|
|
110194
110206
|
*/
|
|
110195
110207
|
interface BudgetFieldRefs {
|
|
110196
110208
|
readonly id: FieldRef<"Budget", 'Int'>
|
|
110209
|
+
readonly uuid: FieldRef<"Budget", 'String'>
|
|
110197
110210
|
readonly company_name: FieldRef<"Budget", 'String'>
|
|
110198
110211
|
readonly fiscal_year: FieldRef<"Budget", 'String'>
|
|
110199
110212
|
readonly currency: FieldRef<"Budget", 'String'>
|
|
@@ -110695,6 +110708,8 @@ export namespace Prisma {
|
|
|
110695
110708
|
|
|
110696
110709
|
export type DepartmentBudgetMinAggregateOutputType = {
|
|
110697
110710
|
id: number | null
|
|
110711
|
+
uuid: string | null
|
|
110712
|
+
code: string | null
|
|
110698
110713
|
budget_id: number | null
|
|
110699
110714
|
department_id: number | null
|
|
110700
110715
|
allocated_budget: Decimal | null
|
|
@@ -110712,6 +110727,8 @@ export namespace Prisma {
|
|
|
110712
110727
|
|
|
110713
110728
|
export type DepartmentBudgetMaxAggregateOutputType = {
|
|
110714
110729
|
id: number | null
|
|
110730
|
+
uuid: string | null
|
|
110731
|
+
code: string | null
|
|
110715
110732
|
budget_id: number | null
|
|
110716
110733
|
department_id: number | null
|
|
110717
110734
|
allocated_budget: Decimal | null
|
|
@@ -110729,6 +110746,8 @@ export namespace Prisma {
|
|
|
110729
110746
|
|
|
110730
110747
|
export type DepartmentBudgetCountAggregateOutputType = {
|
|
110731
110748
|
id: number
|
|
110749
|
+
uuid: number
|
|
110750
|
+
code: number
|
|
110732
110751
|
budget_id: number
|
|
110733
110752
|
department_id: number
|
|
110734
110753
|
allocated_budget: number
|
|
@@ -110768,6 +110787,8 @@ export namespace Prisma {
|
|
|
110768
110787
|
|
|
110769
110788
|
export type DepartmentBudgetMinAggregateInputType = {
|
|
110770
110789
|
id?: true
|
|
110790
|
+
uuid?: true
|
|
110791
|
+
code?: true
|
|
110771
110792
|
budget_id?: true
|
|
110772
110793
|
department_id?: true
|
|
110773
110794
|
allocated_budget?: true
|
|
@@ -110785,6 +110806,8 @@ export namespace Prisma {
|
|
|
110785
110806
|
|
|
110786
110807
|
export type DepartmentBudgetMaxAggregateInputType = {
|
|
110787
110808
|
id?: true
|
|
110809
|
+
uuid?: true
|
|
110810
|
+
code?: true
|
|
110788
110811
|
budget_id?: true
|
|
110789
110812
|
department_id?: true
|
|
110790
110813
|
allocated_budget?: true
|
|
@@ -110802,6 +110825,8 @@ export namespace Prisma {
|
|
|
110802
110825
|
|
|
110803
110826
|
export type DepartmentBudgetCountAggregateInputType = {
|
|
110804
110827
|
id?: true
|
|
110828
|
+
uuid?: true
|
|
110829
|
+
code?: true
|
|
110805
110830
|
budget_id?: true
|
|
110806
110831
|
department_id?: true
|
|
110807
110832
|
allocated_budget?: true
|
|
@@ -110906,6 +110931,8 @@ export namespace Prisma {
|
|
|
110906
110931
|
|
|
110907
110932
|
export type DepartmentBudgetGroupByOutputType = {
|
|
110908
110933
|
id: number
|
|
110934
|
+
uuid: string | null
|
|
110935
|
+
code: string | null
|
|
110909
110936
|
budget_id: number | null
|
|
110910
110937
|
department_id: number | null
|
|
110911
110938
|
allocated_budget: Decimal | null
|
|
@@ -110942,6 +110969,8 @@ export namespace Prisma {
|
|
|
110942
110969
|
|
|
110943
110970
|
export type DepartmentBudgetSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
110944
110971
|
id?: boolean
|
|
110972
|
+
uuid?: boolean
|
|
110973
|
+
code?: boolean
|
|
110945
110974
|
budget_id?: boolean
|
|
110946
110975
|
department_id?: boolean
|
|
110947
110976
|
allocated_budget?: boolean
|
|
@@ -110964,6 +110993,8 @@ export namespace Prisma {
|
|
|
110964
110993
|
|
|
110965
110994
|
export type DepartmentBudgetSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
110966
110995
|
id?: boolean
|
|
110996
|
+
uuid?: boolean
|
|
110997
|
+
code?: boolean
|
|
110967
110998
|
budget_id?: boolean
|
|
110968
110999
|
department_id?: boolean
|
|
110969
111000
|
allocated_budget?: boolean
|
|
@@ -110983,6 +111014,8 @@ export namespace Prisma {
|
|
|
110983
111014
|
|
|
110984
111015
|
export type DepartmentBudgetSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
110985
111016
|
id?: boolean
|
|
111017
|
+
uuid?: boolean
|
|
111018
|
+
code?: boolean
|
|
110986
111019
|
budget_id?: boolean
|
|
110987
111020
|
department_id?: boolean
|
|
110988
111021
|
allocated_budget?: boolean
|
|
@@ -111002,6 +111035,8 @@ export namespace Prisma {
|
|
|
111002
111035
|
|
|
111003
111036
|
export type DepartmentBudgetSelectScalar = {
|
|
111004
111037
|
id?: boolean
|
|
111038
|
+
uuid?: boolean
|
|
111039
|
+
code?: boolean
|
|
111005
111040
|
budget_id?: boolean
|
|
111006
111041
|
department_id?: boolean
|
|
111007
111042
|
allocated_budget?: boolean
|
|
@@ -111017,7 +111052,7 @@ export namespace Prisma {
|
|
|
111017
111052
|
deleted_at?: boolean
|
|
111018
111053
|
}
|
|
111019
111054
|
|
|
111020
|
-
export type DepartmentBudgetOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "budget_id" | "department_id" | "allocated_budget" | "fiscal_year" | "notes" | "description" | "created_by" | "created_at" | "updated_by" | "updated_at" | "is_deleted" | "deleted_by" | "deleted_at", ExtArgs["result"]["departmentBudget"]>
|
|
111055
|
+
export type DepartmentBudgetOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "uuid" | "code" | "budget_id" | "department_id" | "allocated_budget" | "fiscal_year" | "notes" | "description" | "created_by" | "created_at" | "updated_by" | "updated_at" | "is_deleted" | "deleted_by" | "deleted_at", ExtArgs["result"]["departmentBudget"]>
|
|
111021
111056
|
export type DepartmentBudgetInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
111022
111057
|
budget?: boolean | DepartmentBudget$budgetArgs<ExtArgs>
|
|
111023
111058
|
department?: boolean | DepartmentBudget$departmentArgs<ExtArgs>
|
|
@@ -111044,6 +111079,8 @@ export namespace Prisma {
|
|
|
111044
111079
|
}
|
|
111045
111080
|
scalars: $Extensions.GetPayloadResult<{
|
|
111046
111081
|
id: number
|
|
111082
|
+
uuid: string | null
|
|
111083
|
+
code: string | null
|
|
111047
111084
|
budget_id: number | null
|
|
111048
111085
|
department_id: number | null
|
|
111049
111086
|
allocated_budget: Prisma.Decimal | null
|
|
@@ -111485,6 +111522,8 @@ export namespace Prisma {
|
|
|
111485
111522
|
*/
|
|
111486
111523
|
interface DepartmentBudgetFieldRefs {
|
|
111487
111524
|
readonly id: FieldRef<"DepartmentBudget", 'Int'>
|
|
111525
|
+
readonly uuid: FieldRef<"DepartmentBudget", 'String'>
|
|
111526
|
+
readonly code: FieldRef<"DepartmentBudget", 'String'>
|
|
111488
111527
|
readonly budget_id: FieldRef<"DepartmentBudget", 'Int'>
|
|
111489
111528
|
readonly department_id: FieldRef<"DepartmentBudget", 'Int'>
|
|
111490
111529
|
readonly allocated_budget: FieldRef<"DepartmentBudget", 'Decimal'>
|
|
@@ -112032,6 +112071,7 @@ export namespace Prisma {
|
|
|
112032
112071
|
|
|
112033
112072
|
export type CategoryBudgetMinAggregateOutputType = {
|
|
112034
112073
|
id: number | null
|
|
112074
|
+
uuid: string | null
|
|
112035
112075
|
department_budget_id: number | null
|
|
112036
112076
|
category_id: number | null
|
|
112037
112077
|
allocated_budget: Decimal | null
|
|
@@ -112048,6 +112088,7 @@ export namespace Prisma {
|
|
|
112048
112088
|
|
|
112049
112089
|
export type CategoryBudgetMaxAggregateOutputType = {
|
|
112050
112090
|
id: number | null
|
|
112091
|
+
uuid: string | null
|
|
112051
112092
|
department_budget_id: number | null
|
|
112052
112093
|
category_id: number | null
|
|
112053
112094
|
allocated_budget: Decimal | null
|
|
@@ -112064,6 +112105,7 @@ export namespace Prisma {
|
|
|
112064
112105
|
|
|
112065
112106
|
export type CategoryBudgetCountAggregateOutputType = {
|
|
112066
112107
|
id: number
|
|
112108
|
+
uuid: number
|
|
112067
112109
|
department_budget_id: number
|
|
112068
112110
|
category_id: number
|
|
112069
112111
|
allocated_budget: number
|
|
@@ -112102,6 +112144,7 @@ export namespace Prisma {
|
|
|
112102
112144
|
|
|
112103
112145
|
export type CategoryBudgetMinAggregateInputType = {
|
|
112104
112146
|
id?: true
|
|
112147
|
+
uuid?: true
|
|
112105
112148
|
department_budget_id?: true
|
|
112106
112149
|
category_id?: true
|
|
112107
112150
|
allocated_budget?: true
|
|
@@ -112118,6 +112161,7 @@ export namespace Prisma {
|
|
|
112118
112161
|
|
|
112119
112162
|
export type CategoryBudgetMaxAggregateInputType = {
|
|
112120
112163
|
id?: true
|
|
112164
|
+
uuid?: true
|
|
112121
112165
|
department_budget_id?: true
|
|
112122
112166
|
category_id?: true
|
|
112123
112167
|
allocated_budget?: true
|
|
@@ -112134,6 +112178,7 @@ export namespace Prisma {
|
|
|
112134
112178
|
|
|
112135
112179
|
export type CategoryBudgetCountAggregateInputType = {
|
|
112136
112180
|
id?: true
|
|
112181
|
+
uuid?: true
|
|
112137
112182
|
department_budget_id?: true
|
|
112138
112183
|
category_id?: true
|
|
112139
112184
|
allocated_budget?: true
|
|
@@ -112237,6 +112282,7 @@ export namespace Prisma {
|
|
|
112237
112282
|
|
|
112238
112283
|
export type CategoryBudgetGroupByOutputType = {
|
|
112239
112284
|
id: number
|
|
112285
|
+
uuid: string | null
|
|
112240
112286
|
department_budget_id: number | null
|
|
112241
112287
|
category_id: number | null
|
|
112242
112288
|
allocated_budget: Decimal
|
|
@@ -112272,6 +112318,7 @@ export namespace Prisma {
|
|
|
112272
112318
|
|
|
112273
112319
|
export type CategoryBudgetSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
112274
112320
|
id?: boolean
|
|
112321
|
+
uuid?: boolean
|
|
112275
112322
|
department_budget_id?: boolean
|
|
112276
112323
|
category_id?: boolean
|
|
112277
112324
|
allocated_budget?: boolean
|
|
@@ -112293,6 +112340,7 @@ export namespace Prisma {
|
|
|
112293
112340
|
|
|
112294
112341
|
export type CategoryBudgetSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
112295
112342
|
id?: boolean
|
|
112343
|
+
uuid?: boolean
|
|
112296
112344
|
department_budget_id?: boolean
|
|
112297
112345
|
category_id?: boolean
|
|
112298
112346
|
allocated_budget?: boolean
|
|
@@ -112311,6 +112359,7 @@ export namespace Prisma {
|
|
|
112311
112359
|
|
|
112312
112360
|
export type CategoryBudgetSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
112313
112361
|
id?: boolean
|
|
112362
|
+
uuid?: boolean
|
|
112314
112363
|
department_budget_id?: boolean
|
|
112315
112364
|
category_id?: boolean
|
|
112316
112365
|
allocated_budget?: boolean
|
|
@@ -112329,6 +112378,7 @@ export namespace Prisma {
|
|
|
112329
112378
|
|
|
112330
112379
|
export type CategoryBudgetSelectScalar = {
|
|
112331
112380
|
id?: boolean
|
|
112381
|
+
uuid?: boolean
|
|
112332
112382
|
department_budget_id?: boolean
|
|
112333
112383
|
category_id?: boolean
|
|
112334
112384
|
allocated_budget?: boolean
|
|
@@ -112343,7 +112393,7 @@ export namespace Prisma {
|
|
|
112343
112393
|
deleted_at?: boolean
|
|
112344
112394
|
}
|
|
112345
112395
|
|
|
112346
|
-
export type CategoryBudgetOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "department_budget_id" | "category_id" | "allocated_budget" | "notes" | "description" | "crated_by" | "created_at" | "updated_by" | "updated_at" | "is_deleted" | "deleted_by" | "deleted_at", ExtArgs["result"]["categoryBudget"]>
|
|
112396
|
+
export type CategoryBudgetOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "uuid" | "department_budget_id" | "category_id" | "allocated_budget" | "notes" | "description" | "crated_by" | "created_at" | "updated_by" | "updated_at" | "is_deleted" | "deleted_by" | "deleted_at", ExtArgs["result"]["categoryBudget"]>
|
|
112347
112397
|
export type CategoryBudgetInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
112348
112398
|
department_budget?: boolean | CategoryBudget$department_budgetArgs<ExtArgs>
|
|
112349
112399
|
category?: boolean | CategoryBudget$categoryArgs<ExtArgs>
|
|
@@ -112370,6 +112420,7 @@ export namespace Prisma {
|
|
|
112370
112420
|
}
|
|
112371
112421
|
scalars: $Extensions.GetPayloadResult<{
|
|
112372
112422
|
id: number
|
|
112423
|
+
uuid: string | null
|
|
112373
112424
|
department_budget_id: number | null
|
|
112374
112425
|
category_id: number | null
|
|
112375
112426
|
allocated_budget: Prisma.Decimal
|
|
@@ -112810,6 +112861,7 @@ export namespace Prisma {
|
|
|
112810
112861
|
*/
|
|
112811
112862
|
interface CategoryBudgetFieldRefs {
|
|
112812
112863
|
readonly id: FieldRef<"CategoryBudget", 'Int'>
|
|
112864
|
+
readonly uuid: FieldRef<"CategoryBudget", 'String'>
|
|
112813
112865
|
readonly department_budget_id: FieldRef<"CategoryBudget", 'Int'>
|
|
112814
112866
|
readonly category_id: FieldRef<"CategoryBudget", 'Int'>
|
|
112815
112867
|
readonly allocated_budget: FieldRef<"CategoryBudget", 'Decimal'>
|
|
@@ -113358,6 +113410,7 @@ export namespace Prisma {
|
|
|
113358
113410
|
|
|
113359
113411
|
export type SupportingDocumentMinAggregateOutputType = {
|
|
113360
113412
|
id: number | null
|
|
113413
|
+
uuid: string | null
|
|
113361
113414
|
budget_id: number | null
|
|
113362
113415
|
department_budget_id: number | null
|
|
113363
113416
|
category_budget_id: number | null
|
|
@@ -113377,6 +113430,7 @@ export namespace Prisma {
|
|
|
113377
113430
|
|
|
113378
113431
|
export type SupportingDocumentMaxAggregateOutputType = {
|
|
113379
113432
|
id: number | null
|
|
113433
|
+
uuid: string | null
|
|
113380
113434
|
budget_id: number | null
|
|
113381
113435
|
department_budget_id: number | null
|
|
113382
113436
|
category_budget_id: number | null
|
|
@@ -113396,6 +113450,7 @@ export namespace Prisma {
|
|
|
113396
113450
|
|
|
113397
113451
|
export type SupportingDocumentCountAggregateOutputType = {
|
|
113398
113452
|
id: number
|
|
113453
|
+
uuid: number
|
|
113399
113454
|
budget_id: number
|
|
113400
113455
|
department_budget_id: number
|
|
113401
113456
|
category_budget_id: number
|
|
@@ -113439,6 +113494,7 @@ export namespace Prisma {
|
|
|
113439
113494
|
|
|
113440
113495
|
export type SupportingDocumentMinAggregateInputType = {
|
|
113441
113496
|
id?: true
|
|
113497
|
+
uuid?: true
|
|
113442
113498
|
budget_id?: true
|
|
113443
113499
|
department_budget_id?: true
|
|
113444
113500
|
category_budget_id?: true
|
|
@@ -113458,6 +113514,7 @@ export namespace Prisma {
|
|
|
113458
113514
|
|
|
113459
113515
|
export type SupportingDocumentMaxAggregateInputType = {
|
|
113460
113516
|
id?: true
|
|
113517
|
+
uuid?: true
|
|
113461
113518
|
budget_id?: true
|
|
113462
113519
|
department_budget_id?: true
|
|
113463
113520
|
category_budget_id?: true
|
|
@@ -113477,6 +113534,7 @@ export namespace Prisma {
|
|
|
113477
113534
|
|
|
113478
113535
|
export type SupportingDocumentCountAggregateInputType = {
|
|
113479
113536
|
id?: true
|
|
113537
|
+
uuid?: true
|
|
113480
113538
|
budget_id?: true
|
|
113481
113539
|
department_budget_id?: true
|
|
113482
113540
|
category_budget_id?: true
|
|
@@ -113583,6 +113641,7 @@ export namespace Prisma {
|
|
|
113583
113641
|
|
|
113584
113642
|
export type SupportingDocumentGroupByOutputType = {
|
|
113585
113643
|
id: number
|
|
113644
|
+
uuid: string | null
|
|
113586
113645
|
budget_id: number | null
|
|
113587
113646
|
department_budget_id: number | null
|
|
113588
113647
|
category_budget_id: number | null
|
|
@@ -113621,6 +113680,7 @@ export namespace Prisma {
|
|
|
113621
113680
|
|
|
113622
113681
|
export type SupportingDocumentSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
113623
113682
|
id?: boolean
|
|
113683
|
+
uuid?: boolean
|
|
113624
113684
|
budget_id?: boolean
|
|
113625
113685
|
department_budget_id?: boolean
|
|
113626
113686
|
category_budget_id?: boolean
|
|
@@ -113643,6 +113703,7 @@ export namespace Prisma {
|
|
|
113643
113703
|
|
|
113644
113704
|
export type SupportingDocumentSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
113645
113705
|
id?: boolean
|
|
113706
|
+
uuid?: boolean
|
|
113646
113707
|
budget_id?: boolean
|
|
113647
113708
|
department_budget_id?: boolean
|
|
113648
113709
|
category_budget_id?: boolean
|
|
@@ -113665,6 +113726,7 @@ export namespace Prisma {
|
|
|
113665
113726
|
|
|
113666
113727
|
export type SupportingDocumentSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
113667
113728
|
id?: boolean
|
|
113729
|
+
uuid?: boolean
|
|
113668
113730
|
budget_id?: boolean
|
|
113669
113731
|
department_budget_id?: boolean
|
|
113670
113732
|
category_budget_id?: boolean
|
|
@@ -113687,6 +113749,7 @@ export namespace Prisma {
|
|
|
113687
113749
|
|
|
113688
113750
|
export type SupportingDocumentSelectScalar = {
|
|
113689
113751
|
id?: boolean
|
|
113752
|
+
uuid?: boolean
|
|
113690
113753
|
budget_id?: boolean
|
|
113691
113754
|
department_budget_id?: boolean
|
|
113692
113755
|
category_budget_id?: boolean
|
|
@@ -113704,7 +113767,7 @@ export namespace Prisma {
|
|
|
113704
113767
|
deleted_at?: boolean
|
|
113705
113768
|
}
|
|
113706
113769
|
|
|
113707
|
-
export type SupportingDocumentOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "budget_id" | "department_budget_id" | "category_budget_id" | "file_name" | "original_name" | "file_path" | "file_size" | "mime_type" | "created_by" | "created_at" | "updated_by" | "updated_at" | "is_deleted" | "deleted_by" | "deleted_at", ExtArgs["result"]["supportingDocument"]>
|
|
113770
|
+
export type SupportingDocumentOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "uuid" | "budget_id" | "department_budget_id" | "category_budget_id" | "file_name" | "original_name" | "file_path" | "file_size" | "mime_type" | "created_by" | "created_at" | "updated_by" | "updated_at" | "is_deleted" | "deleted_by" | "deleted_at", ExtArgs["result"]["supportingDocument"]>
|
|
113708
113771
|
export type SupportingDocumentInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
113709
113772
|
budget?: boolean | SupportingDocument$budgetArgs<ExtArgs>
|
|
113710
113773
|
department_budget?: boolean | SupportingDocument$department_budgetArgs<ExtArgs>
|
|
@@ -113730,6 +113793,7 @@ export namespace Prisma {
|
|
|
113730
113793
|
}
|
|
113731
113794
|
scalars: $Extensions.GetPayloadResult<{
|
|
113732
113795
|
id: number
|
|
113796
|
+
uuid: string | null
|
|
113733
113797
|
budget_id: number | null
|
|
113734
113798
|
department_budget_id: number | null
|
|
113735
113799
|
category_budget_id: number | null
|
|
@@ -114172,6 +114236,7 @@ export namespace Prisma {
|
|
|
114172
114236
|
*/
|
|
114173
114237
|
interface SupportingDocumentFieldRefs {
|
|
114174
114238
|
readonly id: FieldRef<"SupportingDocument", 'Int'>
|
|
114239
|
+
readonly uuid: FieldRef<"SupportingDocument", 'String'>
|
|
114175
114240
|
readonly budget_id: FieldRef<"SupportingDocument", 'Int'>
|
|
114176
114241
|
readonly department_budget_id: FieldRef<"SupportingDocument", 'Int'>
|
|
114177
114242
|
readonly category_budget_id: FieldRef<"SupportingDocument", 'Int'>
|
|
@@ -114684,6 +114749,7 @@ export namespace Prisma {
|
|
|
114684
114749
|
|
|
114685
114750
|
export type ExpenseMinAggregateOutputType = {
|
|
114686
114751
|
id: number | null
|
|
114752
|
+
uuid: string | null
|
|
114687
114753
|
category_budget_id: number | null
|
|
114688
114754
|
amount: Decimal | null
|
|
114689
114755
|
description: string | null
|
|
@@ -114697,6 +114763,7 @@ export namespace Prisma {
|
|
|
114697
114763
|
|
|
114698
114764
|
export type ExpenseMaxAggregateOutputType = {
|
|
114699
114765
|
id: number | null
|
|
114766
|
+
uuid: string | null
|
|
114700
114767
|
category_budget_id: number | null
|
|
114701
114768
|
amount: Decimal | null
|
|
114702
114769
|
description: string | null
|
|
@@ -114710,6 +114777,7 @@ export namespace Prisma {
|
|
|
114710
114777
|
|
|
114711
114778
|
export type ExpenseCountAggregateOutputType = {
|
|
114712
114779
|
id: number
|
|
114780
|
+
uuid: number
|
|
114713
114781
|
category_budget_id: number
|
|
114714
114782
|
amount: number
|
|
114715
114783
|
description: number
|
|
@@ -114737,6 +114805,7 @@ export namespace Prisma {
|
|
|
114737
114805
|
|
|
114738
114806
|
export type ExpenseMinAggregateInputType = {
|
|
114739
114807
|
id?: true
|
|
114808
|
+
uuid?: true
|
|
114740
114809
|
category_budget_id?: true
|
|
114741
114810
|
amount?: true
|
|
114742
114811
|
description?: true
|
|
@@ -114750,6 +114819,7 @@ export namespace Prisma {
|
|
|
114750
114819
|
|
|
114751
114820
|
export type ExpenseMaxAggregateInputType = {
|
|
114752
114821
|
id?: true
|
|
114822
|
+
uuid?: true
|
|
114753
114823
|
category_budget_id?: true
|
|
114754
114824
|
amount?: true
|
|
114755
114825
|
description?: true
|
|
@@ -114763,6 +114833,7 @@ export namespace Prisma {
|
|
|
114763
114833
|
|
|
114764
114834
|
export type ExpenseCountAggregateInputType = {
|
|
114765
114835
|
id?: true
|
|
114836
|
+
uuid?: true
|
|
114766
114837
|
category_budget_id?: true
|
|
114767
114838
|
amount?: true
|
|
114768
114839
|
description?: true
|
|
@@ -114863,6 +114934,7 @@ export namespace Prisma {
|
|
|
114863
114934
|
|
|
114864
114935
|
export type ExpenseGroupByOutputType = {
|
|
114865
114936
|
id: number
|
|
114937
|
+
uuid: string | null
|
|
114866
114938
|
category_budget_id: number | null
|
|
114867
114939
|
amount: Decimal
|
|
114868
114940
|
description: string | null
|
|
@@ -114895,6 +114967,7 @@ export namespace Prisma {
|
|
|
114895
114967
|
|
|
114896
114968
|
export type ExpenseSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
114897
114969
|
id?: boolean
|
|
114970
|
+
uuid?: boolean
|
|
114898
114971
|
category_budget_id?: boolean
|
|
114899
114972
|
amount?: boolean
|
|
114900
114973
|
description?: boolean
|
|
@@ -114909,6 +114982,7 @@ export namespace Prisma {
|
|
|
114909
114982
|
|
|
114910
114983
|
export type ExpenseSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
114911
114984
|
id?: boolean
|
|
114985
|
+
uuid?: boolean
|
|
114912
114986
|
category_budget_id?: boolean
|
|
114913
114987
|
amount?: boolean
|
|
114914
114988
|
description?: boolean
|
|
@@ -114923,6 +114997,7 @@ export namespace Prisma {
|
|
|
114923
114997
|
|
|
114924
114998
|
export type ExpenseSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
114925
114999
|
id?: boolean
|
|
115000
|
+
uuid?: boolean
|
|
114926
115001
|
category_budget_id?: boolean
|
|
114927
115002
|
amount?: boolean
|
|
114928
115003
|
description?: boolean
|
|
@@ -114937,6 +115012,7 @@ export namespace Prisma {
|
|
|
114937
115012
|
|
|
114938
115013
|
export type ExpenseSelectScalar = {
|
|
114939
115014
|
id?: boolean
|
|
115015
|
+
uuid?: boolean
|
|
114940
115016
|
category_budget_id?: boolean
|
|
114941
115017
|
amount?: boolean
|
|
114942
115018
|
description?: boolean
|
|
@@ -114948,7 +115024,7 @@ export namespace Prisma {
|
|
|
114948
115024
|
updatedAt?: boolean
|
|
114949
115025
|
}
|
|
114950
115026
|
|
|
114951
|
-
export type ExpenseOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "category_budget_id" | "amount" | "description" | "expense_date" | "receipt_number" | "vendor_name" | "notes" | "createdAt" | "updatedAt", ExtArgs["result"]["expense"]>
|
|
115027
|
+
export type ExpenseOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "uuid" | "category_budget_id" | "amount" | "description" | "expense_date" | "receipt_number" | "vendor_name" | "notes" | "createdAt" | "updatedAt", ExtArgs["result"]["expense"]>
|
|
114952
115028
|
export type ExpenseInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
114953
115029
|
category_budget?: boolean | Expense$category_budgetArgs<ExtArgs>
|
|
114954
115030
|
}
|
|
@@ -114966,6 +115042,7 @@ export namespace Prisma {
|
|
|
114966
115042
|
}
|
|
114967
115043
|
scalars: $Extensions.GetPayloadResult<{
|
|
114968
115044
|
id: number
|
|
115045
|
+
uuid: string | null
|
|
114969
115046
|
category_budget_id: number | null
|
|
114970
115047
|
amount: Prisma.Decimal
|
|
114971
115048
|
description: string | null
|
|
@@ -115400,6 +115477,7 @@ export namespace Prisma {
|
|
|
115400
115477
|
*/
|
|
115401
115478
|
interface ExpenseFieldRefs {
|
|
115402
115479
|
readonly id: FieldRef<"Expense", 'Int'>
|
|
115480
|
+
readonly uuid: FieldRef<"Expense", 'String'>
|
|
115403
115481
|
readonly category_budget_id: FieldRef<"Expense", 'Int'>
|
|
115404
115482
|
readonly amount: FieldRef<"Expense", 'Decimal'>
|
|
115405
115483
|
readonly description: FieldRef<"Expense", 'String'>
|
|
@@ -118610,6 +118688,7 @@ export namespace Prisma {
|
|
|
118610
118688
|
|
|
118611
118689
|
export const BudgetScalarFieldEnum: {
|
|
118612
118690
|
id: 'id',
|
|
118691
|
+
uuid: 'uuid',
|
|
118613
118692
|
company_name: 'company_name',
|
|
118614
118693
|
fiscal_year: 'fiscal_year',
|
|
118615
118694
|
currency: 'currency',
|
|
@@ -118630,6 +118709,8 @@ export namespace Prisma {
|
|
|
118630
118709
|
|
|
118631
118710
|
export const DepartmentBudgetScalarFieldEnum: {
|
|
118632
118711
|
id: 'id',
|
|
118712
|
+
uuid: 'uuid',
|
|
118713
|
+
code: 'code',
|
|
118633
118714
|
budget_id: 'budget_id',
|
|
118634
118715
|
department_id: 'department_id',
|
|
118635
118716
|
allocated_budget: 'allocated_budget',
|
|
@@ -118650,6 +118731,7 @@ export namespace Prisma {
|
|
|
118650
118731
|
|
|
118651
118732
|
export const CategoryBudgetScalarFieldEnum: {
|
|
118652
118733
|
id: 'id',
|
|
118734
|
+
uuid: 'uuid',
|
|
118653
118735
|
department_budget_id: 'department_budget_id',
|
|
118654
118736
|
category_id: 'category_id',
|
|
118655
118737
|
allocated_budget: 'allocated_budget',
|
|
@@ -118669,6 +118751,7 @@ export namespace Prisma {
|
|
|
118669
118751
|
|
|
118670
118752
|
export const SupportingDocumentScalarFieldEnum: {
|
|
118671
118753
|
id: 'id',
|
|
118754
|
+
uuid: 'uuid',
|
|
118672
118755
|
budget_id: 'budget_id',
|
|
118673
118756
|
department_budget_id: 'department_budget_id',
|
|
118674
118757
|
category_budget_id: 'category_budget_id',
|
|
@@ -118691,6 +118774,7 @@ export namespace Prisma {
|
|
|
118691
118774
|
|
|
118692
118775
|
export const ExpenseScalarFieldEnum: {
|
|
118693
118776
|
id: 'id',
|
|
118777
|
+
uuid: 'uuid',
|
|
118694
118778
|
category_budget_id: 'category_budget_id',
|
|
118695
118779
|
amount: 'amount',
|
|
118696
118780
|
description: 'description',
|
|
@@ -127527,6 +127611,7 @@ export namespace Prisma {
|
|
|
127527
127611
|
OR?: BudgetWhereInput[]
|
|
127528
127612
|
NOT?: BudgetWhereInput | BudgetWhereInput[]
|
|
127529
127613
|
id?: IntFilter<"Budget"> | number
|
|
127614
|
+
uuid?: StringNullableFilter<"Budget"> | string | null
|
|
127530
127615
|
company_name?: StringNullableFilter<"Budget"> | string | null
|
|
127531
127616
|
fiscal_year?: StringNullableFilter<"Budget"> | string | null
|
|
127532
127617
|
currency?: StringNullableFilter<"Budget"> | string | null
|
|
@@ -127546,6 +127631,7 @@ export namespace Prisma {
|
|
|
127546
127631
|
|
|
127547
127632
|
export type BudgetOrderByWithRelationInput = {
|
|
127548
127633
|
id?: SortOrder
|
|
127634
|
+
uuid?: SortOrderInput | SortOrder
|
|
127549
127635
|
company_name?: SortOrderInput | SortOrder
|
|
127550
127636
|
fiscal_year?: SortOrderInput | SortOrder
|
|
127551
127637
|
currency?: SortOrderInput | SortOrder
|
|
@@ -127565,6 +127651,7 @@ export namespace Prisma {
|
|
|
127565
127651
|
|
|
127566
127652
|
export type BudgetWhereUniqueInput = Prisma.AtLeast<{
|
|
127567
127653
|
id?: number
|
|
127654
|
+
uuid?: string
|
|
127568
127655
|
AND?: BudgetWhereInput | BudgetWhereInput[]
|
|
127569
127656
|
OR?: BudgetWhereInput[]
|
|
127570
127657
|
NOT?: BudgetWhereInput | BudgetWhereInput[]
|
|
@@ -127583,10 +127670,11 @@ export namespace Prisma {
|
|
|
127583
127670
|
deleted_by?: IntNullableFilter<"Budget"> | number | null
|
|
127584
127671
|
department_budgets?: DepartmentBudgetListRelationFilter
|
|
127585
127672
|
supporting_documents?: SupportingDocumentListRelationFilter
|
|
127586
|
-
}, "id">
|
|
127673
|
+
}, "id" | "uuid">
|
|
127587
127674
|
|
|
127588
127675
|
export type BudgetOrderByWithAggregationInput = {
|
|
127589
127676
|
id?: SortOrder
|
|
127677
|
+
uuid?: SortOrderInput | SortOrder
|
|
127590
127678
|
company_name?: SortOrderInput | SortOrder
|
|
127591
127679
|
fiscal_year?: SortOrderInput | SortOrder
|
|
127592
127680
|
currency?: SortOrderInput | SortOrder
|
|
@@ -127612,6 +127700,7 @@ export namespace Prisma {
|
|
|
127612
127700
|
OR?: BudgetScalarWhereWithAggregatesInput[]
|
|
127613
127701
|
NOT?: BudgetScalarWhereWithAggregatesInput | BudgetScalarWhereWithAggregatesInput[]
|
|
127614
127702
|
id?: IntWithAggregatesFilter<"Budget"> | number
|
|
127703
|
+
uuid?: StringNullableWithAggregatesFilter<"Budget"> | string | null
|
|
127615
127704
|
company_name?: StringNullableWithAggregatesFilter<"Budget"> | string | null
|
|
127616
127705
|
fiscal_year?: StringNullableWithAggregatesFilter<"Budget"> | string | null
|
|
127617
127706
|
currency?: StringNullableWithAggregatesFilter<"Budget"> | string | null
|
|
@@ -127632,6 +127721,8 @@ export namespace Prisma {
|
|
|
127632
127721
|
OR?: DepartmentBudgetWhereInput[]
|
|
127633
127722
|
NOT?: DepartmentBudgetWhereInput | DepartmentBudgetWhereInput[]
|
|
127634
127723
|
id?: IntFilter<"DepartmentBudget"> | number
|
|
127724
|
+
uuid?: StringNullableFilter<"DepartmentBudget"> | string | null
|
|
127725
|
+
code?: StringNullableFilter<"DepartmentBudget"> | string | null
|
|
127635
127726
|
budget_id?: IntNullableFilter<"DepartmentBudget"> | number | null
|
|
127636
127727
|
department_id?: IntNullableFilter<"DepartmentBudget"> | number | null
|
|
127637
127728
|
allocated_budget?: DecimalNullableFilter<"DepartmentBudget"> | Decimal | DecimalJsLike | number | string | null
|
|
@@ -127653,6 +127744,8 @@ export namespace Prisma {
|
|
|
127653
127744
|
|
|
127654
127745
|
export type DepartmentBudgetOrderByWithRelationInput = {
|
|
127655
127746
|
id?: SortOrder
|
|
127747
|
+
uuid?: SortOrderInput | SortOrder
|
|
127748
|
+
code?: SortOrderInput | SortOrder
|
|
127656
127749
|
budget_id?: SortOrderInput | SortOrder
|
|
127657
127750
|
department_id?: SortOrderInput | SortOrder
|
|
127658
127751
|
allocated_budget?: SortOrderInput | SortOrder
|
|
@@ -127674,6 +127767,8 @@ export namespace Prisma {
|
|
|
127674
127767
|
|
|
127675
127768
|
export type DepartmentBudgetWhereUniqueInput = Prisma.AtLeast<{
|
|
127676
127769
|
id?: number
|
|
127770
|
+
uuid?: string
|
|
127771
|
+
code?: string
|
|
127677
127772
|
budget_id_department_id?: DepartmentBudgetBudget_idDepartment_idCompoundUniqueInput
|
|
127678
127773
|
AND?: DepartmentBudgetWhereInput | DepartmentBudgetWhereInput[]
|
|
127679
127774
|
OR?: DepartmentBudgetWhereInput[]
|
|
@@ -127695,10 +127790,12 @@ export namespace Prisma {
|
|
|
127695
127790
|
department?: XOR<DepartmentNullableScalarRelationFilter, DepartmentWhereInput> | null
|
|
127696
127791
|
category_budget?: CategoryBudgetListRelationFilter
|
|
127697
127792
|
supporting_documents?: SupportingDocumentListRelationFilter
|
|
127698
|
-
}, "id" | "budget_id_department_id">
|
|
127793
|
+
}, "id" | "uuid" | "code" | "budget_id_department_id">
|
|
127699
127794
|
|
|
127700
127795
|
export type DepartmentBudgetOrderByWithAggregationInput = {
|
|
127701
127796
|
id?: SortOrder
|
|
127797
|
+
uuid?: SortOrderInput | SortOrder
|
|
127798
|
+
code?: SortOrderInput | SortOrder
|
|
127702
127799
|
budget_id?: SortOrderInput | SortOrder
|
|
127703
127800
|
department_id?: SortOrderInput | SortOrder
|
|
127704
127801
|
allocated_budget?: SortOrderInput | SortOrder
|
|
@@ -127724,6 +127821,8 @@ export namespace Prisma {
|
|
|
127724
127821
|
OR?: DepartmentBudgetScalarWhereWithAggregatesInput[]
|
|
127725
127822
|
NOT?: DepartmentBudgetScalarWhereWithAggregatesInput | DepartmentBudgetScalarWhereWithAggregatesInput[]
|
|
127726
127823
|
id?: IntWithAggregatesFilter<"DepartmentBudget"> | number
|
|
127824
|
+
uuid?: StringNullableWithAggregatesFilter<"DepartmentBudget"> | string | null
|
|
127825
|
+
code?: StringNullableWithAggregatesFilter<"DepartmentBudget"> | string | null
|
|
127727
127826
|
budget_id?: IntNullableWithAggregatesFilter<"DepartmentBudget"> | number | null
|
|
127728
127827
|
department_id?: IntNullableWithAggregatesFilter<"DepartmentBudget"> | number | null
|
|
127729
127828
|
allocated_budget?: DecimalNullableWithAggregatesFilter<"DepartmentBudget"> | Decimal | DecimalJsLike | number | string | null
|
|
@@ -127744,6 +127843,7 @@ export namespace Prisma {
|
|
|
127744
127843
|
OR?: CategoryBudgetWhereInput[]
|
|
127745
127844
|
NOT?: CategoryBudgetWhereInput | CategoryBudgetWhereInput[]
|
|
127746
127845
|
id?: IntFilter<"CategoryBudget"> | number
|
|
127846
|
+
uuid?: StringNullableFilter<"CategoryBudget"> | string | null
|
|
127747
127847
|
department_budget_id?: IntNullableFilter<"CategoryBudget"> | number | null
|
|
127748
127848
|
category_id?: IntNullableFilter<"CategoryBudget"> | number | null
|
|
127749
127849
|
allocated_budget?: DecimalFilter<"CategoryBudget"> | Decimal | DecimalJsLike | number | string
|
|
@@ -127764,6 +127864,7 @@ export namespace Prisma {
|
|
|
127764
127864
|
|
|
127765
127865
|
export type CategoryBudgetOrderByWithRelationInput = {
|
|
127766
127866
|
id?: SortOrder
|
|
127867
|
+
uuid?: SortOrderInput | SortOrder
|
|
127767
127868
|
department_budget_id?: SortOrderInput | SortOrder
|
|
127768
127869
|
category_id?: SortOrderInput | SortOrder
|
|
127769
127870
|
allocated_budget?: SortOrder
|
|
@@ -127784,6 +127885,7 @@ export namespace Prisma {
|
|
|
127784
127885
|
|
|
127785
127886
|
export type CategoryBudgetWhereUniqueInput = Prisma.AtLeast<{
|
|
127786
127887
|
id?: number
|
|
127888
|
+
uuid?: string
|
|
127787
127889
|
department_budget_id_category_id?: CategoryBudgetDepartment_budget_idCategory_idCompoundUniqueInput
|
|
127788
127890
|
AND?: CategoryBudgetWhereInput | CategoryBudgetWhereInput[]
|
|
127789
127891
|
OR?: CategoryBudgetWhereInput[]
|
|
@@ -127804,10 +127906,11 @@ export namespace Prisma {
|
|
|
127804
127906
|
category?: XOR<CategoryNullableScalarRelationFilter, CategoryWhereInput> | null
|
|
127805
127907
|
expenses?: ExpenseListRelationFilter
|
|
127806
127908
|
supportingDocuments?: SupportingDocumentListRelationFilter
|
|
127807
|
-
}, "id" | "department_budget_id_category_id">
|
|
127909
|
+
}, "id" | "uuid" | "department_budget_id_category_id">
|
|
127808
127910
|
|
|
127809
127911
|
export type CategoryBudgetOrderByWithAggregationInput = {
|
|
127810
127912
|
id?: SortOrder
|
|
127913
|
+
uuid?: SortOrderInput | SortOrder
|
|
127811
127914
|
department_budget_id?: SortOrderInput | SortOrder
|
|
127812
127915
|
category_id?: SortOrderInput | SortOrder
|
|
127813
127916
|
allocated_budget?: SortOrder
|
|
@@ -127832,6 +127935,7 @@ export namespace Prisma {
|
|
|
127832
127935
|
OR?: CategoryBudgetScalarWhereWithAggregatesInput[]
|
|
127833
127936
|
NOT?: CategoryBudgetScalarWhereWithAggregatesInput | CategoryBudgetScalarWhereWithAggregatesInput[]
|
|
127834
127937
|
id?: IntWithAggregatesFilter<"CategoryBudget"> | number
|
|
127938
|
+
uuid?: StringNullableWithAggregatesFilter<"CategoryBudget"> | string | null
|
|
127835
127939
|
department_budget_id?: IntNullableWithAggregatesFilter<"CategoryBudget"> | number | null
|
|
127836
127940
|
category_id?: IntNullableWithAggregatesFilter<"CategoryBudget"> | number | null
|
|
127837
127941
|
allocated_budget?: DecimalWithAggregatesFilter<"CategoryBudget"> | Decimal | DecimalJsLike | number | string
|
|
@@ -127851,6 +127955,7 @@ export namespace Prisma {
|
|
|
127851
127955
|
OR?: SupportingDocumentWhereInput[]
|
|
127852
127956
|
NOT?: SupportingDocumentWhereInput | SupportingDocumentWhereInput[]
|
|
127853
127957
|
id?: IntFilter<"SupportingDocument"> | number
|
|
127958
|
+
uuid?: StringNullableFilter<"SupportingDocument"> | string | null
|
|
127854
127959
|
budget_id?: IntNullableFilter<"SupportingDocument"> | number | null
|
|
127855
127960
|
department_budget_id?: IntNullableFilter<"SupportingDocument"> | number | null
|
|
127856
127961
|
category_budget_id?: IntNullableFilter<"SupportingDocument"> | number | null
|
|
@@ -127873,6 +127978,7 @@ export namespace Prisma {
|
|
|
127873
127978
|
|
|
127874
127979
|
export type SupportingDocumentOrderByWithRelationInput = {
|
|
127875
127980
|
id?: SortOrder
|
|
127981
|
+
uuid?: SortOrderInput | SortOrder
|
|
127876
127982
|
budget_id?: SortOrderInput | SortOrder
|
|
127877
127983
|
department_budget_id?: SortOrderInput | SortOrder
|
|
127878
127984
|
category_budget_id?: SortOrderInput | SortOrder
|
|
@@ -127895,6 +128001,7 @@ export namespace Prisma {
|
|
|
127895
128001
|
|
|
127896
128002
|
export type SupportingDocumentWhereUniqueInput = Prisma.AtLeast<{
|
|
127897
128003
|
id?: number
|
|
128004
|
+
uuid?: string
|
|
127898
128005
|
AND?: SupportingDocumentWhereInput | SupportingDocumentWhereInput[]
|
|
127899
128006
|
OR?: SupportingDocumentWhereInput[]
|
|
127900
128007
|
NOT?: SupportingDocumentWhereInput | SupportingDocumentWhereInput[]
|
|
@@ -127916,10 +128023,11 @@ export namespace Prisma {
|
|
|
127916
128023
|
budget?: XOR<BudgetNullableScalarRelationFilter, BudgetWhereInput> | null
|
|
127917
128024
|
department_budget?: XOR<DepartmentBudgetNullableScalarRelationFilter, DepartmentBudgetWhereInput> | null
|
|
127918
128025
|
category_budget?: XOR<CategoryBudgetNullableScalarRelationFilter, CategoryBudgetWhereInput> | null
|
|
127919
|
-
}, "id">
|
|
128026
|
+
}, "id" | "uuid">
|
|
127920
128027
|
|
|
127921
128028
|
export type SupportingDocumentOrderByWithAggregationInput = {
|
|
127922
128029
|
id?: SortOrder
|
|
128030
|
+
uuid?: SortOrderInput | SortOrder
|
|
127923
128031
|
budget_id?: SortOrderInput | SortOrder
|
|
127924
128032
|
department_budget_id?: SortOrderInput | SortOrder
|
|
127925
128033
|
category_budget_id?: SortOrderInput | SortOrder
|
|
@@ -127947,6 +128055,7 @@ export namespace Prisma {
|
|
|
127947
128055
|
OR?: SupportingDocumentScalarWhereWithAggregatesInput[]
|
|
127948
128056
|
NOT?: SupportingDocumentScalarWhereWithAggregatesInput | SupportingDocumentScalarWhereWithAggregatesInput[]
|
|
127949
128057
|
id?: IntWithAggregatesFilter<"SupportingDocument"> | number
|
|
128058
|
+
uuid?: StringNullableWithAggregatesFilter<"SupportingDocument"> | string | null
|
|
127950
128059
|
budget_id?: IntNullableWithAggregatesFilter<"SupportingDocument"> | number | null
|
|
127951
128060
|
department_budget_id?: IntNullableWithAggregatesFilter<"SupportingDocument"> | number | null
|
|
127952
128061
|
category_budget_id?: IntNullableWithAggregatesFilter<"SupportingDocument"> | number | null
|
|
@@ -127969,6 +128078,7 @@ export namespace Prisma {
|
|
|
127969
128078
|
OR?: ExpenseWhereInput[]
|
|
127970
128079
|
NOT?: ExpenseWhereInput | ExpenseWhereInput[]
|
|
127971
128080
|
id?: IntFilter<"Expense"> | number
|
|
128081
|
+
uuid?: StringNullableFilter<"Expense"> | string | null
|
|
127972
128082
|
category_budget_id?: IntNullableFilter<"Expense"> | number | null
|
|
127973
128083
|
amount?: DecimalFilter<"Expense"> | Decimal | DecimalJsLike | number | string
|
|
127974
128084
|
description?: StringNullableFilter<"Expense"> | string | null
|
|
@@ -127983,6 +128093,7 @@ export namespace Prisma {
|
|
|
127983
128093
|
|
|
127984
128094
|
export type ExpenseOrderByWithRelationInput = {
|
|
127985
128095
|
id?: SortOrder
|
|
128096
|
+
uuid?: SortOrderInput | SortOrder
|
|
127986
128097
|
category_budget_id?: SortOrderInput | SortOrder
|
|
127987
128098
|
amount?: SortOrder
|
|
127988
128099
|
description?: SortOrderInput | SortOrder
|
|
@@ -127997,6 +128108,7 @@ export namespace Prisma {
|
|
|
127997
128108
|
|
|
127998
128109
|
export type ExpenseWhereUniqueInput = Prisma.AtLeast<{
|
|
127999
128110
|
id?: number
|
|
128111
|
+
uuid?: string
|
|
128000
128112
|
AND?: ExpenseWhereInput | ExpenseWhereInput[]
|
|
128001
128113
|
OR?: ExpenseWhereInput[]
|
|
128002
128114
|
NOT?: ExpenseWhereInput | ExpenseWhereInput[]
|
|
@@ -128010,10 +128122,11 @@ export namespace Prisma {
|
|
|
128010
128122
|
createdAt?: DateTimeFilter<"Expense"> | Date | string
|
|
128011
128123
|
updatedAt?: DateTimeFilter<"Expense"> | Date | string
|
|
128012
128124
|
category_budget?: XOR<CategoryBudgetNullableScalarRelationFilter, CategoryBudgetWhereInput> | null
|
|
128013
|
-
}, "id">
|
|
128125
|
+
}, "id" | "uuid">
|
|
128014
128126
|
|
|
128015
128127
|
export type ExpenseOrderByWithAggregationInput = {
|
|
128016
128128
|
id?: SortOrder
|
|
128129
|
+
uuid?: SortOrderInput | SortOrder
|
|
128017
128130
|
category_budget_id?: SortOrderInput | SortOrder
|
|
128018
128131
|
amount?: SortOrder
|
|
128019
128132
|
description?: SortOrderInput | SortOrder
|
|
@@ -128035,6 +128148,7 @@ export namespace Prisma {
|
|
|
128035
128148
|
OR?: ExpenseScalarWhereWithAggregatesInput[]
|
|
128036
128149
|
NOT?: ExpenseScalarWhereWithAggregatesInput | ExpenseScalarWhereWithAggregatesInput[]
|
|
128037
128150
|
id?: IntWithAggregatesFilter<"Expense"> | number
|
|
128151
|
+
uuid?: StringNullableWithAggregatesFilter<"Expense"> | string | null
|
|
128038
128152
|
category_budget_id?: IntNullableWithAggregatesFilter<"Expense"> | number | null
|
|
128039
128153
|
amount?: DecimalWithAggregatesFilter<"Expense"> | Decimal | DecimalJsLike | number | string
|
|
128040
128154
|
description?: StringNullableWithAggregatesFilter<"Expense"> | string | null
|
|
@@ -137285,6 +137399,7 @@ export namespace Prisma {
|
|
|
137285
137399
|
}
|
|
137286
137400
|
|
|
137287
137401
|
export type BudgetCreateInput = {
|
|
137402
|
+
uuid?: string | null
|
|
137288
137403
|
company_name?: string | null
|
|
137289
137404
|
fiscal_year?: string | null
|
|
137290
137405
|
currency?: string | null
|
|
@@ -137304,6 +137419,7 @@ export namespace Prisma {
|
|
|
137304
137419
|
|
|
137305
137420
|
export type BudgetUncheckedCreateInput = {
|
|
137306
137421
|
id?: number
|
|
137422
|
+
uuid?: string | null
|
|
137307
137423
|
company_name?: string | null
|
|
137308
137424
|
fiscal_year?: string | null
|
|
137309
137425
|
currency?: string | null
|
|
@@ -137322,6 +137438,7 @@ export namespace Prisma {
|
|
|
137322
137438
|
}
|
|
137323
137439
|
|
|
137324
137440
|
export type BudgetUpdateInput = {
|
|
137441
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137325
137442
|
company_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137326
137443
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137327
137444
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -137341,6 +137458,7 @@ export namespace Prisma {
|
|
|
137341
137458
|
|
|
137342
137459
|
export type BudgetUncheckedUpdateInput = {
|
|
137343
137460
|
id?: IntFieldUpdateOperationsInput | number
|
|
137461
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137344
137462
|
company_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137345
137463
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137346
137464
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -137360,6 +137478,7 @@ export namespace Prisma {
|
|
|
137360
137478
|
|
|
137361
137479
|
export type BudgetCreateManyInput = {
|
|
137362
137480
|
id?: number
|
|
137481
|
+
uuid?: string | null
|
|
137363
137482
|
company_name?: string | null
|
|
137364
137483
|
fiscal_year?: string | null
|
|
137365
137484
|
currency?: string | null
|
|
@@ -137376,6 +137495,7 @@ export namespace Prisma {
|
|
|
137376
137495
|
}
|
|
137377
137496
|
|
|
137378
137497
|
export type BudgetUpdateManyMutationInput = {
|
|
137498
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137379
137499
|
company_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137380
137500
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137381
137501
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -137393,6 +137513,7 @@ export namespace Prisma {
|
|
|
137393
137513
|
|
|
137394
137514
|
export type BudgetUncheckedUpdateManyInput = {
|
|
137395
137515
|
id?: IntFieldUpdateOperationsInput | number
|
|
137516
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137396
137517
|
company_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137397
137518
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137398
137519
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -137409,6 +137530,8 @@ export namespace Prisma {
|
|
|
137409
137530
|
}
|
|
137410
137531
|
|
|
137411
137532
|
export type DepartmentBudgetCreateInput = {
|
|
137533
|
+
uuid?: string | null
|
|
137534
|
+
code?: string | null
|
|
137412
137535
|
allocated_budget?: Decimal | DecimalJsLike | number | string | null
|
|
137413
137536
|
fiscal_year?: string | null
|
|
137414
137537
|
notes?: string | null
|
|
@@ -137428,6 +137551,8 @@ export namespace Prisma {
|
|
|
137428
137551
|
|
|
137429
137552
|
export type DepartmentBudgetUncheckedCreateInput = {
|
|
137430
137553
|
id?: number
|
|
137554
|
+
uuid?: string | null
|
|
137555
|
+
code?: string | null
|
|
137431
137556
|
budget_id?: number | null
|
|
137432
137557
|
department_id?: number | null
|
|
137433
137558
|
allocated_budget?: Decimal | DecimalJsLike | number | string | null
|
|
@@ -137446,6 +137571,8 @@ export namespace Prisma {
|
|
|
137446
137571
|
}
|
|
137447
137572
|
|
|
137448
137573
|
export type DepartmentBudgetUpdateInput = {
|
|
137574
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137575
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137449
137576
|
allocated_budget?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
137450
137577
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137451
137578
|
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -137465,6 +137592,8 @@ export namespace Prisma {
|
|
|
137465
137592
|
|
|
137466
137593
|
export type DepartmentBudgetUncheckedUpdateInput = {
|
|
137467
137594
|
id?: IntFieldUpdateOperationsInput | number
|
|
137595
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137596
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137468
137597
|
budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137469
137598
|
department_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137470
137599
|
allocated_budget?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
@@ -137484,6 +137613,8 @@ export namespace Prisma {
|
|
|
137484
137613
|
|
|
137485
137614
|
export type DepartmentBudgetCreateManyInput = {
|
|
137486
137615
|
id?: number
|
|
137616
|
+
uuid?: string | null
|
|
137617
|
+
code?: string | null
|
|
137487
137618
|
budget_id?: number | null
|
|
137488
137619
|
department_id?: number | null
|
|
137489
137620
|
allocated_budget?: Decimal | DecimalJsLike | number | string | null
|
|
@@ -137500,6 +137631,8 @@ export namespace Prisma {
|
|
|
137500
137631
|
}
|
|
137501
137632
|
|
|
137502
137633
|
export type DepartmentBudgetUpdateManyMutationInput = {
|
|
137634
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137635
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137503
137636
|
allocated_budget?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
137504
137637
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137505
137638
|
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -137515,6 +137648,8 @@ export namespace Prisma {
|
|
|
137515
137648
|
|
|
137516
137649
|
export type DepartmentBudgetUncheckedUpdateManyInput = {
|
|
137517
137650
|
id?: IntFieldUpdateOperationsInput | number
|
|
137651
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137652
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137518
137653
|
budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137519
137654
|
department_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137520
137655
|
allocated_budget?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
@@ -137531,6 +137666,7 @@ export namespace Prisma {
|
|
|
137531
137666
|
}
|
|
137532
137667
|
|
|
137533
137668
|
export type CategoryBudgetCreateInput = {
|
|
137669
|
+
uuid?: string | null
|
|
137534
137670
|
allocated_budget: Decimal | DecimalJsLike | number | string
|
|
137535
137671
|
notes?: string | null
|
|
137536
137672
|
description?: string | null
|
|
@@ -137549,6 +137685,7 @@ export namespace Prisma {
|
|
|
137549
137685
|
|
|
137550
137686
|
export type CategoryBudgetUncheckedCreateInput = {
|
|
137551
137687
|
id?: number
|
|
137688
|
+
uuid?: string | null
|
|
137552
137689
|
department_budget_id?: number | null
|
|
137553
137690
|
category_id?: number | null
|
|
137554
137691
|
allocated_budget: Decimal | DecimalJsLike | number | string
|
|
@@ -137566,6 +137703,7 @@ export namespace Prisma {
|
|
|
137566
137703
|
}
|
|
137567
137704
|
|
|
137568
137705
|
export type CategoryBudgetUpdateInput = {
|
|
137706
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137569
137707
|
allocated_budget?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
137570
137708
|
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137571
137709
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -137584,6 +137722,7 @@ export namespace Prisma {
|
|
|
137584
137722
|
|
|
137585
137723
|
export type CategoryBudgetUncheckedUpdateInput = {
|
|
137586
137724
|
id?: IntFieldUpdateOperationsInput | number
|
|
137725
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137587
137726
|
department_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137588
137727
|
category_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137589
137728
|
allocated_budget?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
@@ -137602,6 +137741,7 @@ export namespace Prisma {
|
|
|
137602
137741
|
|
|
137603
137742
|
export type CategoryBudgetCreateManyInput = {
|
|
137604
137743
|
id?: number
|
|
137744
|
+
uuid?: string | null
|
|
137605
137745
|
department_budget_id?: number | null
|
|
137606
137746
|
category_id?: number | null
|
|
137607
137747
|
allocated_budget: Decimal | DecimalJsLike | number | string
|
|
@@ -137617,6 +137757,7 @@ export namespace Prisma {
|
|
|
137617
137757
|
}
|
|
137618
137758
|
|
|
137619
137759
|
export type CategoryBudgetUpdateManyMutationInput = {
|
|
137760
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137620
137761
|
allocated_budget?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
137621
137762
|
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137622
137763
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -137631,6 +137772,7 @@ export namespace Prisma {
|
|
|
137631
137772
|
|
|
137632
137773
|
export type CategoryBudgetUncheckedUpdateManyInput = {
|
|
137633
137774
|
id?: IntFieldUpdateOperationsInput | number
|
|
137775
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137634
137776
|
department_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137635
137777
|
category_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137636
137778
|
allocated_budget?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
@@ -137646,6 +137788,7 @@ export namespace Prisma {
|
|
|
137646
137788
|
}
|
|
137647
137789
|
|
|
137648
137790
|
export type SupportingDocumentCreateInput = {
|
|
137791
|
+
uuid?: string | null
|
|
137649
137792
|
file_name?: string | null
|
|
137650
137793
|
original_name?: string | null
|
|
137651
137794
|
file_path?: string | null
|
|
@@ -137665,6 +137808,7 @@ export namespace Prisma {
|
|
|
137665
137808
|
|
|
137666
137809
|
export type SupportingDocumentUncheckedCreateInput = {
|
|
137667
137810
|
id?: number
|
|
137811
|
+
uuid?: string | null
|
|
137668
137812
|
budget_id?: number | null
|
|
137669
137813
|
department_budget_id?: number | null
|
|
137670
137814
|
category_budget_id?: number | null
|
|
@@ -137683,6 +137827,7 @@ export namespace Prisma {
|
|
|
137683
137827
|
}
|
|
137684
137828
|
|
|
137685
137829
|
export type SupportingDocumentUpdateInput = {
|
|
137830
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137686
137831
|
file_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137687
137832
|
original_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137688
137833
|
file_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -137702,6 +137847,7 @@ export namespace Prisma {
|
|
|
137702
137847
|
|
|
137703
137848
|
export type SupportingDocumentUncheckedUpdateInput = {
|
|
137704
137849
|
id?: IntFieldUpdateOperationsInput | number
|
|
137850
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137705
137851
|
budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137706
137852
|
department_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137707
137853
|
category_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -137721,6 +137867,7 @@ export namespace Prisma {
|
|
|
137721
137867
|
|
|
137722
137868
|
export type SupportingDocumentCreateManyInput = {
|
|
137723
137869
|
id?: number
|
|
137870
|
+
uuid?: string | null
|
|
137724
137871
|
budget_id?: number | null
|
|
137725
137872
|
department_budget_id?: number | null
|
|
137726
137873
|
category_budget_id?: number | null
|
|
@@ -137739,6 +137886,7 @@ export namespace Prisma {
|
|
|
137739
137886
|
}
|
|
137740
137887
|
|
|
137741
137888
|
export type SupportingDocumentUpdateManyMutationInput = {
|
|
137889
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137742
137890
|
file_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137743
137891
|
original_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137744
137892
|
file_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -137755,6 +137903,7 @@ export namespace Prisma {
|
|
|
137755
137903
|
|
|
137756
137904
|
export type SupportingDocumentUncheckedUpdateManyInput = {
|
|
137757
137905
|
id?: IntFieldUpdateOperationsInput | number
|
|
137906
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137758
137907
|
budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137759
137908
|
department_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137760
137909
|
category_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -137773,6 +137922,7 @@ export namespace Prisma {
|
|
|
137773
137922
|
}
|
|
137774
137923
|
|
|
137775
137924
|
export type ExpenseCreateInput = {
|
|
137925
|
+
uuid?: string | null
|
|
137776
137926
|
amount: Decimal | DecimalJsLike | number | string
|
|
137777
137927
|
description?: string | null
|
|
137778
137928
|
expense_date?: Date | string | null
|
|
@@ -137786,6 +137936,7 @@ export namespace Prisma {
|
|
|
137786
137936
|
|
|
137787
137937
|
export type ExpenseUncheckedCreateInput = {
|
|
137788
137938
|
id?: number
|
|
137939
|
+
uuid?: string | null
|
|
137789
137940
|
category_budget_id?: number | null
|
|
137790
137941
|
amount: Decimal | DecimalJsLike | number | string
|
|
137791
137942
|
description?: string | null
|
|
@@ -137798,6 +137949,7 @@ export namespace Prisma {
|
|
|
137798
137949
|
}
|
|
137799
137950
|
|
|
137800
137951
|
export type ExpenseUpdateInput = {
|
|
137952
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137801
137953
|
amount?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
137802
137954
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137803
137955
|
expense_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -137811,6 +137963,7 @@ export namespace Prisma {
|
|
|
137811
137963
|
|
|
137812
137964
|
export type ExpenseUncheckedUpdateInput = {
|
|
137813
137965
|
id?: IntFieldUpdateOperationsInput | number
|
|
137966
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137814
137967
|
category_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137815
137968
|
amount?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
137816
137969
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -137824,6 +137977,7 @@ export namespace Prisma {
|
|
|
137824
137977
|
|
|
137825
137978
|
export type ExpenseCreateManyInput = {
|
|
137826
137979
|
id?: number
|
|
137980
|
+
uuid?: string | null
|
|
137827
137981
|
category_budget_id?: number | null
|
|
137828
137982
|
amount: Decimal | DecimalJsLike | number | string
|
|
137829
137983
|
description?: string | null
|
|
@@ -137836,6 +137990,7 @@ export namespace Prisma {
|
|
|
137836
137990
|
}
|
|
137837
137991
|
|
|
137838
137992
|
export type ExpenseUpdateManyMutationInput = {
|
|
137993
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137839
137994
|
amount?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
137840
137995
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137841
137996
|
expense_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -137848,6 +138003,7 @@ export namespace Prisma {
|
|
|
137848
138003
|
|
|
137849
138004
|
export type ExpenseUncheckedUpdateManyInput = {
|
|
137850
138005
|
id?: IntFieldUpdateOperationsInput | number
|
|
138006
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
137851
138007
|
category_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
137852
138008
|
amount?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
137853
138009
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -144799,6 +144955,7 @@ export namespace Prisma {
|
|
|
144799
144955
|
|
|
144800
144956
|
export type BudgetCountOrderByAggregateInput = {
|
|
144801
144957
|
id?: SortOrder
|
|
144958
|
+
uuid?: SortOrder
|
|
144802
144959
|
company_name?: SortOrder
|
|
144803
144960
|
fiscal_year?: SortOrder
|
|
144804
144961
|
currency?: SortOrder
|
|
@@ -144824,6 +144981,7 @@ export namespace Prisma {
|
|
|
144824
144981
|
|
|
144825
144982
|
export type BudgetMaxOrderByAggregateInput = {
|
|
144826
144983
|
id?: SortOrder
|
|
144984
|
+
uuid?: SortOrder
|
|
144827
144985
|
company_name?: SortOrder
|
|
144828
144986
|
fiscal_year?: SortOrder
|
|
144829
144987
|
currency?: SortOrder
|
|
@@ -144841,6 +144999,7 @@ export namespace Prisma {
|
|
|
144841
144999
|
|
|
144842
145000
|
export type BudgetMinOrderByAggregateInput = {
|
|
144843
145001
|
id?: SortOrder
|
|
145002
|
+
uuid?: SortOrder
|
|
144844
145003
|
company_name?: SortOrder
|
|
144845
145004
|
fiscal_year?: SortOrder
|
|
144846
145005
|
currency?: SortOrder
|
|
@@ -144886,6 +145045,8 @@ export namespace Prisma {
|
|
|
144886
145045
|
|
|
144887
145046
|
export type DepartmentBudgetCountOrderByAggregateInput = {
|
|
144888
145047
|
id?: SortOrder
|
|
145048
|
+
uuid?: SortOrder
|
|
145049
|
+
code?: SortOrder
|
|
144889
145050
|
budget_id?: SortOrder
|
|
144890
145051
|
department_id?: SortOrder
|
|
144891
145052
|
allocated_budget?: SortOrder
|
|
@@ -144913,6 +145074,8 @@ export namespace Prisma {
|
|
|
144913
145074
|
|
|
144914
145075
|
export type DepartmentBudgetMaxOrderByAggregateInput = {
|
|
144915
145076
|
id?: SortOrder
|
|
145077
|
+
uuid?: SortOrder
|
|
145078
|
+
code?: SortOrder
|
|
144916
145079
|
budget_id?: SortOrder
|
|
144917
145080
|
department_id?: SortOrder
|
|
144918
145081
|
allocated_budget?: SortOrder
|
|
@@ -144930,6 +145093,8 @@ export namespace Prisma {
|
|
|
144930
145093
|
|
|
144931
145094
|
export type DepartmentBudgetMinOrderByAggregateInput = {
|
|
144932
145095
|
id?: SortOrder
|
|
145096
|
+
uuid?: SortOrder
|
|
145097
|
+
code?: SortOrder
|
|
144933
145098
|
budget_id?: SortOrder
|
|
144934
145099
|
department_id?: SortOrder
|
|
144935
145100
|
allocated_budget?: SortOrder
|
|
@@ -144988,6 +145153,7 @@ export namespace Prisma {
|
|
|
144988
145153
|
|
|
144989
145154
|
export type CategoryBudgetCountOrderByAggregateInput = {
|
|
144990
145155
|
id?: SortOrder
|
|
145156
|
+
uuid?: SortOrder
|
|
144991
145157
|
department_budget_id?: SortOrder
|
|
144992
145158
|
category_id?: SortOrder
|
|
144993
145159
|
allocated_budget?: SortOrder
|
|
@@ -145014,6 +145180,7 @@ export namespace Prisma {
|
|
|
145014
145180
|
|
|
145015
145181
|
export type CategoryBudgetMaxOrderByAggregateInput = {
|
|
145016
145182
|
id?: SortOrder
|
|
145183
|
+
uuid?: SortOrder
|
|
145017
145184
|
department_budget_id?: SortOrder
|
|
145018
145185
|
category_id?: SortOrder
|
|
145019
145186
|
allocated_budget?: SortOrder
|
|
@@ -145030,6 +145197,7 @@ export namespace Prisma {
|
|
|
145030
145197
|
|
|
145031
145198
|
export type CategoryBudgetMinOrderByAggregateInput = {
|
|
145032
145199
|
id?: SortOrder
|
|
145200
|
+
uuid?: SortOrder
|
|
145033
145201
|
department_budget_id?: SortOrder
|
|
145034
145202
|
category_id?: SortOrder
|
|
145035
145203
|
allocated_budget?: SortOrder
|
|
@@ -145077,6 +145245,7 @@ export namespace Prisma {
|
|
|
145077
145245
|
|
|
145078
145246
|
export type SupportingDocumentCountOrderByAggregateInput = {
|
|
145079
145247
|
id?: SortOrder
|
|
145248
|
+
uuid?: SortOrder
|
|
145080
145249
|
budget_id?: SortOrder
|
|
145081
145250
|
department_budget_id?: SortOrder
|
|
145082
145251
|
category_budget_id?: SortOrder
|
|
@@ -145107,6 +145276,7 @@ export namespace Prisma {
|
|
|
145107
145276
|
|
|
145108
145277
|
export type SupportingDocumentMaxOrderByAggregateInput = {
|
|
145109
145278
|
id?: SortOrder
|
|
145279
|
+
uuid?: SortOrder
|
|
145110
145280
|
budget_id?: SortOrder
|
|
145111
145281
|
department_budget_id?: SortOrder
|
|
145112
145282
|
category_budget_id?: SortOrder
|
|
@@ -145126,6 +145296,7 @@ export namespace Prisma {
|
|
|
145126
145296
|
|
|
145127
145297
|
export type SupportingDocumentMinOrderByAggregateInput = {
|
|
145128
145298
|
id?: SortOrder
|
|
145299
|
+
uuid?: SortOrder
|
|
145129
145300
|
budget_id?: SortOrder
|
|
145130
145301
|
department_budget_id?: SortOrder
|
|
145131
145302
|
category_budget_id?: SortOrder
|
|
@@ -145156,6 +145327,7 @@ export namespace Prisma {
|
|
|
145156
145327
|
|
|
145157
145328
|
export type ExpenseCountOrderByAggregateInput = {
|
|
145158
145329
|
id?: SortOrder
|
|
145330
|
+
uuid?: SortOrder
|
|
145159
145331
|
category_budget_id?: SortOrder
|
|
145160
145332
|
amount?: SortOrder
|
|
145161
145333
|
description?: SortOrder
|
|
@@ -145175,6 +145347,7 @@ export namespace Prisma {
|
|
|
145175
145347
|
|
|
145176
145348
|
export type ExpenseMaxOrderByAggregateInput = {
|
|
145177
145349
|
id?: SortOrder
|
|
145350
|
+
uuid?: SortOrder
|
|
145178
145351
|
category_budget_id?: SortOrder
|
|
145179
145352
|
amount?: SortOrder
|
|
145180
145353
|
description?: SortOrder
|
|
@@ -145188,6 +145361,7 @@ export namespace Prisma {
|
|
|
145188
145361
|
|
|
145189
145362
|
export type ExpenseMinOrderByAggregateInput = {
|
|
145190
145363
|
id?: SortOrder
|
|
145364
|
+
uuid?: SortOrder
|
|
145191
145365
|
category_budget_id?: SortOrder
|
|
145192
145366
|
amount?: SortOrder
|
|
145193
145367
|
description?: SortOrder
|
|
@@ -156239,6 +156413,8 @@ export namespace Prisma {
|
|
|
156239
156413
|
}
|
|
156240
156414
|
|
|
156241
156415
|
export type DepartmentBudgetCreateWithoutDepartmentInput = {
|
|
156416
|
+
uuid?: string | null
|
|
156417
|
+
code?: string | null
|
|
156242
156418
|
allocated_budget?: Decimal | DecimalJsLike | number | string | null
|
|
156243
156419
|
fiscal_year?: string | null
|
|
156244
156420
|
notes?: string | null
|
|
@@ -156257,6 +156433,8 @@ export namespace Prisma {
|
|
|
156257
156433
|
|
|
156258
156434
|
export type DepartmentBudgetUncheckedCreateWithoutDepartmentInput = {
|
|
156259
156435
|
id?: number
|
|
156436
|
+
uuid?: string | null
|
|
156437
|
+
code?: string | null
|
|
156260
156438
|
budget_id?: number | null
|
|
156261
156439
|
allocated_budget?: Decimal | DecimalJsLike | number | string | null
|
|
156262
156440
|
fiscal_year?: string | null
|
|
@@ -156580,6 +156758,8 @@ export namespace Prisma {
|
|
|
156580
156758
|
OR?: DepartmentBudgetScalarWhereInput[]
|
|
156581
156759
|
NOT?: DepartmentBudgetScalarWhereInput | DepartmentBudgetScalarWhereInput[]
|
|
156582
156760
|
id?: IntFilter<"DepartmentBudget"> | number
|
|
156761
|
+
uuid?: StringNullableFilter<"DepartmentBudget"> | string | null
|
|
156762
|
+
code?: StringNullableFilter<"DepartmentBudget"> | string | null
|
|
156583
156763
|
budget_id?: IntNullableFilter<"DepartmentBudget"> | number | null
|
|
156584
156764
|
department_id?: IntNullableFilter<"DepartmentBudget"> | number | null
|
|
156585
156765
|
allocated_budget?: DecimalNullableFilter<"DepartmentBudget"> | Decimal | DecimalJsLike | number | string | null
|
|
@@ -157157,6 +157337,7 @@ export namespace Prisma {
|
|
|
157157
157337
|
}
|
|
157158
157338
|
|
|
157159
157339
|
export type CategoryBudgetCreateWithoutCategoryInput = {
|
|
157340
|
+
uuid?: string | null
|
|
157160
157341
|
allocated_budget: Decimal | DecimalJsLike | number | string
|
|
157161
157342
|
notes?: string | null
|
|
157162
157343
|
description?: string | null
|
|
@@ -157174,6 +157355,7 @@ export namespace Prisma {
|
|
|
157174
157355
|
|
|
157175
157356
|
export type CategoryBudgetUncheckedCreateWithoutCategoryInput = {
|
|
157176
157357
|
id?: number
|
|
157358
|
+
uuid?: string | null
|
|
157177
157359
|
department_budget_id?: number | null
|
|
157178
157360
|
allocated_budget: Decimal | DecimalJsLike | number | string
|
|
157179
157361
|
notes?: string | null
|
|
@@ -157367,6 +157549,7 @@ export namespace Prisma {
|
|
|
157367
157549
|
OR?: CategoryBudgetScalarWhereInput[]
|
|
157368
157550
|
NOT?: CategoryBudgetScalarWhereInput | CategoryBudgetScalarWhereInput[]
|
|
157369
157551
|
id?: IntFilter<"CategoryBudget"> | number
|
|
157552
|
+
uuid?: StringNullableFilter<"CategoryBudget"> | string | null
|
|
157370
157553
|
department_budget_id?: IntNullableFilter<"CategoryBudget"> | number | null
|
|
157371
157554
|
category_id?: IntNullableFilter<"CategoryBudget"> | number | null
|
|
157372
157555
|
allocated_budget?: DecimalFilter<"CategoryBudget"> | Decimal | DecimalJsLike | number | string
|
|
@@ -177494,6 +177677,8 @@ export namespace Prisma {
|
|
|
177494
177677
|
}
|
|
177495
177678
|
|
|
177496
177679
|
export type DepartmentBudgetCreateWithoutBudgetInput = {
|
|
177680
|
+
uuid?: string | null
|
|
177681
|
+
code?: string | null
|
|
177497
177682
|
allocated_budget?: Decimal | DecimalJsLike | number | string | null
|
|
177498
177683
|
fiscal_year?: string | null
|
|
177499
177684
|
notes?: string | null
|
|
@@ -177512,6 +177697,8 @@ export namespace Prisma {
|
|
|
177512
177697
|
|
|
177513
177698
|
export type DepartmentBudgetUncheckedCreateWithoutBudgetInput = {
|
|
177514
177699
|
id?: number
|
|
177700
|
+
uuid?: string | null
|
|
177701
|
+
code?: string | null
|
|
177515
177702
|
department_id?: number | null
|
|
177516
177703
|
allocated_budget?: Decimal | DecimalJsLike | number | string | null
|
|
177517
177704
|
fiscal_year?: string | null
|
|
@@ -177539,6 +177726,7 @@ export namespace Prisma {
|
|
|
177539
177726
|
}
|
|
177540
177727
|
|
|
177541
177728
|
export type SupportingDocumentCreateWithoutBudgetInput = {
|
|
177729
|
+
uuid?: string | null
|
|
177542
177730
|
file_name?: string | null
|
|
177543
177731
|
original_name?: string | null
|
|
177544
177732
|
file_path?: string | null
|
|
@@ -177557,6 +177745,7 @@ export namespace Prisma {
|
|
|
177557
177745
|
|
|
177558
177746
|
export type SupportingDocumentUncheckedCreateWithoutBudgetInput = {
|
|
177559
177747
|
id?: number
|
|
177748
|
+
uuid?: string | null
|
|
177560
177749
|
department_budget_id?: number | null
|
|
177561
177750
|
category_budget_id?: number | null
|
|
177562
177751
|
file_name?: string | null
|
|
@@ -177620,6 +177809,7 @@ export namespace Prisma {
|
|
|
177620
177809
|
OR?: SupportingDocumentScalarWhereInput[]
|
|
177621
177810
|
NOT?: SupportingDocumentScalarWhereInput | SupportingDocumentScalarWhereInput[]
|
|
177622
177811
|
id?: IntFilter<"SupportingDocument"> | number
|
|
177812
|
+
uuid?: StringNullableFilter<"SupportingDocument"> | string | null
|
|
177623
177813
|
budget_id?: IntNullableFilter<"SupportingDocument"> | number | null
|
|
177624
177814
|
department_budget_id?: IntNullableFilter<"SupportingDocument"> | number | null
|
|
177625
177815
|
category_budget_id?: IntNullableFilter<"SupportingDocument"> | number | null
|
|
@@ -177638,6 +177828,7 @@ export namespace Prisma {
|
|
|
177638
177828
|
}
|
|
177639
177829
|
|
|
177640
177830
|
export type BudgetCreateWithoutDepartment_budgetsInput = {
|
|
177831
|
+
uuid?: string | null
|
|
177641
177832
|
company_name?: string | null
|
|
177642
177833
|
fiscal_year?: string | null
|
|
177643
177834
|
currency?: string | null
|
|
@@ -177656,6 +177847,7 @@ export namespace Prisma {
|
|
|
177656
177847
|
|
|
177657
177848
|
export type BudgetUncheckedCreateWithoutDepartment_budgetsInput = {
|
|
177658
177849
|
id?: number
|
|
177850
|
+
uuid?: string | null
|
|
177659
177851
|
company_name?: string | null
|
|
177660
177852
|
fiscal_year?: string | null
|
|
177661
177853
|
currency?: string | null
|
|
@@ -177720,6 +177912,7 @@ export namespace Prisma {
|
|
|
177720
177912
|
}
|
|
177721
177913
|
|
|
177722
177914
|
export type CategoryBudgetCreateWithoutDepartment_budgetInput = {
|
|
177915
|
+
uuid?: string | null
|
|
177723
177916
|
allocated_budget: Decimal | DecimalJsLike | number | string
|
|
177724
177917
|
notes?: string | null
|
|
177725
177918
|
description?: string | null
|
|
@@ -177737,6 +177930,7 @@ export namespace Prisma {
|
|
|
177737
177930
|
|
|
177738
177931
|
export type CategoryBudgetUncheckedCreateWithoutDepartment_budgetInput = {
|
|
177739
177932
|
id?: number
|
|
177933
|
+
uuid?: string | null
|
|
177740
177934
|
category_id?: number | null
|
|
177741
177935
|
allocated_budget: Decimal | DecimalJsLike | number | string
|
|
177742
177936
|
notes?: string | null
|
|
@@ -177763,6 +177957,7 @@ export namespace Prisma {
|
|
|
177763
177957
|
}
|
|
177764
177958
|
|
|
177765
177959
|
export type SupportingDocumentCreateWithoutDepartment_budgetInput = {
|
|
177960
|
+
uuid?: string | null
|
|
177766
177961
|
file_name?: string | null
|
|
177767
177962
|
original_name?: string | null
|
|
177768
177963
|
file_path?: string | null
|
|
@@ -177781,6 +177976,7 @@ export namespace Prisma {
|
|
|
177781
177976
|
|
|
177782
177977
|
export type SupportingDocumentUncheckedCreateWithoutDepartment_budgetInput = {
|
|
177783
177978
|
id?: number
|
|
177979
|
+
uuid?: string | null
|
|
177784
177980
|
budget_id?: number | null
|
|
177785
177981
|
category_budget_id?: number | null
|
|
177786
177982
|
file_name?: string | null
|
|
@@ -177819,6 +178015,7 @@ export namespace Prisma {
|
|
|
177819
178015
|
}
|
|
177820
178016
|
|
|
177821
178017
|
export type BudgetUpdateWithoutDepartment_budgetsInput = {
|
|
178018
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
177822
178019
|
company_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
177823
178020
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
177824
178021
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -177837,6 +178034,7 @@ export namespace Prisma {
|
|
|
177837
178034
|
|
|
177838
178035
|
export type BudgetUncheckedUpdateWithoutDepartment_budgetsInput = {
|
|
177839
178036
|
id?: IntFieldUpdateOperationsInput | number
|
|
178037
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
177840
178038
|
company_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
177841
178039
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
177842
178040
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -177934,6 +178132,8 @@ export namespace Prisma {
|
|
|
177934
178132
|
}
|
|
177935
178133
|
|
|
177936
178134
|
export type DepartmentBudgetCreateWithoutCategory_budgetInput = {
|
|
178135
|
+
uuid?: string | null
|
|
178136
|
+
code?: string | null
|
|
177937
178137
|
allocated_budget?: Decimal | DecimalJsLike | number | string | null
|
|
177938
178138
|
fiscal_year?: string | null
|
|
177939
178139
|
notes?: string | null
|
|
@@ -177952,6 +178152,8 @@ export namespace Prisma {
|
|
|
177952
178152
|
|
|
177953
178153
|
export type DepartmentBudgetUncheckedCreateWithoutCategory_budgetInput = {
|
|
177954
178154
|
id?: number
|
|
178155
|
+
uuid?: string | null
|
|
178156
|
+
code?: string | null
|
|
177955
178157
|
budget_id?: number | null
|
|
177956
178158
|
department_id?: number | null
|
|
177957
178159
|
allocated_budget?: Decimal | DecimalJsLike | number | string | null
|
|
@@ -178020,6 +178222,7 @@ export namespace Prisma {
|
|
|
178020
178222
|
}
|
|
178021
178223
|
|
|
178022
178224
|
export type ExpenseCreateWithoutCategory_budgetInput = {
|
|
178225
|
+
uuid?: string | null
|
|
178023
178226
|
amount: Decimal | DecimalJsLike | number | string
|
|
178024
178227
|
description?: string | null
|
|
178025
178228
|
expense_date?: Date | string | null
|
|
@@ -178032,6 +178235,7 @@ export namespace Prisma {
|
|
|
178032
178235
|
|
|
178033
178236
|
export type ExpenseUncheckedCreateWithoutCategory_budgetInput = {
|
|
178034
178237
|
id?: number
|
|
178238
|
+
uuid?: string | null
|
|
178035
178239
|
amount: Decimal | DecimalJsLike | number | string
|
|
178036
178240
|
description?: string | null
|
|
178037
178241
|
expense_date?: Date | string | null
|
|
@@ -178053,6 +178257,7 @@ export namespace Prisma {
|
|
|
178053
178257
|
}
|
|
178054
178258
|
|
|
178055
178259
|
export type SupportingDocumentCreateWithoutCategory_budgetInput = {
|
|
178260
|
+
uuid?: string | null
|
|
178056
178261
|
file_name?: string | null
|
|
178057
178262
|
original_name?: string | null
|
|
178058
178263
|
file_path?: string | null
|
|
@@ -178071,6 +178276,7 @@ export namespace Prisma {
|
|
|
178071
178276
|
|
|
178072
178277
|
export type SupportingDocumentUncheckedCreateWithoutCategory_budgetInput = {
|
|
178073
178278
|
id?: number
|
|
178279
|
+
uuid?: string | null
|
|
178074
178280
|
budget_id?: number | null
|
|
178075
178281
|
department_budget_id?: number | null
|
|
178076
178282
|
file_name?: string | null
|
|
@@ -178109,6 +178315,8 @@ export namespace Prisma {
|
|
|
178109
178315
|
}
|
|
178110
178316
|
|
|
178111
178317
|
export type DepartmentBudgetUpdateWithoutCategory_budgetInput = {
|
|
178318
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178319
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178112
178320
|
allocated_budget?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
178113
178321
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178114
178322
|
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -178127,6 +178335,8 @@ export namespace Prisma {
|
|
|
178127
178335
|
|
|
178128
178336
|
export type DepartmentBudgetUncheckedUpdateWithoutCategory_budgetInput = {
|
|
178129
178337
|
id?: IntFieldUpdateOperationsInput | number
|
|
178338
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178339
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178130
178340
|
budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
178131
178341
|
department_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
178132
178342
|
allocated_budget?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
@@ -178216,6 +178426,7 @@ export namespace Prisma {
|
|
|
178216
178426
|
OR?: ExpenseScalarWhereInput[]
|
|
178217
178427
|
NOT?: ExpenseScalarWhereInput | ExpenseScalarWhereInput[]
|
|
178218
178428
|
id?: IntFilter<"Expense"> | number
|
|
178429
|
+
uuid?: StringNullableFilter<"Expense"> | string | null
|
|
178219
178430
|
category_budget_id?: IntNullableFilter<"Expense"> | number | null
|
|
178220
178431
|
amount?: DecimalFilter<"Expense"> | Decimal | DecimalJsLike | number | string
|
|
178221
178432
|
description?: StringNullableFilter<"Expense"> | string | null
|
|
@@ -178244,6 +178455,7 @@ export namespace Prisma {
|
|
|
178244
178455
|
}
|
|
178245
178456
|
|
|
178246
178457
|
export type BudgetCreateWithoutSupporting_documentsInput = {
|
|
178458
|
+
uuid?: string | null
|
|
178247
178459
|
company_name?: string | null
|
|
178248
178460
|
fiscal_year?: string | null
|
|
178249
178461
|
currency?: string | null
|
|
@@ -178262,6 +178474,7 @@ export namespace Prisma {
|
|
|
178262
178474
|
|
|
178263
178475
|
export type BudgetUncheckedCreateWithoutSupporting_documentsInput = {
|
|
178264
178476
|
id?: number
|
|
178477
|
+
uuid?: string | null
|
|
178265
178478
|
company_name?: string | null
|
|
178266
178479
|
fiscal_year?: string | null
|
|
178267
178480
|
currency?: string | null
|
|
@@ -178284,6 +178497,8 @@ export namespace Prisma {
|
|
|
178284
178497
|
}
|
|
178285
178498
|
|
|
178286
178499
|
export type DepartmentBudgetCreateWithoutSupporting_documentsInput = {
|
|
178500
|
+
uuid?: string | null
|
|
178501
|
+
code?: string | null
|
|
178287
178502
|
allocated_budget?: Decimal | DecimalJsLike | number | string | null
|
|
178288
178503
|
fiscal_year?: string | null
|
|
178289
178504
|
notes?: string | null
|
|
@@ -178302,6 +178517,8 @@ export namespace Prisma {
|
|
|
178302
178517
|
|
|
178303
178518
|
export type DepartmentBudgetUncheckedCreateWithoutSupporting_documentsInput = {
|
|
178304
178519
|
id?: number
|
|
178520
|
+
uuid?: string | null
|
|
178521
|
+
code?: string | null
|
|
178305
178522
|
budget_id?: number | null
|
|
178306
178523
|
department_id?: number | null
|
|
178307
178524
|
allocated_budget?: Decimal | DecimalJsLike | number | string | null
|
|
@@ -178324,6 +178541,7 @@ export namespace Prisma {
|
|
|
178324
178541
|
}
|
|
178325
178542
|
|
|
178326
178543
|
export type CategoryBudgetCreateWithoutSupportingDocumentsInput = {
|
|
178544
|
+
uuid?: string | null
|
|
178327
178545
|
allocated_budget: Decimal | DecimalJsLike | number | string
|
|
178328
178546
|
notes?: string | null
|
|
178329
178547
|
description?: string | null
|
|
@@ -178341,6 +178559,7 @@ export namespace Prisma {
|
|
|
178341
178559
|
|
|
178342
178560
|
export type CategoryBudgetUncheckedCreateWithoutSupportingDocumentsInput = {
|
|
178343
178561
|
id?: number
|
|
178562
|
+
uuid?: string | null
|
|
178344
178563
|
department_budget_id?: number | null
|
|
178345
178564
|
category_id?: number | null
|
|
178346
178565
|
allocated_budget: Decimal | DecimalJsLike | number | string
|
|
@@ -178373,6 +178592,7 @@ export namespace Prisma {
|
|
|
178373
178592
|
}
|
|
178374
178593
|
|
|
178375
178594
|
export type BudgetUpdateWithoutSupporting_documentsInput = {
|
|
178595
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178376
178596
|
company_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178377
178597
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178378
178598
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -178391,6 +178611,7 @@ export namespace Prisma {
|
|
|
178391
178611
|
|
|
178392
178612
|
export type BudgetUncheckedUpdateWithoutSupporting_documentsInput = {
|
|
178393
178613
|
id?: IntFieldUpdateOperationsInput | number
|
|
178614
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178394
178615
|
company_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178395
178616
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178396
178617
|
currency?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -178419,6 +178640,8 @@ export namespace Prisma {
|
|
|
178419
178640
|
}
|
|
178420
178641
|
|
|
178421
178642
|
export type DepartmentBudgetUpdateWithoutSupporting_documentsInput = {
|
|
178643
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178644
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178422
178645
|
allocated_budget?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
178423
178646
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178424
178647
|
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -178437,6 +178660,8 @@ export namespace Prisma {
|
|
|
178437
178660
|
|
|
178438
178661
|
export type DepartmentBudgetUncheckedUpdateWithoutSupporting_documentsInput = {
|
|
178439
178662
|
id?: IntFieldUpdateOperationsInput | number
|
|
178663
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178664
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178440
178665
|
budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
178441
178666
|
department_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
178442
178667
|
allocated_budget?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
@@ -178465,6 +178690,7 @@ export namespace Prisma {
|
|
|
178465
178690
|
}
|
|
178466
178691
|
|
|
178467
178692
|
export type CategoryBudgetUpdateWithoutSupportingDocumentsInput = {
|
|
178693
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178468
178694
|
allocated_budget?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
178469
178695
|
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178470
178696
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -178482,6 +178708,7 @@ export namespace Prisma {
|
|
|
178482
178708
|
|
|
178483
178709
|
export type CategoryBudgetUncheckedUpdateWithoutSupportingDocumentsInput = {
|
|
178484
178710
|
id?: IntFieldUpdateOperationsInput | number
|
|
178711
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178485
178712
|
department_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
178486
178713
|
category_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
178487
178714
|
allocated_budget?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
@@ -178498,6 +178725,7 @@ export namespace Prisma {
|
|
|
178498
178725
|
}
|
|
178499
178726
|
|
|
178500
178727
|
export type CategoryBudgetCreateWithoutExpensesInput = {
|
|
178728
|
+
uuid?: string | null
|
|
178501
178729
|
allocated_budget: Decimal | DecimalJsLike | number | string
|
|
178502
178730
|
notes?: string | null
|
|
178503
178731
|
description?: string | null
|
|
@@ -178515,6 +178743,7 @@ export namespace Prisma {
|
|
|
178515
178743
|
|
|
178516
178744
|
export type CategoryBudgetUncheckedCreateWithoutExpensesInput = {
|
|
178517
178745
|
id?: number
|
|
178746
|
+
uuid?: string | null
|
|
178518
178747
|
department_budget_id?: number | null
|
|
178519
178748
|
category_id?: number | null
|
|
178520
178749
|
allocated_budget: Decimal | DecimalJsLike | number | string
|
|
@@ -178547,6 +178776,7 @@ export namespace Prisma {
|
|
|
178547
178776
|
}
|
|
178548
178777
|
|
|
178549
178778
|
export type CategoryBudgetUpdateWithoutExpensesInput = {
|
|
178779
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178550
178780
|
allocated_budget?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
178551
178781
|
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178552
178782
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -178564,6 +178794,7 @@ export namespace Prisma {
|
|
|
178564
178794
|
|
|
178565
178795
|
export type CategoryBudgetUncheckedUpdateWithoutExpensesInput = {
|
|
178566
178796
|
id?: IntFieldUpdateOperationsInput | number
|
|
178797
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
178567
178798
|
department_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
178568
178799
|
category_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
178569
178800
|
allocated_budget?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
@@ -180790,6 +181021,8 @@ export namespace Prisma {
|
|
|
180790
181021
|
|
|
180791
181022
|
export type DepartmentBudgetCreateManyDepartmentInput = {
|
|
180792
181023
|
id?: number
|
|
181024
|
+
uuid?: string | null
|
|
181025
|
+
code?: string | null
|
|
180793
181026
|
budget_id?: number | null
|
|
180794
181027
|
allocated_budget?: Decimal | DecimalJsLike | number | string | null
|
|
180795
181028
|
fiscal_year?: string | null
|
|
@@ -180840,6 +181073,8 @@ export namespace Prisma {
|
|
|
180840
181073
|
}
|
|
180841
181074
|
|
|
180842
181075
|
export type DepartmentBudgetUpdateWithoutDepartmentInput = {
|
|
181076
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
181077
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180843
181078
|
allocated_budget?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
180844
181079
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180845
181080
|
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -180858,6 +181093,8 @@ export namespace Prisma {
|
|
|
180858
181093
|
|
|
180859
181094
|
export type DepartmentBudgetUncheckedUpdateWithoutDepartmentInput = {
|
|
180860
181095
|
id?: IntFieldUpdateOperationsInput | number
|
|
181096
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
181097
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180861
181098
|
budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180862
181099
|
allocated_budget?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
180863
181100
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -180876,6 +181113,8 @@ export namespace Prisma {
|
|
|
180876
181113
|
|
|
180877
181114
|
export type DepartmentBudgetUncheckedUpdateManyWithoutDepartmentInput = {
|
|
180878
181115
|
id?: IntFieldUpdateOperationsInput | number
|
|
181116
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
181117
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
180879
181118
|
budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
180880
181119
|
allocated_budget?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
180881
181120
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -180979,6 +181218,7 @@ export namespace Prisma {
|
|
|
180979
181218
|
|
|
180980
181219
|
export type CategoryBudgetCreateManyCategoryInput = {
|
|
180981
181220
|
id?: number
|
|
181221
|
+
uuid?: string | null
|
|
180982
181222
|
department_budget_id?: number | null
|
|
180983
181223
|
allocated_budget: Decimal | DecimalJsLike | number | string
|
|
180984
181224
|
notes?: string | null
|
|
@@ -181267,6 +181507,7 @@ export namespace Prisma {
|
|
|
181267
181507
|
}
|
|
181268
181508
|
|
|
181269
181509
|
export type CategoryBudgetUpdateWithoutCategoryInput = {
|
|
181510
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
181270
181511
|
allocated_budget?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
181271
181512
|
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
181272
181513
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -181284,6 +181525,7 @@ export namespace Prisma {
|
|
|
181284
181525
|
|
|
181285
181526
|
export type CategoryBudgetUncheckedUpdateWithoutCategoryInput = {
|
|
181286
181527
|
id?: IntFieldUpdateOperationsInput | number
|
|
181528
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
181287
181529
|
department_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
181288
181530
|
allocated_budget?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
181289
181531
|
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -181301,6 +181543,7 @@ export namespace Prisma {
|
|
|
181301
181543
|
|
|
181302
181544
|
export type CategoryBudgetUncheckedUpdateManyWithoutCategoryInput = {
|
|
181303
181545
|
id?: IntFieldUpdateOperationsInput | number
|
|
181546
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
181304
181547
|
department_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
181305
181548
|
allocated_budget?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
181306
181549
|
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -186231,6 +186474,8 @@ export namespace Prisma {
|
|
|
186231
186474
|
|
|
186232
186475
|
export type DepartmentBudgetCreateManyBudgetInput = {
|
|
186233
186476
|
id?: number
|
|
186477
|
+
uuid?: string | null
|
|
186478
|
+
code?: string | null
|
|
186234
186479
|
department_id?: number | null
|
|
186235
186480
|
allocated_budget?: Decimal | DecimalJsLike | number | string | null
|
|
186236
186481
|
fiscal_year?: string | null
|
|
@@ -186247,6 +186492,7 @@ export namespace Prisma {
|
|
|
186247
186492
|
|
|
186248
186493
|
export type SupportingDocumentCreateManyBudgetInput = {
|
|
186249
186494
|
id?: number
|
|
186495
|
+
uuid?: string | null
|
|
186250
186496
|
department_budget_id?: number | null
|
|
186251
186497
|
category_budget_id?: number | null
|
|
186252
186498
|
file_name?: string | null
|
|
@@ -186264,6 +186510,8 @@ export namespace Prisma {
|
|
|
186264
186510
|
}
|
|
186265
186511
|
|
|
186266
186512
|
export type DepartmentBudgetUpdateWithoutBudgetInput = {
|
|
186513
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186514
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186267
186515
|
allocated_budget?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
186268
186516
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186269
186517
|
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -186282,6 +186530,8 @@ export namespace Prisma {
|
|
|
186282
186530
|
|
|
186283
186531
|
export type DepartmentBudgetUncheckedUpdateWithoutBudgetInput = {
|
|
186284
186532
|
id?: IntFieldUpdateOperationsInput | number
|
|
186533
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186534
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186285
186535
|
department_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
186286
186536
|
allocated_budget?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
186287
186537
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -186300,6 +186550,8 @@ export namespace Prisma {
|
|
|
186300
186550
|
|
|
186301
186551
|
export type DepartmentBudgetUncheckedUpdateManyWithoutBudgetInput = {
|
|
186302
186552
|
id?: IntFieldUpdateOperationsInput | number
|
|
186553
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186554
|
+
code?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186303
186555
|
department_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
186304
186556
|
allocated_budget?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
186305
186557
|
fiscal_year?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -186315,6 +186567,7 @@ export namespace Prisma {
|
|
|
186315
186567
|
}
|
|
186316
186568
|
|
|
186317
186569
|
export type SupportingDocumentUpdateWithoutBudgetInput = {
|
|
186570
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186318
186571
|
file_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186319
186572
|
original_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186320
186573
|
file_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -186333,6 +186586,7 @@ export namespace Prisma {
|
|
|
186333
186586
|
|
|
186334
186587
|
export type SupportingDocumentUncheckedUpdateWithoutBudgetInput = {
|
|
186335
186588
|
id?: IntFieldUpdateOperationsInput | number
|
|
186589
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186336
186590
|
department_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
186337
186591
|
category_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
186338
186592
|
file_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -186351,6 +186605,7 @@ export namespace Prisma {
|
|
|
186351
186605
|
|
|
186352
186606
|
export type SupportingDocumentUncheckedUpdateManyWithoutBudgetInput = {
|
|
186353
186607
|
id?: IntFieldUpdateOperationsInput | number
|
|
186608
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186354
186609
|
department_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
186355
186610
|
category_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
186356
186611
|
file_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -186369,6 +186624,7 @@ export namespace Prisma {
|
|
|
186369
186624
|
|
|
186370
186625
|
export type CategoryBudgetCreateManyDepartment_budgetInput = {
|
|
186371
186626
|
id?: number
|
|
186627
|
+
uuid?: string | null
|
|
186372
186628
|
category_id?: number | null
|
|
186373
186629
|
allocated_budget: Decimal | DecimalJsLike | number | string
|
|
186374
186630
|
notes?: string | null
|
|
@@ -186384,6 +186640,7 @@ export namespace Prisma {
|
|
|
186384
186640
|
|
|
186385
186641
|
export type SupportingDocumentCreateManyDepartment_budgetInput = {
|
|
186386
186642
|
id?: number
|
|
186643
|
+
uuid?: string | null
|
|
186387
186644
|
budget_id?: number | null
|
|
186388
186645
|
category_budget_id?: number | null
|
|
186389
186646
|
file_name?: string | null
|
|
@@ -186401,6 +186658,7 @@ export namespace Prisma {
|
|
|
186401
186658
|
}
|
|
186402
186659
|
|
|
186403
186660
|
export type CategoryBudgetUpdateWithoutDepartment_budgetInput = {
|
|
186661
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186404
186662
|
allocated_budget?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
186405
186663
|
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186406
186664
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -186418,6 +186676,7 @@ export namespace Prisma {
|
|
|
186418
186676
|
|
|
186419
186677
|
export type CategoryBudgetUncheckedUpdateWithoutDepartment_budgetInput = {
|
|
186420
186678
|
id?: IntFieldUpdateOperationsInput | number
|
|
186679
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186421
186680
|
category_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
186422
186681
|
allocated_budget?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
186423
186682
|
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -186435,6 +186694,7 @@ export namespace Prisma {
|
|
|
186435
186694
|
|
|
186436
186695
|
export type CategoryBudgetUncheckedUpdateManyWithoutDepartment_budgetInput = {
|
|
186437
186696
|
id?: IntFieldUpdateOperationsInput | number
|
|
186697
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186438
186698
|
category_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
186439
186699
|
allocated_budget?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
186440
186700
|
notes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -186449,6 +186709,7 @@ export namespace Prisma {
|
|
|
186449
186709
|
}
|
|
186450
186710
|
|
|
186451
186711
|
export type SupportingDocumentUpdateWithoutDepartment_budgetInput = {
|
|
186712
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186452
186713
|
file_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186453
186714
|
original_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186454
186715
|
file_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -186467,6 +186728,7 @@ export namespace Prisma {
|
|
|
186467
186728
|
|
|
186468
186729
|
export type SupportingDocumentUncheckedUpdateWithoutDepartment_budgetInput = {
|
|
186469
186730
|
id?: IntFieldUpdateOperationsInput | number
|
|
186731
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186470
186732
|
budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
186471
186733
|
category_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
186472
186734
|
file_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -186485,6 +186747,7 @@ export namespace Prisma {
|
|
|
186485
186747
|
|
|
186486
186748
|
export type SupportingDocumentUncheckedUpdateManyWithoutDepartment_budgetInput = {
|
|
186487
186749
|
id?: IntFieldUpdateOperationsInput | number
|
|
186750
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186488
186751
|
budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
186489
186752
|
category_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
186490
186753
|
file_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -186503,6 +186766,7 @@ export namespace Prisma {
|
|
|
186503
186766
|
|
|
186504
186767
|
export type ExpenseCreateManyCategory_budgetInput = {
|
|
186505
186768
|
id?: number
|
|
186769
|
+
uuid?: string | null
|
|
186506
186770
|
amount: Decimal | DecimalJsLike | number | string
|
|
186507
186771
|
description?: string | null
|
|
186508
186772
|
expense_date?: Date | string | null
|
|
@@ -186515,6 +186779,7 @@ export namespace Prisma {
|
|
|
186515
186779
|
|
|
186516
186780
|
export type SupportingDocumentCreateManyCategory_budgetInput = {
|
|
186517
186781
|
id?: number
|
|
186782
|
+
uuid?: string | null
|
|
186518
186783
|
budget_id?: number | null
|
|
186519
186784
|
department_budget_id?: number | null
|
|
186520
186785
|
file_name?: string | null
|
|
@@ -186532,6 +186797,7 @@ export namespace Prisma {
|
|
|
186532
186797
|
}
|
|
186533
186798
|
|
|
186534
186799
|
export type ExpenseUpdateWithoutCategory_budgetInput = {
|
|
186800
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186535
186801
|
amount?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
186536
186802
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186537
186803
|
expense_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -186544,6 +186810,7 @@ export namespace Prisma {
|
|
|
186544
186810
|
|
|
186545
186811
|
export type ExpenseUncheckedUpdateWithoutCategory_budgetInput = {
|
|
186546
186812
|
id?: IntFieldUpdateOperationsInput | number
|
|
186813
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186547
186814
|
amount?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
186548
186815
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186549
186816
|
expense_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -186556,6 +186823,7 @@ export namespace Prisma {
|
|
|
186556
186823
|
|
|
186557
186824
|
export type ExpenseUncheckedUpdateManyWithoutCategory_budgetInput = {
|
|
186558
186825
|
id?: IntFieldUpdateOperationsInput | number
|
|
186826
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186559
186827
|
amount?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
|
|
186560
186828
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186561
186829
|
expense_date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -186567,6 +186835,7 @@ export namespace Prisma {
|
|
|
186567
186835
|
}
|
|
186568
186836
|
|
|
186569
186837
|
export type SupportingDocumentUpdateWithoutCategory_budgetInput = {
|
|
186838
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186570
186839
|
file_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186571
186840
|
original_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186572
186841
|
file_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -186585,6 +186854,7 @@ export namespace Prisma {
|
|
|
186585
186854
|
|
|
186586
186855
|
export type SupportingDocumentUncheckedUpdateWithoutCategory_budgetInput = {
|
|
186587
186856
|
id?: IntFieldUpdateOperationsInput | number
|
|
186857
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186588
186858
|
budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
186589
186859
|
department_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
186590
186860
|
file_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -186603,6 +186873,7 @@ export namespace Prisma {
|
|
|
186603
186873
|
|
|
186604
186874
|
export type SupportingDocumentUncheckedUpdateManyWithoutCategory_budgetInput = {
|
|
186605
186875
|
id?: IntFieldUpdateOperationsInput | number
|
|
186876
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
186606
186877
|
budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
186607
186878
|
department_budget_id?: NullableIntFieldUpdateOperationsInput | number | null
|
|
186608
186879
|
file_name?: NullableStringFieldUpdateOperationsInput | string | null
|