@gelabs/ovr 0.3.0 → 0.4.1

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.
Files changed (43) hide show
  1. package/dist/{chunk-HGWPA7FU.js → chunk-6AXIWTMW.js} +36 -0
  2. package/dist/{chunk-IS3THKTE.js → chunk-QZRRFE6E.js} +13 -2
  3. package/dist/{chunk-ZUMEOZ22.js → chunk-VH4J2SIV.js} +2 -2
  4. package/dist/core-i18n.d.ts +2 -2
  5. package/dist/core-i18n.js +1 -1
  6. package/dist/data-mock-store.js +93 -7
  7. package/dist/data-prisma-store.js +87 -9
  8. package/dist/data.d.ts +16 -1
  9. package/dist/generated/client/edge.js +6 -4
  10. package/dist/generated/client/index-browser.js +3 -1
  11. package/dist/generated/client/index.d.ts +97 -39
  12. package/dist/generated/client/index.js +6 -4
  13. package/dist/generated/client/package.json +1 -1
  14. package/dist/generated/client/schema.prisma +2 -0
  15. package/dist/generated/client/wasm.js +6 -4
  16. package/dist/index.d.ts +1 -1
  17. package/dist/{types-BOgdk0Jw.d.ts → types-DNEO6wrO.d.ts} +36 -0
  18. package/dist/types.d.ts +14 -3
  19. package/dist/types.js +1 -1
  20. package/dist/ui-components-admin/accounts-manager.js +5 -5
  21. package/dist/ui-components-admin/admin-nav.js +6 -4
  22. package/dist/ui-components-admin/issuance-form.js +10 -10
  23. package/dist/ui-components-admin/logs-viewer.js +4 -4
  24. package/dist/ui-components-admin/notifications-list.js +1 -1
  25. package/dist/ui-components-admin/officers-manager.js +3 -3
  26. package/dist/ui-components-admin/roles-manager.js +4 -4
  27. package/dist/ui-components-admin/ticket-preview.js +6 -6
  28. package/dist/ui-components-admin/tickets-table.js +3 -3
  29. package/dist/ui-components-admin/violations-manager.d.ts +36 -0
  30. package/dist/ui-components-admin/violations-manager.js +454 -0
  31. package/dist/ui-components-citizen/payment-form.js +3 -3
  32. package/dist/ui-components-citizen/payment-qr-dialog.js +2 -2
  33. package/dist/ui-components-citizen/violation-history-table.js +2 -2
  34. package/dist/ui-components-shared/ticket-receipt.js +4 -4
  35. package/dist/ui-components-shared/violations-table.js +2 -2
  36. package/dist/ui-config.d.ts +1 -1
  37. package/dist/ui-server.d.ts +1 -1
  38. package/dist/ui-server.js +1 -1
  39. package/package.json +6 -6
  40. package/prisma/migrations/20260622050000_violation_catalog_management/migration.sql +5 -0
  41. package/prisma/schema.prisma +2 -0
  42. package/dist/{chunk-IBZVIUNI.js → chunk-6BH4EFP3.js} +1 -1
  43. package/dist/{chunk-TLG4C2XI.js → chunk-QCAURREW.js} +1 -1
@@ -2766,7 +2766,9 @@ export namespace Prisma {
2766
2766
  category: $Enums.ViolationCategory | null
2767
2767
  basicFine: Decimal | null
2768
2768
  legalText: string | null
2769
+ active: boolean | null
2769
2770
  createdAt: Date | null
2771
+ updatedAt: Date | null
2770
2772
  }
2771
2773
 
