@merkl/api 0.19.37 → 0.19.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist/database/api/.generated/drizzle/schema.d.ts +90 -5
  2. package/dist/database/api/.generated/drizzle/schema.js +7 -2
  3. package/dist/database/api/.generated/drizzle/schema.ts +7 -2
  4. package/dist/database/api/.generated/edge.js +13 -3
  5. package/dist/database/api/.generated/index-browser.js +10 -0
  6. package/dist/database/api/.generated/index.d.ts +296 -40
  7. package/dist/database/api/.generated/index.js +13 -3
  8. package/dist/database/api/.generated/package.json +1 -1
  9. package/dist/database/api/.generated/schema.prisma +6 -1
  10. package/dist/database/api/.generated/wasm.js +10 -0
  11. package/dist/src/eden/index.d.ts +20 -0
  12. package/dist/src/engine/opportunityMetadata/implementations/Compound.d.ts +1 -2
  13. package/dist/src/engine/opportunityMetadata/implementations/Compound.js +1 -4
  14. package/dist/src/engine/opportunityMetadata/implementations/Morpho.d.ts +7 -1
  15. package/dist/src/engine/opportunityMetadata/implementations/Morpho.js +5 -2
  16. package/dist/src/index.d.ts +4 -0
  17. package/dist/src/jobs/pendings.js +4 -1
  18. package/dist/src/jobs/reward-breakdowns.js +3 -0
  19. package/dist/src/modules/v4/apr/apr.model.d.ts +1 -1
  20. package/dist/src/modules/v4/computedValue/computedValue.controller.d.ts +1 -0
  21. package/dist/src/modules/v4/computedValue/computedValue.repository.d.ts +1 -0
  22. package/dist/src/modules/v4/computedValue/computedValue.repository.js +2 -0
  23. package/dist/src/modules/v4/computedValue/computedValue.service.d.ts +2 -0
  24. package/dist/src/modules/v4/computedValue/computedValue.service.js +3 -0
  25. package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +3 -0
  26. package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +17 -0
  27. package/dist/src/modules/v4/opportunity/opportunity.repository.js +2 -0
  28. package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +9 -0
  29. package/dist/src/modules/v4/reward/reward.model.d.ts +2 -2
  30. package/dist/src/modules/v4/reward/reward.repository.d.ts +4 -2
  31. package/dist/src/modules/v4/reward/reward.repository.js +1 -0
  32. package/dist/src/modules/v4/reward/reward.service.d.ts +8 -2
  33. package/dist/src/modules/v4/reward/reward.service.js +4 -1
  34. package/dist/src/modules/v4/router.d.ts +4 -0
  35. package/dist/src/modules/v4/tvl/tvl.model.d.ts +1 -1
  36. package/dist/tsconfig.package.tsbuildinfo +1 -1
  37. package/package.json +1 -1
