@merkl/api 0.19.37 → 0.19.39

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 +124 -5
  2. package/dist/database/api/.generated/drizzle/schema.js +9 -2
  3. package/dist/database/api/.generated/drizzle/schema.ts +9 -2
  4. package/dist/database/api/.generated/edge.js +17 -3
  5. package/dist/database/api/.generated/index-browser.js +14 -0
  6. package/dist/database/api/.generated/index.d.ts +388 -40
  7. package/dist/database/api/.generated/index.js +17 -3
  8. package/dist/database/api/.generated/package.json +1 -1
  9. package/dist/database/api/.generated/schema.prisma +8 -1
  10. package/dist/database/api/.generated/wasm.js +14 -0
  11. package/dist/src/eden/index.d.ts +25 -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 +5 -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 +2 -0
  21. package/dist/src/modules/v4/computedValue/computedValue.repository.d.ts +2 -0
  22. package/dist/src/modules/v4/computedValue/computedValue.repository.js +2 -0
  23. package/dist/src/modules/v4/computedValue/computedValue.service.d.ts +3 -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 +6 -2
  31. package/dist/src/modules/v4/reward/reward.repository.js +1 -0
  32. package/dist/src/modules/v4/reward/reward.service.d.ts +10 -2
  33. package/dist/src/modules/v4/reward/reward.service.js +4 -1
  34. package/dist/src/modules/v4/router.d.ts +5 -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,8 @@ export namespace Prisma {
7364
7364
 
7365
7365
  export type UserComputedValueMinAggregateOutputType = {
7366
7366
  id: number | null
7367
+ stringId: string | null
7368
+ uuid: string | null
7367
7369
  campaignId: string | null
7368
7370
  address: string | null
7369
7371
  reason: string | null
@@ -7372,6 +7374,8 @@ export namespace Prisma {
7372
7374
 
7373
7375
  export type UserComputedValueMaxAggregateOutputType = {
7374
7376
  id: number | null
7377
+ stringId: string | null
7378
+ uuid: string | null
7375
7379
  campaignId: string | null
7376
7380
  address: string | null
7377
7381
  reason: string | null
@@ -7380,6 +7384,8 @@ export namespace Prisma {
7380
7384
 
7381
7385
  export type UserComputedValueCountAggregateOutputType = {
7382
7386
  id: number
7387
+ stringId: number
7388
+ uuid: number
7383
7389
  campaignId: number
7384
7390
  address: number
7385
7391
  reason: number
@@ -7400,6 +7406,8 @@ export namespace Prisma {
7400
7406
 
7401
7407
  export type UserComputedValueMinAggregateInputType = {
7402
7408
  id?: true
7409
+ stringId?: true
7410
+ uuid?: true
7403
7411
  campaignId?: true
7404
7412
  address?: true
7405
7413
  reason?: true
@@ -7408,6 +7416,8 @@ export namespace Prisma {
7408
7416
 
7409
7417
  export type UserComputedValueMaxAggregateInputType = {
7410
7418
  id?: true
7419
+ stringId?: true
7420
+ uuid?: true
7411
7421
  campaignId?: true
7412
7422
  address?: true
7413
7423
  reason?: true
@@ -7416,6 +7426,8 @@ export namespace Prisma {
7416
7426
 
7417
7427
  export type UserComputedValueCountAggregateInputType = {
7418
7428
  id?: true
7429
+ stringId?: true
7430
+ uuid?: true
7419
7431
  campaignId?: true
7420
7432
  address?: true
7421
7433
  reason?: true
@@ -7511,6 +7523,8 @@ export namespace Prisma {
7511
7523
 
7512
7524
  export type UserComputedValueGroupByOutputType = {
7513
7525
  id: number
7526
+ stringId: string
7527
+ uuid: string
7514
7528
  campaignId: string
7515
7529
  address: string
7516
7530
  reason: string
@@ -7538,6 +7552,8 @@ export namespace Prisma {
7538
7552
 
7539
7553
  export type UserComputedValueSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
7540
7554
  id?: boolean
7555
+ stringId?: boolean
7556
+ uuid?: boolean
7541
7557
  campaignId?: boolean
7542
7558
  address?: boolean
7543
7559
  reason?: boolean
@@ -7548,6 +7564,8 @@ export namespace Prisma {
7548
7564
 
7549
7565
  export type UserComputedValueSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
7550
7566
  id?: boolean
7567
+ stringId?: boolean
7568
+ uuid?: boolean
7551
7569
  campaignId?: boolean
7552
7570
  address?: boolean
7553
7571
  reason?: boolean
@@ -7558,6 +7576,8 @@ export namespace Prisma {
7558
7576
 
7559
7577
  export type UserComputedValueSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
7560
7578
  id?: boolean
7579
+ stringId?: boolean
7580
+ uuid?: boolean
7561
7581
  campaignId?: boolean
7562
7582
  address?: boolean
7563
7583
  reason?: boolean
@@ -7568,13 +7588,15 @@ export namespace Prisma {
7568
7588
 
7569
7589
  export type UserComputedValueSelectScalar = {
7570
7590
  id?: boolean
7591
+ stringId?: boolean
7592
+ uuid?: boolean
7571
7593
  campaignId?: boolean
7572
7594
  address?: boolean
7573
7595
  reason?: boolean
7574
7596
  boost?: boolean
7575
7597
  }
7576
7598
 
7577
- export type UserComputedValueOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "campaignId" | "address" | "reason" | "boost", ExtArgs["result"]["userComputedValue"]>
7599
+ export type UserComputedValueOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "stringId" | "uuid" | "campaignId" | "address" | "reason" | "boost", ExtArgs["result"]["userComputedValue"]>
7578
7600
  export type UserComputedValueInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
7579
7601
  Campaign?: boolean | CampaignDefaultArgs<ExtArgs>
7580
7602
  User?: boolean | UserComputedValue$UserArgs<ExtArgs>
@@ -7596,6 +7618,8 @@ export namespace Prisma {
7596
7618
  }
7597
7619
  scalars: $Extensions.GetPayloadResult<{
7598
7620
  id: number
7621
+ stringId: string
7622
+ uuid: string
7599
7623
  campaignId: string
7600
7624
  address: string
7601
7625
  reason: string
@@ -8026,6 +8050,8 @@ export namespace Prisma {
8026
8050
  */
8027
8051
  interface UserComputedValueFieldRefs {
8028
8052
  readonly id: FieldRef<"UserComputedValue", 'Int'>
8053
+ readonly stringId: FieldRef<"UserComputedValue", 'String'>
8054
+ readonly uuid: FieldRef<"UserComputedValue", 'String'>
8029
8055
  readonly campaignId: FieldRef<"UserComputedValue", 'String'>
8030
8056
  readonly address: FieldRef<"UserComputedValue", 'String'>
8031
8057
  readonly reason: FieldRef<"UserComputedValue", 'String'>
@@ -15898,6 +15924,7 @@ export namespace Prisma {
15898
15924
 
15899
15925
  export type AprBreakdownMinAggregateOutputType = {
15900
15926
  id: number | null
15927
+ uuid: string | null
15901
15928
  identifier: string | null
15902
15929
  type: $Enums.AprType | null
15903
15930
  value: number | null
@@ -15906,6 +15933,7 @@ export namespace Prisma {
15906
15933
 
15907
15934
  export type AprBreakdownMaxAggregateOutputType = {
15908
15935
  id: number | null
15936
+ uuid: string | null
15909
15937
  identifier: string | null
15910
15938
  type: $Enums.AprType | null
15911
15939
  value: number | null
@@ -15914,6 +15942,7 @@ export namespace Prisma {
15914
15942
 
15915
15943
  export type AprBreakdownCountAggregateOutputType = {
15916
15944
  id: number
15945
+ uuid: number
15917
15946
  identifier: number
15918
15947
  type: number
15919
15948
  value: number
@@ -15934,6 +15963,7 @@ export namespace Prisma {
15934
15963
 
15935
15964
  export type AprBreakdownMinAggregateInputType = {
15936
15965
  id?: true
15966
+ uuid?: true
15937
15967
  identifier?: true
15938
15968
  type?: true
15939
15969
  value?: true
@@ -15942,6 +15972,7 @@ export namespace Prisma {
15942
15972
 
15943
15973
  export type AprBreakdownMaxAggregateInputType = {
15944
15974
  id?: true
15975
+ uuid?: true
15945
15976
  identifier?: true
15946
15977
  type?: true
15947
15978
  value?: true
@@ -15950,6 +15981,7 @@ export namespace Prisma {
15950
15981
 
15951
15982
  export type AprBreakdownCountAggregateInputType = {
15952
15983
  id?: true
15984
+ uuid?: true
15953
15985
  identifier?: true
15954
15986
  type?: true
15955
15987
  value?: true
@@ -16045,6 +16077,7 @@ export namespace Prisma {
16045
16077
 
16046
16078
  export type AprBreakdownGroupByOutputType = {
16047
16079
  id: number
16080
+ uuid: string
16048
16081
  identifier: string
16049
16082
  type: $Enums.AprType
16050
16083
  value: number
@@ -16072,6 +16105,7 @@ export namespace Prisma {
16072
16105
 
16073
16106
  export type AprBreakdownSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
16074
16107
  id?: boolean
16108
+ uuid?: boolean
16075
16109
  identifier?: boolean
16076
16110
  type?: boolean
16077
16111
  value?: boolean
@@ -16081,6 +16115,7 @@ export namespace Prisma {
16081
16115
 
16082
16116
  export type AprBreakdownSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
16083
16117
  id?: boolean
16118
+ uuid?: boolean
16084
16119
  identifier?: boolean
16085
16120
  type?: boolean
16086
16121
  value?: boolean
@@ -16090,6 +16125,7 @@ export namespace Prisma {
16090
16125
 
16091
16126
  export type AprBreakdownSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
16092
16127
  id?: boolean
16128
+ uuid?: boolean
16093
16129
  identifier?: boolean
16094
16130
  type?: boolean
16095
16131
  value?: boolean
@@ -16099,13 +16135,14 @@ export namespace Prisma {
16099
16135
 
16100
16136
  export type AprBreakdownSelectScalar = {
16101
16137
  id?: boolean
16138
+ uuid?: boolean
16102
16139
  identifier?: boolean
16103
16140
  type?: boolean
16104
16141
  value?: boolean
16105
16142
  aprRecordId?: boolean
16106
16143
  }
16107
16144
 
16108
- export type AprBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "identifier" | "type" | "value" | "aprRecordId", ExtArgs["result"]["aprBreakdown"]>
16145
+ export type AprBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "uuid" | "identifier" | "type" | "value" | "aprRecordId", ExtArgs["result"]["aprBreakdown"]>
16109
16146
  export type AprBreakdownInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
16110
16147
  AprRecord?: boolean | AprRecordDefaultArgs<ExtArgs>
16111
16148
  }
@@ -16123,6 +16160,7 @@ export namespace Prisma {
16123
16160
  }
16124
16161
  scalars: $Extensions.GetPayloadResult<{
16125
16162
  id: number
16163
+ uuid: string
16126
16164
  identifier: string
16127
16165
  type: $Enums.AprType
16128
16166
  value: number
@@ -16552,6 +16590,7 @@ export namespace Prisma {
16552
16590
  */
16553
16591
  interface AprBreakdownFieldRefs {
16554
16592
  readonly id: FieldRef<"AprBreakdown", 'Int'>
16593
+ readonly uuid: FieldRef<"AprBreakdown", 'String'>
16555
16594
  readonly identifier: FieldRef<"AprBreakdown", 'String'>
16556
16595
  readonly type: FieldRef<"AprBreakdown", 'AprType'>
16557
16596
  readonly value: FieldRef<"AprBreakdown", 'Float'>
@@ -18125,6 +18164,7 @@ export namespace Prisma {
18125
18164
 
18126
18165
  export type TVLBreakdownMinAggregateOutputType = {
18127
18166
  id: number | null
18167
+ uuid: string | null
18128
18168
  identifier: string | null
18129
18169
  type: $Enums.TvlType | null
18130
18170
  value: number | null
@@ -18133,6 +18173,7 @@ export namespace Prisma {
18133
18173
 
18134
18174
  export type TVLBreakdownMaxAggregateOutputType = {
18135
18175
  id: number | null
18176
+ uuid: string | null
18136
18177
  identifier: string | null
18137
18178
  type: $Enums.TvlType | null
18138
18179
  value: number | null
@@ -18141,6 +18182,7 @@ export namespace Prisma {
18141
18182
 
18142
18183
  export type TVLBreakdownCountAggregateOutputType = {
18143
18184
  id: number
18185
+ uuid: number
18144
18186
  identifier: number
18145
18187
  type: number
18146
18188
  value: number
@@ -18161,6 +18203,7 @@ export namespace Prisma {
18161
18203
 
18162
18204
  export type TVLBreakdownMinAggregateInputType = {
18163
18205
  id?: true
18206
+ uuid?: true
18164
18207
  identifier?: true
18165
18208
  type?: true
18166
18209
  value?: true
@@ -18169,6 +18212,7 @@ export namespace Prisma {
18169
18212
 
18170
18213
  export type TVLBreakdownMaxAggregateInputType = {
18171
18214
  id?: true
18215
+ uuid?: true
18172
18216
  identifier?: true
18173
18217
  type?: true
18174
18218
  value?: true
@@ -18177,6 +18221,7 @@ export namespace Prisma {
18177
18221
 
18178
18222
  export type TVLBreakdownCountAggregateInputType = {
18179
18223
  id?: true
18224
+ uuid?: true
18180
18225
  identifier?: true
18181
18226
  type?: true
18182
18227
  value?: true
@@ -18272,6 +18317,7 @@ export namespace Prisma {
18272
18317
 
18273
18318
  export type TVLBreakdownGroupByOutputType = {
18274
18319
  id: number
18320
+ uuid: string
18275
18321
  identifier: string
18276
18322
  type: $Enums.TvlType
18277
18323
  value: number
@@ -18299,6 +18345,7 @@ export namespace Prisma {
18299
18345
 
18300
18346
  export type TVLBreakdownSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
18301
18347
  id?: boolean
18348
+ uuid?: boolean
18302
18349
  identifier?: boolean
18303
18350
  type?: boolean
18304
18351
  value?: boolean
@@ -18308,6 +18355,7 @@ export namespace Prisma {
18308
18355
 
18309
18356
  export type TVLBreakdownSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
18310
18357
  id?: boolean
18358
+ uuid?: boolean
18311
18359
  identifier?: boolean
18312
18360
  type?: boolean
18313
18361
  value?: boolean
@@ -18317,6 +18365,7 @@ export namespace Prisma {
18317
18365
 
18318
18366
  export type TVLBreakdownSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
18319
18367
  id?: boolean
18368
+ uuid?: boolean
18320
18369
  identifier?: boolean
18321
18370
  type?: boolean
18322
18371
  value?: boolean
@@ -18326,13 +18375,14 @@ export namespace Prisma {
18326
18375
 
18327
18376
  export type TVLBreakdownSelectScalar = {
18328
18377
  id?: boolean
18378
+ uuid?: boolean
18329
18379
  identifier?: boolean
18330
18380
  type?: boolean
18331
18381
  value?: boolean
18332
18382
  tvlRecordId?: boolean
18333
18383
  }
18334
18384
 
18335
- export type TVLBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "identifier" | "type" | "value" | "tvlRecordId", ExtArgs["result"]["tVLBreakdown"]>
18385
+ export type TVLBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "uuid" | "identifier" | "type" | "value" | "tvlRecordId", ExtArgs["result"]["tVLBreakdown"]>
18336
18386
  export type TVLBreakdownInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
18337
18387
  TvlRecord?: boolean | TVLRecordDefaultArgs<ExtArgs>
18338
18388
  }
@@ -18350,6 +18400,7 @@ export namespace Prisma {
18350
18400
  }
18351
18401
  scalars: $Extensions.GetPayloadResult<{
18352
18402
  id: number
18403
+ uuid: string
18353
18404
  identifier: string
18354
18405
  type: $Enums.TvlType
18355
18406
  value: number
@@ -18779,6 +18830,7 @@ export namespace Prisma {
18779
18830
  */
18780
18831
  interface TVLBreakdownFieldRefs {
18781
18832
  readonly id: FieldRef<"TVLBreakdown", 'Int'>
18833
+ readonly uuid: FieldRef<"TVLBreakdown", 'String'>
18782
18834
  readonly identifier: FieldRef<"TVLBreakdown", 'String'>
18783
18835
  readonly type: FieldRef<"TVLBreakdown", 'TvlType'>
18784
18836
  readonly value: FieldRef<"TVLBreakdown", 'Float'>
@@ -20352,6 +20404,7 @@ export namespace Prisma {
20352
20404
 
20353
20405
  export type DailyRewardsBreakdownMinAggregateOutputType = {
20354
20406
  id: number | null
20407
+ uuid: string | null
20355
20408
  value: number | null
20356
20409
  campaignId: string | null
20357
20410
  dailyRewardsRecordId: string | null
@@ -20359,6 +20412,7 @@ export namespace Prisma {
20359
20412
 
20360
20413
  export type DailyRewardsBreakdownMaxAggregateOutputType = {
20361
20414
  id: number | null
20415
+ uuid: string | null
20362
20416
  value: number | null
20363
20417
  campaignId: string | null
20364
20418
  dailyRewardsRecordId: string | null
@@ -20366,6 +20420,7 @@ export namespace Prisma {
20366
20420
 
20367
20421
  export type DailyRewardsBreakdownCountAggregateOutputType = {
20368
20422
  id: number
20423
+ uuid: number
20369
20424
  value: number
20370
20425
  campaignId: number
20371
20426
  dailyRewardsRecordId: number
@@ -20385,6 +20440,7 @@ export namespace Prisma {
20385
20440
 
20386
20441
  export type DailyRewardsBreakdownMinAggregateInputType = {
20387
20442
  id?: true
20443
+ uuid?: true
20388
20444
  value?: true
20389
20445
  campaignId?: true
20390
20446
  dailyRewardsRecordId?: true
@@ -20392,6 +20448,7 @@ export namespace Prisma {
20392
20448
 
20393
20449
  export type DailyRewardsBreakdownMaxAggregateInputType = {
20394
20450
  id?: true
20451
+ uuid?: true
20395
20452
  value?: true
20396
20453
  campaignId?: true
20397
20454
  dailyRewardsRecordId?: true
@@ -20399,6 +20456,7 @@ export namespace Prisma {
20399
20456
 
20400
20457
  export type DailyRewardsBreakdownCountAggregateInputType = {
20401
20458
  id?: true
20459
+ uuid?: true
20402
20460
  value?: true
20403
20461
  campaignId?: true
20404
20462
  dailyRewardsRecordId?: true
@@ -20493,6 +20551,7 @@ export namespace Prisma {
20493
20551
 
20494
20552
  export type DailyRewardsBreakdownGroupByOutputType = {
20495
20553
  id: number
20554
+ uuid: string
20496
20555
  value: number
20497
20556
  campaignId: string
20498
20557
  dailyRewardsRecordId: string
@@ -20519,6 +20578,7 @@ export namespace Prisma {
20519
20578
 
20520
20579
  export type DailyRewardsBreakdownSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
20521
20580
  id?: boolean
20581
+ uuid?: boolean
20522
20582
  value?: boolean
20523
20583
  campaignId?: boolean
20524
20584
  dailyRewardsRecordId?: boolean
@@ -20528,6 +20588,7 @@ export namespace Prisma {
20528
20588
 
20529
20589
  export type DailyRewardsBreakdownSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
20530
20590
  id?: boolean
20591
+ uuid?: boolean
20531
20592
  value?: boolean
20532
20593
  campaignId?: boolean
20533
20594
  dailyRewardsRecordId?: boolean
@@ -20537,6 +20598,7 @@ export namespace Prisma {
20537
20598
 
20538
20599
  export type DailyRewardsBreakdownSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
20539
20600
  id?: boolean
20601
+ uuid?: boolean
20540
20602
  value?: boolean
20541
20603
  campaignId?: boolean
20542
20604
  dailyRewardsRecordId?: boolean
@@ -20546,12 +20608,13 @@ export namespace Prisma {
20546
20608
 
20547
20609
  export type DailyRewardsBreakdownSelectScalar = {
20548
20610
  id?: boolean
20611
+ uuid?: boolean
20549
20612
  value?: boolean
20550
20613
  campaignId?: boolean
20551
20614
  dailyRewardsRecordId?: boolean
20552
20615
  }
20553
20616
 
20554
- export type DailyRewardsBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "value" | "campaignId" | "dailyRewardsRecordId", ExtArgs["result"]["dailyRewardsBreakdown"]>
20617
+ export type DailyRewardsBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "uuid" | "value" | "campaignId" | "dailyRewardsRecordId", ExtArgs["result"]["dailyRewardsBreakdown"]>
20555
20618
  export type DailyRewardsBreakdownInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20556
20619
  Campaign?: boolean | CampaignDefaultArgs<ExtArgs>
20557
20620
  DailyRewardsRecord?: boolean | DailyRewardsRecordDefaultArgs<ExtArgs>
@@ -20573,6 +20636,7 @@ export namespace Prisma {
20573
20636
  }
20574
20637
  scalars: $Extensions.GetPayloadResult<{
20575
20638
  id: number
20639
+ uuid: string
20576
20640
  value: number
20577
20641
  campaignId: string
20578
20642
  dailyRewardsRecordId: string
@@ -21002,6 +21066,7 @@ export namespace Prisma {
21002
21066
  */
21003
21067
  interface DailyRewardsBreakdownFieldRefs {
21004
21068
  readonly id: FieldRef<"DailyRewardsBreakdown", 'Int'>
21069
+ readonly uuid: FieldRef<"DailyRewardsBreakdown", 'String'>
21005
21070
  readonly value: FieldRef<"DailyRewardsBreakdown", 'Float'>
21006
21071
  readonly campaignId: FieldRef<"DailyRewardsBreakdown", 'String'>
21007
21072
  readonly dailyRewardsRecordId: FieldRef<"DailyRewardsBreakdown", 'String'>
@@ -24816,11 +24881,13 @@ export namespace Prisma {
24816
24881
  }
24817
24882
 
24818
24883
  export type RewardBreakdownSumAggregateOutputType = {
24819
- id: bigint | null
24884
+ id: number | null
24820
24885
  }
24821
24886
 
24822
24887
  export type RewardBreakdownMinAggregateOutputType = {
24823
- id: bigint | null
24888
+ id: number | null
24889
+ stringId: string | null
24890
+ uuid: string | null
24824
24891
  protocolId: string | null
24825
24892
  reason: string | null
24826
24893
  amount: string | null
@@ -24831,7 +24898,9 @@ export namespace Prisma {
24831
24898
  }
24832
24899
 
24833
24900
  export type RewardBreakdownMaxAggregateOutputType = {
24834
- id: bigint | null
24901
+ id: number | null
24902
+ stringId: string | null
24903
+ uuid: string | null
24835
24904
  protocolId: string | null
24836
24905
  reason: string | null
24837
24906
  amount: string | null
@@ -24843,6 +24912,8 @@ export namespace Prisma {
24843
24912
 
24844
24913
  export type RewardBreakdownCountAggregateOutputType = {
24845
24914
  id: number
24915
+ stringId: number
24916
+ uuid: number
24846
24917
  protocolId: number
24847
24918
  reason: number
24848
24919
  amount: number
@@ -24864,6 +24935,8 @@ export namespace Prisma {
24864
24935
 
24865
24936
  export type RewardBreakdownMinAggregateInputType = {
24866
24937
  id?: true
24938
+ stringId?: true
24939
+ uuid?: true
24867
24940
  protocolId?: true
24868
24941
  reason?: true
24869
24942
  amount?: true
@@ -24875,6 +24948,8 @@ export namespace Prisma {
24875
24948
 
24876
24949
  export type RewardBreakdownMaxAggregateInputType = {
24877
24950
  id?: true
24951
+ stringId?: true
24952
+ uuid?: true
24878
24953
  protocolId?: true
24879
24954
  reason?: true
24880
24955
  amount?: true
@@ -24886,6 +24961,8 @@ export namespace Prisma {
24886
24961
 
24887
24962
  export type RewardBreakdownCountAggregateInputType = {
24888
24963
  id?: true
24964
+ stringId?: true
24965
+ uuid?: true
24889
24966
  protocolId?: true
24890
24967
  reason?: true
24891
24968
  amount?: true
@@ -24983,7 +25060,9 @@ export namespace Prisma {
24983
25060
  }
24984
25061
 
24985
25062
  export type RewardBreakdownGroupByOutputType = {
24986
- id: bigint
25063
+ id: number
25064
+ stringId: string
25065
+ uuid: string
24987
25066
  protocolId: string | null
24988
25067
  reason: string
24989
25068
  amount: string
@@ -25014,6 +25093,8 @@ export namespace Prisma {
25014
25093
 
25015
25094
  export type RewardBreakdownSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
25016
25095
  id?: boolean
25096
+ stringId?: boolean
25097
+ uuid?: boolean
25017
25098
  protocolId?: boolean
25018
25099
  reason?: boolean
25019
25100
  amount?: boolean
@@ -25028,6 +25109,8 @@ export namespace Prisma {
25028
25109
 
25029
25110
  export type RewardBreakdownSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
25030
25111
  id?: boolean
25112
+ stringId?: boolean
25113
+ uuid?: boolean
25031
25114
  protocolId?: boolean
25032
25115
  reason?: boolean
25033
25116
  amount?: boolean
@@ -25042,6 +25125,8 @@ export namespace Prisma {
25042
25125
 
25043
25126
  export type RewardBreakdownSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
25044
25127
  id?: boolean
25128
+ stringId?: boolean
25129
+ uuid?: boolean
25045
25130
  protocolId?: boolean
25046
25131
  reason?: boolean
25047
25132
  amount?: boolean
@@ -25056,6 +25141,8 @@ export namespace Prisma {
25056
25141
 
25057
25142
  export type RewardBreakdownSelectScalar = {
25058
25143
  id?: boolean
25144
+ stringId?: boolean
25145
+ uuid?: boolean
25059
25146
  protocolId?: boolean
25060
25147
  reason?: boolean
25061
25148
  amount?: boolean
@@ -25065,7 +25152,7 @@ export namespace Prisma {
25065
25152
  campaignId?: boolean
25066
25153
  }
25067
25154
 
25068
- export type RewardBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "protocolId" | "reason" | "amount" | "claimed" | "pending" | "rewardId" | "campaignId", ExtArgs["result"]["rewardBreakdown"]>
25155
+ export type RewardBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "stringId" | "uuid" | "protocolId" | "reason" | "amount" | "claimed" | "pending" | "rewardId" | "campaignId", ExtArgs["result"]["rewardBreakdown"]>
25069
25156
  export type RewardBreakdownInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
25070
25157
  Protocol?: boolean | RewardBreakdown$ProtocolArgs<ExtArgs>
25071
25158
  Reward?: boolean | RewardDefaultArgs<ExtArgs>
@@ -25090,7 +25177,9 @@ export namespace Prisma {
25090
25177
  Campaign: Prisma.$CampaignPayload<ExtArgs>
25091
25178
  }
25092
25179
  scalars: $Extensions.GetPayloadResult<{
25093
- id: bigint
25180
+ id: number
25181
+ stringId: string
25182
+ uuid: string
25094
25183
  protocolId: string | null
25095
25184
  reason: string
25096
25185
  amount: string
@@ -25524,7 +25613,9 @@ export namespace Prisma {
25524
25613
  * Fields of the RewardBreakdown model
25525
25614
  */
25526
25615
  interface RewardBreakdownFieldRefs {
25527
- readonly id: FieldRef<"RewardBreakdown", 'BigInt'>
25616
+ readonly id: FieldRef<"RewardBreakdown", 'Int'>
25617
+ readonly stringId: FieldRef<"RewardBreakdown", 'String'>
25618
+ readonly uuid: FieldRef<"RewardBreakdown", 'String'>
25528
25619
  readonly protocolId: FieldRef<"RewardBreakdown", 'String'>
25529
25620
  readonly reason: FieldRef<"RewardBreakdown", 'String'>
25530
25621
  readonly amount: FieldRef<"RewardBreakdown", 'String'>
@@ -31560,6 +31651,8 @@ export namespace Prisma {
31560
31651
 
31561
31652
  export const UserComputedValueScalarFieldEnum: {
31562
31653
  id: 'id',
31654
+ stringId: 'stringId',
31655
+ uuid: 'uuid',
31563
31656
  campaignId: 'campaignId',
31564
31657
  address: 'address',
31565
31658
  reason: 'reason',
@@ -31650,6 +31743,7 @@ export namespace Prisma {
31650
31743
 
31651
31744
  export const AprBreakdownScalarFieldEnum: {
31652
31745
  id: 'id',
31746
+ uuid: 'uuid',
31653
31747
  identifier: 'identifier',
31654
31748
  type: 'type',
31655
31749
  value: 'value',
@@ -31671,6 +31765,7 @@ export namespace Prisma {
31671
31765
 
31672
31766
  export const TVLBreakdownScalarFieldEnum: {
31673
31767
  id: 'id',
31768
+ uuid: 'uuid',
31674
31769
  identifier: 'identifier',
31675
31770
  type: 'type',
31676
31771
  value: 'value',
@@ -31692,6 +31787,7 @@ export namespace Prisma {
31692
31787
 
31693
31788
  export const DailyRewardsBreakdownScalarFieldEnum: {
31694
31789
  id: 'id',
31790
+ uuid: 'uuid',
31695
31791
  value: 'value',
31696
31792
  campaignId: 'campaignId',
31697
31793
  dailyRewardsRecordId: 'dailyRewardsRecordId'
@@ -31734,6 +31830,8 @@ export namespace Prisma {
31734
31830
 
31735
31831
  export const RewardBreakdownScalarFieldEnum: {
31736
31832
  id: 'id',
31833
+ stringId: 'stringId',
31834
+ uuid: 'uuid',
31737
31835
  protocolId: 'protocolId',
31738
31836
  reason: 'reason',
31739
31837
  amount: 'amount',
@@ -31884,6 +31982,8 @@ export namespace Prisma {
31884
31982
 
31885
31983
 
31886
31984
  export const UserComputedValueOrderByRelevanceFieldEnum: {
31985
+ stringId: 'stringId',
31986
+ uuid: 'uuid',
31887
31987
  campaignId: 'campaignId',
31888
31988
  address: 'address',
31889
31989
  reason: 'reason'
@@ -31954,6 +32054,7 @@ export namespace Prisma {
31954
32054
 
31955
32055
 
31956
32056
  export const AprBreakdownOrderByRelevanceFieldEnum: {
32057
+ uuid: 'uuid',
31957
32058
  identifier: 'identifier',
31958
32059
  aprRecordId: 'aprRecordId'
31959
32060
  };
@@ -31970,6 +32071,7 @@ export namespace Prisma {
31970
32071
 
31971
32072
 
31972
32073
  export const TVLBreakdownOrderByRelevanceFieldEnum: {
32074
+ uuid: 'uuid',
31973
32075
  identifier: 'identifier',
31974
32076
  tvlRecordId: 'tvlRecordId'
31975
32077
  };
@@ -31986,6 +32088,7 @@ export namespace Prisma {
31986
32088
 
31987
32089
 
31988
32090
  export const DailyRewardsBreakdownOrderByRelevanceFieldEnum: {
32091
+ uuid: 'uuid',
31989
32092
  campaignId: 'campaignId',
31990
32093
  dailyRewardsRecordId: 'dailyRewardsRecordId'
31991
32094
  };
@@ -32026,6 +32129,8 @@ export namespace Prisma {
32026
32129
 
32027
32130
 
32028
32131
  export const RewardBreakdownOrderByRelevanceFieldEnum: {
32132
+ stringId: 'stringId',
32133
+ uuid: 'uuid',
32029
32134
  protocolId: 'protocolId',
32030
32135
  reason: 'reason',
32031
32136
  amount: 'amount',
@@ -32558,6 +32663,8 @@ export namespace Prisma {
32558
32663
  OR?: UserComputedValueWhereInput[]
32559
32664
  NOT?: UserComputedValueWhereInput | UserComputedValueWhereInput[]
32560
32665
  id?: IntFilter<"UserComputedValue"> | number
32666
+ stringId?: StringFilter<"UserComputedValue"> | string
32667
+ uuid?: UuidFilter<"UserComputedValue"> | string
32561
32668
  campaignId?: StringFilter<"UserComputedValue"> | string
32562
32669
  address?: StringFilter<"UserComputedValue"> | string
32563
32670
  reason?: StringFilter<"UserComputedValue"> | string
@@ -32568,6 +32675,8 @@ export namespace Prisma {
32568
32675
 
32569
32676
  export type UserComputedValueOrderByWithRelationInput = {
32570
32677
  id?: SortOrder
32678
+ stringId?: SortOrder
32679
+ uuid?: SortOrder
32571
32680
  campaignId?: SortOrder
32572
32681
  address?: SortOrder
32573
32682
  reason?: SortOrder
@@ -32583,6 +32692,8 @@ export namespace Prisma {
32583
32692
  AND?: UserComputedValueWhereInput | UserComputedValueWhereInput[]
32584
32693
  OR?: UserComputedValueWhereInput[]
32585
32694
  NOT?: UserComputedValueWhereInput | UserComputedValueWhereInput[]
32695
+ stringId?: StringFilter<"UserComputedValue"> | string
32696
+ uuid?: UuidFilter<"UserComputedValue"> | string
32586
32697
  campaignId?: StringFilter<"UserComputedValue"> | string
32587
32698
  address?: StringFilter<"UserComputedValue"> | string
32588
32699
  reason?: StringFilter<"UserComputedValue"> | string
@@ -32593,6 +32704,8 @@ export namespace Prisma {
32593
32704
 
32594
32705
  export type UserComputedValueOrderByWithAggregationInput = {
32595
32706
  id?: SortOrder
32707
+ stringId?: SortOrder
32708
+ uuid?: SortOrder
32596
32709
  campaignId?: SortOrder
32597
32710
  address?: SortOrder
32598
32711
  reason?: SortOrder
@@ -32609,6 +32722,8 @@ export namespace Prisma {
32609
32722
  OR?: UserComputedValueScalarWhereWithAggregatesInput[]
32610
32723
  NOT?: UserComputedValueScalarWhereWithAggregatesInput | UserComputedValueScalarWhereWithAggregatesInput[]
32611
32724
  id?: IntWithAggregatesFilter<"UserComputedValue"> | number
32725
+ stringId?: StringWithAggregatesFilter<"UserComputedValue"> | string
32726
+ uuid?: UuidWithAggregatesFilter<"UserComputedValue"> | string
32612
32727
  campaignId?: StringWithAggregatesFilter<"UserComputedValue"> | string
32613
32728
  address?: StringWithAggregatesFilter<"UserComputedValue"> | string
32614
32729
  reason?: StringWithAggregatesFilter<"UserComputedValue"> | string
@@ -33101,6 +33216,7 @@ export namespace Prisma {
33101
33216
  OR?: AprBreakdownWhereInput[]
33102
33217
  NOT?: AprBreakdownWhereInput | AprBreakdownWhereInput[]
33103
33218
  id?: IntFilter<"AprBreakdown"> | number
33219
+ uuid?: UuidFilter<"AprBreakdown"> | string
33104
33220
  identifier?: StringFilter<"AprBreakdown"> | string
33105
33221
  type?: EnumAprTypeFilter<"AprBreakdown"> | $Enums.AprType
33106
33222
  value?: FloatFilter<"AprBreakdown"> | number
@@ -33110,6 +33226,7 @@ export namespace Prisma {
33110
33226
 
33111
33227
  export type AprBreakdownOrderByWithRelationInput = {
33112
33228
  id?: SortOrder
33229
+ uuid?: SortOrder
33113
33230
  identifier?: SortOrder
33114
33231
  type?: SortOrder
33115
33232
  value?: SortOrder
@@ -33123,6 +33240,7 @@ export namespace Prisma {
33123
33240
  AND?: AprBreakdownWhereInput | AprBreakdownWhereInput[]
33124
33241
  OR?: AprBreakdownWhereInput[]
33125
33242
  NOT?: AprBreakdownWhereInput | AprBreakdownWhereInput[]
33243
+ uuid?: UuidFilter<"AprBreakdown"> | string
33126
33244
  identifier?: StringFilter<"AprBreakdown"> | string
33127
33245
  type?: EnumAprTypeFilter<"AprBreakdown"> | $Enums.AprType
33128
33246
  value?: FloatFilter<"AprBreakdown"> | number
@@ -33132,6 +33250,7 @@ export namespace Prisma {
33132
33250
 
33133
33251
  export type AprBreakdownOrderByWithAggregationInput = {
33134
33252
  id?: SortOrder
33253
+ uuid?: SortOrder
33135
33254
  identifier?: SortOrder
33136
33255
  type?: SortOrder
33137
33256
  value?: SortOrder
@@ -33148,6 +33267,7 @@ export namespace Prisma {
33148
33267
  OR?: AprBreakdownScalarWhereWithAggregatesInput[]
33149
33268
  NOT?: AprBreakdownScalarWhereWithAggregatesInput | AprBreakdownScalarWhereWithAggregatesInput[]
33150
33269
  id?: IntWithAggregatesFilter<"AprBreakdown"> | number
33270
+ uuid?: UuidWithAggregatesFilter<"AprBreakdown"> | string
33151
33271
  identifier?: StringWithAggregatesFilter<"AprBreakdown"> | string
33152
33272
  type?: EnumAprTypeWithAggregatesFilter<"AprBreakdown"> | $Enums.AprType
33153
33273
  value?: FloatWithAggregatesFilter<"AprBreakdown"> | number
@@ -33216,6 +33336,7 @@ export namespace Prisma {
33216
33336
  OR?: TVLBreakdownWhereInput[]
33217
33337
  NOT?: TVLBreakdownWhereInput | TVLBreakdownWhereInput[]
33218
33338
  id?: IntFilter<"TVLBreakdown"> | number
33339
+ uuid?: UuidFilter<"TVLBreakdown"> | string
33219
33340
  identifier?: StringFilter<"TVLBreakdown"> | string
33220
33341
  type?: EnumTvlTypeFilter<"TVLBreakdown"> | $Enums.TvlType
33221
33342
  value?: FloatFilter<"TVLBreakdown"> | number
@@ -33225,6 +33346,7 @@ export namespace Prisma {
33225
33346
 
33226
33347
  export type TVLBreakdownOrderByWithRelationInput = {
33227
33348
  id?: SortOrder
33349
+ uuid?: SortOrder
33228
33350
  identifier?: SortOrder
33229
33351
  type?: SortOrder
33230
33352
  value?: SortOrder
@@ -33238,6 +33360,7 @@ export namespace Prisma {
33238
33360
  AND?: TVLBreakdownWhereInput | TVLBreakdownWhereInput[]
33239
33361
  OR?: TVLBreakdownWhereInput[]
33240
33362
  NOT?: TVLBreakdownWhereInput | TVLBreakdownWhereInput[]
33363
+ uuid?: UuidFilter<"TVLBreakdown"> | string
33241
33364
  identifier?: StringFilter<"TVLBreakdown"> | string
33242
33365
  type?: EnumTvlTypeFilter<"TVLBreakdown"> | $Enums.TvlType
33243
33366
  value?: FloatFilter<"TVLBreakdown"> | number
@@ -33247,6 +33370,7 @@ export namespace Prisma {
33247
33370
 
33248
33371
  export type TVLBreakdownOrderByWithAggregationInput = {
33249
33372
  id?: SortOrder
33373
+ uuid?: SortOrder
33250
33374
  identifier?: SortOrder
33251
33375
  type?: SortOrder
33252
33376
  value?: SortOrder
@@ -33263,6 +33387,7 @@ export namespace Prisma {
33263
33387
  OR?: TVLBreakdownScalarWhereWithAggregatesInput[]
33264
33388
  NOT?: TVLBreakdownScalarWhereWithAggregatesInput | TVLBreakdownScalarWhereWithAggregatesInput[]
33265
33389
  id?: IntWithAggregatesFilter<"TVLBreakdown"> | number
33390
+ uuid?: UuidWithAggregatesFilter<"TVLBreakdown"> | string
33266
33391
  identifier?: StringWithAggregatesFilter<"TVLBreakdown"> | string
33267
33392
  type?: EnumTvlTypeWithAggregatesFilter<"TVLBreakdown"> | $Enums.TvlType
33268
33393
  value?: FloatWithAggregatesFilter<"TVLBreakdown"> | number
@@ -33331,6 +33456,7 @@ export namespace Prisma {
33331
33456
  OR?: DailyRewardsBreakdownWhereInput[]
33332
33457
  NOT?: DailyRewardsBreakdownWhereInput | DailyRewardsBreakdownWhereInput[]
33333
33458
  id?: IntFilter<"DailyRewardsBreakdown"> | number
33459
+ uuid?: UuidFilter<"DailyRewardsBreakdown"> | string
33334
33460
  value?: FloatFilter<"DailyRewardsBreakdown"> | number
33335
33461
  campaignId?: StringFilter<"DailyRewardsBreakdown"> | string
33336
33462
  dailyRewardsRecordId?: StringFilter<"DailyRewardsBreakdown"> | string
@@ -33340,6 +33466,7 @@ export namespace Prisma {
33340
33466
 
33341
33467
  export type DailyRewardsBreakdownOrderByWithRelationInput = {
33342
33468
  id?: SortOrder
33469
+ uuid?: SortOrder
33343
33470
  value?: SortOrder
33344
33471
  campaignId?: SortOrder
33345
33472
  dailyRewardsRecordId?: SortOrder
@@ -33353,6 +33480,7 @@ export namespace Prisma {
33353
33480
  AND?: DailyRewardsBreakdownWhereInput | DailyRewardsBreakdownWhereInput[]
33354
33481
  OR?: DailyRewardsBreakdownWhereInput[]
33355
33482
  NOT?: DailyRewardsBreakdownWhereInput | DailyRewardsBreakdownWhereInput[]
33483
+ uuid?: UuidFilter<"DailyRewardsBreakdown"> | string
33356
33484
  value?: FloatFilter<"DailyRewardsBreakdown"> | number
33357
33485
  campaignId?: StringFilter<"DailyRewardsBreakdown"> | string
33358
33486
  dailyRewardsRecordId?: StringFilter<"DailyRewardsBreakdown"> | string
@@ -33362,6 +33490,7 @@ export namespace Prisma {
33362
33490
 
33363
33491
  export type DailyRewardsBreakdownOrderByWithAggregationInput = {
33364
33492
  id?: SortOrder
33493
+ uuid?: SortOrder
33365
33494
  value?: SortOrder
33366
33495
  campaignId?: SortOrder
33367
33496
  dailyRewardsRecordId?: SortOrder
@@ -33377,6 +33506,7 @@ export namespace Prisma {
33377
33506
  OR?: DailyRewardsBreakdownScalarWhereWithAggregatesInput[]
33378
33507
  NOT?: DailyRewardsBreakdownScalarWhereWithAggregatesInput | DailyRewardsBreakdownScalarWhereWithAggregatesInput[]
33379
33508
  id?: IntWithAggregatesFilter<"DailyRewardsBreakdown"> | number
33509
+ uuid?: UuidWithAggregatesFilter<"DailyRewardsBreakdown"> | string
33380
33510
  value?: FloatWithAggregatesFilter<"DailyRewardsBreakdown"> | number
33381
33511
  campaignId?: StringWithAggregatesFilter<"DailyRewardsBreakdown"> | string
33382
33512
  dailyRewardsRecordId?: StringWithAggregatesFilter<"DailyRewardsBreakdown"> | string
@@ -33571,7 +33701,9 @@ export namespace Prisma {
33571
33701
  AND?: RewardBreakdownWhereInput | RewardBreakdownWhereInput[]
33572
33702
  OR?: RewardBreakdownWhereInput[]
33573
33703
  NOT?: RewardBreakdownWhereInput | RewardBreakdownWhereInput[]
33574
- id?: BigIntFilter<"RewardBreakdown"> | bigint | number
33704
+ id?: IntFilter<"RewardBreakdown"> | number
33705
+ stringId?: StringFilter<"RewardBreakdown"> | string
33706
+ uuid?: UuidFilter<"RewardBreakdown"> | string
33575
33707
  protocolId?: StringNullableFilter<"RewardBreakdown"> | string | null
33576
33708
  reason?: StringFilter<"RewardBreakdown"> | string
33577
33709
  amount?: StringFilter<"RewardBreakdown"> | string
@@ -33586,6 +33718,8 @@ export namespace Prisma {
33586
33718
 
33587
33719
  export type RewardBreakdownOrderByWithRelationInput = {
33588
33720
  id?: SortOrder
33721
+ stringId?: SortOrder
33722
+ uuid?: SortOrder
33589
33723
  protocolId?: SortOrderInput | SortOrder
33590
33724
  reason?: SortOrder
33591
33725
  amount?: SortOrder
@@ -33600,11 +33734,13 @@ export namespace Prisma {
33600
33734
  }
33601
33735
 
33602
33736
  export type RewardBreakdownWhereUniqueInput = Prisma.AtLeast<{
33603
- id?: bigint | number
33737
+ id?: number
33604
33738
  rewardId_campaignId_reason?: RewardBreakdownRewardIdCampaignIdReasonCompoundUniqueInput
33605
33739
  AND?: RewardBreakdownWhereInput | RewardBreakdownWhereInput[]
33606
33740
  OR?: RewardBreakdownWhereInput[]
33607
33741
  NOT?: RewardBreakdownWhereInput | RewardBreakdownWhereInput[]
33742
+ stringId?: StringFilter<"RewardBreakdown"> | string
33743
+ uuid?: UuidFilter<"RewardBreakdown"> | string
33608
33744
  protocolId?: StringNullableFilter<"RewardBreakdown"> | string | null
33609
33745
  reason?: StringFilter<"RewardBreakdown"> | string
33610
33746
  amount?: StringFilter<"RewardBreakdown"> | string
@@ -33619,6 +33755,8 @@ export namespace Prisma {
33619
33755
 
33620
33756
  export type RewardBreakdownOrderByWithAggregationInput = {
33621
33757
  id?: SortOrder
33758
+ stringId?: SortOrder
33759
+ uuid?: SortOrder
33622
33760
  protocolId?: SortOrderInput | SortOrder
33623
33761
  reason?: SortOrder
33624
33762
  amount?: SortOrder
@@ -33637,7 +33775,9 @@ export namespace Prisma {
33637
33775
  AND?: RewardBreakdownScalarWhereWithAggregatesInput | RewardBreakdownScalarWhereWithAggregatesInput[]
33638
33776
  OR?: RewardBreakdownScalarWhereWithAggregatesInput[]
33639
33777
  NOT?: RewardBreakdownScalarWhereWithAggregatesInput | RewardBreakdownScalarWhereWithAggregatesInput[]
33640
- id?: BigIntWithAggregatesFilter<"RewardBreakdown"> | bigint | number
33778
+ id?: IntWithAggregatesFilter<"RewardBreakdown"> | number
33779
+ stringId?: StringWithAggregatesFilter<"RewardBreakdown"> | string
33780
+ uuid?: UuidWithAggregatesFilter<"RewardBreakdown"> | string
33641
33781
  protocolId?: StringNullableWithAggregatesFilter<"RewardBreakdown"> | string | null
33642
33782
  reason?: StringWithAggregatesFilter<"RewardBreakdown"> | string
33643
33783
  amount?: StringWithAggregatesFilter<"RewardBreakdown"> | string
@@ -34228,6 +34368,8 @@ export namespace Prisma {
34228
34368
  }
34229
34369
 
34230
34370
  export type UserComputedValueCreateInput = {
34371
+ stringId?: string
34372
+ uuid?: string
34231
34373
  reason: string
34232
34374
  boost?: number | null
34233
34375
  Campaign: CampaignCreateNestedOneWithoutUserComputedValueInput
@@ -34236,6 +34378,8 @@ export namespace Prisma {
34236
34378
 
34237
34379
  export type UserComputedValueUncheckedCreateInput = {
34238
34380
  id?: number
34381
+ stringId?: string
34382
+ uuid?: string
34239
34383
  campaignId: string
34240
34384
  address: string
34241
34385
  reason: string
@@ -34243,6 +34387,8 @@ export namespace Prisma {
34243
34387
  }
34244
34388
 
34245
34389
  export type UserComputedValueUpdateInput = {
34390
+ stringId?: StringFieldUpdateOperationsInput | string
34391
+ uuid?: StringFieldUpdateOperationsInput | string
34246
34392
  reason?: StringFieldUpdateOperationsInput | string
34247
34393
  boost?: NullableFloatFieldUpdateOperationsInput | number | null
34248
34394
  Campaign?: CampaignUpdateOneRequiredWithoutUserComputedValueNestedInput
@@ -34251,6 +34397,8 @@ export namespace Prisma {
34251
34397
 
34252
34398
  export type UserComputedValueUncheckedUpdateInput = {
34253
34399
  id?: IntFieldUpdateOperationsInput | number
34400
+ stringId?: StringFieldUpdateOperationsInput | string
34401
+ uuid?: StringFieldUpdateOperationsInput | string
34254
34402
  campaignId?: StringFieldUpdateOperationsInput | string
34255
34403
  address?: StringFieldUpdateOperationsInput | string
34256
34404
  reason?: StringFieldUpdateOperationsInput | string
@@ -34259,6 +34407,8 @@ export namespace Prisma {
34259
34407
 
34260
34408
  export type UserComputedValueCreateManyInput = {
34261
34409
  id?: number
34410
+ stringId?: string
34411
+ uuid?: string
34262
34412
  campaignId: string
34263
34413
  address: string
34264
34414
  reason: string
@@ -34266,12 +34416,16 @@ export namespace Prisma {
34266
34416
  }
34267
34417
 
34268
34418
  export type UserComputedValueUpdateManyMutationInput = {
34419
+ stringId?: StringFieldUpdateOperationsInput | string
34420
+ uuid?: StringFieldUpdateOperationsInput | string
34269
34421
  reason?: StringFieldUpdateOperationsInput | string
34270
34422
  boost?: NullableFloatFieldUpdateOperationsInput | number | null
34271
34423
  }
34272
34424
 
34273
34425
  export type UserComputedValueUncheckedUpdateManyInput = {
34274
34426
  id?: IntFieldUpdateOperationsInput | number
34427
+ stringId?: StringFieldUpdateOperationsInput | string
34428
+ uuid?: StringFieldUpdateOperationsInput | string
34275
34429
  campaignId?: StringFieldUpdateOperationsInput | string
34276
34430
  address?: StringFieldUpdateOperationsInput | string
34277
34431
  reason?: StringFieldUpdateOperationsInput | string
@@ -34793,6 +34947,7 @@ export namespace Prisma {
34793
34947
  }
34794
34948
 
34795
34949
  export type AprBreakdownCreateInput = {
34950
+ uuid?: string
34796
34951
  identifier: string
34797
34952
  type: $Enums.AprType
34798
34953
  value: number
@@ -34801,6 +34956,7 @@ export namespace Prisma {
34801
34956
 
34802
34957
  export type AprBreakdownUncheckedCreateInput = {
34803
34958
  id?: number
34959
+ uuid?: string
34804
34960
  identifier: string
34805
34961
  type: $Enums.AprType
34806
34962
  value: number
@@ -34808,6 +34964,7 @@ export namespace Prisma {
34808
34964
  }
34809
34965
 
34810
34966
  export type AprBreakdownUpdateInput = {
34967
+ uuid?: StringFieldUpdateOperationsInput | string
34811
34968
  identifier?: StringFieldUpdateOperationsInput | string
34812
34969
  type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
34813
34970
  value?: FloatFieldUpdateOperationsInput | number
@@ -34816,6 +34973,7 @@ export namespace Prisma {
34816
34973
 
34817
34974
  export type AprBreakdownUncheckedUpdateInput = {
34818
34975
  id?: IntFieldUpdateOperationsInput | number
34976
+ uuid?: StringFieldUpdateOperationsInput | string
34819
34977
  identifier?: StringFieldUpdateOperationsInput | string
34820
34978
  type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
34821
34979
  value?: FloatFieldUpdateOperationsInput | number
@@ -34824,6 +34982,7 @@ export namespace Prisma {
34824
34982
 
34825
34983
  export type AprBreakdownCreateManyInput = {
34826
34984
  id?: number
34985
+ uuid?: string
34827
34986
  identifier: string
34828
34987
  type: $Enums.AprType
34829
34988
  value: number
@@ -34831,6 +34990,7 @@ export namespace Prisma {
34831
34990
  }
34832
34991
 
34833
34992
  export type AprBreakdownUpdateManyMutationInput = {
34993
+ uuid?: StringFieldUpdateOperationsInput | string
34834
34994
  identifier?: StringFieldUpdateOperationsInput | string
34835
34995
  type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
34836
34996
  value?: FloatFieldUpdateOperationsInput | number
@@ -34838,6 +34998,7 @@ export namespace Prisma {
34838
34998
 
34839
34999
  export type AprBreakdownUncheckedUpdateManyInput = {
34840
35000
  id?: IntFieldUpdateOperationsInput | number
35001
+ uuid?: StringFieldUpdateOperationsInput | string
34841
35002
  identifier?: StringFieldUpdateOperationsInput | string
34842
35003
  type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
34843
35004
  value?: FloatFieldUpdateOperationsInput | number
@@ -34897,6 +35058,7 @@ export namespace Prisma {
34897
35058
  }
34898
35059
 
34899
35060
  export type TVLBreakdownCreateInput = {
35061
+ uuid?: string
34900
35062
  identifier: string
34901
35063
  type: $Enums.TvlType
34902
35064
  value: number
@@ -34905,6 +35067,7 @@ export namespace Prisma {
34905
35067
 
34906
35068
  export type TVLBreakdownUncheckedCreateInput = {
34907
35069
  id?: number
35070
+ uuid?: string
34908
35071
  identifier: string
34909
35072
  type: $Enums.TvlType
34910
35073
  value: number
@@ -34912,6 +35075,7 @@ export namespace Prisma {
34912
35075
  }
34913
35076
 
34914
35077
  export type TVLBreakdownUpdateInput = {
35078
+ uuid?: StringFieldUpdateOperationsInput | string
34915
35079
  identifier?: StringFieldUpdateOperationsInput | string
34916
35080
  type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
34917
35081
  value?: FloatFieldUpdateOperationsInput | number
@@ -34920,6 +35084,7 @@ export namespace Prisma {
34920
35084
 
34921
35085
  export type TVLBreakdownUncheckedUpdateInput = {
34922
35086
  id?: IntFieldUpdateOperationsInput | number
35087
+ uuid?: StringFieldUpdateOperationsInput | string
34923
35088
  identifier?: StringFieldUpdateOperationsInput | string
34924
35089
  type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
34925
35090
  value?: FloatFieldUpdateOperationsInput | number
@@ -34928,6 +35093,7 @@ export namespace Prisma {
34928
35093
 
34929
35094
  export type TVLBreakdownCreateManyInput = {
34930
35095
  id?: number
35096
+ uuid?: string
34931
35097
  identifier: string
34932
35098
  type: $Enums.TvlType
34933
35099
  value: number
@@ -34935,6 +35101,7 @@ export namespace Prisma {
34935
35101
  }
34936
35102
 
34937
35103
  export type TVLBreakdownUpdateManyMutationInput = {
35104
+ uuid?: StringFieldUpdateOperationsInput | string
34938
35105
  identifier?: StringFieldUpdateOperationsInput | string
34939
35106
  type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
34940
35107
  value?: FloatFieldUpdateOperationsInput | number
@@ -34942,6 +35109,7 @@ export namespace Prisma {
34942
35109
 
34943
35110
  export type TVLBreakdownUncheckedUpdateManyInput = {
34944
35111
  id?: IntFieldUpdateOperationsInput | number
35112
+ uuid?: StringFieldUpdateOperationsInput | string
34945
35113
  identifier?: StringFieldUpdateOperationsInput | string
34946
35114
  type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
34947
35115
  value?: FloatFieldUpdateOperationsInput | number
@@ -35001,6 +35169,7 @@ export namespace Prisma {
35001
35169
  }
35002
35170
 
35003
35171
  export type DailyRewardsBreakdownCreateInput = {
35172
+ uuid?: string
35004
35173
  value: number
35005
35174
  Campaign: CampaignCreateNestedOneWithoutDailyRewardsBreakdownInput
35006
35175
  DailyRewardsRecord: DailyRewardsRecordCreateNestedOneWithoutDailyRewardsBreakdownInput
@@ -35008,12 +35177,14 @@ export namespace Prisma {
35008
35177
 
35009
35178
  export type DailyRewardsBreakdownUncheckedCreateInput = {
35010
35179
  id?: number
35180
+ uuid?: string
35011
35181
  value: number
35012
35182
  campaignId: string
35013
35183
  dailyRewardsRecordId: string
35014
35184
  }
35015
35185
 
35016
35186
  export type DailyRewardsBreakdownUpdateInput = {
35187
+ uuid?: StringFieldUpdateOperationsInput | string
35017
35188
  value?: FloatFieldUpdateOperationsInput | number
35018
35189
  Campaign?: CampaignUpdateOneRequiredWithoutDailyRewardsBreakdownNestedInput
35019
35190
  DailyRewardsRecord?: DailyRewardsRecordUpdateOneRequiredWithoutDailyRewardsBreakdownNestedInput
@@ -35021,6 +35192,7 @@ export namespace Prisma {
35021
35192
 
35022
35193
  export type DailyRewardsBreakdownUncheckedUpdateInput = {
35023
35194
  id?: IntFieldUpdateOperationsInput | number
35195
+ uuid?: StringFieldUpdateOperationsInput | string
35024
35196
  value?: FloatFieldUpdateOperationsInput | number
35025
35197
  campaignId?: StringFieldUpdateOperationsInput | string
35026
35198
  dailyRewardsRecordId?: StringFieldUpdateOperationsInput | string
@@ -35028,17 +35200,20 @@ export namespace Prisma {
35028
35200
 
35029
35201
  export type DailyRewardsBreakdownCreateManyInput = {
35030
35202
  id?: number
35203
+ uuid?: string
35031
35204
  value: number
35032
35205
  campaignId: string
35033
35206
  dailyRewardsRecordId: string
35034
35207
  }
35035
35208
 
35036
35209
  export type DailyRewardsBreakdownUpdateManyMutationInput = {
35210
+ uuid?: StringFieldUpdateOperationsInput | string
35037
35211
  value?: FloatFieldUpdateOperationsInput | number
35038
35212
  }
35039
35213
 
35040
35214
  export type DailyRewardsBreakdownUncheckedUpdateManyInput = {
35041
35215
  id?: IntFieldUpdateOperationsInput | number
35216
+ uuid?: StringFieldUpdateOperationsInput | string
35042
35217
  value?: FloatFieldUpdateOperationsInput | number
35043
35218
  campaignId?: StringFieldUpdateOperationsInput | string
35044
35219
  dailyRewardsRecordId?: StringFieldUpdateOperationsInput | string
@@ -35226,7 +35401,8 @@ export namespace Prisma {
35226
35401
  }
35227
35402
 
35228
35403
  export type RewardBreakdownCreateInput = {
35229
- id?: bigint | number
35404
+ stringId?: string
35405
+ uuid?: string
35230
35406
  reason: string
35231
35407
  amount: string
35232
35408
  claimed: string
@@ -35237,7 +35413,9 @@ export namespace Prisma {
35237
35413
  }
35238
35414
 
35239
35415
  export type RewardBreakdownUncheckedCreateInput = {
35240
- id?: bigint | number
35416
+ id?: number
35417
+ stringId?: string
35418
+ uuid?: string
35241
35419
  protocolId?: string | null
35242
35420
  reason: string
35243
35421
  amount: string
@@ -35248,7 +35426,8 @@ export namespace Prisma {
35248
35426
  }
35249
35427
 
35250
35428
  export type RewardBreakdownUpdateInput = {
35251
- id?: BigIntFieldUpdateOperationsInput | bigint | number
35429
+ stringId?: StringFieldUpdateOperationsInput | string
35430
+ uuid?: StringFieldUpdateOperationsInput | string
35252
35431
  reason?: StringFieldUpdateOperationsInput | string
35253
35432
  amount?: StringFieldUpdateOperationsInput | string
35254
35433
  claimed?: StringFieldUpdateOperationsInput | string
@@ -35259,7 +35438,9 @@ export namespace Prisma {
35259
35438
  }
35260
35439
 
35261
35440
  export type RewardBreakdownUncheckedUpdateInput = {
35262
- id?: BigIntFieldUpdateOperationsInput | bigint | number
35441
+ id?: IntFieldUpdateOperationsInput | number
35442
+ stringId?: StringFieldUpdateOperationsInput | string
35443
+ uuid?: StringFieldUpdateOperationsInput | string
35263
35444
  protocolId?: NullableStringFieldUpdateOperationsInput | string | null
35264
35445
  reason?: StringFieldUpdateOperationsInput | string
35265
35446
  amount?: StringFieldUpdateOperationsInput | string
@@ -35270,7 +35451,9 @@ export namespace Prisma {
35270
35451
  }
35271
35452
 
35272
35453
  export type RewardBreakdownCreateManyInput = {
35273
- id?: bigint | number
35454
+ id?: number
35455
+ stringId?: string
35456
+ uuid?: string
35274
35457
  protocolId?: string | null
35275
35458
  reason: string
35276
35459
  amount: string
@@ -35281,7 +35464,8 @@ export namespace Prisma {
35281
35464
  }
35282
35465
 
35283
35466
  export type RewardBreakdownUpdateManyMutationInput = {
35284
- id?: BigIntFieldUpdateOperationsInput | bigint | number
35467
+ stringId?: StringFieldUpdateOperationsInput | string
35468
+ uuid?: StringFieldUpdateOperationsInput | string
35285
35469
  reason?: StringFieldUpdateOperationsInput | string
35286
35470
  amount?: StringFieldUpdateOperationsInput | string
35287
35471
  claimed?: StringFieldUpdateOperationsInput | string
@@ -35289,7 +35473,9 @@ export namespace Prisma {
35289
35473
  }
35290
35474
 
35291
35475
  export type RewardBreakdownUncheckedUpdateManyInput = {
35292
- id?: BigIntFieldUpdateOperationsInput | bigint | number
35476
+ id?: IntFieldUpdateOperationsInput | number
35477
+ stringId?: StringFieldUpdateOperationsInput | string
35478
+ uuid?: StringFieldUpdateOperationsInput | string
35293
35479
  protocolId?: NullableStringFieldUpdateOperationsInput | string | null
35294
35480
  reason?: StringFieldUpdateOperationsInput | string
35295
35481
  amount?: StringFieldUpdateOperationsInput | string
@@ -36093,6 +36279,19 @@ export namespace Prisma {
36093
36279
  _max?: NestedFloatNullableFilter<$PrismaModel>
36094
36280
  }
36095
36281
 
36282
+ export type UuidFilter<$PrismaModel = never> = {
36283
+ equals?: string | StringFieldRefInput<$PrismaModel>
36284
+ in?: string[] | ListStringFieldRefInput<$PrismaModel>
36285
+ notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
36286
+ lt?: string | StringFieldRefInput<$PrismaModel>
36287
+ lte?: string | StringFieldRefInput<$PrismaModel>
36288
+ gt?: string | StringFieldRefInput<$PrismaModel>
36289
+ gte?: string | StringFieldRefInput<$PrismaModel>
36290
+ search?: string
36291
+ mode?: QueryMode
36292
+ not?: NestedUuidFilter<$PrismaModel> | string
36293
+ }
36294
+
36096
36295
  export type UserNullableScalarRelationFilter = {
36097
36296
  is?: UserWhereInput | null
36098
36297
  isNot?: UserWhereInput | null
@@ -36112,6 +36311,8 @@ export namespace Prisma {
36112
36311
 
36113
36312
  export type UserComputedValueCountOrderByAggregateInput = {
36114
36313
  id?: SortOrder
36314
+ stringId?: SortOrder
36315
+ uuid?: SortOrder
36115
36316
  campaignId?: SortOrder
36116
36317
  address?: SortOrder
36117
36318
  reason?: SortOrder
@@ -36125,6 +36326,8 @@ export namespace Prisma {
36125
36326
 
36126
36327
  export type UserComputedValueMaxOrderByAggregateInput = {
36127
36328
  id?: SortOrder
36329
+ stringId?: SortOrder
36330
+ uuid?: SortOrder
36128
36331
  campaignId?: SortOrder
36129
36332
  address?: SortOrder
36130
36333
  reason?: SortOrder
@@ -36133,6 +36336,8 @@ export namespace Prisma {
36133
36336
 
36134
36337
  export type UserComputedValueMinOrderByAggregateInput = {
36135
36338
  id?: SortOrder
36339
+ stringId?: SortOrder
36340
+ uuid?: SortOrder
36136
36341
  campaignId?: SortOrder
36137
36342
  address?: SortOrder
36138
36343
  reason?: SortOrder
@@ -36144,6 +36349,22 @@ export namespace Prisma {
36144
36349
  boost?: SortOrder
36145
36350
  }
36146
36351
 
36352
+ export type UuidWithAggregatesFilter<$PrismaModel = never> = {
36353
+ equals?: string | StringFieldRefInput<$PrismaModel>
36354
+ in?: string[] | ListStringFieldRefInput<$PrismaModel>
36355
+ notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
36356
+ lt?: string | StringFieldRefInput<$PrismaModel>
36357
+ lte?: string | StringFieldRefInput<$PrismaModel>
36358
+ gt?: string | StringFieldRefInput<$PrismaModel>
36359
+ gte?: string | StringFieldRefInput<$PrismaModel>
36360
+ search?: string
36361
+ mode?: QueryMode
36362
+ not?: NestedUuidWithAggregatesFilter<$PrismaModel> | string
36363
+ _count?: NestedIntFilter<$PrismaModel>
36364
+ _min?: NestedStringFilter<$PrismaModel>
36365
+ _max?: NestedStringFilter<$PrismaModel>
36366
+ }
36367
+
36147
36368
  export type ExplorerListRelationFilter = {
36148
36369
  every?: ExplorerWhereInput
36149
36370
  some?: ExplorerWhereInput
@@ -36721,6 +36942,7 @@ export namespace Prisma {
36721
36942
 
36722
36943
  export type AprBreakdownCountOrderByAggregateInput = {
36723
36944
  id?: SortOrder
36945
+ uuid?: SortOrder
36724
36946
  identifier?: SortOrder
36725
36947
  type?: SortOrder
36726
36948
  value?: SortOrder
@@ -36734,6 +36956,7 @@ export namespace Prisma {
36734
36956
 
36735
36957
  export type AprBreakdownMaxOrderByAggregateInput = {
36736
36958
  id?: SortOrder
36959
+ uuid?: SortOrder
36737
36960
  identifier?: SortOrder
36738
36961
  type?: SortOrder
36739
36962
  value?: SortOrder
@@ -36742,6 +36965,7 @@ export namespace Prisma {
36742
36965
 
36743
36966
  export type AprBreakdownMinOrderByAggregateInput = {
36744
36967
  id?: SortOrder
36968
+ uuid?: SortOrder
36745
36969
  identifier?: SortOrder
36746
36970
  type?: SortOrder
36747
36971
  value?: SortOrder
@@ -36835,6 +37059,7 @@ export namespace Prisma {
36835
37059
 
36836
37060
  export type TVLBreakdownCountOrderByAggregateInput = {
36837
37061
  id?: SortOrder
37062
+ uuid?: SortOrder
36838
37063
  identifier?: SortOrder
36839
37064
  type?: SortOrder
36840
37065
  value?: SortOrder
@@ -36848,6 +37073,7 @@ export namespace Prisma {
36848
37073
 
36849
37074
  export type TVLBreakdownMaxOrderByAggregateInput = {
36850
37075
  id?: SortOrder
37076
+ uuid?: SortOrder
36851
37077
  identifier?: SortOrder
36852
37078
  type?: SortOrder
36853
37079
  value?: SortOrder
@@ -36856,6 +37082,7 @@ export namespace Prisma {
36856
37082
 
36857
37083
  export type TVLBreakdownMinOrderByAggregateInput = {
36858
37084
  id?: SortOrder
37085
+ uuid?: SortOrder
36859
37086
  identifier?: SortOrder
36860
37087
  type?: SortOrder
36861
37088
  value?: SortOrder
@@ -36932,6 +37159,7 @@ export namespace Prisma {
36932
37159
 
36933
37160
  export type DailyRewardsBreakdownCountOrderByAggregateInput = {
36934
37161
  id?: SortOrder
37162
+ uuid?: SortOrder
36935
37163
  value?: SortOrder
36936
37164
  campaignId?: SortOrder
36937
37165
  dailyRewardsRecordId?: SortOrder
@@ -36944,6 +37172,7 @@ export namespace Prisma {
36944
37172
 
36945
37173
  export type DailyRewardsBreakdownMaxOrderByAggregateInput = {
36946
37174
  id?: SortOrder
37175
+ uuid?: SortOrder
36947
37176
  value?: SortOrder
36948
37177
  campaignId?: SortOrder
36949
37178
  dailyRewardsRecordId?: SortOrder
@@ -36951,6 +37180,7 @@ export namespace Prisma {
36951
37180
 
36952
37181
  export type DailyRewardsBreakdownMinOrderByAggregateInput = {
36953
37182
  id?: SortOrder
37183
+ uuid?: SortOrder
36954
37184
  value?: SortOrder
36955
37185
  campaignId?: SortOrder
36956
37186
  dailyRewardsRecordId?: SortOrder
@@ -37089,6 +37319,8 @@ export namespace Prisma {
37089
37319
 
37090
37320
  export type RewardBreakdownCountOrderByAggregateInput = {
37091
37321
  id?: SortOrder
37322
+ stringId?: SortOrder
37323
+ uuid?: SortOrder
37092
37324
  protocolId?: SortOrder
37093
37325
  reason?: SortOrder
37094
37326
  amount?: SortOrder
@@ -37104,6 +37336,8 @@ export namespace Prisma {
37104
37336
 
37105
37337
  export type RewardBreakdownMaxOrderByAggregateInput = {
37106
37338
  id?: SortOrder
37339
+ stringId?: SortOrder
37340
+ uuid?: SortOrder
37107
37341
  protocolId?: SortOrder
37108
37342
  reason?: SortOrder
37109
37343
  amount?: SortOrder
@@ -37115,6 +37349,8 @@ export namespace Prisma {
37115
37349
 
37116
37350
  export type RewardBreakdownMinOrderByAggregateInput = {
37117
37351
  id?: SortOrder
37352
+ stringId?: SortOrder
37353
+ uuid?: SortOrder
37118
37354
  protocolId?: SortOrder
37119
37355
  reason?: SortOrder
37120
37356
  amount?: SortOrder
@@ -39796,6 +40032,33 @@ export namespace Prisma {
39796
40032
  _max?: NestedFloatNullableFilter<$PrismaModel>
39797
40033
  }
39798
40034
 
40035
+ export type NestedUuidFilter<$PrismaModel = never> = {
40036
+ equals?: string | StringFieldRefInput<$PrismaModel>
40037
+ in?: string[] | ListStringFieldRefInput<$PrismaModel>
40038
+ notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
40039
+ lt?: string | StringFieldRefInput<$PrismaModel>
40040
+ lte?: string | StringFieldRefInput<$PrismaModel>
40041
+ gt?: string | StringFieldRefInput<$PrismaModel>
40042
+ gte?: string | StringFieldRefInput<$PrismaModel>
40043
+ search?: string
40044
+ not?: NestedUuidFilter<$PrismaModel> | string
40045
+ }
40046
+
40047
+ export type NestedUuidWithAggregatesFilter<$PrismaModel = never> = {
40048
+ equals?: string | StringFieldRefInput<$PrismaModel>
40049
+ in?: string[] | ListStringFieldRefInput<$PrismaModel>
40050
+ notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
40051
+ lt?: string | StringFieldRefInput<$PrismaModel>
40052
+ lte?: string | StringFieldRefInput<$PrismaModel>
40053
+ gt?: string | StringFieldRefInput<$PrismaModel>
40054
+ gte?: string | StringFieldRefInput<$PrismaModel>
40055
+ search?: string
40056
+ not?: NestedUuidWithAggregatesFilter<$PrismaModel> | string
40057
+ _count?: NestedIntFilter<$PrismaModel>
40058
+ _min?: NestedStringFilter<$PrismaModel>
40059
+ _max?: NestedStringFilter<$PrismaModel>
40060
+ }
40061
+
39799
40062
  export type NestedEnumExplorerTypeFilter<$PrismaModel = never> = {
39800
40063
  equals?: $Enums.ExplorerType | EnumExplorerTypeFieldRefInput<$PrismaModel>
39801
40064
  in?: $Enums.ExplorerType[] | ListEnumExplorerTypeFieldRefInput<$PrismaModel>
@@ -40154,7 +40417,8 @@ export namespace Prisma {
40154
40417
  }
40155
40418
 
40156
40419
  export type RewardBreakdownCreateWithoutCampaignInput = {
40157
- id?: bigint | number
40420
+ stringId?: string
40421
+ uuid?: string
40158
40422
  reason: string
40159
40423
  amount: string
40160
40424
  claimed: string
@@ -40164,7 +40428,9 @@ export namespace Prisma {
40164
40428
  }
40165
40429
 
40166
40430
  export type RewardBreakdownUncheckedCreateWithoutCampaignInput = {
40167
- id?: bigint | number
40431
+ id?: number
40432
+ stringId?: string
40433
+ uuid?: string
40168
40434
  protocolId?: string | null
40169
40435
  reason: string
40170
40436
  amount: string
@@ -40184,12 +40450,14 @@ export namespace Prisma {
40184
40450
  }
40185
40451
 
40186
40452
  export type DailyRewardsBreakdownCreateWithoutCampaignInput = {
40453
+ uuid?: string
40187
40454
  value: number
40188
40455
  DailyRewardsRecord: DailyRewardsRecordCreateNestedOneWithoutDailyRewardsBreakdownInput
40189
40456
  }
40190
40457
 
40191
40458
  export type DailyRewardsBreakdownUncheckedCreateWithoutCampaignInput = {
40192
40459
  id?: number
40460
+ uuid?: string
40193
40461
  value: number
40194
40462
  dailyRewardsRecordId: string
40195
40463
  }
@@ -40276,6 +40544,8 @@ export namespace Prisma {
40276
40544
  }
40277
40545
 
40278
40546
  export type UserComputedValueCreateWithoutCampaignInput = {
40547
+ stringId?: string
40548
+ uuid?: string
40279
40549
  reason: string
40280
40550
  boost?: number | null
40281
40551
  User?: UserCreateNestedOneWithoutUserComputedValueInput
@@ -40283,6 +40553,8 @@ export namespace Prisma {
40283
40553
 
40284
40554
  export type UserComputedValueUncheckedCreateWithoutCampaignInput = {
40285
40555
  id?: number
40556
+ stringId?: string
40557
+ uuid?: string
40286
40558
  address: string
40287
40559
  reason: string
40288
40560
  boost?: number | null
@@ -40496,7 +40768,9 @@ export namespace Prisma {
40496
40768
  AND?: RewardBreakdownScalarWhereInput | RewardBreakdownScalarWhereInput[]
40497
40769
  OR?: RewardBreakdownScalarWhereInput[]
40498
40770
  NOT?: RewardBreakdownScalarWhereInput | RewardBreakdownScalarWhereInput[]
40499
- id?: BigIntFilter<"RewardBreakdown"> | bigint | number
40771
+ id?: IntFilter<"RewardBreakdown"> | number
40772
+ stringId?: StringFilter<"RewardBreakdown"> | string
40773
+ uuid?: UuidFilter<"RewardBreakdown"> | string
40500
40774
  protocolId?: StringNullableFilter<"RewardBreakdown"> | string | null
40501
40775
  reason?: StringFilter<"RewardBreakdown"> | string
40502
40776
  amount?: StringFilter<"RewardBreakdown"> | string
@@ -40527,6 +40801,7 @@ export namespace Prisma {
40527
40801
  OR?: DailyRewardsBreakdownScalarWhereInput[]
40528
40802
  NOT?: DailyRewardsBreakdownScalarWhereInput | DailyRewardsBreakdownScalarWhereInput[]
40529
40803
  id?: IntFilter<"DailyRewardsBreakdown"> | number
40804
+ uuid?: UuidFilter<"DailyRewardsBreakdown"> | string
40530
40805
  value?: FloatFilter<"DailyRewardsBreakdown"> | number
40531
40806
  campaignId?: StringFilter<"DailyRewardsBreakdown"> | string
40532
40807
  dailyRewardsRecordId?: StringFilter<"DailyRewardsBreakdown"> | string
@@ -40636,6 +40911,8 @@ export namespace Prisma {
40636
40911
  OR?: UserComputedValueScalarWhereInput[]
40637
40912
  NOT?: UserComputedValueScalarWhereInput | UserComputedValueScalarWhereInput[]
40638
40913
  id?: IntFilter<"UserComputedValue"> | number
40914
+ stringId?: StringFilter<"UserComputedValue"> | string
40915
+ uuid?: UuidFilter<"UserComputedValue"> | string
40639
40916
  campaignId?: StringFilter<"UserComputedValue"> | string
40640
40917
  address?: StringFilter<"UserComputedValue"> | string
40641
40918
  reason?: StringFilter<"UserComputedValue"> | string
@@ -42189,7 +42466,8 @@ export namespace Prisma {
42189
42466
  }
42190
42467
 
42191
42468
  export type RewardBreakdownCreateWithoutProtocolInput = {
42192
- id?: bigint | number
42469
+ stringId?: string
42470
+ uuid?: string
42193
42471
  reason: string
42194
42472
  amount: string
42195
42473
  claimed: string
@@ -42199,7 +42477,9 @@ export namespace Prisma {
42199
42477
  }
42200
42478
 
42201
42479
  export type RewardBreakdownUncheckedCreateWithoutProtocolInput = {
42202
- id?: bigint | number
42480
+ id?: number
42481
+ stringId?: string
42482
+ uuid?: string
42203
42483
  reason: string
42204
42484
  amount: string
42205
42485
  claimed: string
@@ -42630,6 +42910,7 @@ export namespace Prisma {
42630
42910
  }
42631
42911
 
42632
42912
  export type AprBreakdownCreateWithoutAprRecordInput = {
42913
+ uuid?: string
42633
42914
  identifier: string
42634
42915
  type: $Enums.AprType
42635
42916
  value: number
@@ -42637,6 +42918,7 @@ export namespace Prisma {
42637
42918
 
42638
42919
  export type AprBreakdownUncheckedCreateWithoutAprRecordInput = {
42639
42920
  id?: number
42921
+ uuid?: string
42640
42922
  identifier: string
42641
42923
  type: $Enums.AprType
42642
42924
  value: number
@@ -42720,6 +43002,7 @@ export namespace Prisma {
42720
43002
  OR?: AprBreakdownScalarWhereInput[]
42721
43003
  NOT?: AprBreakdownScalarWhereInput | AprBreakdownScalarWhereInput[]
42722
43004
  id?: IntFilter<"AprBreakdown"> | number
43005
+ uuid?: UuidFilter<"AprBreakdown"> | string
42723
43006
  identifier?: StringFilter<"AprBreakdown"> | string
42724
43007
  type?: EnumAprTypeFilter<"AprBreakdown"> | $Enums.AprType
42725
43008
  value?: FloatFilter<"AprBreakdown"> | number
@@ -42824,6 +43107,7 @@ export namespace Prisma {
42824
43107
  }
42825
43108
 
42826
43109
  export type TVLBreakdownCreateWithoutTvlRecordInput = {
43110
+ uuid?: string
42827
43111
  identifier: string
42828
43112
  type: $Enums.TvlType
42829
43113
  value: number
@@ -42831,6 +43115,7 @@ export namespace Prisma {
42831
43115
 
42832
43116
  export type TVLBreakdownUncheckedCreateWithoutTvlRecordInput = {
42833
43117
  id?: number
43118
+ uuid?: string
42834
43119
  identifier: string
42835
43120
  type: $Enums.TvlType
42836
43121
  value: number
@@ -42914,6 +43199,7 @@ export namespace Prisma {
42914
43199
  OR?: TVLBreakdownScalarWhereInput[]
42915
43200
  NOT?: TVLBreakdownScalarWhereInput | TVLBreakdownScalarWhereInput[]
42916
43201
  id?: IntFilter<"TVLBreakdown"> | number
43202
+ uuid?: UuidFilter<"TVLBreakdown"> | string
42917
43203
  identifier?: StringFilter<"TVLBreakdown"> | string
42918
43204
  type?: EnumTvlTypeFilter<"TVLBreakdown"> | $Enums.TvlType
42919
43205
  value?: FloatFilter<"TVLBreakdown"> | number
@@ -43018,12 +43304,14 @@ export namespace Prisma {
43018
43304
  }
43019
43305
 
43020
43306
  export type DailyRewardsBreakdownCreateWithoutDailyRewardsRecordInput = {
43307
+ uuid?: string
43021
43308
  value: number
43022
43309
  Campaign: CampaignCreateNestedOneWithoutDailyRewardsBreakdownInput
43023
43310
  }
43024
43311
 
43025
43312
  export type DailyRewardsBreakdownUncheckedCreateWithoutDailyRewardsRecordInput = {
43026
43313
  id?: number
43314
+ uuid?: string
43027
43315
  value: number
43028
43316
  campaignId: string
43029
43317
  }
@@ -43415,6 +43703,8 @@ export namespace Prisma {
43415
43703
  }
43416
43704
 
43417
43705
  export type UserComputedValueCreateWithoutUserInput = {
43706
+ stringId?: string
43707
+ uuid?: string
43418
43708
  reason: string
43419
43709
  boost?: number | null
43420
43710
  Campaign: CampaignCreateNestedOneWithoutUserComputedValueInput
@@ -43422,6 +43712,8 @@ export namespace Prisma {
43422
43712
 
43423
43713
  export type UserComputedValueUncheckedCreateWithoutUserInput = {
43424
43714
  id?: number
43715
+ stringId?: string
43716
+ uuid?: string
43425
43717
  campaignId: string
43426
43718
  reason: string
43427
43719
  boost?: number | null
@@ -43682,7 +43974,8 @@ export namespace Prisma {
43682
43974
  }
43683
43975
 
43684
43976
  export type RewardBreakdownCreateWithoutRewardInput = {
43685
- id?: bigint | number
43977
+ stringId?: string
43978
+ uuid?: string
43686
43979
  reason: string
43687
43980
  amount: string
43688
43981
  claimed: string
@@ -43692,7 +43985,9 @@ export namespace Prisma {
43692
43985
  }
43693
43986
 
43694
43987
  export type RewardBreakdownUncheckedCreateWithoutRewardInput = {
43695
- id?: bigint | number
43988
+ id?: number
43989
+ stringId?: string
43990
+ uuid?: string
43696
43991
  protocolId?: string | null
43697
43992
  reason: string
43698
43993
  amount: string
@@ -44553,7 +44848,9 @@ export namespace Prisma {
44553
44848
  }
44554
44849
 
44555
44850
  export type RewardBreakdownCreateManyCampaignInput = {
44556
- id?: bigint | number
44851
+ id?: number
44852
+ stringId?: string
44853
+ uuid?: string
44557
44854
  protocolId?: string | null
44558
44855
  reason: string
44559
44856
  amount: string
@@ -44564,6 +44861,7 @@ export namespace Prisma {
44564
44861
 
44565
44862
  export type DailyRewardsBreakdownCreateManyCampaignInput = {
44566
44863
  id?: number
44864
+ uuid?: string
44567
44865
  value: number
44568
44866
  dailyRewardsRecordId: string
44569
44867
  }
@@ -44584,13 +44882,16 @@ export namespace Prisma {
44584
44882
 
44585
44883
  export type UserComputedValueCreateManyCampaignInput = {
44586
44884
  id?: number
44885
+ stringId?: string
44886
+ uuid?: string
44587
44887
  address: string
44588
44888
  reason: string
44589
44889
  boost?: number | null
44590
44890
  }
44591
44891
 
44592
44892
  export type RewardBreakdownUpdateWithoutCampaignInput = {
44593
- id?: BigIntFieldUpdateOperationsInput | bigint | number
44893
+ stringId?: StringFieldUpdateOperationsInput | string
44894
+ uuid?: StringFieldUpdateOperationsInput | string
44594
44895
  reason?: StringFieldUpdateOperationsInput | string
44595
44896
  amount?: StringFieldUpdateOperationsInput | string
44596
44897
  claimed?: StringFieldUpdateOperationsInput | string
@@ -44600,7 +44901,9 @@ export namespace Prisma {
44600
44901
  }
44601
44902
 
44602
44903
  export type RewardBreakdownUncheckedUpdateWithoutCampaignInput = {
44603
- id?: BigIntFieldUpdateOperationsInput | bigint | number
44904
+ id?: IntFieldUpdateOperationsInput | number
44905
+ stringId?: StringFieldUpdateOperationsInput | string
44906
+ uuid?: StringFieldUpdateOperationsInput | string
44604
44907
  protocolId?: NullableStringFieldUpdateOperationsInput | string | null
44605
44908
  reason?: StringFieldUpdateOperationsInput | string
44606
44909
  amount?: StringFieldUpdateOperationsInput | string
@@ -44610,7 +44913,9 @@ export namespace Prisma {
44610
44913
  }
44611
44914
 
44612
44915
  export type RewardBreakdownUncheckedUpdateManyWithoutCampaignInput = {
44613
- id?: BigIntFieldUpdateOperationsInput | bigint | number
44916
+ id?: IntFieldUpdateOperationsInput | number
44917
+ stringId?: StringFieldUpdateOperationsInput | string
44918
+ uuid?: StringFieldUpdateOperationsInput | string
44614
44919
  protocolId?: NullableStringFieldUpdateOperationsInput | string | null
44615
44920
  reason?: StringFieldUpdateOperationsInput | string
44616
44921
  amount?: StringFieldUpdateOperationsInput | string
@@ -44620,18 +44925,21 @@ export namespace Prisma {
44620
44925
  }
44621
44926
 
44622
44927
  export type DailyRewardsBreakdownUpdateWithoutCampaignInput = {
44928
+ uuid?: StringFieldUpdateOperationsInput | string
44623
44929
  value?: FloatFieldUpdateOperationsInput | number
44624
44930
  DailyRewardsRecord?: DailyRewardsRecordUpdateOneRequiredWithoutDailyRewardsBreakdownNestedInput
44625
44931
  }
44626
44932
 
44627
44933
  export type DailyRewardsBreakdownUncheckedUpdateWithoutCampaignInput = {
44628
44934
  id?: IntFieldUpdateOperationsInput | number
44935
+ uuid?: StringFieldUpdateOperationsInput | string
44629
44936
  value?: FloatFieldUpdateOperationsInput | number
44630
44937
  dailyRewardsRecordId?: StringFieldUpdateOperationsInput | string
44631
44938
  }
44632
44939
 
44633
44940
  export type DailyRewardsBreakdownUncheckedUpdateManyWithoutCampaignInput = {
44634
44941
  id?: IntFieldUpdateOperationsInput | number
44942
+ uuid?: StringFieldUpdateOperationsInput | string
44635
44943
  value?: FloatFieldUpdateOperationsInput | number
44636
44944
  dailyRewardsRecordId?: StringFieldUpdateOperationsInput | string
44637
44945
  }
@@ -44679,6 +44987,8 @@ export namespace Prisma {
44679
44987
  }
44680
44988
 
44681
44989
  export type UserComputedValueUpdateWithoutCampaignInput = {
44990
+ stringId?: StringFieldUpdateOperationsInput | string
44991
+ uuid?: StringFieldUpdateOperationsInput | string
44682
44992
  reason?: StringFieldUpdateOperationsInput | string
44683
44993
  boost?: NullableFloatFieldUpdateOperationsInput | number | null
44684
44994
  User?: UserUpdateOneWithoutUserComputedValueNestedInput
@@ -44686,6 +44996,8 @@ export namespace Prisma {
44686
44996
 
44687
44997
  export type UserComputedValueUncheckedUpdateWithoutCampaignInput = {
44688
44998
  id?: IntFieldUpdateOperationsInput | number
44999
+ stringId?: StringFieldUpdateOperationsInput | string
45000
+ uuid?: StringFieldUpdateOperationsInput | string
44689
45001
  address?: StringFieldUpdateOperationsInput | string
44690
45002
  reason?: StringFieldUpdateOperationsInput | string
44691
45003
  boost?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -44693,6 +45005,8 @@ export namespace Prisma {
44693
45005
 
44694
45006
  export type UserComputedValueUncheckedUpdateManyWithoutCampaignInput = {
44695
45007
  id?: IntFieldUpdateOperationsInput | number
45008
+ stringId?: StringFieldUpdateOperationsInput | string
45009
+ uuid?: StringFieldUpdateOperationsInput | string
44696
45010
  address?: StringFieldUpdateOperationsInput | string
44697
45011
  reason?: StringFieldUpdateOperationsInput | string
44698
45012
  boost?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -45385,7 +45699,9 @@ export namespace Prisma {
45385
45699
  }
45386
45700
 
45387
45701
  export type RewardBreakdownCreateManyProtocolInput = {
45388
- id?: bigint | number
45702
+ id?: number
45703
+ stringId?: string
45704
+ uuid?: string
45389
45705
  reason: string
45390
45706
  amount: string
45391
45707
  claimed: string
@@ -45510,7 +45826,8 @@ export namespace Prisma {
45510
45826
  }
45511
45827
 
45512
45828
  export type RewardBreakdownUpdateWithoutProtocolInput = {
45513
- id?: BigIntFieldUpdateOperationsInput | bigint | number
45829
+ stringId?: StringFieldUpdateOperationsInput | string
45830
+ uuid?: StringFieldUpdateOperationsInput | string
45514
45831
  reason?: StringFieldUpdateOperationsInput | string
45515
45832
  amount?: StringFieldUpdateOperationsInput | string
45516
45833
  claimed?: StringFieldUpdateOperationsInput | string
@@ -45520,7 +45837,9 @@ export namespace Prisma {
45520
45837
  }
45521
45838
 
45522
45839
  export type RewardBreakdownUncheckedUpdateWithoutProtocolInput = {
45523
- id?: BigIntFieldUpdateOperationsInput | bigint | number
45840
+ id?: IntFieldUpdateOperationsInput | number
45841
+ stringId?: StringFieldUpdateOperationsInput | string
45842
+ uuid?: StringFieldUpdateOperationsInput | string
45524
45843
  reason?: StringFieldUpdateOperationsInput | string
45525
45844
  amount?: StringFieldUpdateOperationsInput | string
45526
45845
  claimed?: StringFieldUpdateOperationsInput | string
@@ -45530,7 +45849,9 @@ export namespace Prisma {
45530
45849
  }
45531
45850
 
45532
45851
  export type RewardBreakdownUncheckedUpdateManyWithoutProtocolInput = {
45533
- id?: BigIntFieldUpdateOperationsInput | bigint | number
45852
+ id?: IntFieldUpdateOperationsInput | number
45853
+ stringId?: StringFieldUpdateOperationsInput | string
45854
+ uuid?: StringFieldUpdateOperationsInput | string
45534
45855
  reason?: StringFieldUpdateOperationsInput | string
45535
45856
  amount?: StringFieldUpdateOperationsInput | string
45536
45857
  claimed?: StringFieldUpdateOperationsInput | string
@@ -45815,12 +46136,14 @@ export namespace Prisma {
45815
46136
 
45816
46137
  export type AprBreakdownCreateManyAprRecordInput = {
45817
46138
  id?: number
46139
+ uuid?: string
45818
46140
  identifier: string
45819
46141
  type: $Enums.AprType
45820
46142
  value: number
45821
46143
  }
45822
46144
 
45823
46145
  export type AprBreakdownUpdateWithoutAprRecordInput = {
46146
+ uuid?: StringFieldUpdateOperationsInput | string
45824
46147
  identifier?: StringFieldUpdateOperationsInput | string
45825
46148
  type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
45826
46149
  value?: FloatFieldUpdateOperationsInput | number
@@ -45828,6 +46151,7 @@ export namespace Prisma {
45828
46151
 
45829
46152
  export type AprBreakdownUncheckedUpdateWithoutAprRecordInput = {
45830
46153
  id?: IntFieldUpdateOperationsInput | number
46154
+ uuid?: StringFieldUpdateOperationsInput | string
45831
46155
  identifier?: StringFieldUpdateOperationsInput | string
45832
46156
  type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
45833
46157
  value?: FloatFieldUpdateOperationsInput | number
@@ -45835,6 +46159,7 @@ export namespace Prisma {
45835
46159
 
45836
46160
  export type AprBreakdownUncheckedUpdateManyWithoutAprRecordInput = {
45837
46161
  id?: IntFieldUpdateOperationsInput | number
46162
+ uuid?: StringFieldUpdateOperationsInput | string
45838
46163
  identifier?: StringFieldUpdateOperationsInput | string
45839
46164
  type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
45840
46165
  value?: FloatFieldUpdateOperationsInput | number
@@ -45842,12 +46167,14 @@ export namespace Prisma {
45842
46167
 
45843
46168
  export type TVLBreakdownCreateManyTvlRecordInput = {
45844
46169
  id?: number
46170
+ uuid?: string
45845
46171
  identifier: string
45846
46172
  type: $Enums.TvlType
45847
46173
  value: number
45848
46174
  }
45849
46175
 
45850
46176
  export type TVLBreakdownUpdateWithoutTvlRecordInput = {
46177
+ uuid?: StringFieldUpdateOperationsInput | string
45851
46178
  identifier?: StringFieldUpdateOperationsInput | string
45852
46179
  type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
45853
46180
  value?: FloatFieldUpdateOperationsInput | number
@@ -45855,6 +46182,7 @@ export namespace Prisma {
45855
46182
 
45856
46183
  export type TVLBreakdownUncheckedUpdateWithoutTvlRecordInput = {
45857
46184
  id?: IntFieldUpdateOperationsInput | number
46185
+ uuid?: StringFieldUpdateOperationsInput | string
45858
46186
  identifier?: StringFieldUpdateOperationsInput | string
45859
46187
  type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
45860
46188
  value?: FloatFieldUpdateOperationsInput | number
@@ -45862,6 +46190,7 @@ export namespace Prisma {
45862
46190
 
45863
46191
  export type TVLBreakdownUncheckedUpdateManyWithoutTvlRecordInput = {
45864
46192
  id?: IntFieldUpdateOperationsInput | number
46193
+ uuid?: StringFieldUpdateOperationsInput | string
45865
46194
  identifier?: StringFieldUpdateOperationsInput | string
45866
46195
  type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
45867
46196
  value?: FloatFieldUpdateOperationsInput | number
@@ -45869,23 +46198,27 @@ export namespace Prisma {
45869
46198
 
45870
46199
  export type DailyRewardsBreakdownCreateManyDailyRewardsRecordInput = {
45871
46200
  id?: number
46201
+ uuid?: string
45872
46202
  value: number
45873
46203
  campaignId: string
45874
46204
  }
45875
46205
 
45876
46206
  export type DailyRewardsBreakdownUpdateWithoutDailyRewardsRecordInput = {
46207
+ uuid?: StringFieldUpdateOperationsInput | string
45877
46208
  value?: FloatFieldUpdateOperationsInput | number
45878
46209
  Campaign?: CampaignUpdateOneRequiredWithoutDailyRewardsBreakdownNestedInput
45879
46210
  }
45880
46211
 
45881
46212
  export type DailyRewardsBreakdownUncheckedUpdateWithoutDailyRewardsRecordInput = {
45882
46213
  id?: IntFieldUpdateOperationsInput | number
46214
+ uuid?: StringFieldUpdateOperationsInput | string
45883
46215
  value?: FloatFieldUpdateOperationsInput | number
45884
46216
  campaignId?: StringFieldUpdateOperationsInput | string
45885
46217
  }
45886
46218
 
45887
46219
  export type DailyRewardsBreakdownUncheckedUpdateManyWithoutDailyRewardsRecordInput = {
45888
46220
  id?: IntFieldUpdateOperationsInput | number
46221
+ uuid?: StringFieldUpdateOperationsInput | string
45889
46222
  value?: FloatFieldUpdateOperationsInput | number
45890
46223
  campaignId?: StringFieldUpdateOperationsInput | string
45891
46224
  }
@@ -45927,6 +46260,8 @@ export namespace Prisma {
45927
46260
 
45928
46261
  export type UserComputedValueCreateManyUserInput = {
45929
46262
  id?: number
46263
+ stringId?: string
46264
+ uuid?: string
45930
46265
  campaignId: string
45931
46266
  reason: string
45932
46267
  boost?: number | null
@@ -46050,6 +46385,8 @@ export namespace Prisma {
46050
46385
  }
46051
46386
 
46052
46387
  export type UserComputedValueUpdateWithoutUserInput = {
46388
+ stringId?: StringFieldUpdateOperationsInput | string
46389
+ uuid?: StringFieldUpdateOperationsInput | string
46053
46390
  reason?: StringFieldUpdateOperationsInput | string
46054
46391
  boost?: NullableFloatFieldUpdateOperationsInput | number | null
46055
46392
  Campaign?: CampaignUpdateOneRequiredWithoutUserComputedValueNestedInput
@@ -46057,6 +46394,8 @@ export namespace Prisma {
46057
46394
 
46058
46395
  export type UserComputedValueUncheckedUpdateWithoutUserInput = {
46059
46396
  id?: IntFieldUpdateOperationsInput | number
46397
+ stringId?: StringFieldUpdateOperationsInput | string
46398
+ uuid?: StringFieldUpdateOperationsInput | string
46060
46399
  campaignId?: StringFieldUpdateOperationsInput | string
46061
46400
  reason?: StringFieldUpdateOperationsInput | string
46062
46401
  boost?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -46064,6 +46403,8 @@ export namespace Prisma {
46064
46403
 
46065
46404
  export type UserComputedValueUncheckedUpdateManyWithoutUserInput = {
46066
46405
  id?: IntFieldUpdateOperationsInput | number
46406
+ stringId?: StringFieldUpdateOperationsInput | string
46407
+ uuid?: StringFieldUpdateOperationsInput | string
46067
46408
  campaignId?: StringFieldUpdateOperationsInput | string
46068
46409
  reason?: StringFieldUpdateOperationsInput | string
46069
46410
  boost?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -46098,7 +46439,9 @@ export namespace Prisma {
46098
46439
  }
46099
46440
 
46100
46441
  export type RewardBreakdownCreateManyRewardInput = {
46101
- id?: bigint | number
46442
+ id?: number
46443
+ stringId?: string
46444
+ uuid?: string
46102
46445
  protocolId?: string | null
46103
46446
  reason: string
46104
46447
  amount: string
@@ -46108,7 +46451,8 @@ export namespace Prisma {
46108
46451
  }
46109
46452
 
46110
46453
  export type RewardBreakdownUpdateWithoutRewardInput = {
46111
- id?: BigIntFieldUpdateOperationsInput | bigint | number
46454
+ stringId?: StringFieldUpdateOperationsInput | string
46455
+ uuid?: StringFieldUpdateOperationsInput | string
46112
46456
  reason?: StringFieldUpdateOperationsInput | string
46113
46457
  amount?: StringFieldUpdateOperationsInput | string
46114
46458
  claimed?: StringFieldUpdateOperationsInput | string
@@ -46118,7 +46462,9 @@ export namespace Prisma {
46118
46462
  }
46119
46463
 
46120
46464
  export type RewardBreakdownUncheckedUpdateWithoutRewardInput = {
46121
- id?: BigIntFieldUpdateOperationsInput | bigint | number
46465
+ id?: IntFieldUpdateOperationsInput | number
46466
+ stringId?: StringFieldUpdateOperationsInput | string
46467
+ uuid?: StringFieldUpdateOperationsInput | string
46122
46468
  protocolId?: NullableStringFieldUpdateOperationsInput | string | null
46123
46469
  reason?: StringFieldUpdateOperationsInput | string
46124
46470
  amount?: StringFieldUpdateOperationsInput | string
@@ -46128,7 +46474,9 @@ export namespace Prisma {
46128
46474
  }
46129
46475
 
46130
46476
  export type RewardBreakdownUncheckedUpdateManyWithoutRewardInput = {
46131
- id?: BigIntFieldUpdateOperationsInput | bigint | number
46477
+ id?: IntFieldUpdateOperationsInput | number
46478
+ stringId?: StringFieldUpdateOperationsInput | string
46479
+ uuid?: StringFieldUpdateOperationsInput | string
46132
46480
  protocolId?: NullableStringFieldUpdateOperationsInput | string | null
46133
46481
  reason?: StringFieldUpdateOperationsInput | string
46134
46482
  amount?: StringFieldUpdateOperationsInput | string