2772
2774
  export type ViolationCatalogMaxAggregateOutputType = {
@@ -2775,7 +2777,9 @@ export namespace Prisma {
2775
2777
  category: $Enums.ViolationCategory | null
2776
2778
  basicFine: Decimal | null
2777
2779
  legalText: string | null
2780
+ active: boolean | null
2778
2781
  createdAt: Date | null
2782
+ updatedAt: Date | null
2779
2783
  }
2780
2784
 
2781
2785
  export type ViolationCatalogCountAggregateOutputType = {
@@ -2784,7 +2788,9 @@ export namespace Prisma {
2784
2788
  category: number
2785
2789
  basicFine: number
2786
2790
  legalText: number
2791
+ active: number
2787
2792
  createdAt: number
2793
+ updatedAt: number
2788
2794
  _all: number
2789
2795
  }
2790
2796
 
@@ -2803,7 +2809,9 @@ export namespace Prisma {
2803
2809
  category?: true
2804
2810
  basicFine?: true
2805
2811
  legalText?: true
2812
+ active?: true
2806
2813
  createdAt?: true
2814
+ updatedAt?: true
2807
2815
  }
2808
2816
 
2809
2817
  export type ViolationCatalogMaxAggregateInputType = {
@@ -2812,7 +2820,9 @@ export namespace Prisma {
2812
2820
  category?: true
2813
2821
  basicFine?: true
2814
2822
  legalText?: true
2823
+ active?: true
2815
2824
  createdAt?: true
2825
+ updatedAt?: true
2816
2826
  }
2817
2827
 
2818
2828
  export type ViolationCatalogCountAggregateInputType = {
@@ -2821,7 +2831,9 @@ export namespace Prisma {
2821
2831
  category?: true
2822
2832
  basicFine?: true
2823
2833
  legalText?: true
2834
+ active?: true
2824
2835
  createdAt?: true
2836
+ updatedAt?: true
2825
2837
  _all?: true
2826
2838
  }
2827
2839
 
@@ -2917,7 +2929,9 @@ export namespace Prisma {
2917
2929
  category: $Enums.ViolationCategory
2918
2930
  basicFine: Decimal
2919
2931
  legalText: string | null
2932
+ active: boolean
2920
2933
  createdAt: Date
2934
+ updatedAt: Date
2921
2935
  _count: ViolationCatalogCountAggregateOutputType | null
2922
2936
  _avg: ViolationCatalogAvgAggregateOutputType | null
2923
2937
  _sum: ViolationCatalogSumAggregateOutputType | null
@@ -2945,7 +2959,9 @@ export namespace Prisma {
2945
2959
  category?: boolean
2946
2960
  basicFine?: boolean
2947
2961
  legalText?: boolean
2962
+ active?: boolean
2948
2963
  createdAt?: boolean
2964
+ updatedAt?: boolean
2949
2965
  }, ExtArgs["result"]["violationCatalog"]>
2950
2966
 
2951
2967
  export type ViolationCatalogSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
@@ -2954,7 +2970,9 @@ export namespace Prisma {
2954
2970
  category?: boolean
2955
2971
  basicFine?: boolean
2956
2972
  legalText?: boolean
2973
+ active?: boolean
2957
2974
  createdAt?: boolean
2975
+ updatedAt?: boolean
2958
2976
  }, ExtArgs["result"]["violationCatalog"]>
2959
2977
 
2960
2978
  export type ViolationCatalogSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
@@ -2963,7 +2981,9 @@ export namespace Prisma {
2963
2981
  category?: boolean
2964
2982
  basicFine?: boolean
2965
2983
  legalText?: boolean
2984
+ active?: boolean
2966
2985
  createdAt?: boolean
2986
+ updatedAt?: boolean
2967
2987
  }, ExtArgs["result"]["violationCatalog"]>
2968
2988
 
2969
2989
  export type ViolationCatalogSelectScalar = {
@@ -2972,10 +2992,12 @@ export namespace Prisma {
2972
2992
  category?: boolean
2973
2993
  basicFine?: boolean
2974
2994
  legalText?: boolean
2995
+ active?: boolean
2975
2996
  createdAt?: boolean
2997
+ updatedAt?: boolean
2976
2998
  }
2977
2999
 
2978
- export type ViolationCatalogOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"code" | "title" | "category" | "basicFine" | "legalText" | "createdAt", ExtArgs["result"]["violationCatalog"]>
3000
+ export type ViolationCatalogOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"code" | "title" | "category" | "basicFine" | "legalText" | "active" | "createdAt" | "updatedAt", ExtArgs["result"]["violationCatalog"]>
2979
3001
 
2980
3002
  export type $ViolationCatalogPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2981
3003
  name: "ViolationCatalog"
@@ -2986,7 +3008,9 @@ export namespace Prisma {
2986
3008
  category: $Enums.ViolationCategory
2987
3009
  basicFine: Prisma.Decimal
2988
3010
  legalText: string | null
3011
+ active: boolean
2989
3012
  createdAt: Date
3013
+ updatedAt: Date
2990
3014
  }, ExtArgs["result"]["violationCatalog"]>
2991
3015
  composites: {}
2992
3016
  }
@@ -3415,7 +3439,9 @@ export namespace Prisma {
3415
3439
  readonly category: FieldRef<"ViolationCatalog", 'ViolationCategory'>
3416
3440
  readonly basicFine: FieldRef<"ViolationCatalog", 'Decimal'>
3417
3441
  readonly legalText: FieldRef<"ViolationCatalog", 'String'>
3442
+ readonly active: FieldRef<"ViolationCatalog", 'Boolean'>
3418
3443
  readonly createdAt: FieldRef<"ViolationCatalog", 'DateTime'>
3444
+ readonly updatedAt: FieldRef<"ViolationCatalog", 'DateTime'>
3419
3445
  }
3420
3446
 
3421
3447
 
@@ -10653,7 +10679,9 @@ export namespace Prisma {
10653
10679
  category: 'category',
10654
10680
  basicFine: 'basicFine',
10655
10681
  legalText: 'legalText',
10656
- createdAt: 'createdAt'
10682
+ active: 'active',
10683
+ createdAt: 'createdAt',
10684
+ updatedAt: 'updatedAt'
10657
10685
  };
10658
10686
 
10659
10687
  export type ViolationCatalogScalarFieldEnum = (typeof ViolationCatalogScalarFieldEnum)[keyof typeof ViolationCatalogScalarFieldEnum]
@@ -10838,6 +10866,13 @@ export namespace Prisma {
10838
10866
 
10839
10867
 
10840
10868
 
10869
+ /**
10870
+ * Reference to a field of type 'Boolean'
10871
+ */
10872
+ export type BooleanFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Boolean'>
10873
+
10874
+
10875
+
10841
10876
  /**
10842
10877
  * Reference to a field of type 'PaymentStatus'
10843
10878
  */
@@ -10866,13 +10901,6 @@ export namespace Prisma {
10866
10901
 
10867
10902
 
10868
10903
 
10869
- /**
10870
- * Reference to a field of type 'Boolean'
10871
- */
10872
- export type BooleanFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Boolean'>
10873
-
10874
-
10875
-
10876
10904
  /**
10877
10905
  * Reference to a field of type 'Int'
10878
10906
  */
@@ -10962,7 +10990,9 @@ export namespace Prisma {
10962
10990
  category?: EnumViolationCategoryFilter<"ViolationCatalog"> | $Enums.ViolationCategory
10963
10991
  basicFine?: DecimalFilter<"ViolationCatalog"> | Decimal | DecimalJsLike | number | string
10964
10992
  legalText?: StringNullableFilter<"ViolationCatalog"> | string | null
10993
+ active?: BoolFilter<"ViolationCatalog"> | boolean
10965
10994
  createdAt?: DateTimeFilter<"ViolationCatalog"> | Date | string
10995
+ updatedAt?: DateTimeFilter<"ViolationCatalog"> | Date | string
10966
10996
  }
10967
10997
 
10968
10998
  export type ViolationCatalogOrderByWithRelationInput = {
@@ -10971,7 +11001,9 @@ export namespace Prisma {
10971
11001
  category?: SortOrder
10972
11002
  basicFine?: SortOrder
10973
11003
  legalText?: SortOrderInput | SortOrder
11004
+ active?: SortOrder
10974
11005
  createdAt?: SortOrder
11006
+ updatedAt?: SortOrder
10975
11007
  }
10976
11008
 
10977
11009
  export type ViolationCatalogWhereUniqueInput = Prisma.AtLeast<{
@@ -10983,7 +11015,9 @@ export namespace Prisma {
10983
11015
  category?: EnumViolationCategoryFilter<"ViolationCatalog"> | $Enums.ViolationCategory
10984
11016
  basicFine?: DecimalFilter<"ViolationCatalog"> | Decimal | DecimalJsLike | number | string
10985
11017
  legalText?: StringNullableFilter<"ViolationCatalog"> | string | null
11018
+ active?: BoolFilter<"ViolationCatalog"> | boolean
10986
11019
  createdAt?: DateTimeFilter<"ViolationCatalog"> | Date | string
11020
+ updatedAt?: DateTimeFilter<"ViolationCatalog"> | Date | string
10987
11021
  }, "code">
10988
11022
 
10989
11023
  export type ViolationCatalogOrderByWithAggregationInput = {
@@ -10992,7 +11026,9 @@ export namespace Prisma {
10992
11026
  category?: SortOrder
10993
11027
  basicFine?: SortOrder
10994
11028
  legalText?: SortOrderInput | SortOrder
11029
+ active?: SortOrder
10995
11030
  createdAt?: SortOrder
11031
+ updatedAt?: SortOrder
10996
11032
  _count?: ViolationCatalogCountOrderByAggregateInput
10997
11033
  _avg?: ViolationCatalogAvgOrderByAggregateInput
10998
11034
  _max?: ViolationCatalogMaxOrderByAggregateInput
@@ -11009,7 +11045,9 @@ export namespace Prisma {
11009
11045
  category?: EnumViolationCategoryWithAggregatesFilter<"ViolationCatalog"> | $Enums.ViolationCategory
11010
11046
  basicFine?: DecimalWithAggregatesFilter<"ViolationCatalog"> | Decimal | DecimalJsLike | number | string
11011
11047
  legalText?: StringNullableWithAggregatesFilter<"ViolationCatalog"> | string | null
11048
+ active?: BoolWithAggregatesFilter<"ViolationCatalog"> | boolean
11012
11049
  createdAt?: DateTimeWithAggregatesFilter<"ViolationCatalog"> | Date | string
11050
+ updatedAt?: DateTimeWithAggregatesFilter<"ViolationCatalog"> | Date | string
11013
11051
  }
11014
11052
 
11015
11053
  export type TicketWhereInput = {
@@ -11571,7 +11609,9 @@ export namespace Prisma {
11571
11609
  category: $Enums.ViolationCategory
11572
11610
  basicFine: Decimal | DecimalJsLike | number | string
11573
11611
  legalText?: string | null
11612
+ active?: boolean
11574
11613
  createdAt?: Date | string
11614
+ updatedAt?: Date | string
11575
11615
  }
11576
11616
 
11577
11617
  export type ViolationCatalogUncheckedCreateInput = {
@@ -11580,7 +11620,9 @@ export namespace Prisma {
11580
11620
  category: $Enums.ViolationCategory
11581
11621
  basicFine: Decimal | DecimalJsLike | number | string
11582
11622
  legalText?: string | null
11623
+ active?: boolean
11583
11624
  createdAt?: Date | string
11625
+ updatedAt?: Date | string
11584
11626
  }
11585
11627
 
11586
11628
  export type ViolationCatalogUpdateInput = {
@@ -11589,7 +11631,9 @@ export namespace Prisma {
11589
11631
  category?: EnumViolationCategoryFieldUpdateOperationsInput | $Enums.ViolationCategory
11590
11632
  basicFine?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
11591
11633
  legalText?: NullableStringFieldUpdateOperationsInput | string | null
11634
+ active?: BoolFieldUpdateOperationsInput | boolean
11592
11635
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
11636
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
11593
11637
  }
11594
11638
 
11595
11639
  export type ViolationCatalogUncheckedUpdateInput = {
@@ -11598,7 +11642,9 @@ export namespace Prisma {
11598
11642
  category?: EnumViolationCategoryFieldUpdateOperationsInput | $Enums.ViolationCategory
11599
11643
  basicFine?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
11600
11644
  legalText?: NullableStringFieldUpdateOperationsInput | string | null
11645
+ active?: BoolFieldUpdateOperationsInput | boolean
11601
11646
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
11647
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
11602
11648
  }
11603
11649
 
11604
11650
  export type ViolationCatalogCreateManyInput = {
@@ -11607,7 +11653,9 @@ export namespace Prisma {
11607
11653
  category: $Enums.ViolationCategory
11608
11654
  basicFine: Decimal | DecimalJsLike | number | string
11609
11655
  legalText?: string | null
11656
+ active?: boolean
11610
11657
  createdAt?: Date | string
11658
+ updatedAt?: Date | string
11611
11659
  }
11612
11660
 
11613
11661
  export type ViolationCatalogUpdateManyMutationInput = {
@@ -11616,7 +11664,9 @@ export namespace Prisma {
11616
11664
  category?: EnumViolationCategoryFieldUpdateOperationsInput | $Enums.ViolationCategory
11617
11665
  basicFine?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
11618
11666
  legalText?: NullableStringFieldUpdateOperationsInput | string | null
11667
+ active?: BoolFieldUpdateOperationsInput | boolean
11619
11668
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
11669
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
11620
11670
  }
11621
11671
 
11622
11672
  export type ViolationCatalogUncheckedUpdateManyInput = {
@@ -11625,7 +11675,9 @@ export namespace Prisma {
11625
11675
  category?: EnumViolationCategoryFieldUpdateOperationsInput | $Enums.ViolationCategory
11626
11676
  basicFine?: DecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string
11627
11677
  legalText?: NullableStringFieldUpdateOperationsInput | string | null
11678
+ active?: BoolFieldUpdateOperationsInput | boolean
11628
11679
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
11680
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
11629
11681
  }
11630
11682
 
11631
11683
  export type TicketCreateInput = {
@@ -12323,13 +12375,20 @@ export namespace Prisma {
12323
12375
  not?: NestedDecimalFilter<$PrismaModel> | Decimal | DecimalJsLike | number | string
12324
12376
  }
12325
12377
 
12378
+ export type BoolFilter<$PrismaModel = never> = {
12379
+ equals?: boolean | BooleanFieldRefInput<$PrismaModel>
12380
+ not?: NestedBoolFilter<$PrismaModel> | boolean
12381
+ }
12382
+
12326
12383
  export type ViolationCatalogCountOrderByAggregateInput = {
12327
12384
  code?: SortOrder
12328
12385
  title?: SortOrder
12329
12386
  category?: SortOrder
12330
12387
  basicFine?: SortOrder
12331
12388
  legalText?: SortOrder
12389
+ active?: SortOrder
12332
12390
  createdAt?: SortOrder
12391
+ updatedAt?: SortOrder
12333
12392
  }
12334
12393
 
12335
12394
  export type ViolationCatalogAvgOrderByAggregateInput = {
@@ -12342,7 +12401,9 @@ export namespace Prisma {
12342
12401
  category?: SortOrder
12343
12402
  basicFine?: SortOrder
12344
12403
  legalText?: SortOrder
12404
+ active?: SortOrder
12345
12405
  createdAt?: SortOrder
12406
+ updatedAt?: SortOrder
12346
12407
  }
12347
12408
 
12348
12409
  export type ViolationCatalogMinOrderByAggregateInput = {
@@ -12351,7 +12412,9 @@ export namespace Prisma {
12351
12412
  category?: SortOrder
12352
12413
  basicFine?: SortOrder
12353
12414
  legalText?: SortOrder
12415
+ active?: SortOrder
12354
12416
  createdAt?: SortOrder
12417
+ updatedAt?: SortOrder
12355
12418
  }
12356
12419
 
12357
12420
  export type ViolationCatalogSumOrderByAggregateInput = {
@@ -12384,6 +12447,14 @@ export namespace Prisma {
12384
12447
  _max?: NestedDecimalFilter<$PrismaModel>
12385
12448
  }
12386
12449
 
12450
+ export type BoolWithAggregatesFilter<$PrismaModel = never> = {
12451
+ equals?: boolean | BooleanFieldRefInput<$PrismaModel>
12452
+ not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
12453
+ _count?: NestedIntFilter<$PrismaModel>
12454
+ _min?: NestedBoolFilter<$PrismaModel>
12455
+ _max?: NestedBoolFilter<$PrismaModel>
12456
+ }
12457
+
12387
12458
  export type EnumPaymentStatusFilter<$PrismaModel = never> = {
12388
12459
  equals?: $Enums.PaymentStatus | EnumPaymentStatusFieldRefInput<$PrismaModel>
12389
12460
  in?: $Enums.PaymentStatus[] | ListEnumPaymentStatusFieldRefInput<$PrismaModel>
@@ -12605,11 +12676,6 @@ export namespace Prisma {
12605
12676
  _max?: NestedEnumPaymentMethodFilter<$PrismaModel>
12606
12677
  }
12607
12678
 
12608
- export type BoolFilter<$PrismaModel = never> = {
12609
- equals?: boolean | BooleanFieldRefInput<$PrismaModel>
12610
- not?: NestedBoolFilter<$PrismaModel> | boolean
12611
- }
12612
-
12613
12679
  export type StringNullableListFilter<$PrismaModel = never> = {
12614
12680
  equals?: string[] | ListStringFieldRefInput<$PrismaModel> | null
12615
12681
  has?: string | StringFieldRefInput<$PrismaModel> | null
@@ -12653,14 +12719,6 @@ export namespace Prisma {
12653
12719
  updatedAt?: SortOrder
12654
12720
  }
12655
12721
 
12656
- export type BoolWithAggregatesFilter<$PrismaModel = never> = {
12657
- equals?: boolean | BooleanFieldRefInput<$PrismaModel>
12658
- not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
12659
- _count?: NestedIntFilter<$PrismaModel>
12660
- _min?: NestedBoolFilter<$PrismaModel>
12661
- _max?: NestedBoolFilter<$PrismaModel>
12662
- }
12663
-
12664
12722
  export type RoleScalarRelationFilter = {
12665
12723
  is?: RoleWhereInput
12666
12724
  isNot?: RoleWhereInput
@@ -12832,6 +12890,10 @@ export namespace Prisma {
12832
12890
  divide?: Decimal | DecimalJsLike | number | string
12833
12891
  }
12834
12892
 
12893
+ export type BoolFieldUpdateOperationsInput = {
12894
+ set?: boolean
12895
+ }
12896
+
12835
12897
  export type OfficerCreateNestedOneWithoutTicketsInput = {
12836
12898
  create?: XOR<OfficerCreateWithoutTicketsInput, OfficerUncheckedCreateWithoutTicketsInput>
12837
12899
  connectOrCreate?: OfficerCreateOrConnectWithoutTicketsInput
@@ -12974,10 +13036,6 @@ export namespace Prisma {
12974
13036
  connect?: UserWhereUniqueInput | UserWhereUniqueInput[]
12975
13037
  }
12976
13038
 
12977
- export type BoolFieldUpdateOperationsInput = {
12978
- set?: boolean
12979
- }
12980
-
12981
13039
  export type RoleUpdatepermissionsInput = {
12982
13040
  set?: string[]
12983
13041
  push?: string | string[]
@@ -13168,6 +13226,11 @@ export namespace Prisma {
13168
13226
  not?: NestedDecimalFilter<$PrismaModel> | Decimal | DecimalJsLike | number | string
13169
13227
  }
13170
13228
 
13229
+ export type NestedBoolFilter<$PrismaModel = never> = {
13230
+ equals?: boolean | BooleanFieldRefInput<$PrismaModel>
13231
+ not?: NestedBoolFilter<$PrismaModel> | boolean
13232
+ }
13233
+
13171
13234
  export type NestedEnumViolationCategoryWithAggregatesFilter<$PrismaModel = never> = {
13172
13235
  equals?: $Enums.ViolationCategory | EnumViolationCategoryFieldRefInput<$PrismaModel>
13173
13236
  in?: $Enums.ViolationCategory[] | ListEnumViolationCategoryFieldRefInput<$PrismaModel>
@@ -13194,6 +13257,14 @@ export namespace Prisma {
13194
13257
  _max?: NestedDecimalFilter<$PrismaModel>
13195
13258
  }
13196
13259
 
13260
+ export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
13261
+ equals?: boolean | BooleanFieldRefInput<$PrismaModel>
13262
+ not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
13263
+ _count?: NestedIntFilter<$PrismaModel>
13264
+ _min?: NestedBoolFilter<$PrismaModel>
13265
+ _max?: NestedBoolFilter<$PrismaModel>
13266
+ }
13267
+
13197
13268
  export type NestedEnumPaymentStatusFilter<$PrismaModel = never> = {
13198
13269
  equals?: $Enums.PaymentStatus | EnumPaymentStatusFieldRefInput<$PrismaModel>
13199
13270
  in?: $Enums.PaymentStatus[] | ListEnumPaymentStatusFieldRefInput<$PrismaModel>
@@ -13228,19 +13299,6 @@ export namespace Prisma {
13228
13299
  _max?: NestedEnumPaymentMethodFilter<$PrismaModel>
13229
13300
  }
13230
13301
 
13231
- export type NestedBoolFilter<$PrismaModel = never> = {
13232
- equals?: boolean | BooleanFieldRefInput<$PrismaModel>
13233
- not?: NestedBoolFilter<$PrismaModel> | boolean
13234
- }
13235
-
13236
- export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
13237
- equals?: boolean | BooleanFieldRefInput<$PrismaModel>
13238
- not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
13239
- _count?: NestedIntFilter<$PrismaModel>
13240
- _min?: NestedBoolFilter<$PrismaModel>
13241
- _max?: NestedBoolFilter<$PrismaModel>
13242
- }
13243
-
13244
13302
  export type TicketCreateWithoutOfficerInput = {
13245
13303
  ovrTicketNo: string
13246
13304
  orderOfPaymentNo: string