@@ -7364,6 +7364,7 @@ export namespace Prisma {
7364
7364
 
7365
7365
  export type UserComputedValueMinAggregateOutputType = {
7366
7366
  id: number | null
7367
+ stringId: string | null
7367
7368
  campaignId: string | null
7368
7369
  address: string | null
7369
7370
  reason: string | null
@@ -7372,6 +7373,7 @@ export namespace Prisma {
7372
7373
 
7373
7374
  export type UserComputedValueMaxAggregateOutputType = {
7374
7375
  id: number | null
7376
+ stringId: string | null
7375
7377
  campaignId: string | null
7376
7378
  address: string | null
7377
7379
  reason: string | null
@@ -7380,6 +7382,7 @@ export namespace Prisma {
7380
7382
 
7381
7383
  export type UserComputedValueCountAggregateOutputType = {
7382
7384
  id: number
7385
+ stringId: number
7383
7386
  campaignId: number
7384
7387
  address: number
7385
7388
  reason: number
@@ -7400,6 +7403,7 @@ export namespace Prisma {
7400
7403
 
7401
7404
  export type UserComputedValueMinAggregateInputType = {
7402
7405
  id?: true
7406
+ stringId?: true
7403
7407
  campaignId?: true
7404
7408
  address?: true
7405
7409
  reason?: true
@@ -7408,6 +7412,7 @@ export namespace Prisma {
7408
7412
 
7409
7413
  export type UserComputedValueMaxAggregateInputType = {
7410
7414
  id?: true
7415
+ stringId?: true
7411
7416
  campaignId?: true
7412
7417
  address?: true
7413
7418
  reason?: true
@@ -7416,6 +7421,7 @@ export namespace Prisma {
7416
7421
 
7417
7422
  export type UserComputedValueCountAggregateInputType = {
7418
7423
  id?: true
7424
+ stringId?: true
7419
7425
  campaignId?: true
7420
7426
  address?: true
7421
7427
  reason?: true
@@ -7511,6 +7517,7 @@ export namespace Prisma {
7511
7517
 
7512
7518
  export type UserComputedValueGroupByOutputType = {
7513
7519
  id: number
7520
+ stringId: string
7514
7521
  campaignId: string
7515
7522
  address: string
7516
7523
  reason: string
@@ -7538,6 +7545,7 @@ export namespace Prisma {
7538
7545
 
7539
7546
  export type UserComputedValueSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
7540
7547
  id?: boolean
7548
+ stringId?: boolean
7541
7549
  campaignId?: boolean
7542
7550
  address?: boolean
7543
7551
  reason?: boolean
@@ -7548,6 +7556,7 @@ export namespace Prisma {
7548
7556
 
7549
7557
  export type UserComputedValueSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
7550
7558
  id?: boolean
7559
+ stringId?: boolean
7551
7560
  campaignId?: boolean
7552
7561
  address?: boolean
7553
7562
  reason?: boolean
@@ -7558,6 +7567,7 @@ export namespace Prisma {
7558
7567
 
7559
7568
  export type UserComputedValueSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
7560
7569
  id?: boolean
7570
+ stringId?: boolean
7561
7571
  campaignId?: boolean
7562
7572
  address?: boolean
7563
7573
  reason?: boolean
@@ -7568,13 +7578,14 @@ export namespace Prisma {
7568
7578
 
7569
7579
  export type UserComputedValueSelectScalar = {
7570
7580
  id?: boolean
7581
+ stringId?: boolean
7571
7582
  campaignId?: boolean
7572
7583
  address?: boolean
7573
7584
  reason?: boolean
7574
7585
  boost?: boolean
7575
7586
  }
7576
7587
 
7577
- export type UserComputedValueOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "campaignId" | "address" | "reason" | "boost", ExtArgs["result"]["userComputedValue"]>
7588
+ export type UserComputedValueOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "stringId" | "campaignId" | "address" | "reason" | "boost", ExtArgs["result"]["userComputedValue"]>
7578
7589
  export type UserComputedValueInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
7579
7590
  Campaign?: boolean | CampaignDefaultArgs<ExtArgs>
7580
7591
  User?: boolean | UserComputedValue$UserArgs<ExtArgs>
@@ -7596,6 +7607,7 @@ export namespace Prisma {
7596
7607
  }
7597
7608
  scalars: $Extensions.GetPayloadResult<{
7598
7609
  id: number
7610
+ stringId: string
7599
7611
  campaignId: string
7600
7612
  address: string
7601
7613
  reason: string
@@ -8026,6 +8038,7 @@ export namespace Prisma {
8026
8038
  */
8027
8039
  interface UserComputedValueFieldRefs {
8028
8040
  readonly id: FieldRef<"UserComputedValue", 'Int'>
8041
+ readonly stringId: FieldRef<"UserComputedValue", 'String'>
8029
8042
  readonly campaignId: FieldRef<"UserComputedValue", 'String'>
8030
8043
  readonly address: FieldRef<"UserComputedValue", 'String'>
8031
8044
  readonly reason: FieldRef<"UserComputedValue", 'String'>
@@ -15898,6 +15911,7 @@ export namespace Prisma {
15898
15911
 
15899
15912
  export type AprBreakdownMinAggregateOutputType = {
15900
15913
  id: number | null
15914
+ uuid: string | null
15901
15915
  identifier: string | null
15902
15916
  type: $Enums.AprType | null
15903
15917
  value: number | null
@@ -15906,6 +15920,7 @@ export namespace Prisma {
15906
15920
 
15907
15921
  export type AprBreakdownMaxAggregateOutputType = {
15908
15922
  id: number | null
15923
+ uuid: string | null
15909
15924
  identifier: string | null
15910
15925
  type: $Enums.AprType | null
15911
15926
  value: number | null
@@ -15914,6 +15929,7 @@ export namespace Prisma {
15914
15929
 
15915
15930
  export type AprBreakdownCountAggregateOutputType = {
15916
15931
  id: number
15932
+ uuid: number
15917
15933
  identifier: number
15918
15934
  type: number
15919
15935
  value: number
@@ -15934,6 +15950,7 @@ export namespace Prisma {
15934
15950
 
15935
15951
  export type AprBreakdownMinAggregateInputType = {
15936
15952
  id?: true
15953
+ uuid?: true
15937
15954
  identifier?: true
15938
15955
  type?: true
15939
15956
  value?: true
@@ -15942,6 +15959,7 @@ export namespace Prisma {
15942
15959
 
15943
15960
  export type AprBreakdownMaxAggregateInputType = {
15944
15961
  id?: true
15962
+ uuid?: true
15945
15963
  identifier?: true
15946
15964
  type?: true
15947
15965
  value?: true
@@ -15950,6 +15968,7 @@ export namespace Prisma {
15950
15968
 
15951
15969
  export type AprBreakdownCountAggregateInputType = {
15952
15970
  id?: true
15971
+ uuid?: true
15953
15972
  identifier?: true
15954
15973
  type?: true
15955
15974
  value?: true
@@ -16045,6 +16064,7 @@ export namespace Prisma {
16045
16064
 
16046
16065
  export type AprBreakdownGroupByOutputType = {
16047
16066
  id: number
16067
+ uuid: string
16048
16068
  identifier: string
16049
16069
  type: $Enums.AprType
16050
16070
  value: number
@@ -16072,6 +16092,7 @@ export namespace Prisma {
16072
16092
 
16073
16093
  export type AprBreakdownSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
16074
16094
  id?: boolean
16095
+ uuid?: boolean
16075
16096
  identifier?: boolean
16076
16097
  type?: boolean
16077
16098
  value?: boolean
@@ -16081,6 +16102,7 @@ export namespace Prisma {
16081
16102
 
16082
16103
  export type AprBreakdownSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
16083
16104
  id?: boolean
16105
+ uuid?: boolean
16084
16106
  identifier?: boolean
16085
16107
  type?: boolean
16086
16108
  value?: boolean
@@ -16090,6 +16112,7 @@ export namespace Prisma {
16090
16112
 
16091
16113
  export type AprBreakdownSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
16092
16114
  id?: boolean
16115
+ uuid?: boolean
16093
16116
  identifier?: boolean
16094
16117
  type?: boolean
16095
16118
  value?: boolean
@@ -16099,13 +16122,14 @@ export namespace Prisma {
16099
16122
 
16100
16123
  export type AprBreakdownSelectScalar = {
16101
16124
  id?: boolean
16125
+ uuid?: boolean
16102
16126
  identifier?: boolean
16103
16127
  type?: boolean
16104
16128
  value?: boolean
16105
16129
  aprRecordId?: boolean
16106
16130
  }
16107
16131
 
16108
- export type AprBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "identifier" | "type" | "value" | "aprRecordId", ExtArgs["result"]["aprBreakdown"]>
16132
+ export type AprBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "uuid" | "identifier" | "type" | "value" | "aprRecordId", ExtArgs["result"]["aprBreakdown"]>
16109
16133
  export type AprBreakdownInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
16110
16134
  AprRecord?: boolean | AprRecordDefaultArgs<ExtArgs>
16111
16135
  }
@@ -16123,6 +16147,7 @@ export namespace Prisma {
16123
16147
  }
16124
16148
  scalars: $Extensions.GetPayloadResult<{
16125
16149
  id: number
16150
+ uuid: string
16126
16151
  identifier: string
16127
16152
  type: $Enums.AprType
16128
16153
  value: number
@@ -16552,6 +16577,7 @@ export namespace Prisma {
16552
16577
  */
16553
16578
  interface AprBreakdownFieldRefs {
16554
16579
  readonly id: FieldRef<"AprBreakdown", 'Int'>
16580
+ readonly uuid: FieldRef<"AprBreakdown", 'String'>
16555
16581
  readonly identifier: FieldRef<"AprBreakdown", 'String'>
16556
16582
  readonly type: FieldRef<"AprBreakdown", 'AprType'>
16557
16583
  readonly value: FieldRef<"AprBreakdown", 'Float'>
@@ -18125,6 +18151,7 @@ export namespace Prisma {
18125
18151
 
18126
18152
  export type TVLBreakdownMinAggregateOutputType = {
18127
18153
  id: number | null
18154
+ uuid: string | null
18128
18155
  identifier: string | null
18129
18156
  type: $Enums.TvlType | null
18130
18157
  value: number | null
@@ -18133,6 +18160,7 @@ export namespace Prisma {
18133
18160
 
18134
18161
  export type TVLBreakdownMaxAggregateOutputType = {
18135
18162
  id: number | null
18163
+ uuid: string | null
18136
18164
  identifier: string | null
18137
18165
  type: $Enums.TvlType | null
18138
18166
  value: number | null
@@ -18141,6 +18169,7 @@ export namespace Prisma {
18141
18169
 
18142
18170
  export type TVLBreakdownCountAggregateOutputType = {
18143
18171
  id: number
18172
+ uuid: number
18144
18173
  identifier: number
18145
18174
  type: number
18146
18175
  value: number
@@ -18161,6 +18190,7 @@ export namespace Prisma {
18161
18190
 
18162
18191
  export type TVLBreakdownMinAggregateInputType = {
18163
18192
  id?: true
18193
+ uuid?: true
18164
18194
  identifier?: true
18165
18195
  type?: true
18166
18196
  value?: true
@@ -18169,6 +18199,7 @@ export namespace Prisma {
18169
18199
 
18170
18200
  export type TVLBreakdownMaxAggregateInputType = {
18171
18201
  id?: true
18202
+ uuid?: true
18172
18203
  identifier?: true
18173
18204
  type?: true
18174
18205
  value?: true
@@ -18177,6 +18208,7 @@ export namespace Prisma {
18177
18208
 
18178
18209
  export type TVLBreakdownCountAggregateInputType = {
18179
18210
  id?: true
18211
+ uuid?: true
18180
18212
  identifier?: true
18181
18213
  type?: true
18182
18214
  value?: true
@@ -18272,6 +18304,7 @@ export namespace Prisma {
18272
18304
 
18273
18305
  export type TVLBreakdownGroupByOutputType = {
18274
18306
  id: number
18307
+ uuid: string
18275
18308
  identifier: string
18276
18309
  type: $Enums.TvlType
18277
18310
  value: number
@@ -18299,6 +18332,7 @@ export namespace Prisma {
18299
18332
 
18300
18333
  export type TVLBreakdownSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
18301
18334
  id?: boolean
18335
+ uuid?: boolean
18302
18336
  identifier?: boolean
18303
18337
  type?: boolean
18304
18338
  value?: boolean
@@ -18308,6 +18342,7 @@ export namespace Prisma {
18308
18342
 
18309
18343
  export type TVLBreakdownSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
18310
18344
  id?: boolean
18345
+ uuid?: boolean
18311
18346
  identifier?: boolean
18312
18347
  type?: boolean
18313
18348
  value?: boolean
@@ -18317,6 +18352,7 @@ export namespace Prisma {
18317
18352
 
18318
18353
  export type TVLBreakdownSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
18319
18354
  id?: boolean
18355
+ uuid?: boolean
18320
18356
  identifier?: boolean
18321
18357
  type?: boolean
18322
18358
  value?: boolean
@@ -18326,13 +18362,14 @@ export namespace Prisma {
18326
18362
 
18327
18363
  export type TVLBreakdownSelectScalar = {
18328
18364
  id?: boolean
18365
+ uuid?: boolean
18329
18366
  identifier?: boolean
18330
18367
  type?: boolean
18331
18368
  value?: boolean
18332
18369
  tvlRecordId?: boolean
18333
18370
  }
18334
18371
 
18335
- export type TVLBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "identifier" | "type" | "value" | "tvlRecordId", ExtArgs["result"]["tVLBreakdown"]>
18372
+ export type TVLBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "uuid" | "identifier" | "type" | "value" | "tvlRecordId", ExtArgs["result"]["tVLBreakdown"]>
18336
18373
  export type TVLBreakdownInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
18337
18374
  TvlRecord?: boolean | TVLRecordDefaultArgs<ExtArgs>
18338
18375
  }
@@ -18350,6 +18387,7 @@ export namespace Prisma {
18350
18387
  }
18351
18388
  scalars: $Extensions.GetPayloadResult<{
18352
18389
  id: number
18390
+ uuid: string
18353
18391
  identifier: string
18354
18392
  type: $Enums.TvlType
18355
18393
  value: number
@@ -18779,6 +18817,7 @@ export namespace Prisma {
18779
18817
  */
18780
18818
  interface TVLBreakdownFieldRefs {
18781
18819
  readonly id: FieldRef<"TVLBreakdown", 'Int'>
18820
+ readonly uuid: FieldRef<"TVLBreakdown", 'String'>
18782
18821
  readonly identifier: FieldRef<"TVLBreakdown", 'String'>
18783
18822
  readonly type: FieldRef<"TVLBreakdown", 'TvlType'>
18784
18823
  readonly value: FieldRef<"TVLBreakdown", 'Float'>
@@ -20352,6 +20391,7 @@ export namespace Prisma {
20352
20391
 
20353
20392
  export type DailyRewardsBreakdownMinAggregateOutputType = {
20354
20393
  id: number | null
20394
+ uuid: string | null
20355
20395
  value: number | null
20356
20396
  campaignId: string | null
20357
20397
  dailyRewardsRecordId: string | null
@@ -20359,6 +20399,7 @@ export namespace Prisma {
20359
20399
 
20360
20400
  export type DailyRewardsBreakdownMaxAggregateOutputType = {
20361
20401
  id: number | null
20402
+ uuid: string | null
20362
20403
  value: number | null
20363
20404
  campaignId: string | null
20364
20405
  dailyRewardsRecordId: string | null
@@ -20366,6 +20407,7 @@ export namespace Prisma {
20366
20407
 
20367
20408
  export type DailyRewardsBreakdownCountAggregateOutputType = {
20368
20409
  id: number
20410
+ uuid: number
20369
20411
  value: number
20370
20412
  campaignId: number
20371
20413
  dailyRewardsRecordId: number
@@ -20385,6 +20427,7 @@ export namespace Prisma {
20385
20427
 
20386
20428
  export type DailyRewardsBreakdownMinAggregateInputType = {
20387
20429
  id?: true
20430
+ uuid?: true
20388
20431
  value?: true
20389
20432
  campaignId?: true
20390
20433
  dailyRewardsRecordId?: true
@@ -20392,6 +20435,7 @@ export namespace Prisma {
20392
20435
 
20393
20436
  export type DailyRewardsBreakdownMaxAggregateInputType = {
20394
20437
  id?: true
20438
+ uuid?: true
20395
20439
  value?: true
20396
20440
  campaignId?: true
20397
20441
  dailyRewardsRecordId?: true
@@ -20399,6 +20443,7 @@ export namespace Prisma {
20399
20443
 
20400
20444
  export type DailyRewardsBreakdownCountAggregateInputType = {
20401
20445
  id?: true
20446
+ uuid?: true
20402
20447
  value?: true
20403
20448
  campaignId?: true
20404
20449
  dailyRewardsRecordId?: true
@@ -20493,6 +20538,7 @@ export namespace Prisma {
20493
20538
 
20494
20539
  export type DailyRewardsBreakdownGroupByOutputType = {
20495
20540
  id: number
20541
+ uuid: string
20496
20542
  value: number
20497
20543
  campaignId: string
20498
20544
  dailyRewardsRecordId: string
@@ -20519,6 +20565,7 @@ export namespace Prisma {
20519
20565
 
20520
20566
  export type DailyRewardsBreakdownSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
20521
20567
  id?: boolean
20568
+ uuid?: boolean
20522
20569
  value?: boolean
20523
20570
  campaignId?: boolean
20524
20571
  dailyRewardsRecordId?: boolean
@@ -20528,6 +20575,7 @@ export namespace Prisma {
20528
20575
 
20529
20576
  export type DailyRewardsBreakdownSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
20530
20577
  id?: boolean
20578
+ uuid?: boolean
20531
20579
  value?: boolean
20532
20580
  campaignId?: boolean
20533
20581
  dailyRewardsRecordId?: boolean
@@ -20537,6 +20585,7 @@ export namespace Prisma {
20537
20585
 
20538
20586
  export type DailyRewardsBreakdownSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
20539
20587
  id?: boolean
20588
+ uuid?: boolean
20540
20589
  value?: boolean
20541
20590
  campaignId?: boolean
20542
20591
  dailyRewardsRecordId?: boolean
@@ -20546,12 +20595,13 @@ export namespace Prisma {
20546
20595
 
20547
20596
  export type DailyRewardsBreakdownSelectScalar = {
20548
20597
  id?: boolean
20598
+ uuid?: boolean
20549
20599
  value?: boolean
20550
20600
  campaignId?: boolean
20551
20601
  dailyRewardsRecordId?: boolean
20552
20602
  }
20553
20603
 
20554
- export type DailyRewardsBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "value" | "campaignId" | "dailyRewardsRecordId", ExtArgs["result"]["dailyRewardsBreakdown"]>
20604
+ export type DailyRewardsBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "uuid" | "value" | "campaignId" | "dailyRewardsRecordId", ExtArgs["result"]["dailyRewardsBreakdown"]>
20555
20605
  export type DailyRewardsBreakdownInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20556
20606
  Campaign?: boolean | CampaignDefaultArgs<ExtArgs>
20557
20607
  DailyRewardsRecord?: boolean | DailyRewardsRecordDefaultArgs<ExtArgs>
@@ -20573,6 +20623,7 @@ export namespace Prisma {
20573
20623
  }
20574
20624
  scalars: $Extensions.GetPayloadResult<{
20575
20625
  id: number
20626
+ uuid: string
20576
20627
  value: number
20577
20628
  campaignId: string
20578
20629
  dailyRewardsRecordId: string
@@ -21002,6 +21053,7 @@ export namespace Prisma {
21002
21053
  */
21003
21054
  interface DailyRewardsBreakdownFieldRefs {
21004
21055
  readonly id: FieldRef<"DailyRewardsBreakdown", 'Int'>
21056
+ readonly uuid: FieldRef<"DailyRewardsBreakdown", 'String'>
21005
21057
  readonly value: FieldRef<"DailyRewardsBreakdown", 'Float'>
21006
21058
  readonly campaignId: FieldRef<"DailyRewardsBreakdown", 'String'>
21007
21059
  readonly dailyRewardsRecordId: FieldRef<"DailyRewardsBreakdown", 'String'>
@@ -24816,11 +24868,12 @@ export namespace Prisma {
24816
24868
  }
24817
24869
 
24818
24870
  export type RewardBreakdownSumAggregateOutputType = {
24819
- id: bigint | null
24871
+ id: number | null
24820
24872
  }
24821
24873
 
24822
24874
  export type RewardBreakdownMinAggregateOutputType = {
24823
- id: bigint | null
24875
+ id: number | null
24876
+ stringId: string | null
24824
24877
  protocolId: string | null
24825
24878
  reason: string | null
24826
24879
  amount: string | null
@@ -24831,7 +24884,8 @@ export namespace Prisma {
24831
24884
  }
24832
24885
 
24833
24886
  export type RewardBreakdownMaxAggregateOutputType = {
24834
- id: bigint | null
24887
+ id: number | null
24888
+ stringId: string | null
24835
24889
  protocolId: string | null
24836
24890
  reason: string | null
24837
24891
  amount: string | null
@@ -24843,6 +24897,7 @@ export namespace Prisma {
24843
24897
 
24844
24898
  export type RewardBreakdownCountAggregateOutputType = {
24845
24899
  id: number
24900
+ stringId: number
24846
24901
  protocolId: number
24847
24902
  reason: number
24848
24903
  amount: number
@@ -24864,6 +24919,7 @@ export namespace Prisma {
24864
24919
 
24865
24920
  export type RewardBreakdownMinAggregateInputType = {
24866
24921
  id?: true
24922
+ stringId?: true
24867
24923
  protocolId?: true
24868
24924
  reason?: true
24869
24925
  amount?: true
@@ -24875,6 +24931,7 @@ export namespace Prisma {
24875
24931
 
24876
24932
  export type RewardBreakdownMaxAggregateInputType = {
24877
24933
  id?: true
24934
+ stringId?: true
24878
24935
  protocolId?: true
24879
24936
  reason?: true
24880
24937
  amount?: true
@@ -24886,6 +24943,7 @@ export namespace Prisma {
24886
24943
 
24887
24944
  export type RewardBreakdownCountAggregateInputType = {
24888
24945
  id?: true
24946
+ stringId?: true
24889
24947
  protocolId?: true
24890
24948
  reason?: true
24891
24949
  amount?: true
@@ -24983,7 +25041,8 @@ export namespace Prisma {
24983
25041
  }
24984
25042
 
24985
25043
  export type RewardBreakdownGroupByOutputType = {
24986
- id: bigint
25044
+ id: number
25045
+ stringId: string
24987
25046
  protocolId: string | null
24988
25047
  reason: string
24989
25048
  amount: string
@@ -25014,6 +25073,7 @@ export namespace Prisma {
25014
25073
 
25015
25074
  export type RewardBreakdownSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
25016
25075
  id?: boolean
25076
+ stringId?: boolean
25017
25077
  protocolId?: boolean
25018
25078
  reason?: boolean
25019
25079
  amount?: boolean
@@ -25028,6 +25088,7 @@ export namespace Prisma {
25028
25088
 
25029
25089
  export type RewardBreakdownSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
25030
25090
  id?: boolean
25091
+ stringId?: boolean
25031
25092
  protocolId?: boolean
25032
25093
  reason?: boolean
25033
25094
  amount?: boolean
@@ -25042,6 +25103,7 @@ export namespace Prisma {
25042
25103
 
25043
25104
  export type RewardBreakdownSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
25044
25105
  id?: boolean
25106
+ stringId?: boolean
25045
25107
  protocolId?: boolean
25046
25108
  reason?: boolean
25047
25109
  amount?: boolean
@@ -25056,6 +25118,7 @@ export namespace Prisma {
25056
25118
 
25057
25119
  export type RewardBreakdownSelectScalar = {
25058
25120
  id?: boolean
25121
+ stringId?: boolean
25059
25122
  protocolId?: boolean
25060
25123
  reason?: boolean
25061
25124
  amount?: boolean
@@ -25065,7 +25128,7 @@ export namespace Prisma {
25065
25128
  campaignId?: boolean
25066
25129
  }
25067
25130
 
25068
- export type RewardBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "protocolId" | "reason" | "amount" | "claimed" | "pending" | "rewardId" | "campaignId", ExtArgs["result"]["rewardBreakdown"]>
25131
+ export type RewardBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "stringId" | "protocolId" | "reason" | "amount" | "claimed" | "pending" | "rewardId" | "campaignId", ExtArgs["result"]["rewardBreakdown"]>
25069
25132
  export type RewardBreakdownInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
25070
25133
  Protocol?: boolean | RewardBreakdown$ProtocolArgs<ExtArgs>
25071
25134
  Reward?: boolean | RewardDefaultArgs<ExtArgs>
@@ -25090,7 +25153,8 @@ export namespace Prisma {
25090
25153
  Campaign: Prisma.$CampaignPayload<ExtArgs>
25091
25154
  }
25092
25155
  scalars: $Extensions.GetPayloadResult<{
25093
- id: bigint
25156
+ id: number
25157
+ stringId: string
25094
25158
  protocolId: string | null
25095
25159
  reason: string
25096
25160
  amount: string
@@ -25524,7 +25588,8 @@ export namespace Prisma {
25524
25588
  * Fields of the RewardBreakdown model
25525
25589
  */
25526
25590
  interface RewardBreakdownFieldRefs {
25527
- readonly id: FieldRef<"RewardBreakdown", 'BigInt'>
25591
+ readonly id: FieldRef<"RewardBreakdown", 'Int'>
25592
+ readonly stringId: FieldRef<"RewardBreakdown", 'String'>
25528
25593
  readonly protocolId: FieldRef<"RewardBreakdown", 'String'>
25529
25594
  readonly reason: FieldRef<"RewardBreakdown", 'String'>
25530
25595
  readonly amount: FieldRef<"RewardBreakdown", 'String'>
@@ -31560,6 +31625,7 @@ export namespace Prisma {
31560
31625
 
31561
31626
  export const UserComputedValueScalarFieldEnum: {
31562
31627
  id: 'id',
31628
+ stringId: 'stringId',
31563
31629
  campaignId: 'campaignId',
31564
31630
  address: 'address',
31565
31631
  reason: 'reason',
@@ -31650,6 +31716,7 @@ export namespace Prisma {
31650
31716
 
31651
31717
  export const AprBreakdownScalarFieldEnum: {
31652
31718
  id: 'id',
31719
+ uuid: 'uuid',
31653
31720
  identifier: 'identifier',
31654
31721
  type: 'type',
31655
31722
  value: 'value',
@@ -31671,6 +31738,7 @@ export namespace Prisma {
31671
31738
 
31672
31739
  export const TVLBreakdownScalarFieldEnum: {
31673
31740
  id: 'id',
31741
+ uuid: 'uuid',
31674
31742
  identifier: 'identifier',
31675
31743
  type: 'type',
31676
31744
  value: 'value',
@@ -31692,6 +31760,7 @@ export namespace Prisma {
31692
31760
 
31693
31761
  export const DailyRewardsBreakdownScalarFieldEnum: {
31694
31762
  id: 'id',
31763
+ uuid: 'uuid',
31695
31764
  value: 'value',
31696
31765
  campaignId: 'campaignId',
31697
31766
  dailyRewardsRecordId: 'dailyRewardsRecordId'
@@ -31734,6 +31803,7 @@ export namespace Prisma {
31734
31803
 
31735
31804
  export const RewardBreakdownScalarFieldEnum: {
31736
31805
  id: 'id',
31806
+ stringId: 'stringId',
31737
31807
  protocolId: 'protocolId',
31738
31808
  reason: 'reason',
31739
31809
  amount: 'amount',
@@ -31884,6 +31954,7 @@ export namespace Prisma {
31884
31954
 
31885
31955
 
31886
31956
  export const UserComputedValueOrderByRelevanceFieldEnum: {
31957
+ stringId: 'stringId',
31887
31958
  campaignId: 'campaignId',
31888
31959
  address: 'address',
31889
31960
  reason: 'reason'
@@ -31954,6 +32025,7 @@ export namespace Prisma {
31954
32025
 
31955
32026
 
31956
32027
  export const AprBreakdownOrderByRelevanceFieldEnum: {
32028
+ uuid: 'uuid',
31957
32029
  identifier: 'identifier',
31958
32030
  aprRecordId: 'aprRecordId'
31959
32031
  };
@@ -31970,6 +32042,7 @@ export namespace Prisma {
31970
32042
 
31971
32043
 
31972
32044
  export const TVLBreakdownOrderByRelevanceFieldEnum: {
32045
+ uuid: 'uuid',
31973
32046
  identifier: 'identifier',
31974
32047
  tvlRecordId: 'tvlRecordId'
31975
32048
  };
@@ -31986,6 +32059,7 @@ export namespace Prisma {
31986
32059
 
31987
32060
 
31988
32061
  export const DailyRewardsBreakdownOrderByRelevanceFieldEnum: {
32062
+ uuid: 'uuid',
31989
32063
  campaignId: 'campaignId',
31990
32064
  dailyRewardsRecordId: 'dailyRewardsRecordId'
31991
32065
  };
@@ -32026,6 +32100,7 @@ export namespace Prisma {
32026
32100
 
32027
32101
 
32028
32102
  export const RewardBreakdownOrderByRelevanceFieldEnum: {
32103
+ stringId: 'stringId',
32029
32104
  protocolId: 'protocolId',
32030
32105
  reason: 'reason',
32031
32106
  amount: 'amount',
@@ -32558,6 +32633,7 @@ export namespace Prisma {
32558
32633
  OR?: UserComputedValueWhereInput[]
32559
32634
  NOT?: UserComputedValueWhereInput | UserComputedValueWhereInput[]
32560
32635
  id?: IntFilter<"UserComputedValue"> | number
32636
+ stringId?: StringFilter<"UserComputedValue"> | string
32561
32637
  campaignId?: StringFilter<"UserComputedValue"> | string
32562
32638
  address?: StringFilter<"UserComputedValue"> | string
32563
32639
  reason?: StringFilter<"UserComputedValue"> | string
@@ -32568,6 +32644,7 @@ export namespace Prisma {
32568
32644
 
32569
32645
  export type UserComputedValueOrderByWithRelationInput = {
32570
32646
  id?: SortOrder
32647
+ stringId?: SortOrder
32571
32648
  campaignId?: SortOrder
32572
32649
  address?: SortOrder
32573
32650
  reason?: SortOrder
@@ -32583,6 +32660,7 @@ export namespace Prisma {
32583
32660
  AND?: UserComputedValueWhereInput | UserComputedValueWhereInput[]
32584
32661
  OR?: UserComputedValueWhereInput[]
32585
32662
  NOT?: UserComputedValueWhereInput | UserComputedValueWhereInput[]
32663
+ stringId?: StringFilter<"UserComputedValue"> | string
32586
32664
  campaignId?: StringFilter<"UserComputedValue"> | string
32587
32665
  address?: StringFilter<"UserComputedValue"> | string
32588
32666
  reason?: StringFilter<"UserComputedValue"> | string
@@ -32593,6 +32671,7 @@ export namespace Prisma {
32593
32671
 
32594
32672
  export type UserComputedValueOrderByWithAggregationInput = {
32595
32673
  id?: SortOrder
32674
+ stringId?: SortOrder
32596
32675
  campaignId?: SortOrder
32597
32676
  address?: SortOrder
32598
32677
  reason?: SortOrder
@@ -32609,6 +32688,7 @@ export namespace Prisma {
32609
32688
  OR?: UserComputedValueScalarWhereWithAggregatesInput[]
32610
32689
  NOT?: UserComputedValueScalarWhereWithAggregatesInput | UserComputedValueScalarWhereWithAggregatesInput[]
32611
32690
  id?: IntWithAggregatesFilter<"UserComputedValue"> | number
32691
+ stringId?: StringWithAggregatesFilter<"UserComputedValue"> | string
32612
32692
  campaignId?: StringWithAggregatesFilter<"UserComputedValue"> | string
32613
32693
  address?: StringWithAggregatesFilter<"UserComputedValue"> | string
32614
32694
  reason?: StringWithAggregatesFilter<"UserComputedValue"> | string
@@ -33101,6 +33181,7 @@ export namespace Prisma {
33101
33181
  OR?: AprBreakdownWhereInput[]
33102
33182
  NOT?: AprBreakdownWhereInput | AprBreakdownWhereInput[]
33103
33183
  id?: IntFilter<"AprBreakdown"> | number
33184
+ uuid?: UuidFilter<"AprBreakdown"> | string
33104
33185
  identifier?: StringFilter<"AprBreakdown"> | string
33105
33186
  type?: EnumAprTypeFilter<"AprBreakdown"> | $Enums.AprType
33106
33187
  value?: FloatFilter<"AprBreakdown"> | number
@@ -33110,6 +33191,7 @@ export namespace Prisma {
33110
33191
 
33111
33192
  export type AprBreakdownOrderByWithRelationInput = {
33112
33193
  id?: SortOrder
33194
+ uuid?: SortOrder
33113
33195
  identifier?: SortOrder
33114
33196
  type?: SortOrder
33115
33197
  value?: SortOrder
@@ -33123,6 +33205,7 @@ export namespace Prisma {
33123
33205
  AND?: AprBreakdownWhereInput | AprBreakdownWhereInput[]
33124
33206
  OR?: AprBreakdownWhereInput[]
33125
33207
  NOT?: AprBreakdownWhereInput | AprBreakdownWhereInput[]
33208
+ uuid?: UuidFilter<"AprBreakdown"> | string
33126
33209
  identifier?: StringFilter<"AprBreakdown"> | string
33127
33210
  type?: EnumAprTypeFilter<"AprBreakdown"> | $Enums.AprType
33128
33211
  value?: FloatFilter<"AprBreakdown"> | number
@@ -33132,6 +33215,7 @@ export namespace Prisma {
33132
33215
 
33133
33216
  export type AprBreakdownOrderByWithAggregationInput = {
33134
33217
  id?: SortOrder
33218
+ uuid?: SortOrder
33135
33219
  identifier?: SortOrder
33136
33220
  type?: SortOrder
33137
33221
  value?: SortOrder
@@ -33148,6 +33232,7 @@ export namespace Prisma {
33148
33232
  OR?: AprBreakdownScalarWhereWithAggregatesInput[]
33149
33233
  NOT?: AprBreakdownScalarWhereWithAggregatesInput | AprBreakdownScalarWhereWithAggregatesInput[]
33150
33234
  id?: IntWithAggregatesFilter<"AprBreakdown"> | number
33235
+ uuid?: UuidWithAggregatesFilter<"AprBreakdown"> | string
33151
33236
  identifier?: StringWithAggregatesFilter<"AprBreakdown"> | string
33152
33237
  type?: EnumAprTypeWithAggregatesFilter<"AprBreakdown"> | $Enums.AprType
33153
33238
  value?: FloatWithAggregatesFilter<"AprBreakdown"> | number
@@ -33216,6 +33301,7 @@ export namespace Prisma {
33216
33301
  OR?: TVLBreakdownWhereInput[]
33217
33302
  NOT?: TVLBreakdownWhereInput | TVLBreakdownWhereInput[]
33218
33303
  id?: IntFilter<"TVLBreakdown"> | number
33304
+ uuid?: UuidFilter<"TVLBreakdown"> | string
33219
33305
  identifier?: StringFilter<"TVLBreakdown"> | string
33220
33306
  type?: EnumTvlTypeFilter<"TVLBreakdown"> | $Enums.TvlType
33221
33307
  value?: FloatFilter<"TVLBreakdown"> | number
@@ -33225,6 +33311,7 @@ export namespace Prisma {
33225
33311
 
33226
33312
  export type TVLBreakdownOrderByWithRelationInput = {
33227
33313
  id?: SortOrder
33314
+ uuid?: SortOrder
33228
33315
  identifier?: SortOrder
33229
33316
  type?: SortOrder
33230
33317
  value?: SortOrder
@@ -33238,6 +33325,7 @@ export namespace Prisma {
33238
33325
  AND?: TVLBreakdownWhereInput | TVLBreakdownWhereInput[]
33239
33326
  OR?: TVLBreakdownWhereInput[]
33240
33327
  NOT?: TVLBreakdownWhereInput | TVLBreakdownWhereInput[]
33328
+ uuid?: UuidFilter<"TVLBreakdown"> | string
33241
33329
  identifier?: StringFilter<"TVLBreakdown"> | string
33242
33330
  type?: EnumTvlTypeFilter<"TVLBreakdown"> | $Enums.TvlType
33243
33331
  value?: FloatFilter<"TVLBreakdown"> | number
@@ -33247,6 +33335,7 @@ export namespace Prisma {
33247
33335
 
33248
33336
  export type TVLBreakdownOrderByWithAggregationInput = {
33249
33337
  id?: SortOrder
33338
+ uuid?: SortOrder
33250
33339
  identifier?: SortOrder
33251
33340
  type?: SortOrder
33252
33341
  value?: SortOrder
@@ -33263,6 +33352,7 @@ export namespace Prisma {
33263
33352
  OR?: TVLBreakdownScalarWhereWithAggregatesInput[]
33264
33353
  NOT?: TVLBreakdownScalarWhereWithAggregatesInput | TVLBreakdownScalarWhereWithAggregatesInput[]
33265
33354
  id?: IntWithAggregatesFilter<"TVLBreakdown"> | number
33355
+ uuid?: UuidWithAggregatesFilter<"TVLBreakdown"> | string
33266
33356
  identifier?: StringWithAggregatesFilter<"TVLBreakdown"> | string
33267
33357
  type?: EnumTvlTypeWithAggregatesFilter<"TVLBreakdown"> | $Enums.TvlType
33268
33358
  value?: FloatWithAggregatesFilter<"TVLBreakdown"> | number
@@ -33331,6 +33421,7 @@ export namespace Prisma {
33331
33421
  OR?: DailyRewardsBreakdownWhereInput[]
33332
33422
  NOT?: DailyRewardsBreakdownWhereInput | DailyRewardsBreakdownWhereInput[]
33333
33423
  id?: IntFilter<"DailyRewardsBreakdown"> | number
33424
+ uuid?: UuidFilter<"DailyRewardsBreakdown"> | string
33334
33425
  value?: FloatFilter<"DailyRewardsBreakdown"> | number
33335
33426
  campaignId?: StringFilter<"DailyRewardsBreakdown"> | string
33336
33427
  dailyRewardsRecordId?: StringFilter<"DailyRewardsBreakdown"> | string
@@ -33340,6 +33431,7 @@ export namespace Prisma {
33340
33431
 
33341
33432
  export type DailyRewardsBreakdownOrderByWithRelationInput = {
33342
33433
  id?: SortOrder
33434
+ uuid?: SortOrder
33343
33435
  value?: SortOrder
33344
33436
  campaignId?: SortOrder
33345
33437
  dailyRewardsRecordId?: SortOrder
@@ -33353,6 +33445,7 @@ export namespace Prisma {
33353
33445
  AND?: DailyRewardsBreakdownWhereInput | DailyRewardsBreakdownWhereInput[]
33354
33446
  OR?: DailyRewardsBreakdownWhereInput[]
33355
33447
  NOT?: DailyRewardsBreakdownWhereInput | DailyRewardsBreakdownWhereInput[]
33448
+ uuid?: UuidFilter<"DailyRewardsBreakdown"> | string
33356
33449
  value?: FloatFilter<"DailyRewardsBreakdown"> | number
33357
33450
  campaignId?: StringFilter<"DailyRewardsBreakdown"> | string
33358
33451
  dailyRewardsRecordId?: StringFilter<"DailyRewardsBreakdown"> | string
@@ -33362,6 +33455,7 @@ export namespace Prisma {
33362
33455
 
33363
33456
  export type DailyRewardsBreakdownOrderByWithAggregationInput = {
33364
33457
  id?: SortOrder
33458
+ uuid?: SortOrder
33365
33459
  value?: SortOrder
33366
33460
  campaignId?: SortOrder
33367
33461
  dailyRewardsRecordId?: SortOrder
@@ -33377,6 +33471,7 @@ export namespace Prisma {
33377
33471
  OR?: DailyRewardsBreakdownScalarWhereWithAggregatesInput[]
33378
33472
  NOT?: DailyRewardsBreakdownScalarWhereWithAggregatesInput | DailyRewardsBreakdownScalarWhereWithAggregatesInput[]
33379
33473
  id?: IntWithAggregatesFilter<"DailyRewardsBreakdown"> | number
33474
+ uuid?: UuidWithAggregatesFilter<"DailyRewardsBreakdown"> | string
33380
33475
  value?: FloatWithAggregatesFilter<"DailyRewardsBreakdown"> | number
33381
33476
  campaignId?: StringWithAggregatesFilter<"DailyRewardsBreakdown"> | string
33382
33477
  dailyRewardsRecordId?: StringWithAggregatesFilter<"DailyRewardsBreakdown"> | string
@@ -33571,7 +33666,8 @@ export namespace Prisma {
33571
33666
  AND?: RewardBreakdownWhereInput | RewardBreakdownWhereInput[]
33572
33667
  OR?: RewardBreakdownWhereInput[]
33573
33668
  NOT?: RewardBreakdownWhereInput | RewardBreakdownWhereInput[]
33574
- id?: BigIntFilter<"RewardBreakdown"> | bigint | number
33669
+ id?: IntFilter<"RewardBreakdown"> | number
33670
+ stringId?: StringFilter<"RewardBreakdown"> | string
33575
33671
  protocolId?: StringNullableFilter<"RewardBreakdown"> | string | null
33576
33672
  reason?: StringFilter<"RewardBreakdown"> | string
33577
33673
  amount?: StringFilter<"RewardBreakdown"> | string
@@ -33586,6 +33682,7 @@ export namespace Prisma {
33586
33682
 
33587
33683
  export type RewardBreakdownOrderByWithRelationInput = {
33588
33684
  id?: SortOrder
33685
+ stringId?: SortOrder
33589
33686
  protocolId?: SortOrderInput | SortOrder
33590
33687
  reason?: SortOrder
33591
33688
  amount?: SortOrder
@@ -33600,11 +33697,12 @@ export namespace Prisma {
33600
33697
  }
33601
33698
 
33602
33699
  export type RewardBreakdownWhereUniqueInput = Prisma.AtLeast<{
33603
- id?: bigint | number
33700
+ id?: number
33604
33701
  rewardId_campaignId_reason?: RewardBreakdownRewardIdCampaignIdReasonCompoundUniqueInput
33605
33702
  AND?: RewardBreakdownWhereInput | RewardBreakdownWhereInput[]
33606
33703
  OR?: RewardBreakdownWhereInput[]
33607
33704
  NOT?: RewardBreakdownWhereInput | RewardBreakdownWhereInput[]
33705
+ stringId?: StringFilter<"RewardBreakdown"> | string
33608
33706
  protocolId?: StringNullableFilter<"RewardBreakdown"> | string | null
33609
33707
  reason?: StringFilter<"RewardBreakdown"> | string
33610
33708
  amount?: StringFilter<"RewardBreakdown"> | string
@@ -33619,6 +33717,7 @@ export namespace Prisma {
33619
33717
 
33620
33718
  export type RewardBreakdownOrderByWithAggregationInput = {
33621
33719
  id?: SortOrder
33720
+ stringId?: SortOrder
33622
33721
  protocolId?: SortOrderInput | SortOrder
33623
33722
  reason?: SortOrder
33624
33723
  amount?: SortOrder
@@ -33637,7 +33736,8 @@ export namespace Prisma {
33637
33736
  AND?: RewardBreakdownScalarWhereWithAggregatesInput | RewardBreakdownScalarWhereWithAggregatesInput[]
33638
33737
  OR?: RewardBreakdownScalarWhereWithAggregatesInput[]
33639
33738
  NOT?: RewardBreakdownScalarWhereWithAggregatesInput | RewardBreakdownScalarWhereWithAggregatesInput[]
33640
- id?: BigIntWithAggregatesFilter<"RewardBreakdown"> | bigint | number
33739
+ id?: IntWithAggregatesFilter<"RewardBreakdown"> | number
33740
+ stringId?: StringWithAggregatesFilter<"RewardBreakdown"> | string
33641
33741
  protocolId?: StringNullableWithAggregatesFilter<"RewardBreakdown"> | string | null
33642
33742
  reason?: StringWithAggregatesFilter<"RewardBreakdown"> | string
33643
33743
  amount?: StringWithAggregatesFilter<"RewardBreakdown"> | string
@@ -34228,6 +34328,7 @@ export namespace Prisma {
34228
34328
  }
34229
34329
 
34230
34330
  export type UserComputedValueCreateInput = {
34331
+ stringId?: string
34231
34332
  reason: string
34232
34333
  boost?: number | null
34233
34334
  Campaign: CampaignCreateNestedOneWithoutUserComputedValueInput
@@ -34236,6 +34337,7 @@ export namespace Prisma {
34236
34337
 
34237
34338
  export type UserComputedValueUncheckedCreateInput = {
34238
34339
  id?: number
34340
+ stringId?: string
34239
34341
  campaignId: string
34240
34342
  address: string
34241
34343
  reason: string
@@ -34243,6 +34345,7 @@ export namespace Prisma {
34243
34345
  }
34244
34346
 
34245
34347
  export type UserComputedValueUpdateInput = {
34348
+ stringId?: StringFieldUpdateOperationsInput | string
34246
34349
  reason?: StringFieldUpdateOperationsInput | string
34247
34350
  boost?: NullableFloatFieldUpdateOperationsInput | number | null
34248
34351
  Campaign?: CampaignUpdateOneRequiredWithoutUserComputedValueNestedInput
@@ -34251,6 +34354,7 @@ export namespace Prisma {
34251
34354
 
34252
34355
  export type UserComputedValueUncheckedUpdateInput = {
34253
34356
  id?: IntFieldUpdateOperationsInput | number
34357
+ stringId?: StringFieldUpdateOperationsInput | string
34254
34358
  campaignId?: StringFieldUpdateOperationsInput | string
34255
34359
  address?: StringFieldUpdateOperationsInput | string
34256
34360
  reason?: StringFieldUpdateOperationsInput | string
@@ -34259,6 +34363,7 @@ export namespace Prisma {
34259
34363
 
34260
34364
  export type UserComputedValueCreateManyInput = {
34261
34365
  id?: number
34366
+ stringId?: string
34262
34367
  campaignId: string
34263
34368
  address: string
34264
34369
  reason: string
@@ -34266,12 +34371,14 @@ export namespace Prisma {
34266
34371
  }
34267
34372
 
34268
34373
  export type UserComputedValueUpdateManyMutationInput = {
34374
+ stringId?: StringFieldUpdateOperationsInput | string
34269
34375
  reason?: StringFieldUpdateOperationsInput | string
34270
34376
  boost?: NullableFloatFieldUpdateOperationsInput | number | null
34271
34377
  }
34272
34378
 
34273
34379
  export type UserComputedValueUncheckedUpdateManyInput = {
34274
34380
  id?: IntFieldUpdateOperationsInput | number
34381
+ stringId?: StringFieldUpdateOperationsInput | string
34275
34382
  campaignId?: StringFieldUpdateOperationsInput | string
34276
34383
  address?: StringFieldUpdateOperationsInput | string
34277
34384
  reason?: StringFieldUpdateOperationsInput | string
@@ -34793,6 +34900,7 @@ export namespace Prisma {
34793
34900
  }
34794
34901
 
34795
34902
  export type AprBreakdownCreateInput = {
34903
+ uuid?: string
34796
34904
  identifier: string
34797
34905
  type: $Enums.AprType
34798
34906
  value: number
@@ -34801,6 +34909,7 @@ export namespace Prisma {
34801
34909
 
34802
34910
  export type AprBreakdownUncheckedCreateInput = {
34803
34911
  id?: number
34912
+ uuid?: string
34804
34913
  identifier: string
34805
34914
  type: $Enums.AprType
34806
34915
  value: number
@@ -34808,6 +34917,7 @@ export namespace Prisma {
34808
34917
  }
34809
34918
 
34810
34919
  export type AprBreakdownUpdateInput = {
34920
+ uuid?: StringFieldUpdateOperationsInput | string
34811
34921
  identifier?: StringFieldUpdateOperationsInput | string
34812
34922
  type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
34813
34923
  value?: FloatFieldUpdateOperationsInput | number
@@ -34816,6 +34926,7 @@ export namespace Prisma {
34816
34926
 
34817
34927
  export type AprBreakdownUncheckedUpdateInput = {
34818
34928
  id?: IntFieldUpdateOperationsInput | number
34929
+ uuid?: StringFieldUpdateOperationsInput | string
34819
34930
  identifier?: StringFieldUpdateOperationsInput | string
34820
34931
  type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
34821
34932
  value?: FloatFieldUpdateOperationsInput | number
@@ -34824,6 +34935,7 @@ export namespace Prisma {
34824
34935
 
34825
34936
  export type AprBreakdownCreateManyInput = {
34826
34937
  id?: number
34938
+ uuid?: string
34827
34939
  identifier: string
34828
34940
  type: $Enums.AprType
34829
34941
  value: number
@@ -34831,6 +34943,7 @@ export namespace Prisma {
34831
34943
  }
34832
34944
 
34833
34945
  export type AprBreakdownUpdateManyMutationInput = {
34946
+ uuid?: StringFieldUpdateOperationsInput | string
34834
34947
  identifier?: StringFieldUpdateOperationsInput | string
34835
34948
  type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
34836
34949
  value?: FloatFieldUpdateOperationsInput | number
@@ -34838,6 +34951,7 @@ export namespace Prisma {
34838
34951
 
34839
34952
  export type AprBreakdownUncheckedUpdateManyInput = {
34840
34953
  id?: IntFieldUpdateOperationsInput | number
34954
+ uuid?: StringFieldUpdateOperationsInput | string
34841
34955
  identifier?: StringFieldUpdateOperationsInput | string
34842
34956
  type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
34843
34957
  value?: FloatFieldUpdateOperationsInput | number
@@ -34897,6 +35011,7 @@ export namespace Prisma {
34897
35011
  }
34898
35012
 
34899
35013
  export type TVLBreakdownCreateInput = {
35014
+ uuid?: string
34900
35015
  identifier: string
34901
35016
  type: $Enums.TvlType
34902
35017
  value: number
@@ -34905,6 +35020,7 @@ export namespace Prisma {
34905
35020
 
34906
35021
  export type TVLBreakdownUncheckedCreateInput = {
34907
35022
  id?: number
35023
+ uuid?: string
34908
35024
  identifier: string
34909
35025
  type: $Enums.TvlType
34910
35026
  value: number
@@ -34912,6 +35028,7 @@ export namespace Prisma {
34912
35028
  }
34913
35029
 
34914
35030
  export type TVLBreakdownUpdateInput = {
35031
+ uuid?: StringFieldUpdateOperationsInput | string
34915
35032
  identifier?: StringFieldUpdateOperationsInput | string
34916
35033
  type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
34917
35034
  value?: FloatFieldUpdateOperationsInput | number
@@ -34920,6 +35037,7 @@ export namespace Prisma {
34920
35037
 
34921
35038
  export type TVLBreakdownUncheckedUpdateInput = {
34922
35039
  id?: IntFieldUpdateOperationsInput | number
35040
+ uuid?: StringFieldUpdateOperationsInput | string
34923
35041
  identifier?: StringFieldUpdateOperationsInput | string
34924
35042
  type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
34925
35043
  value?: FloatFieldUpdateOperationsInput | number
@@ -34928,6 +35046,7 @@ export namespace Prisma {
34928
35046
 
34929
35047
  export type TVLBreakdownCreateManyInput = {
34930
35048
  id?: number
35049
+ uuid?: string
34931
35050
  identifier: string
34932
35051
  type: $Enums.TvlType
34933
35052
  value: number
@@ -34935,6 +35054,7 @@ export namespace Prisma {
34935
35054
  }
34936
35055
 
34937
35056
  export type TVLBreakdownUpdateManyMutationInput = {
35057
+ uuid?: StringFieldUpdateOperationsInput | string
34938
35058
  identifier?: StringFieldUpdateOperationsInput | string
34939
35059
  type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
34940
35060
  value?: FloatFieldUpdateOperationsInput | number
@@ -34942,6 +35062,7 @@ export namespace Prisma {
34942
35062
 
34943
35063
  export type TVLBreakdownUncheckedUpdateManyInput = {
34944
35064
  id?: IntFieldUpdateOperationsInput | number
35065
+ uuid?: StringFieldUpdateOperationsInput | string
34945
35066
  identifier?: StringFieldUpdateOperationsInput | string
34946
35067
  type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
34947
35068
  value?: FloatFieldUpdateOperationsInput | number
@@ -35001,6 +35122,7 @@ export namespace Prisma {
35001
35122
  }
35002
35123
 
35003
35124
  export type DailyRewardsBreakdownCreateInput = {
35125
+ uuid?: string
35004
35126
  value: number
35005
35127
  Campaign: CampaignCreateNestedOneWithoutDailyRewardsBreakdownInput
35006
35128
  DailyRewardsRecord: DailyRewardsRecordCreateNestedOneWithoutDailyRewardsBreakdownInput
@@ -35008,12 +35130,14 @@ export namespace Prisma {
35008
35130
 
35009
35131
  export type DailyRewardsBreakdownUncheckedCreateInput = {
35010
35132
  id?: number
35133
+ uuid?: string
35011
35134
  value: number
35012
35135
  campaignId: string
35013
35136
  dailyRewardsRecordId: string
35014
35137
  }
35015
35138
 
35016
35139
  export type DailyRewardsBreakdownUpdateInput = {
35140
+ uuid?: StringFieldUpdateOperationsInput | string
35017
35141
  value?: FloatFieldUpdateOperationsInput | number
35018
35142
  Campaign?: CampaignUpdateOneRequiredWithoutDailyRewardsBreakdownNestedInput
35019
35143
  DailyRewardsRecord?: DailyRewardsRecordUpdateOneRequiredWithoutDailyRewardsBreakdownNestedInput
@@ -35021,6 +35145,7 @@ export namespace Prisma {
35021
35145
 
35022
35146
  export type DailyRewardsBreakdownUncheckedUpdateInput = {
35023
35147
  id?: IntFieldUpdateOperationsInput | number
35148
+ uuid?: StringFieldUpdateOperationsInput | string
35024
35149
  value?: FloatFieldUpdateOperationsInput | number
35025
35150
  campaignId?: StringFieldUpdateOperationsInput | string
35026
35151
  dailyRewardsRecordId?: StringFieldUpdateOperationsInput | string
@@ -35028,17 +35153,20 @@ export namespace Prisma {
35028
35153
 
35029
35154
  export type DailyRewardsBreakdownCreateManyInput = {
35030
35155
  id?: number
35156
+ uuid?: string
35031
35157
  value: number
35032
35158
  campaignId: string
35033
35159
  dailyRewardsRecordId: string
35034
35160
  }
35035
35161
 
35036
35162
  export type DailyRewardsBreakdownUpdateManyMutationInput = {
35163
+ uuid?: StringFieldUpdateOperationsInput | string
35037
35164
  value?: FloatFieldUpdateOperationsInput | number
35038
35165
  }
35039
35166
 
35040
35167
  export type DailyRewardsBreakdownUncheckedUpdateManyInput = {
35041
35168
  id?: IntFieldUpdateOperationsInput | number
35169
+ uuid?: StringFieldUpdateOperationsInput | string
35042
35170
  value?: FloatFieldUpdateOperationsInput | number
35043
35171
  campaignId?: StringFieldUpdateOperationsInput | string
35044
35172
  dailyRewardsRecordId?: StringFieldUpdateOperationsInput | string
@@ -35226,7 +35354,7 @@ export namespace Prisma {
35226
35354
  }
35227
35355
 
35228
35356
  export type RewardBreakdownCreateInput = {
35229
- id?: bigint | number
35357
+ stringId?: string
35230
35358
  reason: string
35231
35359
  amount: string
35232
35360
  claimed: string
@@ -35237,7 +35365,8 @@ export namespace Prisma {
35237
35365
  }
35238
35366
 
35239
35367
  export type RewardBreakdownUncheckedCreateInput = {
35240
- id?: bigint | number
35368
+ id?: number
35369
+ stringId?: string
35241
35370
  protocolId?: string | null
35242
35371
  reason: string
35243
35372
  amount: string
@@ -35248,7 +35377,7 @@ export namespace Prisma {
35248
35377
  }
35249
35378
 
35250
35379
  export type RewardBreakdownUpdateInput = {
35251
- id?: BigIntFieldUpdateOperationsInput | bigint | number
35380
+ stringId?: StringFieldUpdateOperationsInput | string
35252
35381
  reason?: StringFieldUpdateOperationsInput | string
35253
35382
  amount?: StringFieldUpdateOperationsInput | string
35254
35383
  claimed?: StringFieldUpdateOperationsInput | string
@@ -35259,7 +35388,8 @@ export namespace Prisma {
35259
35388
  }
35260
35389
 
35261
35390
  export type RewardBreakdownUncheckedUpdateInput = {
35262
- id?: BigIntFieldUpdateOperationsInput | bigint | number
35391
+ id?: IntFieldUpdateOperationsInput | number
35392
+ stringId?: StringFieldUpdateOperationsInput | string
35263
35393
  protocolId?: NullableStringFieldUpdateOperationsInput | string | null
35264
35394
  reason?: StringFieldUpdateOperationsInput | string
35265
35395
  amount?: StringFieldUpdateOperationsInput | string
@@ -35270,7 +35400,8 @@ export namespace Prisma {
35270
35400
  }
35271
35401
 
35272
35402
  export type RewardBreakdownCreateManyInput = {
35273
- id?: bigint | number
35403
+ id?: number
35404
+ stringId?: string
35274
35405
  protocolId?: string | null
35275
35406
  reason: string
35276
35407
  amount: string
@@ -35281,7 +35412,7 @@ export namespace Prisma {
35281
35412
  }
35282
35413
 
35283
35414
  export type RewardBreakdownUpdateManyMutationInput = {
35284
- id?: BigIntFieldUpdateOperationsInput | bigint | number
35415
+ stringId?: StringFieldUpdateOperationsInput | string
35285
35416
  reason?: StringFieldUpdateOperationsInput | string
35286
35417
  amount?: StringFieldUpdateOperationsInput | string
35287
35418
  claimed?: StringFieldUpdateOperationsInput | string
@@ -35289,7 +35420,8 @@ export namespace Prisma {
35289
35420
  }
35290
35421
 
35291
35422
  export type RewardBreakdownUncheckedUpdateManyInput = {
35292
- id?: BigIntFieldUpdateOperationsInput | bigint | number
35423
+ id?: IntFieldUpdateOperationsInput | number
35424
+ stringId?: StringFieldUpdateOperationsInput | string
35293
35425
  protocolId?: NullableStringFieldUpdateOperationsInput | string | null
35294
35426
  reason?: StringFieldUpdateOperationsInput | string
35295
35427
  amount?: StringFieldUpdateOperationsInput | string
@@ -36112,6 +36244,7 @@ export namespace Prisma {
36112
36244
 
36113
36245
  export type UserComputedValueCountOrderByAggregateInput = {
36114
36246
  id?: SortOrder
36247
+ stringId?: SortOrder
36115
36248
  campaignId?: SortOrder
36116
36249
  address?: SortOrder
36117
36250
  reason?: SortOrder
@@ -36125,6 +36258,7 @@ export namespace Prisma {
36125
36258
 
36126
36259
  export type UserComputedValueMaxOrderByAggregateInput = {
36127
36260
  id?: SortOrder
36261
+ stringId?: SortOrder
36128
36262
  campaignId?: SortOrder
36129
36263
  address?: SortOrder
36130
36264
  reason?: SortOrder
@@ -36133,6 +36267,7 @@ export namespace Prisma {
36133
36267
 
36134
36268
  export type UserComputedValueMinOrderByAggregateInput = {
36135
36269
  id?: SortOrder
36270
+ stringId?: SortOrder
36136
36271
  campaignId?: SortOrder
36137
36272
  address?: SortOrder
36138
36273
  reason?: SortOrder
@@ -36701,6 +36836,19 @@ export namespace Prisma {
36701
36836
  cumulated?: SortOrder
36702
36837
  }
36703
36838
 
36839
+ export type UuidFilter<$PrismaModel = never> = {
36840
+ equals?: string | StringFieldRefInput<$PrismaModel>
36841
+ in?: string[] | ListStringFieldRefInput<$PrismaModel>
36842
+ notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
36843
+ lt?: string | StringFieldRefInput<$PrismaModel>
36844
+ lte?: string | StringFieldRefInput<$PrismaModel>
36845
+ gt?: string | StringFieldRefInput<$PrismaModel>
36846
+ gte?: string | StringFieldRefInput<$PrismaModel>
36847
+ search?: string
36848
+ mode?: QueryMode
36849
+ not?: NestedUuidFilter<$PrismaModel> | string
36850
+ }
36851
+
36704
36852
  export type EnumAprTypeFilter<$PrismaModel = never> = {
36705
36853
  equals?: $Enums.AprType | EnumAprTypeFieldRefInput<$PrismaModel>
36706
36854
  in?: $Enums.AprType[] | ListEnumAprTypeFieldRefInput<$PrismaModel>
@@ -36721,6 +36869,7 @@ export namespace Prisma {
36721
36869
 
36722
36870
  export type AprBreakdownCountOrderByAggregateInput = {
36723
36871
  id?: SortOrder
36872
+ uuid?: SortOrder
36724
36873
  identifier?: SortOrder
36725
36874
  type?: SortOrder
36726
36875
  value?: SortOrder
@@ -36734,6 +36883,7 @@ export namespace Prisma {
36734
36883
 
36735
36884
  export type AprBreakdownMaxOrderByAggregateInput = {
36736
36885
  id?: SortOrder
36886
+ uuid?: SortOrder
36737
36887
  identifier?: SortOrder
36738
36888
  type?: SortOrder
36739
36889
  value?: SortOrder
@@ -36742,6 +36892,7 @@ export namespace Prisma {
36742
36892
 
36743
36893
  export type AprBreakdownMinOrderByAggregateInput = {
36744
36894
  id?: SortOrder
36895
+ uuid?: SortOrder
36745
36896
  identifier?: SortOrder
36746
36897
  type?: SortOrder
36747
36898
  value?: SortOrder
@@ -36753,6 +36904,22 @@ export namespace Prisma {
36753
36904
  value?: SortOrder
36754
36905
  }
36755
36906
 
36907
+ export type UuidWithAggregatesFilter<$PrismaModel = never> = {
36908
+ equals?: string | StringFieldRefInput<$PrismaModel>
36909
+ in?: string[] | ListStringFieldRefInput<$PrismaModel>
36910
+ notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
36911
+ lt?: string | StringFieldRefInput<$PrismaModel>
36912
+ lte?: string | StringFieldRefInput<$PrismaModel>
36913
+ gt?: string | StringFieldRefInput<$PrismaModel>
36914
+ gte?: string | StringFieldRefInput<$PrismaModel>
36915
+ search?: string
36916
+ mode?: QueryMode
36917
+ not?: NestedUuidWithAggregatesFilter<$PrismaModel> | string
36918
+ _count?: NestedIntFilter<$PrismaModel>
36919
+ _min?: NestedStringFilter<$PrismaModel>
36920
+ _max?: NestedStringFilter<$PrismaModel>
36921
+ }
36922
+
36756
36923
  export type EnumAprTypeWithAggregatesFilter<$PrismaModel = never> = {
36757
36924
  equals?: $Enums.AprType | EnumAprTypeFieldRefInput<$PrismaModel>
36758
36925
  in?: $Enums.AprType[] | ListEnumAprTypeFieldRefInput<$PrismaModel>
@@ -36835,6 +37002,7 @@ export namespace Prisma {
36835
37002
 
36836
37003
  export type TVLBreakdownCountOrderByAggregateInput = {
36837
37004
  id?: SortOrder
37005
+ uuid?: SortOrder
36838
37006
  identifier?: SortOrder
36839
37007
  type?: SortOrder
36840
37008
  value?: SortOrder
@@ -36848,6 +37016,7 @@ export namespace Prisma {
36848
37016
 
36849
37017
  export type TVLBreakdownMaxOrderByAggregateInput = {
36850
37018
  id?: SortOrder
37019
+ uuid?: SortOrder
36851
37020
  identifier?: SortOrder
36852
37021
  type?: SortOrder
36853
37022
  value?: SortOrder
@@ -36856,6 +37025,7 @@ export namespace Prisma {
36856
37025
 
36857
37026
  export type TVLBreakdownMinOrderByAggregateInput = {
36858
37027
  id?: SortOrder
37028
+ uuid?: SortOrder
36859
37029
  identifier?: SortOrder
36860
37030
  type?: SortOrder
36861
37031
  value?: SortOrder
@@ -36932,6 +37102,7 @@ export namespace Prisma {
36932
37102
 
36933
37103
  export type DailyRewardsBreakdownCountOrderByAggregateInput = {
36934
37104
  id?: SortOrder
37105
+ uuid?: SortOrder
36935
37106
  value?: SortOrder
36936
37107
  campaignId?: SortOrder
36937
37108
  dailyRewardsRecordId?: SortOrder
@@ -36944,6 +37115,7 @@ export namespace Prisma {
36944
37115
 
36945
37116
  export type DailyRewardsBreakdownMaxOrderByAggregateInput = {
36946
37117
  id?: SortOrder
37118
+ uuid?: SortOrder
36947
37119
  value?: SortOrder
36948
37120
  campaignId?: SortOrder
36949
37121
  dailyRewardsRecordId?: SortOrder
@@ -36951,6 +37123,7 @@ export namespace Prisma {
36951
37123
 
36952
37124
  export type DailyRewardsBreakdownMinOrderByAggregateInput = {
36953
37125
  id?: SortOrder
37126
+ uuid?: SortOrder
36954
37127
  value?: SortOrder
36955
37128
  campaignId?: SortOrder
36956
37129
  dailyRewardsRecordId?: SortOrder
@@ -37089,6 +37262,7 @@ export namespace Prisma {
37089
37262
 
37090
37263
  export type RewardBreakdownCountOrderByAggregateInput = {
37091
37264
  id?: SortOrder
37265
+ stringId?: SortOrder
37092
37266
  protocolId?: SortOrder
37093
37267
  reason?: SortOrder
37094
37268
  amount?: SortOrder
@@ -37104,6 +37278,7 @@ export namespace Prisma {
37104
37278
 
37105
37279
  export type RewardBreakdownMaxOrderByAggregateInput = {
37106
37280
  id?: SortOrder
37281
+ stringId?: SortOrder
37107
37282
  protocolId?: SortOrder
37108
37283
  reason?: SortOrder
37109
37284
  amount?: SortOrder
@@ -37115,6 +37290,7 @@ export namespace Prisma {
37115
37290
 
37116
37291
  export type RewardBreakdownMinOrderByAggregateInput = {
37117
37292
  id?: SortOrder
37293
+ stringId?: SortOrder
37118
37294
  protocolId?: SortOrder
37119
37295
  reason?: SortOrder
37120
37296
  amount?: SortOrder
@@ -39909,6 +40085,18 @@ export namespace Prisma {
39909
40085
  _max?: NestedBoolFilter<$PrismaModel>
39910
40086
  }
39911
40087
 
40088
+ export type NestedUuidFilter<$PrismaModel = never> = {
40089
+ equals?: string | StringFieldRefInput<$PrismaModel>
40090
+ in?: string[] | ListStringFieldRefInput<$PrismaModel>
40091
+ notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
40092
+ lt?: string | StringFieldRefInput<$PrismaModel>
40093
+ lte?: string | StringFieldRefInput<$PrismaModel>
40094
+ gt?: string | StringFieldRefInput<$PrismaModel>
40095
+ gte?: string | StringFieldRefInput<$PrismaModel>
40096
+ search?: string
40097
+ not?: NestedUuidFilter<$PrismaModel> | string
40098
+ }
40099
+
39912
40100
  export type NestedEnumAprTypeFilter<$PrismaModel = never> = {
39913
40101
  equals?: $Enums.AprType | EnumAprTypeFieldRefInput<$PrismaModel>
39914
40102
  in?: $Enums.AprType[] | ListEnumAprTypeFieldRefInput<$PrismaModel>
@@ -39916,6 +40104,21 @@ export namespace Prisma {
39916
40104
  not?: NestedEnumAprTypeFilter<$PrismaModel> | $Enums.AprType
39917
40105
  }
39918
40106
 
40107
+ export type NestedUuidWithAggregatesFilter<$PrismaModel = never> = {
40108
+ equals?: string | StringFieldRefInput<$PrismaModel>
40109
+ in?: string[] | ListStringFieldRefInput<$PrismaModel>
40110
+ notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
40111
+ lt?: string | StringFieldRefInput<$PrismaModel>
40112
+ lte?: string | StringFieldRefInput<$PrismaModel>
40113
+ gt?: string | StringFieldRefInput<$PrismaModel>
40114
+ gte?: string | StringFieldRefInput<$PrismaModel>
40115
+ search?: string
40116
+ not?: NestedUuidWithAggregatesFilter<$PrismaModel> | string
40117
+ _count?: NestedIntFilter<$PrismaModel>
40118
+ _min?: NestedStringFilter<$PrismaModel>
40119
+ _max?: NestedStringFilter<$PrismaModel>
40120
+ }
40121
+
39919
40122
  export type NestedEnumAprTypeWithAggregatesFilter<$PrismaModel = never> = {
39920
40123
  equals?: $Enums.AprType | EnumAprTypeFieldRefInput<$PrismaModel>
39921
40124
  in?: $Enums.AprType[] | ListEnumAprTypeFieldRefInput<$PrismaModel>
@@ -40154,7 +40357,7 @@ export namespace Prisma {
40154
40357
  }
40155
40358
 
40156
40359
  export type RewardBreakdownCreateWithoutCampaignInput = {
40157
- id?: bigint | number
40360
+ stringId?: string
40158
40361
  reason: string
40159
40362
  amount: string
40160
40363
  claimed: string
@@ -40164,7 +40367,8 @@ export namespace Prisma {
40164
40367
  }
40165
40368
 
40166
40369
  export type RewardBreakdownUncheckedCreateWithoutCampaignInput = {
40167
- id?: bigint | number
40370
+ id?: number
40371
+ stringId?: string
40168
40372
  protocolId?: string | null
40169
40373
  reason: string
40170
40374
  amount: string
@@ -40184,12 +40388,14 @@ export namespace Prisma {
40184
40388
  }
40185
40389
 
40186
40390
  export type DailyRewardsBreakdownCreateWithoutCampaignInput = {
40391
+ uuid?: string
40187
40392
  value: number
40188
40393
  DailyRewardsRecord: DailyRewardsRecordCreateNestedOneWithoutDailyRewardsBreakdownInput
40189
40394
  }
40190
40395
 
40191
40396
  export type DailyRewardsBreakdownUncheckedCreateWithoutCampaignInput = {
40192
40397
  id?: number
40398
+ uuid?: string
40193
40399
  value: number
40194
40400
  dailyRewardsRecordId: string
40195
40401
  }
@@ -40276,6 +40482,7 @@ export namespace Prisma {
40276
40482
  }
40277
40483
 
40278
40484
  export type UserComputedValueCreateWithoutCampaignInput = {
40485
+ stringId?: string
40279
40486
  reason: string
40280
40487
  boost?: number | null
40281
40488
  User?: UserCreateNestedOneWithoutUserComputedValueInput
@@ -40283,6 +40490,7 @@ export namespace Prisma {
40283
40490
 
40284
40491
  export type UserComputedValueUncheckedCreateWithoutCampaignInput = {
40285
40492
  id?: number
40493
+ stringId?: string
40286
40494
  address: string
40287
40495
  reason: string
40288
40496
  boost?: number | null
@@ -40496,7 +40704,8 @@ export namespace Prisma {
40496
40704
  AND?: RewardBreakdownScalarWhereInput | RewardBreakdownScalarWhereInput[]
40497
40705
  OR?: RewardBreakdownScalarWhereInput[]
40498
40706
  NOT?: RewardBreakdownScalarWhereInput | RewardBreakdownScalarWhereInput[]
40499
- id?: BigIntFilter<"RewardBreakdown"> | bigint | number
40707
+ id?: IntFilter<"RewardBreakdown"> | number
40708
+ stringId?: StringFilter<"RewardBreakdown"> | string
40500
40709
  protocolId?: StringNullableFilter<"RewardBreakdown"> | string | null
40501
40710
  reason?: StringFilter<"RewardBreakdown"> | string
40502
40711
  amount?: StringFilter<"RewardBreakdown"> | string
@@ -40527,6 +40736,7 @@ export namespace Prisma {
40527
40736
  OR?: DailyRewardsBreakdownScalarWhereInput[]
40528
40737
  NOT?: DailyRewardsBreakdownScalarWhereInput | DailyRewardsBreakdownScalarWhereInput[]
40529
40738
  id?: IntFilter<"DailyRewardsBreakdown"> | number
40739
+ uuid?: UuidFilter<"DailyRewardsBreakdown"> | string
40530
40740
  value?: FloatFilter<"DailyRewardsBreakdown"> | number
40531
40741
  campaignId?: StringFilter<"DailyRewardsBreakdown"> | string
40532
40742
  dailyRewardsRecordId?: StringFilter<"DailyRewardsBreakdown"> | string
@@ -40636,6 +40846,7 @@ export namespace Prisma {
40636
40846
  OR?: UserComputedValueScalarWhereInput[]
40637
40847
  NOT?: UserComputedValueScalarWhereInput | UserComputedValueScalarWhereInput[]
40638
40848
  id?: IntFilter<"UserComputedValue"> | number
40849
+ stringId?: StringFilter<"UserComputedValue"> | string
40639
40850
  campaignId?: StringFilter<"UserComputedValue"> | string
40640
40851
  address?: StringFilter<"UserComputedValue"> | string
40641
40852
  reason?: StringFilter<"UserComputedValue"> | string
@@ -42189,7 +42400,7 @@ export namespace Prisma {
42189
42400
  }
42190
42401
 
42191
42402
  export type RewardBreakdownCreateWithoutProtocolInput = {
42192
- id?: bigint | number
42403
+ stringId?: string
42193
42404
  reason: string
42194
42405
  amount: string
42195
42406
  claimed: string
@@ -42199,7 +42410,8 @@ export namespace Prisma {
42199
42410
  }
42200
42411
 
42201
42412
  export type RewardBreakdownUncheckedCreateWithoutProtocolInput = {
42202
- id?: bigint | number
42413
+ id?: number
42414
+ stringId?: string
42203
42415
  reason: string
42204
42416
  amount: string
42205
42417
  claimed: string
@@ -42630,6 +42842,7 @@ export namespace Prisma {
42630
42842
  }
42631
42843
 
42632
42844
  export type AprBreakdownCreateWithoutAprRecordInput = {
42845
+ uuid?: string
42633
42846
  identifier: string
42634
42847
  type: $Enums.AprType
42635
42848
  value: number
@@ -42637,6 +42850,7 @@ export namespace Prisma {
42637
42850
 
42638
42851
  export type AprBreakdownUncheckedCreateWithoutAprRecordInput = {
42639
42852
  id?: number
42853
+ uuid?: string
42640
42854
  identifier: string
42641
42855
  type: $Enums.AprType
42642
42856
  value: number
@@ -42720,6 +42934,7 @@ export namespace Prisma {
42720
42934
  OR?: AprBreakdownScalarWhereInput[]
42721
42935
  NOT?: AprBreakdownScalarWhereInput | AprBreakdownScalarWhereInput[]
42722
42936
  id?: IntFilter<"AprBreakdown"> | number
42937
+ uuid?: UuidFilter<"AprBreakdown"> | string
42723
42938
  identifier?: StringFilter<"AprBreakdown"> | string
42724
42939
  type?: EnumAprTypeFilter<"AprBreakdown"> | $Enums.AprType
42725
42940
  value?: FloatFilter<"AprBreakdown"> | number
@@ -42824,6 +43039,7 @@ export namespace Prisma {
42824
43039
  }
42825
43040
 
42826
43041
  export type TVLBreakdownCreateWithoutTvlRecordInput = {
43042
+ uuid?: string
42827
43043
  identifier: string
42828
43044
  type: $Enums.TvlType
42829
43045
  value: number
@@ -42831,6 +43047,7 @@ export namespace Prisma {
42831
43047
 
42832
43048
  export type TVLBreakdownUncheckedCreateWithoutTvlRecordInput = {
42833
43049
  id?: number
43050
+ uuid?: string
42834
43051
  identifier: string
42835
43052
  type: $Enums.TvlType
42836
43053
  value: number
@@ -42914,6 +43131,7 @@ export namespace Prisma {
42914
43131
  OR?: TVLBreakdownScalarWhereInput[]
42915
43132
  NOT?: TVLBreakdownScalarWhereInput | TVLBreakdownScalarWhereInput[]
42916
43133
  id?: IntFilter<"TVLBreakdown"> | number
43134
+ uuid?: UuidFilter<"TVLBreakdown"> | string
42917
43135
  identifier?: StringFilter<"TVLBreakdown"> | string
42918
43136
  type?: EnumTvlTypeFilter<"TVLBreakdown"> | $Enums.TvlType
42919
43137
  value?: FloatFilter<"TVLBreakdown"> | number
@@ -43018,12 +43236,14 @@ export namespace Prisma {
43018
43236
  }
43019
43237
 
43020
43238
  export type DailyRewardsBreakdownCreateWithoutDailyRewardsRecordInput = {
43239
+ uuid?: string
43021
43240
  value: number
43022
43241
  Campaign: CampaignCreateNestedOneWithoutDailyRewardsBreakdownInput
43023
43242
  }
43024
43243
 
43025
43244
  export type DailyRewardsBreakdownUncheckedCreateWithoutDailyRewardsRecordInput = {
43026
43245
  id?: number
43246
+ uuid?: string
43027
43247
  value: number
43028
43248
  campaignId: string
43029
43249
  }
@@ -43415,6 +43635,7 @@ export namespace Prisma {
43415
43635
  }
43416
43636
 
43417
43637
  export type UserComputedValueCreateWithoutUserInput = {
43638
+ stringId?: string
43418
43639
  reason: string
43419
43640
  boost?: number | null
43420
43641
  Campaign: CampaignCreateNestedOneWithoutUserComputedValueInput
@@ -43422,6 +43643,7 @@ export namespace Prisma {
43422
43643
 
43423
43644
  export type UserComputedValueUncheckedCreateWithoutUserInput = {
43424
43645
  id?: number
43646
+ stringId?: string
43425
43647
  campaignId: string
43426
43648
  reason: string
43427
43649
  boost?: number | null
@@ -43682,7 +43904,7 @@ export namespace Prisma {
43682
43904
  }
43683
43905
 
43684
43906
  export type RewardBreakdownCreateWithoutRewardInput = {
43685
- id?: bigint | number
43907
+ stringId?: string
43686
43908
  reason: string
43687
43909
  amount: string
43688
43910
  claimed: string
@@ -43692,7 +43914,8 @@ export namespace Prisma {
43692
43914
  }
43693
43915
 
43694
43916
  export type RewardBreakdownUncheckedCreateWithoutRewardInput = {
43695
- id?: bigint | number
43917
+ id?: number
43918
+ stringId?: string
43696
43919
  protocolId?: string | null
43697
43920
  reason: string
43698
43921
  amount: string
@@ -44553,7 +44776,8 @@ export namespace Prisma {
44553
44776
  }
44554
44777
 
44555
44778
  export type RewardBreakdownCreateManyCampaignInput = {
44556
- id?: bigint | number
44779
+ id?: number
44780
+ stringId?: string
44557
44781
  protocolId?: string | null
44558
44782
  reason: string
44559
44783
  amount: string
@@ -44564,6 +44788,7 @@ export namespace Prisma {
44564
44788
 
44565
44789
  export type DailyRewardsBreakdownCreateManyCampaignInput = {
44566
44790
  id?: number
44791
+ uuid?: string
44567
44792
  value: number
44568
44793
  dailyRewardsRecordId: string
44569
44794
  }
@@ -44584,13 +44809,14 @@ export namespace Prisma {
44584
44809
 
44585
44810
  export type UserComputedValueCreateManyCampaignInput = {
44586
44811
  id?: number
44812
+ stringId?: string
44587
44813
  address: string
44588
44814
  reason: string
44589
44815
  boost?: number | null
44590
44816
  }
44591
44817
 
44592
44818
  export type RewardBreakdownUpdateWithoutCampaignInput = {
44593
- id?: BigIntFieldUpdateOperationsInput | bigint | number
44819
+ stringId?: StringFieldUpdateOperationsInput | string
44594
44820
  reason?: StringFieldUpdateOperationsInput | string
44595
44821
  amount?: StringFieldUpdateOperationsInput | string
44596
44822
  claimed?: StringFieldUpdateOperationsInput | string
@@ -44600,7 +44826,8 @@ export namespace Prisma {
44600
44826
  }
44601
44827
 
44602
44828
  export type RewardBreakdownUncheckedUpdateWithoutCampaignInput = {
44603
- id?: BigIntFieldUpdateOperationsInput | bigint | number
44829
+ id?: IntFieldUpdateOperationsInput | number
44830
+ stringId?: StringFieldUpdateOperationsInput | string
44604
44831
  protocolId?: NullableStringFieldUpdateOperationsInput | string | null
44605
44832
  reason?: StringFieldUpdateOperationsInput | string
44606
44833
  amount?: StringFieldUpdateOperationsInput | string
@@ -44610,7 +44837,8 @@ export namespace Prisma {
44610
44837
  }
44611
44838
 
44612
44839
  export type RewardBreakdownUncheckedUpdateManyWithoutCampaignInput = {
44613
- id?: BigIntFieldUpdateOperationsInput | bigint | number
44840
+ id?: IntFieldUpdateOperationsInput | number
44841
+ stringId?: StringFieldUpdateOperationsInput | string
44614
44842
  protocolId?: NullableStringFieldUpdateOperationsInput | string | null
44615
44843
  reason?: StringFieldUpdateOperationsInput | string
44616
44844
  amount?: StringFieldUpdateOperationsInput | string
@@ -44620,18 +44848,21 @@ export namespace Prisma {
44620
44848
  }
44621
44849
 
44622
44850
  export type DailyRewardsBreakdownUpdateWithoutCampaignInput = {
44851
+ uuid?: StringFieldUpdateOperationsInput | string
44623
44852
  value?: FloatFieldUpdateOperationsInput | number
44624
44853
  DailyRewardsRecord?: DailyRewardsRecordUpdateOneRequiredWithoutDailyRewardsBreakdownNestedInput
44625
44854
  }
44626
44855
 
44627
44856
  export type DailyRewardsBreakdownUncheckedUpdateWithoutCampaignInput = {
44628
44857
  id?: IntFieldUpdateOperationsInput | number
44858
+ uuid?: StringFieldUpdateOperationsInput | string
44629
44859
  value?: FloatFieldUpdateOperationsInput | number
44630
44860
  dailyRewardsRecordId?: StringFieldUpdateOperationsInput | string
44631
44861
  }
44632
44862
 
44633
44863
  export type DailyRewardsBreakdownUncheckedUpdateManyWithoutCampaignInput = {
44634
44864
  id?: IntFieldUpdateOperationsInput | number
44865
+ uuid?: StringFieldUpdateOperationsInput | string
44635
44866
  value?: FloatFieldUpdateOperationsInput | number
44636
44867
  dailyRewardsRecordId?: StringFieldUpdateOperationsInput | string
44637
44868
  }
@@ -44679,6 +44910,7 @@ export namespace Prisma {
44679
44910
  }
44680
44911
 
44681
44912
  export type UserComputedValueUpdateWithoutCampaignInput = {
44913
+ stringId?: StringFieldUpdateOperationsInput | string
44682
44914
  reason?: StringFieldUpdateOperationsInput | string
44683
44915
  boost?: NullableFloatFieldUpdateOperationsInput | number | null
44684
44916
  User?: UserUpdateOneWithoutUserComputedValueNestedInput
@@ -44686,6 +44918,7 @@ export namespace Prisma {
44686
44918
 
44687
44919
  export type UserComputedValueUncheckedUpdateWithoutCampaignInput = {
44688
44920
  id?: IntFieldUpdateOperationsInput | number
44921
+ stringId?: StringFieldUpdateOperationsInput | string
44689
44922
  address?: StringFieldUpdateOperationsInput | string
44690
44923
  reason?: StringFieldUpdateOperationsInput | string
44691
44924
  boost?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -44693,6 +44926,7 @@ export namespace Prisma {
44693
44926
 
44694
44927
  export type UserComputedValueUncheckedUpdateManyWithoutCampaignInput = {
44695
44928
  id?: IntFieldUpdateOperationsInput | number
44929
+ stringId?: StringFieldUpdateOperationsInput | string
44696
44930
  address?: StringFieldUpdateOperationsInput | string
44697
44931
  reason?: StringFieldUpdateOperationsInput | string
44698
44932
  boost?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -45385,7 +45619,8 @@ export namespace Prisma {
45385
45619
  }
45386
45620
 
45387
45621
  export type RewardBreakdownCreateManyProtocolInput = {
45388
- id?: bigint | number
45622
+ id?: number
45623
+ stringId?: string
45389
45624
  reason: string
45390
45625
  amount: string
45391
45626
  claimed: string
@@ -45510,7 +45745,7 @@ export namespace Prisma {
45510
45745
  }
45511
45746
 
45512
45747
  export type RewardBreakdownUpdateWithoutProtocolInput = {
45513
- id?: BigIntFieldUpdateOperationsInput | bigint | number
45748
+ stringId?: StringFieldUpdateOperationsInput | string
45514
45749
  reason?: StringFieldUpdateOperationsInput | string
45515
45750
  amount?: StringFieldUpdateOperationsInput | string
45516
45751
  claimed?: StringFieldUpdateOperationsInput | string
@@ -45520,7 +45755,8 @@ export namespace Prisma {
45520
45755
  }
45521
45756
 
45522
45757
  export type RewardBreakdownUncheckedUpdateWithoutProtocolInput = {
45523
- id?: BigIntFieldUpdateOperationsInput | bigint | number
45758
+ id?: IntFieldUpdateOperationsInput | number
45759
+ stringId?: StringFieldUpdateOperationsInput | string
45524
45760
  reason?: StringFieldUpdateOperationsInput | string
45525
45761
  amount?: StringFieldUpdateOperationsInput | string
45526
45762
  claimed?: StringFieldUpdateOperationsInput | string
@@ -45530,7 +45766,8 @@ export namespace Prisma {
45530
45766
  }
45531
45767
 
45532
45768
  export type RewardBreakdownUncheckedUpdateManyWithoutProtocolInput = {
45533
- id?: BigIntFieldUpdateOperationsInput | bigint | number
45769
+ id?: IntFieldUpdateOperationsInput | number
45770
+ stringId?: StringFieldUpdateOperationsInput | string
45534
45771
  reason?: StringFieldUpdateOperationsInput | string
45535
45772
  amount?: StringFieldUpdateOperationsInput | string
45536
45773
  claimed?: StringFieldUpdateOperationsInput | string
@@ -45815,12 +46052,14 @@ export namespace Prisma {
45815
46052
 
45816
46053
  export type AprBreakdownCreateManyAprRecordInput = {
45817
46054
  id?: number
46055
+ uuid?: string
45818
46056
  identifier: string
45819
46057
  type: $Enums.AprType
45820
46058
  value: number
45821
46059
  }
45822
46060
 
45823
46061
  export type AprBreakdownUpdateWithoutAprRecordInput = {
46062
+ uuid?: StringFieldUpdateOperationsInput | string
45824
46063
  identifier?: StringFieldUpdateOperationsInput | string
45825
46064
  type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
45826
46065
  value?: FloatFieldUpdateOperationsInput | number
@@ -45828,6 +46067,7 @@ export namespace Prisma {
45828
46067
 
45829
46068
  export type AprBreakdownUncheckedUpdateWithoutAprRecordInput = {
45830
46069
  id?: IntFieldUpdateOperationsInput | number
46070
+ uuid?: StringFieldUpdateOperationsInput | string
45831
46071
  identifier?: StringFieldUpdateOperationsInput | string
45832
46072
  type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
45833
46073
  value?: FloatFieldUpdateOperationsInput | number
@@ -45835,6 +46075,7 @@ export namespace Prisma {
45835
46075
 
45836
46076
  export type AprBreakdownUncheckedUpdateManyWithoutAprRecordInput = {
45837
46077
  id?: IntFieldUpdateOperationsInput | number
46078
+ uuid?: StringFieldUpdateOperationsInput | string
45838
46079
  identifier?: StringFieldUpdateOperationsInput | string
45839
46080
  type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
45840
46081
  value?: FloatFieldUpdateOperationsInput | number
@@ -45842,12 +46083,14 @@ export namespace Prisma {
45842
46083
 
45843
46084
  export type TVLBreakdownCreateManyTvlRecordInput = {
45844
46085
  id?: number
46086
+ uuid?: string
45845
46087
  identifier: string
45846
46088
  type: $Enums.TvlType
45847
46089
  value: number
45848
46090
  }
45849
46091
 
45850
46092
  export type TVLBreakdownUpdateWithoutTvlRecordInput = {
46093
+ uuid?: StringFieldUpdateOperationsInput | string
45851
46094
  identifier?: StringFieldUpdateOperationsInput | string
45852
46095
  type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
45853
46096
  value?: FloatFieldUpdateOperationsInput | number
@@ -45855,6 +46098,7 @@ export namespace Prisma {
45855
46098
 
45856
46099
  export type TVLBreakdownUncheckedUpdateWithoutTvlRecordInput = {
45857
46100
  id?: IntFieldUpdateOperationsInput | number
46101
+ uuid?: StringFieldUpdateOperationsInput | string
45858
46102
  identifier?: StringFieldUpdateOperationsInput | string
45859
46103
  type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
45860
46104
  value?: FloatFieldUpdateOperationsInput | number
@@ -45862,6 +46106,7 @@ export namespace Prisma {
45862
46106
 
45863
46107
  export type TVLBreakdownUncheckedUpdateManyWithoutTvlRecordInput = {
45864
46108
  id?: IntFieldUpdateOperationsInput | number
46109
+ uuid?: StringFieldUpdateOperationsInput | string
45865
46110
  identifier?: StringFieldUpdateOperationsInput | string
45866
46111
  type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
45867
46112
  value?: FloatFieldUpdateOperationsInput | number
@@ -45869,23 +46114,27 @@ export namespace Prisma {
45869
46114
 
45870
46115
  export type DailyRewardsBreakdownCreateManyDailyRewardsRecordInput = {
45871
46116
  id?: number
46117
+ uuid?: string
45872
46118
  value: number
45873
46119
  campaignId: string
45874
46120
  }
45875
46121
 
45876
46122
  export type DailyRewardsBreakdownUpdateWithoutDailyRewardsRecordInput = {
46123
+ uuid?: StringFieldUpdateOperationsInput | string
45877
46124
  value?: FloatFieldUpdateOperationsInput | number
45878
46125
  Campaign?: CampaignUpdateOneRequiredWithoutDailyRewardsBreakdownNestedInput
45879
46126
  }
45880
46127
 
45881
46128
  export type DailyRewardsBreakdownUncheckedUpdateWithoutDailyRewardsRecordInput = {
45882
46129
  id?: IntFieldUpdateOperationsInput | number
46130
+ uuid?: StringFieldUpdateOperationsInput | string
45883
46131
  value?: FloatFieldUpdateOperationsInput | number
45884
46132
  campaignId?: StringFieldUpdateOperationsInput | string
45885
46133
  }
45886
46134
 
45887
46135
  export type DailyRewardsBreakdownUncheckedUpdateManyWithoutDailyRewardsRecordInput = {
45888
46136
  id?: IntFieldUpdateOperationsInput | number
46137
+ uuid?: StringFieldUpdateOperationsInput | string
45889
46138
  value?: FloatFieldUpdateOperationsInput | number
45890
46139
  campaignId?: StringFieldUpdateOperationsInput | string
45891
46140
  }
@@ -45927,6 +46176,7 @@ export namespace Prisma {
45927
46176
 
45928
46177
  export type UserComputedValueCreateManyUserInput = {
45929
46178
  id?: number
46179
+ stringId?: string
45930
46180
  campaignId: string
45931
46181
  reason: string
45932
46182
  boost?: number | null
@@ -46050,6 +46300,7 @@ export namespace Prisma {
46050
46300
  }
46051
46301
 
46052
46302
  export type UserComputedValueUpdateWithoutUserInput = {
46303
+ stringId?: StringFieldUpdateOperationsInput | string
46053
46304
  reason?: StringFieldUpdateOperationsInput | string
46054
46305
  boost?: NullableFloatFieldUpdateOperationsInput | number | null
46055
46306
  Campaign?: CampaignUpdateOneRequiredWithoutUserComputedValueNestedInput
@@ -46057,6 +46308,7 @@ export namespace Prisma {
46057
46308
 
46058
46309
  export type UserComputedValueUncheckedUpdateWithoutUserInput = {
46059
46310
  id?: IntFieldUpdateOperationsInput | number
46311
+ stringId?: StringFieldUpdateOperationsInput | string
46060
46312
  campaignId?: StringFieldUpdateOperationsInput | string
46061
46313
  reason?: StringFieldUpdateOperationsInput | string
46062
46314
  boost?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -46064,6 +46316,7 @@ export namespace Prisma {
46064
46316
 
46065
46317
  export type UserComputedValueUncheckedUpdateManyWithoutUserInput = {
46066
46318
  id?: IntFieldUpdateOperationsInput | number
46319
+ stringId?: StringFieldUpdateOperationsInput | string
46067
46320
  campaignId?: StringFieldUpdateOperationsInput | string
46068
46321
  reason?: StringFieldUpdateOperationsInput | string
46069
46322
  boost?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -46098,7 +46351,8 @@ export namespace Prisma {
46098
46351
  }
46099
46352
 
46100
46353
  export type RewardBreakdownCreateManyRewardInput = {
46101
- id?: bigint | number
46354
+ id?: number
46355
+ stringId?: string
46102
46356
  protocolId?: string | null
46103
46357
  reason: string
46104
46358
  amount: string
@@ -46108,7 +46362,7 @@ export namespace Prisma {
46108
46362
  }
46109
46363
 
46110
46364
  export type RewardBreakdownUpdateWithoutRewardInput = {
46111
- id?: BigIntFieldUpdateOperationsInput | bigint | number
46365
+ stringId?: StringFieldUpdateOperationsInput | string
46112
46366
  reason?: StringFieldUpdateOperationsInput | string
46113
46367
  amount?: StringFieldUpdateOperationsInput | string
46114
46368
  claimed?: StringFieldUpdateOperationsInput | string
@@ -46118,7 +46372,8 @@ export namespace Prisma {
46118
46372
  }
46119
46373
 
46120
46374
  export type RewardBreakdownUncheckedUpdateWithoutRewardInput = {
46121
- id?: BigIntFieldUpdateOperationsInput | bigint | number
46375
+ id?: IntFieldUpdateOperationsInput | number
46376
+ stringId?: StringFieldUpdateOperationsInput | string
46122
46377
  protocolId?: NullableStringFieldUpdateOperationsInput | string | null
46123
46378
  reason?: StringFieldUpdateOperationsInput | string
46124
46379
  amount?: StringFieldUpdateOperationsInput | string
@@ -46128,7 +46383,8 @@ export namespace Prisma {
46128
46383
  }
46129
46384
 
46130
46385
  export type RewardBreakdownUncheckedUpdateManyWithoutRewardInput = {
46131
- id?: BigIntFieldUpdateOperationsInput | bigint | number
46386
+ id?: IntFieldUpdateOperationsInput | number
46387
+ stringId?: StringFieldUpdateOperationsInput | string
46132
46388
  protocolId?: NullableStringFieldUpdateOperationsInput | string | null
46133
46389
  reason?: StringFieldUpdateOperationsInput | string
46134
46390
  amount?: StringFieldUpdateOperationsInput | string