@merkl/api 0.20.4 → 0.20.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/database/api/.generated/drizzle/schema.d.ts +0 -102
- package/dist/database/api/.generated/drizzle/schema.js +5 -11
- package/dist/database/api/.generated/drizzle/schema.ts +5 -11
- package/dist/database/api/.generated/edge.js +8 -15
- package/dist/database/api/.generated/index-browser.js +5 -12
- package/dist/database/api/.generated/index.d.ts +149 -464
- package/dist/database/api/.generated/index.js +8 -15
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +5 -11
- package/dist/database/api/.generated/wasm.js +5 -12
- package/dist/src/eden/index.d.ts +65 -90
- package/dist/src/index.d.ts +13 -18
- package/dist/src/jobs/update-dynamic-data.js +2 -0
- package/dist/src/modules/v4/apr/apr.model.d.ts +3 -3
- package/dist/src/modules/v4/apr/apr.model.js +1 -1
- package/dist/src/modules/v4/computedValue/computedValue.controller.d.ts +1 -3
- package/dist/src/modules/v4/computedValue/computedValue.repository.d.ts +1 -3
- package/dist/src/modules/v4/computedValue/computedValue.repository.js +0 -2
- package/dist/src/modules/v4/computedValue/computedValue.service.d.ts +1 -3
- package/dist/src/modules/v4/dynamicData/dynamicData.service.js +2 -5
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +12 -15
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +6 -6
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +19 -36
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +17 -26
- package/dist/src/modules/v4/opportunity/opportunity.service.js +1 -1
- package/dist/src/modules/v4/reward/reward.model.d.ts +4 -4
- package/dist/src/modules/v4/reward/reward.model.js +1 -1
- package/dist/src/modules/v4/reward/reward.repository.d.ts +2 -4
- package/dist/src/modules/v4/reward/reward.service.d.ts +5 -10
- package/dist/src/modules/v4/reward/reward.service.js +1 -1
- package/dist/src/modules/v4/router.d.ts +13 -18
- package/dist/src/modules/v4/tvl/tvl.model.d.ts +3 -3
- package/dist/src/modules/v4/tvl/tvl.model.js +1 -1
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -7353,19 +7353,15 @@ export namespace Prisma {
|
|
7353
7353
|
}
|
7354
7354
|
|
7355
7355
|
export type UserComputedValueAvgAggregateOutputType = {
|
7356
|
-
id: number | null
|
7357
7356
|
boost: number | null
|
7358
7357
|
}
|
7359
7358
|
|
7360
7359
|
export type UserComputedValueSumAggregateOutputType = {
|
7361
|
-
id: number | null
|
7362
7360
|
boost: number | null
|
7363
7361
|
}
|
7364
7362
|
|
7365
7363
|
export type UserComputedValueMinAggregateOutputType = {
|
7366
|
-
id:
|
7367
|
-
stringId: string | null
|
7368
|
-
uuid: string | null
|
7364
|
+
id: string | null
|
7369
7365
|
campaignId: string | null
|
7370
7366
|
address: string | null
|
7371
7367
|
reason: string | null
|
@@ -7373,9 +7369,7 @@ export namespace Prisma {
|
|
7373
7369
|
}
|
7374
7370
|
|
7375
7371
|
export type UserComputedValueMaxAggregateOutputType = {
|
7376
|
-
id:
|
7377
|
-
stringId: string | null
|
7378
|
-
uuid: string | null
|
7372
|
+
id: string | null
|
7379
7373
|
campaignId: string | null
|
7380
7374
|
address: string | null
|
7381
7375
|
reason: string | null
|
@@ -7384,8 +7378,6 @@ export namespace Prisma {
|
|
7384
7378
|
|
7385
7379
|
export type UserComputedValueCountAggregateOutputType = {
|
7386
7380
|
id: number
|
7387
|
-
stringId: number
|
7388
|
-
uuid: number
|
7389
7381
|
campaignId: number
|
7390
7382
|
address: number
|
7391
7383
|
reason: number
|
@@ -7395,19 +7387,15 @@ export namespace Prisma {
|
|
7395
7387
|
|
7396
7388
|
|
7397
7389
|
export type UserComputedValueAvgAggregateInputType = {
|
7398
|
-
id?: true
|
7399
7390
|
boost?: true
|
7400
7391
|
}
|
7401
7392
|
|
7402
7393
|
export type UserComputedValueSumAggregateInputType = {
|
7403
|
-
id?: true
|
7404
7394
|
boost?: true
|
7405
7395
|
}
|
7406
7396
|
|
7407
7397
|
export type UserComputedValueMinAggregateInputType = {
|
7408
7398
|
id?: true
|
7409
|
-
stringId?: true
|
7410
|
-
uuid?: true
|
7411
7399
|
campaignId?: true
|
7412
7400
|
address?: true
|
7413
7401
|
reason?: true
|
@@ -7416,8 +7404,6 @@ export namespace Prisma {
|
|
7416
7404
|
|
7417
7405
|
export type UserComputedValueMaxAggregateInputType = {
|
7418
7406
|
id?: true
|
7419
|
-
stringId?: true
|
7420
|
-
uuid?: true
|
7421
7407
|
campaignId?: true
|
7422
7408
|
address?: true
|
7423
7409
|
reason?: true
|
@@ -7426,8 +7412,6 @@ export namespace Prisma {
|
|
7426
7412
|
|
7427
7413
|
export type UserComputedValueCountAggregateInputType = {
|
7428
7414
|
id?: true
|
7429
|
-
stringId?: true
|
7430
|
-
uuid?: true
|
7431
7415
|
campaignId?: true
|
7432
7416
|
address?: true
|
7433
7417
|
reason?: true
|
@@ -7522,9 +7506,7 @@ export namespace Prisma {
|
|
7522
7506
|
}
|
7523
7507
|
|
7524
7508
|
export type UserComputedValueGroupByOutputType = {
|
7525
|
-
id:
|
7526
|
-
stringId: string
|
7527
|
-
uuid: string
|
7509
|
+
id: string
|
7528
7510
|
campaignId: string
|
7529
7511
|
address: string
|
7530
7512
|
reason: string
|
@@ -7552,8 +7534,6 @@ export namespace Prisma {
|
|
7552
7534
|
|
7553
7535
|
export type UserComputedValueSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
7554
7536
|
id?: boolean
|
7555
|
-
stringId?: boolean
|
7556
|
-
uuid?: boolean
|
7557
7537
|
campaignId?: boolean
|
7558
7538
|
address?: boolean
|
7559
7539
|
reason?: boolean
|
@@ -7564,8 +7544,6 @@ export namespace Prisma {
|
|
7564
7544
|
|
7565
7545
|
export type UserComputedValueSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
7566
7546
|
id?: boolean
|
7567
|
-
stringId?: boolean
|
7568
|
-
uuid?: boolean
|
7569
7547
|
campaignId?: boolean
|
7570
7548
|
address?: boolean
|
7571
7549
|
reason?: boolean
|
@@ -7576,8 +7554,6 @@ export namespace Prisma {
|
|
7576
7554
|
|
7577
7555
|
export type UserComputedValueSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
7578
7556
|
id?: boolean
|
7579
|
-
stringId?: boolean
|
7580
|
-
uuid?: boolean
|
7581
7557
|
campaignId?: boolean
|
7582
7558
|
address?: boolean
|
7583
7559
|
reason?: boolean
|
@@ -7588,15 +7564,13 @@ export namespace Prisma {
|
|
7588
7564
|
|
7589
7565
|
export type UserComputedValueSelectScalar = {
|
7590
7566
|
id?: boolean
|
7591
|
-
stringId?: boolean
|
7592
|
-
uuid?: boolean
|
7593
7567
|
campaignId?: boolean
|
7594
7568
|
address?: boolean
|
7595
7569
|
reason?: boolean
|
7596
7570
|
boost?: boolean
|
7597
7571
|
}
|
7598
7572
|
|
7599
|
-
export type UserComputedValueOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "
|
7573
|
+
export type UserComputedValueOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "campaignId" | "address" | "reason" | "boost", ExtArgs["result"]["userComputedValue"]>
|
7600
7574
|
export type UserComputedValueInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
7601
7575
|
Campaign?: boolean | CampaignDefaultArgs<ExtArgs>
|
7602
7576
|
User?: boolean | UserComputedValue$UserArgs<ExtArgs>
|
@@ -7617,9 +7591,7 @@ export namespace Prisma {
|
|
7617
7591
|
User: Prisma.$UserPayload<ExtArgs> | null
|
7618
7592
|
}
|
7619
7593
|
scalars: $Extensions.GetPayloadResult<{
|
7620
|
-
id:
|
7621
|
-
stringId: string
|
7622
|
-
uuid: string
|
7594
|
+
id: string
|
7623
7595
|
campaignId: string
|
7624
7596
|
address: string
|
7625
7597
|
reason: string
|
@@ -8049,9 +8021,7 @@ export namespace Prisma {
|
|
8049
8021
|
* Fields of the UserComputedValue model
|
8050
8022
|
*/
|
8051
8023
|
interface UserComputedValueFieldRefs {
|
8052
|
-
readonly id: FieldRef<"UserComputedValue", '
|
8053
|
-
readonly stringId: FieldRef<"UserComputedValue", 'String'>
|
8054
|
-
readonly uuid: FieldRef<"UserComputedValue", 'String'>
|
8024
|
+
readonly id: FieldRef<"UserComputedValue", 'String'>
|
8055
8025
|
readonly campaignId: FieldRef<"UserComputedValue", 'String'>
|
8056
8026
|
readonly address: FieldRef<"UserComputedValue", 'String'>
|
8057
8027
|
readonly reason: FieldRef<"UserComputedValue", 'String'>
|
@@ -15926,18 +15896,15 @@ export namespace Prisma {
|
|
15926
15896
|
}
|
15927
15897
|
|
15928
15898
|
export type AprBreakdownAvgAggregateOutputType = {
|
15929
|
-
id: number | null
|
15930
15899
|
value: number | null
|
15931
15900
|
}
|
15932
15901
|
|
15933
15902
|
export type AprBreakdownSumAggregateOutputType = {
|
15934
|
-
id: number | null
|
15935
15903
|
value: number | null
|
15936
15904
|
}
|
15937
15905
|
|
15938
15906
|
export type AprBreakdownMinAggregateOutputType = {
|
15939
|
-
id:
|
15940
|
-
uuid: string | null
|
15907
|
+
id: string | null
|
15941
15908
|
identifier: string | null
|
15942
15909
|
type: $Enums.AprType | null
|
15943
15910
|
value: number | null
|
@@ -15945,8 +15912,7 @@ export namespace Prisma {
|
|
15945
15912
|
}
|
15946
15913
|
|
15947
15914
|
export type AprBreakdownMaxAggregateOutputType = {
|
15948
|
-
id:
|
15949
|
-
uuid: string | null
|
15915
|
+
id: string | null
|
15950
15916
|
identifier: string | null
|
15951
15917
|
type: $Enums.AprType | null
|
15952
15918
|
value: number | null
|
@@ -15955,7 +15921,6 @@ export namespace Prisma {
|
|
15955
15921
|
|
15956
15922
|
export type AprBreakdownCountAggregateOutputType = {
|
15957
15923
|
id: number
|
15958
|
-
uuid: number
|
15959
15924
|
identifier: number
|
15960
15925
|
type: number
|
15961
15926
|
value: number
|
@@ -15965,18 +15930,15 @@ export namespace Prisma {
|
|
15965
15930
|
|
15966
15931
|
|
15967
15932
|
export type AprBreakdownAvgAggregateInputType = {
|
15968
|
-
id?: true
|
15969
15933
|
value?: true
|
15970
15934
|
}
|
15971
15935
|
|
15972
15936
|
export type AprBreakdownSumAggregateInputType = {
|
15973
|
-
id?: true
|
15974
15937
|
value?: true
|
15975
15938
|
}
|
15976
15939
|
|
15977
15940
|
export type AprBreakdownMinAggregateInputType = {
|
15978
15941
|
id?: true
|
15979
|
-
uuid?: true
|
15980
15942
|
identifier?: true
|
15981
15943
|
type?: true
|
15982
15944
|
value?: true
|
@@ -15985,7 +15947,6 @@ export namespace Prisma {
|
|
15985
15947
|
|
15986
15948
|
export type AprBreakdownMaxAggregateInputType = {
|
15987
15949
|
id?: true
|
15988
|
-
uuid?: true
|
15989
15950
|
identifier?: true
|
15990
15951
|
type?: true
|
15991
15952
|
value?: true
|
@@ -15994,7 +15955,6 @@ export namespace Prisma {
|
|
15994
15955
|
|
15995
15956
|
export type AprBreakdownCountAggregateInputType = {
|
15996
15957
|
id?: true
|
15997
|
-
uuid?: true
|
15998
15958
|
identifier?: true
|
15999
15959
|
type?: true
|
16000
15960
|
value?: true
|
@@ -16089,8 +16049,7 @@ export namespace Prisma {
|
|
16089
16049
|
}
|
16090
16050
|
|
16091
16051
|
export type AprBreakdownGroupByOutputType = {
|
16092
|
-
id:
|
16093
|
-
uuid: string
|
16052
|
+
id: string
|
16094
16053
|
identifier: string
|
16095
16054
|
type: $Enums.AprType
|
16096
16055
|
value: number
|
@@ -16118,7 +16077,6 @@ export namespace Prisma {
|
|
16118
16077
|
|
16119
16078
|
export type AprBreakdownSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
16120
16079
|
id?: boolean
|
16121
|
-
uuid?: boolean
|
16122
16080
|
identifier?: boolean
|
16123
16081
|
type?: boolean
|
16124
16082
|
value?: boolean
|
@@ -16128,7 +16086,6 @@ export namespace Prisma {
|
|
16128
16086
|
|
16129
16087
|
export type AprBreakdownSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
16130
16088
|
id?: boolean
|
16131
|
-
uuid?: boolean
|
16132
16089
|
identifier?: boolean
|
16133
16090
|
type?: boolean
|
16134
16091
|
value?: boolean
|
@@ -16138,7 +16095,6 @@ export namespace Prisma {
|
|
16138
16095
|
|
16139
16096
|
export type AprBreakdownSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
16140
16097
|
id?: boolean
|
16141
|
-
uuid?: boolean
|
16142
16098
|
identifier?: boolean
|
16143
16099
|
type?: boolean
|
16144
16100
|
value?: boolean
|
@@ -16148,14 +16104,13 @@ export namespace Prisma {
|
|
16148
16104
|
|
16149
16105
|
export type AprBreakdownSelectScalar = {
|
16150
16106
|
id?: boolean
|
16151
|
-
uuid?: boolean
|
16152
16107
|
identifier?: boolean
|
16153
16108
|
type?: boolean
|
16154
16109
|
value?: boolean
|
16155
16110
|
aprRecordId?: boolean
|
16156
16111
|
}
|
16157
16112
|
|
16158
|
-
export type AprBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "
|
16113
|
+
export type AprBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "identifier" | "type" | "value" | "aprRecordId", ExtArgs["result"]["aprBreakdown"]>
|
16159
16114
|
export type AprBreakdownInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
16160
16115
|
AprRecord?: boolean | AprRecordDefaultArgs<ExtArgs>
|
16161
16116
|
}
|
@@ -16172,8 +16127,7 @@ export namespace Prisma {
|
|
16172
16127
|
AprRecord: Prisma.$AprRecordPayload<ExtArgs>
|
16173
16128
|
}
|
16174
16129
|
scalars: $Extensions.GetPayloadResult<{
|
16175
|
-
id:
|
16176
|
-
uuid: string
|
16130
|
+
id: string
|
16177
16131
|
identifier: string
|
16178
16132
|
type: $Enums.AprType
|
16179
16133
|
value: number
|
@@ -16602,8 +16556,7 @@ export namespace Prisma {
|
|
16602
16556
|
* Fields of the AprBreakdown model
|
16603
16557
|
*/
|
16604
16558
|
interface AprBreakdownFieldRefs {
|
16605
|
-
readonly id: FieldRef<"AprBreakdown", '
|
16606
|
-
readonly uuid: FieldRef<"AprBreakdown", 'String'>
|
16559
|
+
readonly id: FieldRef<"AprBreakdown", 'String'>
|
16607
16560
|
readonly identifier: FieldRef<"AprBreakdown", 'String'>
|
16608
16561
|
readonly type: FieldRef<"AprBreakdown", 'AprType'>
|
16609
16562
|
readonly value: FieldRef<"AprBreakdown", 'Float'>
|
@@ -18166,18 +18119,15 @@ export namespace Prisma {
|
|
18166
18119
|
}
|
18167
18120
|
|
18168
18121
|
export type TVLBreakdownAvgAggregateOutputType = {
|
18169
|
-
id: number | null
|
18170
18122
|
value: number | null
|
18171
18123
|
}
|
18172
18124
|
|
18173
18125
|
export type TVLBreakdownSumAggregateOutputType = {
|
18174
|
-
id: number | null
|
18175
18126
|
value: number | null
|
18176
18127
|
}
|
18177
18128
|
|
18178
18129
|
export type TVLBreakdownMinAggregateOutputType = {
|
18179
|
-
id:
|
18180
|
-
uuid: string | null
|
18130
|
+
id: string | null
|
18181
18131
|
identifier: string | null
|
18182
18132
|
type: $Enums.TvlType | null
|
18183
18133
|
value: number | null
|
@@ -18185,8 +18135,7 @@ export namespace Prisma {
|
|
18185
18135
|
}
|
18186
18136
|
|
18187
18137
|
export type TVLBreakdownMaxAggregateOutputType = {
|
18188
|
-
id:
|
18189
|
-
uuid: string | null
|
18138
|
+
id: string | null
|
18190
18139
|
identifier: string | null
|
18191
18140
|
type: $Enums.TvlType | null
|
18192
18141
|
value: number | null
|
@@ -18195,7 +18144,6 @@ export namespace Prisma {
|
|
18195
18144
|
|
18196
18145
|
export type TVLBreakdownCountAggregateOutputType = {
|
18197
18146
|
id: number
|
18198
|
-
uuid: number
|
18199
18147
|
identifier: number
|
18200
18148
|
type: number
|
18201
18149
|
value: number
|
@@ -18205,18 +18153,15 @@ export namespace Prisma {
|
|
18205
18153
|
|
18206
18154
|
|
18207
18155
|
export type TVLBreakdownAvgAggregateInputType = {
|
18208
|
-
id?: true
|
18209
18156
|
value?: true
|
18210
18157
|
}
|
18211
18158
|
|
18212
18159
|
export type TVLBreakdownSumAggregateInputType = {
|
18213
|
-
id?: true
|
18214
18160
|
value?: true
|
18215
18161
|
}
|
18216
18162
|
|
18217
18163
|
export type TVLBreakdownMinAggregateInputType = {
|
18218
18164
|
id?: true
|
18219
|
-
uuid?: true
|
18220
18165
|
identifier?: true
|
18221
18166
|
type?: true
|
18222
18167
|
value?: true
|
@@ -18225,7 +18170,6 @@ export namespace Prisma {
|
|
18225
18170
|
|
18226
18171
|
export type TVLBreakdownMaxAggregateInputType = {
|
18227
18172
|
id?: true
|
18228
|
-
uuid?: true
|
18229
18173
|
identifier?: true
|
18230
18174
|
type?: true
|
18231
18175
|
value?: true
|
@@ -18234,7 +18178,6 @@ export namespace Prisma {
|
|
18234
18178
|
|
18235
18179
|
export type TVLBreakdownCountAggregateInputType = {
|
18236
18180
|
id?: true
|
18237
|
-
uuid?: true
|
18238
18181
|
identifier?: true
|
18239
18182
|
type?: true
|
18240
18183
|
value?: true
|
@@ -18329,8 +18272,7 @@ export namespace Prisma {
|
|
18329
18272
|
}
|
18330
18273
|
|
18331
18274
|
export type TVLBreakdownGroupByOutputType = {
|
18332
|
-
id:
|
18333
|
-
uuid: string
|
18275
|
+
id: string
|
18334
18276
|
identifier: string
|
18335
18277
|
type: $Enums.TvlType
|
18336
18278
|
value: number
|
@@ -18358,7 +18300,6 @@ export namespace Prisma {
|
|
18358
18300
|
|
18359
18301
|
export type TVLBreakdownSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
18360
18302
|
id?: boolean
|
18361
|
-
uuid?: boolean
|
18362
18303
|
identifier?: boolean
|
18363
18304
|
type?: boolean
|
18364
18305
|
value?: boolean
|
@@ -18368,7 +18309,6 @@ export namespace Prisma {
|
|
18368
18309
|
|
18369
18310
|
export type TVLBreakdownSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
18370
18311
|
id?: boolean
|
18371
|
-
uuid?: boolean
|
18372
18312
|
identifier?: boolean
|
18373
18313
|
type?: boolean
|
18374
18314
|
value?: boolean
|
@@ -18378,7 +18318,6 @@ export namespace Prisma {
|
|
18378
18318
|
|
18379
18319
|
export type TVLBreakdownSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
18380
18320
|
id?: boolean
|
18381
|
-
uuid?: boolean
|
18382
18321
|
identifier?: boolean
|
18383
18322
|
type?: boolean
|
18384
18323
|
value?: boolean
|
@@ -18388,14 +18327,13 @@ export namespace Prisma {
|
|
18388
18327
|
|
18389
18328
|
export type TVLBreakdownSelectScalar = {
|
18390
18329
|
id?: boolean
|
18391
|
-
uuid?: boolean
|
18392
18330
|
identifier?: boolean
|
18393
18331
|
type?: boolean
|
18394
18332
|
value?: boolean
|
18395
18333
|
tvlRecordId?: boolean
|
18396
18334
|
}
|
18397
18335
|
|
18398
|
-
export type TVLBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "
|
18336
|
+
export type TVLBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "identifier" | "type" | "value" | "tvlRecordId", ExtArgs["result"]["tVLBreakdown"]>
|
18399
18337
|
export type TVLBreakdownInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
18400
18338
|
TvlRecord?: boolean | TVLRecordDefaultArgs<ExtArgs>
|
18401
18339
|
}
|
@@ -18412,8 +18350,7 @@ export namespace Prisma {
|
|
18412
18350
|
TvlRecord: Prisma.$TVLRecordPayload<ExtArgs>
|
18413
18351
|
}
|
18414
18352
|
scalars: $Extensions.GetPayloadResult<{
|
18415
|
-
id:
|
18416
|
-
uuid: string
|
18353
|
+
id: string
|
18417
18354
|
identifier: string
|
18418
18355
|
type: $Enums.TvlType
|
18419
18356
|
value: number
|
@@ -18842,8 +18779,7 @@ export namespace Prisma {
|
|
18842
18779
|
* Fields of the TVLBreakdown model
|
18843
18780
|
*/
|
18844
18781
|
interface TVLBreakdownFieldRefs {
|
18845
|
-
readonly id: FieldRef<"TVLBreakdown", '
|
18846
|
-
readonly uuid: FieldRef<"TVLBreakdown", 'String'>
|
18782
|
+
readonly id: FieldRef<"TVLBreakdown", 'String'>
|
18847
18783
|
readonly identifier: FieldRef<"TVLBreakdown", 'String'>
|
18848
18784
|
readonly type: FieldRef<"TVLBreakdown", 'TvlType'>
|
18849
18785
|
readonly value: FieldRef<"TVLBreakdown", 'Float'>
|
@@ -20406,26 +20342,22 @@ export namespace Prisma {
|
|
20406
20342
|
}
|
20407
20343
|
|
20408
20344
|
export type DailyRewardsBreakdownAvgAggregateOutputType = {
|
20409
|
-
id: number | null
|
20410
20345
|
value: number | null
|
20411
20346
|
}
|
20412
20347
|
|
20413
20348
|
export type DailyRewardsBreakdownSumAggregateOutputType = {
|
20414
|
-
id: number | null
|
20415
20349
|
value: number | null
|
20416
20350
|
}
|
20417
20351
|
|
20418
20352
|
export type DailyRewardsBreakdownMinAggregateOutputType = {
|
20419
|
-
id:
|
20420
|
-
uuid: string | null
|
20353
|
+
id: string | null
|
20421
20354
|
value: number | null
|
20422
20355
|
campaignId: string | null
|
20423
20356
|
dailyRewardsRecordId: string | null
|
20424
20357
|
}
|
20425
20358
|
|
20426
20359
|
export type DailyRewardsBreakdownMaxAggregateOutputType = {
|
20427
|
-
id:
|
20428
|
-
uuid: string | null
|
20360
|
+
id: string | null
|
20429
20361
|
value: number | null
|
20430
20362
|
campaignId: string | null
|
20431
20363
|
dailyRewardsRecordId: string | null
|
@@ -20433,7 +20365,6 @@ export namespace Prisma {
|
|
20433
20365
|
|
20434
20366
|
export type DailyRewardsBreakdownCountAggregateOutputType = {
|
20435
20367
|
id: number
|
20436
|
-
uuid: number
|
20437
20368
|
value: number
|
20438
20369
|
campaignId: number
|
20439
20370
|
dailyRewardsRecordId: number
|
@@ -20442,18 +20373,15 @@ export namespace Prisma {
|
|
20442
20373
|
|
20443
20374
|
|
20444
20375
|
export type DailyRewardsBreakdownAvgAggregateInputType = {
|
20445
|
-
id?: true
|
20446
20376
|
value?: true
|
20447
20377
|
}
|
20448
20378
|
|
20449
20379
|
export type DailyRewardsBreakdownSumAggregateInputType = {
|
20450
|
-
id?: true
|
20451
20380
|
value?: true
|
20452
20381
|
}
|
20453
20382
|
|
20454
20383
|
export type DailyRewardsBreakdownMinAggregateInputType = {
|
20455
20384
|
id?: true
|
20456
|
-
uuid?: true
|
20457
20385
|
value?: true
|
20458
20386
|
campaignId?: true
|
20459
20387
|
dailyRewardsRecordId?: true
|
@@ -20461,7 +20389,6 @@ export namespace Prisma {
|
|
20461
20389
|
|
20462
20390
|
export type DailyRewardsBreakdownMaxAggregateInputType = {
|
20463
20391
|
id?: true
|
20464
|
-
uuid?: true
|
20465
20392
|
value?: true
|
20466
20393
|
campaignId?: true
|
20467
20394
|
dailyRewardsRecordId?: true
|
@@ -20469,7 +20396,6 @@ export namespace Prisma {
|
|
20469
20396
|
|
20470
20397
|
export type DailyRewardsBreakdownCountAggregateInputType = {
|
20471
20398
|
id?: true
|
20472
|
-
uuid?: true
|
20473
20399
|
value?: true
|
20474
20400
|
campaignId?: true
|
20475
20401
|
dailyRewardsRecordId?: true
|
@@ -20563,8 +20489,7 @@ export namespace Prisma {
|
|
20563
20489
|
}
|
20564
20490
|
|
20565
20491
|
export type DailyRewardsBreakdownGroupByOutputType = {
|
20566
|
-
id:
|
20567
|
-
uuid: string
|
20492
|
+
id: string
|
20568
20493
|
value: number
|
20569
20494
|
campaignId: string
|
20570
20495
|
dailyRewardsRecordId: string
|
@@ -20591,7 +20516,6 @@ export namespace Prisma {
|
|
20591
20516
|
|
20592
20517
|
export type DailyRewardsBreakdownSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
20593
20518
|
id?: boolean
|
20594
|
-
uuid?: boolean
|
20595
20519
|
value?: boolean
|
20596
20520
|
campaignId?: boolean
|
20597
20521
|
dailyRewardsRecordId?: boolean
|
@@ -20601,7 +20525,6 @@ export namespace Prisma {
|
|
20601
20525
|
|
20602
20526
|
export type DailyRewardsBreakdownSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
20603
20527
|
id?: boolean
|
20604
|
-
uuid?: boolean
|
20605
20528
|
value?: boolean
|
20606
20529
|
campaignId?: boolean
|
20607
20530
|
dailyRewardsRecordId?: boolean
|
@@ -20611,7 +20534,6 @@ export namespace Prisma {
|
|
20611
20534
|
|
20612
20535
|
export type DailyRewardsBreakdownSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
20613
20536
|
id?: boolean
|
20614
|
-
uuid?: boolean
|
20615
20537
|
value?: boolean
|
20616
20538
|
campaignId?: boolean
|
20617
20539
|
dailyRewardsRecordId?: boolean
|
@@ -20621,13 +20543,12 @@ export namespace Prisma {
|
|
20621
20543
|
|
20622
20544
|
export type DailyRewardsBreakdownSelectScalar = {
|
20623
20545
|
id?: boolean
|
20624
|
-
uuid?: boolean
|
20625
20546
|
value?: boolean
|
20626
20547
|
campaignId?: boolean
|
20627
20548
|
dailyRewardsRecordId?: boolean
|
20628
20549
|
}
|
20629
20550
|
|
20630
|
-
export type DailyRewardsBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "
|
20551
|
+
export type DailyRewardsBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "value" | "campaignId" | "dailyRewardsRecordId", ExtArgs["result"]["dailyRewardsBreakdown"]>
|
20631
20552
|
export type DailyRewardsBreakdownInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
20632
20553
|
Campaign?: boolean | CampaignDefaultArgs<ExtArgs>
|
20633
20554
|
DailyRewardsRecord?: boolean | DailyRewardsRecordDefaultArgs<ExtArgs>
|
@@ -20648,8 +20569,7 @@ export namespace Prisma {
|
|
20648
20569
|
DailyRewardsRecord: Prisma.$DailyRewardsRecordPayload<ExtArgs>
|
20649
20570
|
}
|
20650
20571
|
scalars: $Extensions.GetPayloadResult<{
|
20651
|
-
id:
|
20652
|
-
uuid: string
|
20572
|
+
id: string
|
20653
20573
|
value: number
|
20654
20574
|
campaignId: string
|
20655
20575
|
dailyRewardsRecordId: string
|
@@ -21078,8 +20998,7 @@ export namespace Prisma {
|
|
21078
20998
|
* Fields of the DailyRewardsBreakdown model
|
21079
20999
|
*/
|
21080
21000
|
interface DailyRewardsBreakdownFieldRefs {
|
21081
|
-
readonly id: FieldRef<"DailyRewardsBreakdown", '
|
21082
|
-
readonly uuid: FieldRef<"DailyRewardsBreakdown", 'String'>
|
21001
|
+
readonly id: FieldRef<"DailyRewardsBreakdown", 'String'>
|
21083
21002
|
readonly value: FieldRef<"DailyRewardsBreakdown", 'Float'>
|
21084
21003
|
readonly campaignId: FieldRef<"DailyRewardsBreakdown", 'String'>
|
21085
21004
|
readonly dailyRewardsRecordId: FieldRef<"DailyRewardsBreakdown", 'String'>
|
@@ -24883,23 +24802,12 @@ export namespace Prisma {
|
|
24883
24802
|
|
24884
24803
|
export type AggregateRewardBreakdown = {
|
24885
24804
|
_count: RewardBreakdownCountAggregateOutputType | null
|
24886
|
-
_avg: RewardBreakdownAvgAggregateOutputType | null
|
24887
|
-
_sum: RewardBreakdownSumAggregateOutputType | null
|
24888
24805
|
_min: RewardBreakdownMinAggregateOutputType | null
|
24889
24806
|
_max: RewardBreakdownMaxAggregateOutputType | null
|
24890
24807
|
}
|
24891
24808
|
|
24892
|
-
export type RewardBreakdownAvgAggregateOutputType = {
|
24893
|
-
id: number | null
|
24894
|
-
}
|
24895
|
-
|
24896
|
-
export type RewardBreakdownSumAggregateOutputType = {
|
24897
|
-
id: number | null
|
24898
|
-
}
|
24899
|
-
|
24900
24809
|
export type RewardBreakdownMinAggregateOutputType = {
|
24901
|
-
id:
|
24902
|
-
uuid: string | null
|
24810
|
+
id: string | null
|
24903
24811
|
protocolId: string | null
|
24904
24812
|
reason: string | null
|
24905
24813
|
amount: string | null
|
@@ -24910,8 +24818,7 @@ export namespace Prisma {
|
|
24910
24818
|
}
|
24911
24819
|
|
24912
24820
|
export type RewardBreakdownMaxAggregateOutputType = {
|
24913
|
-
id:
|
24914
|
-
uuid: string | null
|
24821
|
+
id: string | null
|
24915
24822
|
protocolId: string | null
|
24916
24823
|
reason: string | null
|
24917
24824
|
amount: string | null
|
@@ -24923,7 +24830,6 @@ export namespace Prisma {
|
|
24923
24830
|
|
24924
24831
|
export type RewardBreakdownCountAggregateOutputType = {
|
24925
24832
|
id: number
|
24926
|
-
uuid: number
|
24927
24833
|
protocolId: number
|
24928
24834
|
reason: number
|
24929
24835
|
amount: number
|
@@ -24935,17 +24841,8 @@ export namespace Prisma {
|
|
24935
24841
|
}
|
24936
24842
|
|
24937
24843
|
|
24938
|
-
export type RewardBreakdownAvgAggregateInputType = {
|
24939
|
-
id?: true
|
24940
|
-
}
|
24941
|
-
|
24942
|
-
export type RewardBreakdownSumAggregateInputType = {
|
24943
|
-
id?: true
|
24944
|
-
}
|
24945
|
-
|
24946
24844
|
export type RewardBreakdownMinAggregateInputType = {
|
24947
24845
|
id?: true
|
24948
|
-
uuid?: true
|
24949
24846
|
protocolId?: true
|
24950
24847
|
reason?: true
|
24951
24848
|
amount?: true
|
@@ -24957,7 +24854,6 @@ export namespace Prisma {
|
|
24957
24854
|
|
24958
24855
|
export type RewardBreakdownMaxAggregateInputType = {
|
24959
24856
|
id?: true
|
24960
|
-
uuid?: true
|
24961
24857
|
protocolId?: true
|
24962
24858
|
reason?: true
|
24963
24859
|
amount?: true
|
@@ -24969,7 +24865,6 @@ export namespace Prisma {
|
|
24969
24865
|
|
24970
24866
|
export type RewardBreakdownCountAggregateInputType = {
|
24971
24867
|
id?: true
|
24972
|
-
uuid?: true
|
24973
24868
|
protocolId?: true
|
24974
24869
|
reason?: true
|
24975
24870
|
amount?: true
|
@@ -25015,18 +24910,6 @@ export namespace Prisma {
|
|
25015
24910
|
* Count returned RewardBreakdowns
|
25016
24911
|
**/
|
25017
24912
|
_count?: true | RewardBreakdownCountAggregateInputType
|
25018
|
-
/**
|
25019
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
25020
|
-
*
|
25021
|
-
* Select which fields to average
|
25022
|
-
**/
|
25023
|
-
_avg?: RewardBreakdownAvgAggregateInputType
|
25024
|
-
/**
|
25025
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
25026
|
-
*
|
25027
|
-
* Select which fields to sum
|
25028
|
-
**/
|
25029
|
-
_sum?: RewardBreakdownSumAggregateInputType
|
25030
24913
|
/**
|
25031
24914
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
25032
24915
|
*
|
@@ -25060,15 +24943,12 @@ export namespace Prisma {
|
|
25060
24943
|
take?: number
|
25061
24944
|
skip?: number
|
25062
24945
|
_count?: RewardBreakdownCountAggregateInputType | true
|
25063
|
-
_avg?: RewardBreakdownAvgAggregateInputType
|
25064
|
-
_sum?: RewardBreakdownSumAggregateInputType
|
25065
24946
|
_min?: RewardBreakdownMinAggregateInputType
|
25066
24947
|
_max?: RewardBreakdownMaxAggregateInputType
|
25067
24948
|
}
|
25068
24949
|
|
25069
24950
|
export type RewardBreakdownGroupByOutputType = {
|
25070
|
-
id:
|
25071
|
-
uuid: string
|
24951
|
+
id: string
|
25072
24952
|
protocolId: string | null
|
25073
24953
|
reason: string
|
25074
24954
|
amount: string
|
@@ -25077,8 +24957,6 @@ export namespace Prisma {
|
|
25077
24957
|
rewardId: string
|
25078
24958
|
campaignId: string
|
25079
24959
|
_count: RewardBreakdownCountAggregateOutputType | null
|
25080
|
-
_avg: RewardBreakdownAvgAggregateOutputType | null
|
25081
|
-
_sum: RewardBreakdownSumAggregateOutputType | null
|
25082
24960
|
_min: RewardBreakdownMinAggregateOutputType | null
|
25083
24961
|
_max: RewardBreakdownMaxAggregateOutputType | null
|
25084
24962
|
}
|
@@ -25099,7 +24977,6 @@ export namespace Prisma {
|
|
25099
24977
|
|
25100
24978
|
export type RewardBreakdownSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
25101
24979
|
id?: boolean
|
25102
|
-
uuid?: boolean
|
25103
24980
|
protocolId?: boolean
|
25104
24981
|
reason?: boolean
|
25105
24982
|
amount?: boolean
|
@@ -25114,7 +24991,6 @@ export namespace Prisma {
|
|
25114
24991
|
|
25115
24992
|
export type RewardBreakdownSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
25116
24993
|
id?: boolean
|
25117
|
-
uuid?: boolean
|
25118
24994
|
protocolId?: boolean
|
25119
24995
|
reason?: boolean
|
25120
24996
|
amount?: boolean
|
@@ -25129,7 +25005,6 @@ export namespace Prisma {
|
|
25129
25005
|
|
25130
25006
|
export type RewardBreakdownSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
25131
25007
|
id?: boolean
|
25132
|
-
uuid?: boolean
|
25133
25008
|
protocolId?: boolean
|
25134
25009
|
reason?: boolean
|
25135
25010
|
amount?: boolean
|
@@ -25144,7 +25019,6 @@ export namespace Prisma {
|
|
25144
25019
|
|
25145
25020
|
export type RewardBreakdownSelectScalar = {
|
25146
25021
|
id?: boolean
|
25147
|
-
uuid?: boolean
|
25148
25022
|
protocolId?: boolean
|
25149
25023
|
reason?: boolean
|
25150
25024
|
amount?: boolean
|
@@ -25154,7 +25028,7 @@ export namespace Prisma {
|
|
25154
25028
|
campaignId?: boolean
|
25155
25029
|
}
|
25156
25030
|
|
25157
|
-
export type RewardBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "
|
25031
|
+
export type RewardBreakdownOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "protocolId" | "reason" | "amount" | "claimed" | "pending" | "rewardId" | "campaignId", ExtArgs["result"]["rewardBreakdown"]>
|
25158
25032
|
export type RewardBreakdownInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
25159
25033
|
Protocol?: boolean | RewardBreakdown$ProtocolArgs<ExtArgs>
|
25160
25034
|
Reward?: boolean | RewardDefaultArgs<ExtArgs>
|
@@ -25179,8 +25053,7 @@ export namespace Prisma {
|
|
25179
25053
|
Campaign: Prisma.$CampaignPayload<ExtArgs>
|
25180
25054
|
}
|
25181
25055
|
scalars: $Extensions.GetPayloadResult<{
|
25182
|
-
id:
|
25183
|
-
uuid: string
|
25056
|
+
id: string
|
25184
25057
|
protocolId: string | null
|
25185
25058
|
reason: string
|
25186
25059
|
amount: string
|
@@ -25614,8 +25487,7 @@ export namespace Prisma {
|
|
25614
25487
|
* Fields of the RewardBreakdown model
|
25615
25488
|
*/
|
25616
25489
|
interface RewardBreakdownFieldRefs {
|
25617
|
-
readonly id: FieldRef<"RewardBreakdown", '
|
25618
|
-
readonly uuid: FieldRef<"RewardBreakdown", 'String'>
|
25490
|
+
readonly id: FieldRef<"RewardBreakdown", 'String'>
|
25619
25491
|
readonly protocolId: FieldRef<"RewardBreakdown", 'String'>
|
25620
25492
|
readonly reason: FieldRef<"RewardBreakdown", 'String'>
|
25621
25493
|
readonly amount: FieldRef<"RewardBreakdown", 'String'>
|
@@ -31651,8 +31523,6 @@ export namespace Prisma {
|
|
31651
31523
|
|
31652
31524
|
export const UserComputedValueScalarFieldEnum: {
|
31653
31525
|
id: 'id',
|
31654
|
-
stringId: 'stringId',
|
31655
|
-
uuid: 'uuid',
|
31656
31526
|
campaignId: 'campaignId',
|
31657
31527
|
address: 'address',
|
31658
31528
|
reason: 'reason',
|
@@ -31744,7 +31614,6 @@ export namespace Prisma {
|
|
31744
31614
|
|
31745
31615
|
export const AprBreakdownScalarFieldEnum: {
|
31746
31616
|
id: 'id',
|
31747
|
-
uuid: 'uuid',
|
31748
31617
|
identifier: 'identifier',
|
31749
31618
|
type: 'type',
|
31750
31619
|
value: 'value',
|
@@ -31766,7 +31635,6 @@ export namespace Prisma {
|
|
31766
31635
|
|
31767
31636
|
export const TVLBreakdownScalarFieldEnum: {
|
31768
31637
|
id: 'id',
|
31769
|
-
uuid: 'uuid',
|
31770
31638
|
identifier: 'identifier',
|
31771
31639
|
type: 'type',
|
31772
31640
|
value: 'value',
|
@@ -31788,7 +31656,6 @@ export namespace Prisma {
|
|
31788
31656
|
|
31789
31657
|
export const DailyRewardsBreakdownScalarFieldEnum: {
|
31790
31658
|
id: 'id',
|
31791
|
-
uuid: 'uuid',
|
31792
31659
|
value: 'value',
|
31793
31660
|
campaignId: 'campaignId',
|
31794
31661
|
dailyRewardsRecordId: 'dailyRewardsRecordId'
|
@@ -31831,7 +31698,6 @@ export namespace Prisma {
|
|
31831
31698
|
|
31832
31699
|
export const RewardBreakdownScalarFieldEnum: {
|
31833
31700
|
id: 'id',
|
31834
|
-
uuid: 'uuid',
|
31835
31701
|
protocolId: 'protocolId',
|
31836
31702
|
reason: 'reason',
|
31837
31703
|
amount: 'amount',
|
@@ -31982,8 +31848,7 @@ export namespace Prisma {
|
|
31982
31848
|
|
31983
31849
|
|
31984
31850
|
export const UserComputedValueOrderByRelevanceFieldEnum: {
|
31985
|
-
|
31986
|
-
uuid: 'uuid',
|
31851
|
+
id: 'id',
|
31987
31852
|
campaignId: 'campaignId',
|
31988
31853
|
address: 'address',
|
31989
31854
|
reason: 'reason'
|
@@ -32055,7 +31920,7 @@ export namespace Prisma {
|
|
32055
31920
|
|
32056
31921
|
|
32057
31922
|
export const AprBreakdownOrderByRelevanceFieldEnum: {
|
32058
|
-
|
31923
|
+
id: 'id',
|
32059
31924
|
identifier: 'identifier',
|
32060
31925
|
aprRecordId: 'aprRecordId'
|
32061
31926
|
};
|
@@ -32072,7 +31937,7 @@ export namespace Prisma {
|
|
32072
31937
|
|
32073
31938
|
|
32074
31939
|
export const TVLBreakdownOrderByRelevanceFieldEnum: {
|
32075
|
-
|
31940
|
+
id: 'id',
|
32076
31941
|
identifier: 'identifier',
|
32077
31942
|
tvlRecordId: 'tvlRecordId'
|
32078
31943
|
};
|
@@ -32089,7 +31954,7 @@ export namespace Prisma {
|
|
32089
31954
|
|
32090
31955
|
|
32091
31956
|
export const DailyRewardsBreakdownOrderByRelevanceFieldEnum: {
|
32092
|
-
|
31957
|
+
id: 'id',
|
32093
31958
|
campaignId: 'campaignId',
|
32094
31959
|
dailyRewardsRecordId: 'dailyRewardsRecordId'
|
32095
31960
|
};
|
@@ -32130,7 +31995,7 @@ export namespace Prisma {
|
|
32130
31995
|
|
32131
31996
|
|
32132
31997
|
export const RewardBreakdownOrderByRelevanceFieldEnum: {
|
32133
|
-
|
31998
|
+
id: 'id',
|
32134
31999
|
protocolId: 'protocolId',
|
32135
32000
|
reason: 'reason',
|
32136
32001
|
amount: 'amount',
|
@@ -32662,9 +32527,7 @@ export namespace Prisma {
|
|
32662
32527
|
AND?: UserComputedValueWhereInput | UserComputedValueWhereInput[]
|
32663
32528
|
OR?: UserComputedValueWhereInput[]
|
32664
32529
|
NOT?: UserComputedValueWhereInput | UserComputedValueWhereInput[]
|
32665
|
-
id?:
|
32666
|
-
stringId?: StringFilter<"UserComputedValue"> | string
|
32667
|
-
uuid?: UuidFilter<"UserComputedValue"> | string
|
32530
|
+
id?: UuidFilter<"UserComputedValue"> | string
|
32668
32531
|
campaignId?: StringFilter<"UserComputedValue"> | string
|
32669
32532
|
address?: StringFilter<"UserComputedValue"> | string
|
32670
32533
|
reason?: StringFilter<"UserComputedValue"> | string
|
@@ -32675,8 +32538,6 @@ export namespace Prisma {
|
|
32675
32538
|
|
32676
32539
|
export type UserComputedValueOrderByWithRelationInput = {
|
32677
32540
|
id?: SortOrder
|
32678
|
-
stringId?: SortOrder
|
32679
|
-
uuid?: SortOrder
|
32680
32541
|
campaignId?: SortOrder
|
32681
32542
|
address?: SortOrder
|
32682
32543
|
reason?: SortOrder
|
@@ -32687,25 +32548,21 @@ export namespace Prisma {
|
|
32687
32548
|
}
|
32688
32549
|
|
32689
32550
|
export type UserComputedValueWhereUniqueInput = Prisma.AtLeast<{
|
32690
|
-
|
32551
|
+
id?: string
|
32691
32552
|
campaignId_address_reason?: UserComputedValueCampaignIdAddressReasonCompoundUniqueInput
|
32692
32553
|
AND?: UserComputedValueWhereInput | UserComputedValueWhereInput[]
|
32693
32554
|
OR?: UserComputedValueWhereInput[]
|
32694
32555
|
NOT?: UserComputedValueWhereInput | UserComputedValueWhereInput[]
|
32695
|
-
id?: IntFilter<"UserComputedValue"> | number
|
32696
|
-
stringId?: StringFilter<"UserComputedValue"> | string
|
32697
32556
|
campaignId?: StringFilter<"UserComputedValue"> | string
|
32698
32557
|
address?: StringFilter<"UserComputedValue"> | string
|
32699
32558
|
reason?: StringFilter<"UserComputedValue"> | string
|
32700
32559
|
boost?: FloatNullableFilter<"UserComputedValue"> | number | null
|
32701
32560
|
Campaign?: XOR<CampaignScalarRelationFilter, CampaignWhereInput>
|
32702
32561
|
User?: XOR<UserNullableScalarRelationFilter, UserWhereInput> | null
|
32703
|
-
}, "
|
32562
|
+
}, "id" | "campaignId_address_reason">
|
32704
32563
|
|
32705
32564
|
export type UserComputedValueOrderByWithAggregationInput = {
|
32706
32565
|
id?: SortOrder
|
32707
|
-
stringId?: SortOrder
|
32708
|
-
uuid?: SortOrder
|
32709
32566
|
campaignId?: SortOrder
|
32710
32567
|
address?: SortOrder
|
32711
32568
|
reason?: SortOrder
|
@@ -32721,9 +32578,7 @@ export namespace Prisma {
|
|
32721
32578
|
AND?: UserComputedValueScalarWhereWithAggregatesInput | UserComputedValueScalarWhereWithAggregatesInput[]
|
32722
32579
|
OR?: UserComputedValueScalarWhereWithAggregatesInput[]
|
32723
32580
|
NOT?: UserComputedValueScalarWhereWithAggregatesInput | UserComputedValueScalarWhereWithAggregatesInput[]
|
32724
|
-
id?:
|
32725
|
-
stringId?: StringWithAggregatesFilter<"UserComputedValue"> | string
|
32726
|
-
uuid?: UuidWithAggregatesFilter<"UserComputedValue"> | string
|
32581
|
+
id?: UuidWithAggregatesFilter<"UserComputedValue"> | string
|
32727
32582
|
campaignId?: StringWithAggregatesFilter<"UserComputedValue"> | string
|
32728
32583
|
address?: StringWithAggregatesFilter<"UserComputedValue"> | string
|
32729
32584
|
reason?: StringWithAggregatesFilter<"UserComputedValue"> | string
|
@@ -33220,8 +33075,7 @@ export namespace Prisma {
|
|
33220
33075
|
AND?: AprBreakdownWhereInput | AprBreakdownWhereInput[]
|
33221
33076
|
OR?: AprBreakdownWhereInput[]
|
33222
33077
|
NOT?: AprBreakdownWhereInput | AprBreakdownWhereInput[]
|
33223
|
-
id?:
|
33224
|
-
uuid?: UuidFilter<"AprBreakdown"> | string
|
33078
|
+
id?: UuidFilter<"AprBreakdown"> | string
|
33225
33079
|
identifier?: StringFilter<"AprBreakdown"> | string
|
33226
33080
|
type?: EnumAprTypeFilter<"AprBreakdown"> | $Enums.AprType
|
33227
33081
|
value?: FloatFilter<"AprBreakdown"> | number
|
@@ -33231,7 +33085,6 @@ export namespace Prisma {
|
|
33231
33085
|
|
33232
33086
|
export type AprBreakdownOrderByWithRelationInput = {
|
33233
33087
|
id?: SortOrder
|
33234
|
-
uuid?: SortOrder
|
33235
33088
|
identifier?: SortOrder
|
33236
33089
|
type?: SortOrder
|
33237
33090
|
value?: SortOrder
|
@@ -33241,21 +33094,19 @@ export namespace Prisma {
|
|
33241
33094
|
}
|
33242
33095
|
|
33243
33096
|
export type AprBreakdownWhereUniqueInput = Prisma.AtLeast<{
|
33244
|
-
|
33097
|
+
id?: string
|
33245
33098
|
AND?: AprBreakdownWhereInput | AprBreakdownWhereInput[]
|
33246
33099
|
OR?: AprBreakdownWhereInput[]
|
33247
33100
|
NOT?: AprBreakdownWhereInput | AprBreakdownWhereInput[]
|
33248
|
-
id?: IntFilter<"AprBreakdown"> | number
|
33249
33101
|
identifier?: StringFilter<"AprBreakdown"> | string
|
33250
33102
|
type?: EnumAprTypeFilter<"AprBreakdown"> | $Enums.AprType
|
33251
33103
|
value?: FloatFilter<"AprBreakdown"> | number
|
33252
33104
|
aprRecordId?: StringFilter<"AprBreakdown"> | string
|
33253
33105
|
AprRecord?: XOR<AprRecordScalarRelationFilter, AprRecordWhereInput>
|
33254
|
-
}, "
|
33106
|
+
}, "id">
|
33255
33107
|
|
33256
33108
|
export type AprBreakdownOrderByWithAggregationInput = {
|
33257
33109
|
id?: SortOrder
|
33258
|
-
uuid?: SortOrder
|
33259
33110
|
identifier?: SortOrder
|
33260
33111
|
type?: SortOrder
|
33261
33112
|
value?: SortOrder
|
@@ -33271,8 +33122,7 @@ export namespace Prisma {
|
|
33271
33122
|
AND?: AprBreakdownScalarWhereWithAggregatesInput | AprBreakdownScalarWhereWithAggregatesInput[]
|
33272
33123
|
OR?: AprBreakdownScalarWhereWithAggregatesInput[]
|
33273
33124
|
NOT?: AprBreakdownScalarWhereWithAggregatesInput | AprBreakdownScalarWhereWithAggregatesInput[]
|
33274
|
-
id?:
|
33275
|
-
uuid?: UuidWithAggregatesFilter<"AprBreakdown"> | string
|
33125
|
+
id?: UuidWithAggregatesFilter<"AprBreakdown"> | string
|
33276
33126
|
identifier?: StringWithAggregatesFilter<"AprBreakdown"> | string
|
33277
33127
|
type?: EnumAprTypeWithAggregatesFilter<"AprBreakdown"> | $Enums.AprType
|
33278
33128
|
value?: FloatWithAggregatesFilter<"AprBreakdown"> | number
|
@@ -33340,8 +33190,7 @@ export namespace Prisma {
|
|
33340
33190
|
AND?: TVLBreakdownWhereInput | TVLBreakdownWhereInput[]
|
33341
33191
|
OR?: TVLBreakdownWhereInput[]
|
33342
33192
|
NOT?: TVLBreakdownWhereInput | TVLBreakdownWhereInput[]
|
33343
|
-
id?:
|
33344
|
-
uuid?: UuidFilter<"TVLBreakdown"> | string
|
33193
|
+
id?: UuidFilter<"TVLBreakdown"> | string
|
33345
33194
|
identifier?: StringFilter<"TVLBreakdown"> | string
|
33346
33195
|
type?: EnumTvlTypeFilter<"TVLBreakdown"> | $Enums.TvlType
|
33347
33196
|
value?: FloatFilter<"TVLBreakdown"> | number
|
@@ -33351,7 +33200,6 @@ export namespace Prisma {
|
|
33351
33200
|
|
33352
33201
|
export type TVLBreakdownOrderByWithRelationInput = {
|
33353
33202
|
id?: SortOrder
|
33354
|
-
uuid?: SortOrder
|
33355
33203
|
identifier?: SortOrder
|
33356
33204
|
type?: SortOrder
|
33357
33205
|
value?: SortOrder
|
@@ -33361,21 +33209,19 @@ export namespace Prisma {
|
|
33361
33209
|
}
|
33362
33210
|
|
33363
33211
|
export type TVLBreakdownWhereUniqueInput = Prisma.AtLeast<{
|
33364
|
-
|
33212
|
+
id?: string
|
33365
33213
|
AND?: TVLBreakdownWhereInput | TVLBreakdownWhereInput[]
|
33366
33214
|
OR?: TVLBreakdownWhereInput[]
|
33367
33215
|
NOT?: TVLBreakdownWhereInput | TVLBreakdownWhereInput[]
|
33368
|
-
id?: IntFilter<"TVLBreakdown"> | number
|
33369
33216
|
identifier?: StringFilter<"TVLBreakdown"> | string
|
33370
33217
|
type?: EnumTvlTypeFilter<"TVLBreakdown"> | $Enums.TvlType
|
33371
33218
|
value?: FloatFilter<"TVLBreakdown"> | number
|
33372
33219
|
tvlRecordId?: StringFilter<"TVLBreakdown"> | string
|
33373
33220
|
TvlRecord?: XOR<TVLRecordScalarRelationFilter, TVLRecordWhereInput>
|
33374
|
-
}, "
|
33221
|
+
}, "id">
|
33375
33222
|
|
33376
33223
|
export type TVLBreakdownOrderByWithAggregationInput = {
|
33377
33224
|
id?: SortOrder
|
33378
|
-
uuid?: SortOrder
|
33379
33225
|
identifier?: SortOrder
|
33380
33226
|
type?: SortOrder
|
33381
33227
|
value?: SortOrder
|
@@ -33391,8 +33237,7 @@ export namespace Prisma {
|
|
33391
33237
|
AND?: TVLBreakdownScalarWhereWithAggregatesInput | TVLBreakdownScalarWhereWithAggregatesInput[]
|
33392
33238
|
OR?: TVLBreakdownScalarWhereWithAggregatesInput[]
|
33393
33239
|
NOT?: TVLBreakdownScalarWhereWithAggregatesInput | TVLBreakdownScalarWhereWithAggregatesInput[]
|
33394
|
-
id?:
|
33395
|
-
uuid?: UuidWithAggregatesFilter<"TVLBreakdown"> | string
|
33240
|
+
id?: UuidWithAggregatesFilter<"TVLBreakdown"> | string
|
33396
33241
|
identifier?: StringWithAggregatesFilter<"TVLBreakdown"> | string
|
33397
33242
|
type?: EnumTvlTypeWithAggregatesFilter<"TVLBreakdown"> | $Enums.TvlType
|
33398
33243
|
value?: FloatWithAggregatesFilter<"TVLBreakdown"> | number
|
@@ -33460,8 +33305,7 @@ export namespace Prisma {
|
|
33460
33305
|
AND?: DailyRewardsBreakdownWhereInput | DailyRewardsBreakdownWhereInput[]
|
33461
33306
|
OR?: DailyRewardsBreakdownWhereInput[]
|
33462
33307
|
NOT?: DailyRewardsBreakdownWhereInput | DailyRewardsBreakdownWhereInput[]
|
33463
|
-
id?:
|
33464
|
-
uuid?: UuidFilter<"DailyRewardsBreakdown"> | string
|
33308
|
+
id?: UuidFilter<"DailyRewardsBreakdown"> | string
|
33465
33309
|
value?: FloatFilter<"DailyRewardsBreakdown"> | number
|
33466
33310
|
campaignId?: StringFilter<"DailyRewardsBreakdown"> | string
|
33467
33311
|
dailyRewardsRecordId?: StringFilter<"DailyRewardsBreakdown"> | string
|
@@ -33471,7 +33315,6 @@ export namespace Prisma {
|
|
33471
33315
|
|
33472
33316
|
export type DailyRewardsBreakdownOrderByWithRelationInput = {
|
33473
33317
|
id?: SortOrder
|
33474
|
-
uuid?: SortOrder
|
33475
33318
|
value?: SortOrder
|
33476
33319
|
campaignId?: SortOrder
|
33477
33320
|
dailyRewardsRecordId?: SortOrder
|
@@ -33481,21 +33324,19 @@ export namespace Prisma {
|
|
33481
33324
|
}
|
33482
33325
|
|
33483
33326
|
export type DailyRewardsBreakdownWhereUniqueInput = Prisma.AtLeast<{
|
33484
|
-
|
33327
|
+
id?: string
|
33485
33328
|
AND?: DailyRewardsBreakdownWhereInput | DailyRewardsBreakdownWhereInput[]
|
33486
33329
|
OR?: DailyRewardsBreakdownWhereInput[]
|
33487
33330
|
NOT?: DailyRewardsBreakdownWhereInput | DailyRewardsBreakdownWhereInput[]
|
33488
|
-
id?: IntFilter<"DailyRewardsBreakdown"> | number
|
33489
33331
|
value?: FloatFilter<"DailyRewardsBreakdown"> | number
|
33490
33332
|
campaignId?: StringFilter<"DailyRewardsBreakdown"> | string
|
33491
33333
|
dailyRewardsRecordId?: StringFilter<"DailyRewardsBreakdown"> | string
|
33492
33334
|
Campaign?: XOR<CampaignScalarRelationFilter, CampaignWhereInput>
|
33493
33335
|
DailyRewardsRecord?: XOR<DailyRewardsRecordScalarRelationFilter, DailyRewardsRecordWhereInput>
|
33494
|
-
}, "
|
33336
|
+
}, "id">
|
33495
33337
|
|
33496
33338
|
export type DailyRewardsBreakdownOrderByWithAggregationInput = {
|
33497
33339
|
id?: SortOrder
|
33498
|
-
uuid?: SortOrder
|
33499
33340
|
value?: SortOrder
|
33500
33341
|
campaignId?: SortOrder
|
33501
33342
|
dailyRewardsRecordId?: SortOrder
|
@@ -33510,8 +33351,7 @@ export namespace Prisma {
|
|
33510
33351
|
AND?: DailyRewardsBreakdownScalarWhereWithAggregatesInput | DailyRewardsBreakdownScalarWhereWithAggregatesInput[]
|
33511
33352
|
OR?: DailyRewardsBreakdownScalarWhereWithAggregatesInput[]
|
33512
33353
|
NOT?: DailyRewardsBreakdownScalarWhereWithAggregatesInput | DailyRewardsBreakdownScalarWhereWithAggregatesInput[]
|
33513
|
-
id?:
|
33514
|
-
uuid?: UuidWithAggregatesFilter<"DailyRewardsBreakdown"> | string
|
33354
|
+
id?: UuidWithAggregatesFilter<"DailyRewardsBreakdown"> | string
|
33515
33355
|
value?: FloatWithAggregatesFilter<"DailyRewardsBreakdown"> | number
|
33516
33356
|
campaignId?: StringWithAggregatesFilter<"DailyRewardsBreakdown"> | string
|
33517
33357
|
dailyRewardsRecordId?: StringWithAggregatesFilter<"DailyRewardsBreakdown"> | string
|
@@ -33706,8 +33546,7 @@ export namespace Prisma {
|
|
33706
33546
|
AND?: RewardBreakdownWhereInput | RewardBreakdownWhereInput[]
|
33707
33547
|
OR?: RewardBreakdownWhereInput[]
|
33708
33548
|
NOT?: RewardBreakdownWhereInput | RewardBreakdownWhereInput[]
|
33709
|
-
id?:
|
33710
|
-
uuid?: UuidFilter<"RewardBreakdown"> | string
|
33549
|
+
id?: UuidFilter<"RewardBreakdown"> | string
|
33711
33550
|
protocolId?: StringNullableFilter<"RewardBreakdown"> | string | null
|
33712
33551
|
reason?: StringFilter<"RewardBreakdown"> | string
|
33713
33552
|
amount?: StringFilter<"RewardBreakdown"> | string
|
@@ -33722,7 +33561,6 @@ export namespace Prisma {
|
|
33722
33561
|
|
33723
33562
|
export type RewardBreakdownOrderByWithRelationInput = {
|
33724
33563
|
id?: SortOrder
|
33725
|
-
uuid?: SortOrder
|
33726
33564
|
protocolId?: SortOrderInput | SortOrder
|
33727
33565
|
reason?: SortOrder
|
33728
33566
|
amount?: SortOrder
|
@@ -33737,12 +33575,11 @@ export namespace Prisma {
|
|
33737
33575
|
}
|
33738
33576
|
|
33739
33577
|
export type RewardBreakdownWhereUniqueInput = Prisma.AtLeast<{
|
33740
|
-
|
33578
|
+
id?: string
|
33741
33579
|
rewardId_campaignId_reason?: RewardBreakdownRewardIdCampaignIdReasonCompoundUniqueInput
|
33742
33580
|
AND?: RewardBreakdownWhereInput | RewardBreakdownWhereInput[]
|
33743
33581
|
OR?: RewardBreakdownWhereInput[]
|
33744
33582
|
NOT?: RewardBreakdownWhereInput | RewardBreakdownWhereInput[]
|
33745
|
-
id?: IntFilter<"RewardBreakdown"> | number
|
33746
33583
|
protocolId?: StringNullableFilter<"RewardBreakdown"> | string | null
|
33747
33584
|
reason?: StringFilter<"RewardBreakdown"> | string
|
33748
33585
|
amount?: StringFilter<"RewardBreakdown"> | string
|
@@ -33753,11 +33590,10 @@ export namespace Prisma {
|
|
33753
33590
|
Protocol?: XOR<ProtocolNullableScalarRelationFilter, ProtocolWhereInput> | null
|
33754
33591
|
Reward?: XOR<RewardScalarRelationFilter, RewardWhereInput>
|
33755
33592
|
Campaign?: XOR<CampaignScalarRelationFilter, CampaignWhereInput>
|
33756
|
-
}, "
|
33593
|
+
}, "id" | "rewardId_campaignId_reason">
|
33757
33594
|
|
33758
33595
|
export type RewardBreakdownOrderByWithAggregationInput = {
|
33759
33596
|
id?: SortOrder
|
33760
|
-
uuid?: SortOrder
|
33761
33597
|
protocolId?: SortOrderInput | SortOrder
|
33762
33598
|
reason?: SortOrder
|
33763
33599
|
amount?: SortOrder
|
@@ -33766,18 +33602,15 @@ export namespace Prisma {
|
|
33766
33602
|
rewardId?: SortOrder
|
33767
33603
|
campaignId?: SortOrder
|
33768
33604
|
_count?: RewardBreakdownCountOrderByAggregateInput
|
33769
|
-
_avg?: RewardBreakdownAvgOrderByAggregateInput
|
33770
33605
|
_max?: RewardBreakdownMaxOrderByAggregateInput
|
33771
33606
|
_min?: RewardBreakdownMinOrderByAggregateInput
|
33772
|
-
_sum?: RewardBreakdownSumOrderByAggregateInput
|
33773
33607
|
}
|
33774
33608
|
|
33775
33609
|
export type RewardBreakdownScalarWhereWithAggregatesInput = {
|
33776
33610
|
AND?: RewardBreakdownScalarWhereWithAggregatesInput | RewardBreakdownScalarWhereWithAggregatesInput[]
|
33777
33611
|
OR?: RewardBreakdownScalarWhereWithAggregatesInput[]
|
33778
33612
|
NOT?: RewardBreakdownScalarWhereWithAggregatesInput | RewardBreakdownScalarWhereWithAggregatesInput[]
|
33779
|
-
id?:
|
33780
|
-
uuid?: UuidWithAggregatesFilter<"RewardBreakdown"> | string
|
33613
|
+
id?: UuidWithAggregatesFilter<"RewardBreakdown"> | string
|
33781
33614
|
protocolId?: StringNullableWithAggregatesFilter<"RewardBreakdown"> | string | null
|
33782
33615
|
reason?: StringWithAggregatesFilter<"RewardBreakdown"> | string
|
33783
33616
|
amount?: StringWithAggregatesFilter<"RewardBreakdown"> | string
|
@@ -34368,9 +34201,7 @@ export namespace Prisma {
|
|
34368
34201
|
}
|
34369
34202
|
|
34370
34203
|
export type UserComputedValueCreateInput = {
|
34371
|
-
id?:
|
34372
|
-
stringId?: string
|
34373
|
-
uuid?: string
|
34204
|
+
id?: string
|
34374
34205
|
reason: string
|
34375
34206
|
boost?: number | null
|
34376
34207
|
Campaign: CampaignCreateNestedOneWithoutUserComputedValueInput
|
@@ -34378,9 +34209,7 @@ export namespace Prisma {
|
|
34378
34209
|
}
|
34379
34210
|
|
34380
34211
|
export type UserComputedValueUncheckedCreateInput = {
|
34381
|
-
id?:
|
34382
|
-
stringId?: string
|
34383
|
-
uuid?: string
|
34212
|
+
id?: string
|
34384
34213
|
campaignId: string
|
34385
34214
|
address: string
|
34386
34215
|
reason: string
|
@@ -34388,9 +34217,7 @@ export namespace Prisma {
|
|
34388
34217
|
}
|
34389
34218
|
|
34390
34219
|
export type UserComputedValueUpdateInput = {
|
34391
|
-
id?:
|
34392
|
-
stringId?: StringFieldUpdateOperationsInput | string
|
34393
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
34220
|
+
id?: StringFieldUpdateOperationsInput | string
|
34394
34221
|
reason?: StringFieldUpdateOperationsInput | string
|
34395
34222
|
boost?: NullableFloatFieldUpdateOperationsInput | number | null
|
34396
34223
|
Campaign?: CampaignUpdateOneRequiredWithoutUserComputedValueNestedInput
|
@@ -34398,9 +34225,7 @@ export namespace Prisma {
|
|
34398
34225
|
}
|
34399
34226
|
|
34400
34227
|
export type UserComputedValueUncheckedUpdateInput = {
|
34401
|
-
id?:
|
34402
|
-
stringId?: StringFieldUpdateOperationsInput | string
|
34403
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
34228
|
+
id?: StringFieldUpdateOperationsInput | string
|
34404
34229
|
campaignId?: StringFieldUpdateOperationsInput | string
|
34405
34230
|
address?: StringFieldUpdateOperationsInput | string
|
34406
34231
|
reason?: StringFieldUpdateOperationsInput | string
|
@@ -34408,9 +34233,7 @@ export namespace Prisma {
|
|
34408
34233
|
}
|
34409
34234
|
|
34410
34235
|
export type UserComputedValueCreateManyInput = {
|
34411
|
-
id?:
|
34412
|
-
stringId?: string
|
34413
|
-
uuid?: string
|
34236
|
+
id?: string
|
34414
34237
|
campaignId: string
|
34415
34238
|
address: string
|
34416
34239
|
reason: string
|
@@ -34418,17 +34241,13 @@ export namespace Prisma {
|
|
34418
34241
|
}
|
34419
34242
|
|
34420
34243
|
export type UserComputedValueUpdateManyMutationInput = {
|
34421
|
-
id?:
|
34422
|
-
stringId?: StringFieldUpdateOperationsInput | string
|
34423
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
34244
|
+
id?: StringFieldUpdateOperationsInput | string
|
34424
34245
|
reason?: StringFieldUpdateOperationsInput | string
|
34425
34246
|
boost?: NullableFloatFieldUpdateOperationsInput | number | null
|
34426
34247
|
}
|
34427
34248
|
|
34428
34249
|
export type UserComputedValueUncheckedUpdateManyInput = {
|
34429
|
-
id?:
|
34430
|
-
stringId?: StringFieldUpdateOperationsInput | string
|
34431
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
34250
|
+
id?: StringFieldUpdateOperationsInput | string
|
34432
34251
|
campaignId?: StringFieldUpdateOperationsInput | string
|
34433
34252
|
address?: StringFieldUpdateOperationsInput | string
|
34434
34253
|
reason?: StringFieldUpdateOperationsInput | string
|
@@ -34957,8 +34776,7 @@ export namespace Prisma {
|
|
34957
34776
|
}
|
34958
34777
|
|
34959
34778
|
export type AprBreakdownCreateInput = {
|
34960
|
-
id?:
|
34961
|
-
uuid?: string
|
34779
|
+
id?: string
|
34962
34780
|
identifier: string
|
34963
34781
|
type: $Enums.AprType
|
34964
34782
|
value: number
|
@@ -34966,8 +34784,7 @@ export namespace Prisma {
|
|
34966
34784
|
}
|
34967
34785
|
|
34968
34786
|
export type AprBreakdownUncheckedCreateInput = {
|
34969
|
-
id?:
|
34970
|
-
uuid?: string
|
34787
|
+
id?: string
|
34971
34788
|
identifier: string
|
34972
34789
|
type: $Enums.AprType
|
34973
34790
|
value: number
|
@@ -34975,8 +34792,7 @@ export namespace Prisma {
|
|
34975
34792
|
}
|
34976
34793
|
|
34977
34794
|
export type AprBreakdownUpdateInput = {
|
34978
|
-
id?:
|
34979
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
34795
|
+
id?: StringFieldUpdateOperationsInput | string
|
34980
34796
|
identifier?: StringFieldUpdateOperationsInput | string
|
34981
34797
|
type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
|
34982
34798
|
value?: FloatFieldUpdateOperationsInput | number
|
@@ -34984,8 +34800,7 @@ export namespace Prisma {
|
|
34984
34800
|
}
|
34985
34801
|
|
34986
34802
|
export type AprBreakdownUncheckedUpdateInput = {
|
34987
|
-
id?:
|
34988
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
34803
|
+
id?: StringFieldUpdateOperationsInput | string
|
34989
34804
|
identifier?: StringFieldUpdateOperationsInput | string
|
34990
34805
|
type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
|
34991
34806
|
value?: FloatFieldUpdateOperationsInput | number
|
@@ -34993,8 +34808,7 @@ export namespace Prisma {
|
|
34993
34808
|
}
|
34994
34809
|
|
34995
34810
|
export type AprBreakdownCreateManyInput = {
|
34996
|
-
id?:
|
34997
|
-
uuid?: string
|
34811
|
+
id?: string
|
34998
34812
|
identifier: string
|
34999
34813
|
type: $Enums.AprType
|
35000
34814
|
value: number
|
@@ -35002,16 +34816,14 @@ export namespace Prisma {
|
|
35002
34816
|
}
|
35003
34817
|
|
35004
34818
|
export type AprBreakdownUpdateManyMutationInput = {
|
35005
|
-
id?:
|
35006
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
34819
|
+
id?: StringFieldUpdateOperationsInput | string
|
35007
34820
|
identifier?: StringFieldUpdateOperationsInput | string
|
35008
34821
|
type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
|
35009
34822
|
value?: FloatFieldUpdateOperationsInput | number
|
35010
34823
|
}
|
35011
34824
|
|
35012
34825
|
export type AprBreakdownUncheckedUpdateManyInput = {
|
35013
|
-
id?:
|
35014
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
34826
|
+
id?: StringFieldUpdateOperationsInput | string
|
35015
34827
|
identifier?: StringFieldUpdateOperationsInput | string
|
35016
34828
|
type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
|
35017
34829
|
value?: FloatFieldUpdateOperationsInput | number
|
@@ -35071,8 +34883,7 @@ export namespace Prisma {
|
|
35071
34883
|
}
|
35072
34884
|
|
35073
34885
|
export type TVLBreakdownCreateInput = {
|
35074
|
-
id?:
|
35075
|
-
uuid?: string
|
34886
|
+
id?: string
|
35076
34887
|
identifier: string
|
35077
34888
|
type: $Enums.TvlType
|
35078
34889
|
value: number
|
@@ -35080,8 +34891,7 @@ export namespace Prisma {
|
|
35080
34891
|
}
|
35081
34892
|
|
35082
34893
|
export type TVLBreakdownUncheckedCreateInput = {
|
35083
|
-
id?:
|
35084
|
-
uuid?: string
|
34894
|
+
id?: string
|
35085
34895
|
identifier: string
|
35086
34896
|
type: $Enums.TvlType
|
35087
34897
|
value: number
|
@@ -35089,8 +34899,7 @@ export namespace Prisma {
|
|
35089
34899
|
}
|
35090
34900
|
|
35091
34901
|
export type TVLBreakdownUpdateInput = {
|
35092
|
-
id?:
|
35093
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
34902
|
+
id?: StringFieldUpdateOperationsInput | string
|
35094
34903
|
identifier?: StringFieldUpdateOperationsInput | string
|
35095
34904
|
type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
|
35096
34905
|
value?: FloatFieldUpdateOperationsInput | number
|
@@ -35098,8 +34907,7 @@ export namespace Prisma {
|
|
35098
34907
|
}
|
35099
34908
|
|
35100
34909
|
export type TVLBreakdownUncheckedUpdateInput = {
|
35101
|
-
id?:
|
35102
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
34910
|
+
id?: StringFieldUpdateOperationsInput | string
|
35103
34911
|
identifier?: StringFieldUpdateOperationsInput | string
|
35104
34912
|
type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
|
35105
34913
|
value?: FloatFieldUpdateOperationsInput | number
|
@@ -35107,8 +34915,7 @@ export namespace Prisma {
|
|
35107
34915
|
}
|
35108
34916
|
|
35109
34917
|
export type TVLBreakdownCreateManyInput = {
|
35110
|
-
id?:
|
35111
|
-
uuid?: string
|
34918
|
+
id?: string
|
35112
34919
|
identifier: string
|
35113
34920
|
type: $Enums.TvlType
|
35114
34921
|
value: number
|
@@ -35116,16 +34923,14 @@ export namespace Prisma {
|
|
35116
34923
|
}
|
35117
34924
|
|
35118
34925
|
export type TVLBreakdownUpdateManyMutationInput = {
|
35119
|
-
id?:
|
35120
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
34926
|
+
id?: StringFieldUpdateOperationsInput | string
|
35121
34927
|
identifier?: StringFieldUpdateOperationsInput | string
|
35122
34928
|
type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
|
35123
34929
|
value?: FloatFieldUpdateOperationsInput | number
|
35124
34930
|
}
|
35125
34931
|
|
35126
34932
|
export type TVLBreakdownUncheckedUpdateManyInput = {
|
35127
|
-
id?:
|
35128
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
34933
|
+
id?: StringFieldUpdateOperationsInput | string
|
35129
34934
|
identifier?: StringFieldUpdateOperationsInput | string
|
35130
34935
|
type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
|
35131
34936
|
value?: FloatFieldUpdateOperationsInput | number
|
@@ -35185,54 +34990,47 @@ export namespace Prisma {
|
|
35185
34990
|
}
|
35186
34991
|
|
35187
34992
|
export type DailyRewardsBreakdownCreateInput = {
|
35188
|
-
id?:
|
35189
|
-
uuid?: string
|
34993
|
+
id?: string
|
35190
34994
|
value: number
|
35191
34995
|
Campaign: CampaignCreateNestedOneWithoutDailyRewardsBreakdownInput
|
35192
34996
|
DailyRewardsRecord: DailyRewardsRecordCreateNestedOneWithoutDailyRewardsBreakdownInput
|
35193
34997
|
}
|
35194
34998
|
|
35195
34999
|
export type DailyRewardsBreakdownUncheckedCreateInput = {
|
35196
|
-
id?:
|
35197
|
-
uuid?: string
|
35000
|
+
id?: string
|
35198
35001
|
value: number
|
35199
35002
|
campaignId: string
|
35200
35003
|
dailyRewardsRecordId: string
|
35201
35004
|
}
|
35202
35005
|
|
35203
35006
|
export type DailyRewardsBreakdownUpdateInput = {
|
35204
|
-
id?:
|
35205
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
35007
|
+
id?: StringFieldUpdateOperationsInput | string
|
35206
35008
|
value?: FloatFieldUpdateOperationsInput | number
|
35207
35009
|
Campaign?: CampaignUpdateOneRequiredWithoutDailyRewardsBreakdownNestedInput
|
35208
35010
|
DailyRewardsRecord?: DailyRewardsRecordUpdateOneRequiredWithoutDailyRewardsBreakdownNestedInput
|
35209
35011
|
}
|
35210
35012
|
|
35211
35013
|
export type DailyRewardsBreakdownUncheckedUpdateInput = {
|
35212
|
-
id?:
|
35213
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
35014
|
+
id?: StringFieldUpdateOperationsInput | string
|
35214
35015
|
value?: FloatFieldUpdateOperationsInput | number
|
35215
35016
|
campaignId?: StringFieldUpdateOperationsInput | string
|
35216
35017
|
dailyRewardsRecordId?: StringFieldUpdateOperationsInput | string
|
35217
35018
|
}
|
35218
35019
|
|
35219
35020
|
export type DailyRewardsBreakdownCreateManyInput = {
|
35220
|
-
id?:
|
35221
|
-
uuid?: string
|
35021
|
+
id?: string
|
35222
35022
|
value: number
|
35223
35023
|
campaignId: string
|
35224
35024
|
dailyRewardsRecordId: string
|
35225
35025
|
}
|
35226
35026
|
|
35227
35027
|
export type DailyRewardsBreakdownUpdateManyMutationInput = {
|
35228
|
-
id?:
|
35229
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
35028
|
+
id?: StringFieldUpdateOperationsInput | string
|
35230
35029
|
value?: FloatFieldUpdateOperationsInput | number
|
35231
35030
|
}
|
35232
35031
|
|
35233
35032
|
export type DailyRewardsBreakdownUncheckedUpdateManyInput = {
|
35234
|
-
id?:
|
35235
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
35033
|
+
id?: StringFieldUpdateOperationsInput | string
|
35236
35034
|
value?: FloatFieldUpdateOperationsInput | number
|
35237
35035
|
campaignId?: StringFieldUpdateOperationsInput | string
|
35238
35036
|
dailyRewardsRecordId?: StringFieldUpdateOperationsInput | string
|
@@ -35420,8 +35218,7 @@ export namespace Prisma {
|
|
35420
35218
|
}
|
35421
35219
|
|
35422
35220
|
export type RewardBreakdownCreateInput = {
|
35423
|
-
id?:
|
35424
|
-
uuid?: string
|
35221
|
+
id?: string
|
35425
35222
|
reason: string
|
35426
35223
|
amount: string
|
35427
35224
|
claimed: string
|
@@ -35432,8 +35229,7 @@ export namespace Prisma {
|
|
35432
35229
|
}
|
35433
35230
|
|
35434
35231
|
export type RewardBreakdownUncheckedCreateInput = {
|
35435
|
-
id?:
|
35436
|
-
uuid?: string
|
35232
|
+
id?: string
|
35437
35233
|
protocolId?: string | null
|
35438
35234
|
reason: string
|
35439
35235
|
amount: string
|
@@ -35444,8 +35240,7 @@ export namespace Prisma {
|
|
35444
35240
|
}
|
35445
35241
|
|
35446
35242
|
export type RewardBreakdownUpdateInput = {
|
35447
|
-
id?:
|
35448
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
35243
|
+
id?: StringFieldUpdateOperationsInput | string
|
35449
35244
|
reason?: StringFieldUpdateOperationsInput | string
|
35450
35245
|
amount?: StringFieldUpdateOperationsInput | string
|
35451
35246
|
claimed?: StringFieldUpdateOperationsInput | string
|
@@ -35456,8 +35251,7 @@ export namespace Prisma {
|
|
35456
35251
|
}
|
35457
35252
|
|
35458
35253
|
export type RewardBreakdownUncheckedUpdateInput = {
|
35459
|
-
id?:
|
35460
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
35254
|
+
id?: StringFieldUpdateOperationsInput | string
|
35461
35255
|
protocolId?: NullableStringFieldUpdateOperationsInput | string | null
|
35462
35256
|
reason?: StringFieldUpdateOperationsInput | string
|
35463
35257
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -35468,8 +35262,7 @@ export namespace Prisma {
|
|
35468
35262
|
}
|
35469
35263
|
|
35470
35264
|
export type RewardBreakdownCreateManyInput = {
|
35471
|
-
id?:
|
35472
|
-
uuid?: string
|
35265
|
+
id?: string
|
35473
35266
|
protocolId?: string | null
|
35474
35267
|
reason: string
|
35475
35268
|
amount: string
|
@@ -35480,8 +35273,7 @@ export namespace Prisma {
|
|
35480
35273
|
}
|
35481
35274
|
|
35482
35275
|
export type RewardBreakdownUpdateManyMutationInput = {
|
35483
|
-
id?:
|
35484
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
35276
|
+
id?: StringFieldUpdateOperationsInput | string
|
35485
35277
|
reason?: StringFieldUpdateOperationsInput | string
|
35486
35278
|
amount?: StringFieldUpdateOperationsInput | string
|
35487
35279
|
claimed?: StringFieldUpdateOperationsInput | string
|
@@ -35489,8 +35281,7 @@ export namespace Prisma {
|
|
35489
35281
|
}
|
35490
35282
|
|
35491
35283
|
export type RewardBreakdownUncheckedUpdateManyInput = {
|
35492
|
-
id?:
|
35493
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
35284
|
+
id?: StringFieldUpdateOperationsInput | string
|
35494
35285
|
protocolId?: NullableStringFieldUpdateOperationsInput | string | null
|
35495
35286
|
reason?: StringFieldUpdateOperationsInput | string
|
35496
35287
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -36326,8 +36117,6 @@ export namespace Prisma {
|
|
36326
36117
|
|
36327
36118
|
export type UserComputedValueCountOrderByAggregateInput = {
|
36328
36119
|
id?: SortOrder
|
36329
|
-
stringId?: SortOrder
|
36330
|
-
uuid?: SortOrder
|
36331
36120
|
campaignId?: SortOrder
|
36332
36121
|
address?: SortOrder
|
36333
36122
|
reason?: SortOrder
|
@@ -36335,14 +36124,11 @@ export namespace Prisma {
|
|
36335
36124
|
}
|
36336
36125
|
|
36337
36126
|
export type UserComputedValueAvgOrderByAggregateInput = {
|
36338
|
-
id?: SortOrder
|
36339
36127
|
boost?: SortOrder
|
36340
36128
|
}
|
36341
36129
|
|
36342
36130
|
export type UserComputedValueMaxOrderByAggregateInput = {
|
36343
36131
|
id?: SortOrder
|
36344
|
-
stringId?: SortOrder
|
36345
|
-
uuid?: SortOrder
|
36346
36132
|
campaignId?: SortOrder
|
36347
36133
|
address?: SortOrder
|
36348
36134
|
reason?: SortOrder
|
@@ -36351,8 +36137,6 @@ export namespace Prisma {
|
|
36351
36137
|
|
36352
36138
|
export type UserComputedValueMinOrderByAggregateInput = {
|
36353
36139
|
id?: SortOrder
|
36354
|
-
stringId?: SortOrder
|
36355
|
-
uuid?: SortOrder
|
36356
36140
|
campaignId?: SortOrder
|
36357
36141
|
address?: SortOrder
|
36358
36142
|
reason?: SortOrder
|
@@ -36360,7 +36144,6 @@ export namespace Prisma {
|
|
36360
36144
|
}
|
36361
36145
|
|
36362
36146
|
export type UserComputedValueSumOrderByAggregateInput = {
|
36363
|
-
id?: SortOrder
|
36364
36147
|
boost?: SortOrder
|
36365
36148
|
}
|
36366
36149
|
|
@@ -36960,7 +36743,6 @@ export namespace Prisma {
|
|
36960
36743
|
|
36961
36744
|
export type AprBreakdownCountOrderByAggregateInput = {
|
36962
36745
|
id?: SortOrder
|
36963
|
-
uuid?: SortOrder
|
36964
36746
|
identifier?: SortOrder
|
36965
36747
|
type?: SortOrder
|
36966
36748
|
value?: SortOrder
|
@@ -36968,13 +36750,11 @@ export namespace Prisma {
|
|
36968
36750
|
}
|
36969
36751
|
|
36970
36752
|
export type AprBreakdownAvgOrderByAggregateInput = {
|
36971
|
-
id?: SortOrder
|
36972
36753
|
value?: SortOrder
|
36973
36754
|
}
|
36974
36755
|
|
36975
36756
|
export type AprBreakdownMaxOrderByAggregateInput = {
|
36976
36757
|
id?: SortOrder
|
36977
|
-
uuid?: SortOrder
|
36978
36758
|
identifier?: SortOrder
|
36979
36759
|
type?: SortOrder
|
36980
36760
|
value?: SortOrder
|
@@ -36983,7 +36763,6 @@ export namespace Prisma {
|
|
36983
36763
|
|
36984
36764
|
export type AprBreakdownMinOrderByAggregateInput = {
|
36985
36765
|
id?: SortOrder
|
36986
|
-
uuid?: SortOrder
|
36987
36766
|
identifier?: SortOrder
|
36988
36767
|
type?: SortOrder
|
36989
36768
|
value?: SortOrder
|
@@ -36991,7 +36770,6 @@ export namespace Prisma {
|
|
36991
36770
|
}
|
36992
36771
|
|
36993
36772
|
export type AprBreakdownSumOrderByAggregateInput = {
|
36994
|
-
id?: SortOrder
|
36995
36773
|
value?: SortOrder
|
36996
36774
|
}
|
36997
36775
|
|
@@ -37077,7 +36855,6 @@ export namespace Prisma {
|
|
37077
36855
|
|
37078
36856
|
export type TVLBreakdownCountOrderByAggregateInput = {
|
37079
36857
|
id?: SortOrder
|
37080
|
-
uuid?: SortOrder
|
37081
36858
|
identifier?: SortOrder
|
37082
36859
|
type?: SortOrder
|
37083
36860
|
value?: SortOrder
|
@@ -37085,13 +36862,11 @@ export namespace Prisma {
|
|
37085
36862
|
}
|
37086
36863
|
|
37087
36864
|
export type TVLBreakdownAvgOrderByAggregateInput = {
|
37088
|
-
id?: SortOrder
|
37089
36865
|
value?: SortOrder
|
37090
36866
|
}
|
37091
36867
|
|
37092
36868
|
export type TVLBreakdownMaxOrderByAggregateInput = {
|
37093
36869
|
id?: SortOrder
|
37094
|
-
uuid?: SortOrder
|
37095
36870
|
identifier?: SortOrder
|
37096
36871
|
type?: SortOrder
|
37097
36872
|
value?: SortOrder
|
@@ -37100,7 +36875,6 @@ export namespace Prisma {
|
|
37100
36875
|
|
37101
36876
|
export type TVLBreakdownMinOrderByAggregateInput = {
|
37102
36877
|
id?: SortOrder
|
37103
|
-
uuid?: SortOrder
|
37104
36878
|
identifier?: SortOrder
|
37105
36879
|
type?: SortOrder
|
37106
36880
|
value?: SortOrder
|
@@ -37108,7 +36882,6 @@ export namespace Prisma {
|
|
37108
36882
|
}
|
37109
36883
|
|
37110
36884
|
export type TVLBreakdownSumOrderByAggregateInput = {
|
37111
|
-
id?: SortOrder
|
37112
36885
|
value?: SortOrder
|
37113
36886
|
}
|
37114
36887
|
|
@@ -37177,20 +36950,17 @@ export namespace Prisma {
|
|
37177
36950
|
|
37178
36951
|
export type DailyRewardsBreakdownCountOrderByAggregateInput = {
|
37179
36952
|
id?: SortOrder
|
37180
|
-
uuid?: SortOrder
|
37181
36953
|
value?: SortOrder
|
37182
36954
|
campaignId?: SortOrder
|
37183
36955
|
dailyRewardsRecordId?: SortOrder
|
37184
36956
|
}
|
37185
36957
|
|
37186
36958
|
export type DailyRewardsBreakdownAvgOrderByAggregateInput = {
|
37187
|
-
id?: SortOrder
|
37188
36959
|
value?: SortOrder
|
37189
36960
|
}
|
37190
36961
|
|
37191
36962
|
export type DailyRewardsBreakdownMaxOrderByAggregateInput = {
|
37192
36963
|
id?: SortOrder
|
37193
|
-
uuid?: SortOrder
|
37194
36964
|
value?: SortOrder
|
37195
36965
|
campaignId?: SortOrder
|
37196
36966
|
dailyRewardsRecordId?: SortOrder
|
@@ -37198,14 +36968,12 @@ export namespace Prisma {
|
|
37198
36968
|
|
37199
36969
|
export type DailyRewardsBreakdownMinOrderByAggregateInput = {
|
37200
36970
|
id?: SortOrder
|
37201
|
-
uuid?: SortOrder
|
37202
36971
|
value?: SortOrder
|
37203
36972
|
campaignId?: SortOrder
|
37204
36973
|
dailyRewardsRecordId?: SortOrder
|
37205
36974
|
}
|
37206
36975
|
|
37207
36976
|
export type DailyRewardsBreakdownSumOrderByAggregateInput = {
|
37208
|
-
id?: SortOrder
|
37209
36977
|
value?: SortOrder
|
37210
36978
|
}
|
37211
36979
|
|
@@ -37337,7 +37105,6 @@ export namespace Prisma {
|
|
37337
37105
|
|
37338
37106
|
export type RewardBreakdownCountOrderByAggregateInput = {
|
37339
37107
|
id?: SortOrder
|
37340
|
-
uuid?: SortOrder
|
37341
37108
|
protocolId?: SortOrder
|
37342
37109
|
reason?: SortOrder
|
37343
37110
|
amount?: SortOrder
|
@@ -37347,13 +37114,8 @@ export namespace Prisma {
|
|
37347
37114
|
campaignId?: SortOrder
|
37348
37115
|
}
|
37349
37116
|
|
37350
|
-
export type RewardBreakdownAvgOrderByAggregateInput = {
|
37351
|
-
id?: SortOrder
|
37352
|
-
}
|
37353
|
-
|
37354
37117
|
export type RewardBreakdownMaxOrderByAggregateInput = {
|
37355
37118
|
id?: SortOrder
|
37356
|
-
uuid?: SortOrder
|
37357
37119
|
protocolId?: SortOrder
|
37358
37120
|
reason?: SortOrder
|
37359
37121
|
amount?: SortOrder
|
@@ -37365,7 +37127,6 @@ export namespace Prisma {
|
|
37365
37127
|
|
37366
37128
|
export type RewardBreakdownMinOrderByAggregateInput = {
|
37367
37129
|
id?: SortOrder
|
37368
|
-
uuid?: SortOrder
|
37369
37130
|
protocolId?: SortOrder
|
37370
37131
|
reason?: SortOrder
|
37371
37132
|
amount?: SortOrder
|
@@ -37375,10 +37136,6 @@ export namespace Prisma {
|
|
37375
37136
|
campaignId?: SortOrder
|
37376
37137
|
}
|
37377
37138
|
|
37378
|
-
export type RewardBreakdownSumOrderByAggregateInput = {
|
37379
|
-
id?: SortOrder
|
37380
|
-
}
|
37381
|
-
|
37382
37139
|
export type MerklRootOrderByRelevanceInput = {
|
37383
37140
|
fields: MerklRootOrderByRelevanceFieldEnum | MerklRootOrderByRelevanceFieldEnum[]
|
37384
37141
|
sort: SortOrder
|
@@ -40434,8 +40191,7 @@ export namespace Prisma {
|
|
40434
40191
|
}
|
40435
40192
|
|
40436
40193
|
export type RewardBreakdownCreateWithoutCampaignInput = {
|
40437
|
-
id?:
|
40438
|
-
uuid?: string
|
40194
|
+
id?: string
|
40439
40195
|
reason: string
|
40440
40196
|
amount: string
|
40441
40197
|
claimed: string
|
@@ -40445,8 +40201,7 @@ export namespace Prisma {
|
|
40445
40201
|
}
|
40446
40202
|
|
40447
40203
|
export type RewardBreakdownUncheckedCreateWithoutCampaignInput = {
|
40448
|
-
id?:
|
40449
|
-
uuid?: string
|
40204
|
+
id?: string
|
40450
40205
|
protocolId?: string | null
|
40451
40206
|
reason: string
|
40452
40207
|
amount: string
|
@@ -40466,15 +40221,13 @@ export namespace Prisma {
|
|
40466
40221
|
}
|
40467
40222
|
|
40468
40223
|
export type DailyRewardsBreakdownCreateWithoutCampaignInput = {
|
40469
|
-
id?:
|
40470
|
-
uuid?: string
|
40224
|
+
id?: string
|
40471
40225
|
value: number
|
40472
40226
|
DailyRewardsRecord: DailyRewardsRecordCreateNestedOneWithoutDailyRewardsBreakdownInput
|
40473
40227
|
}
|
40474
40228
|
|
40475
40229
|
export type DailyRewardsBreakdownUncheckedCreateWithoutCampaignInput = {
|
40476
|
-
id?:
|
40477
|
-
uuid?: string
|
40230
|
+
id?: string
|
40478
40231
|
value: number
|
40479
40232
|
dailyRewardsRecordId: string
|
40480
40233
|
}
|
@@ -40561,18 +40314,14 @@ export namespace Prisma {
|
|
40561
40314
|
}
|
40562
40315
|
|
40563
40316
|
export type UserComputedValueCreateWithoutCampaignInput = {
|
40564
|
-
id?:
|
40565
|
-
stringId?: string
|
40566
|
-
uuid?: string
|
40317
|
+
id?: string
|
40567
40318
|
reason: string
|
40568
40319
|
boost?: number | null
|
40569
40320
|
User?: UserCreateNestedOneWithoutUserComputedValueInput
|
40570
40321
|
}
|
40571
40322
|
|
40572
40323
|
export type UserComputedValueUncheckedCreateWithoutCampaignInput = {
|
40573
|
-
id?:
|
40574
|
-
stringId?: string
|
40575
|
-
uuid?: string
|
40324
|
+
id?: string
|
40576
40325
|
address: string
|
40577
40326
|
reason: string
|
40578
40327
|
boost?: number | null
|
@@ -40788,8 +40537,7 @@ export namespace Prisma {
|
|
40788
40537
|
AND?: RewardBreakdownScalarWhereInput | RewardBreakdownScalarWhereInput[]
|
40789
40538
|
OR?: RewardBreakdownScalarWhereInput[]
|
40790
40539
|
NOT?: RewardBreakdownScalarWhereInput | RewardBreakdownScalarWhereInput[]
|
40791
|
-
id?:
|
40792
|
-
uuid?: UuidFilter<"RewardBreakdown"> | string
|
40540
|
+
id?: UuidFilter<"RewardBreakdown"> | string
|
40793
40541
|
protocolId?: StringNullableFilter<"RewardBreakdown"> | string | null
|
40794
40542
|
reason?: StringFilter<"RewardBreakdown"> | string
|
40795
40543
|
amount?: StringFilter<"RewardBreakdown"> | string
|
@@ -40819,8 +40567,7 @@ export namespace Prisma {
|
|
40819
40567
|
AND?: DailyRewardsBreakdownScalarWhereInput | DailyRewardsBreakdownScalarWhereInput[]
|
40820
40568
|
OR?: DailyRewardsBreakdownScalarWhereInput[]
|
40821
40569
|
NOT?: DailyRewardsBreakdownScalarWhereInput | DailyRewardsBreakdownScalarWhereInput[]
|
40822
|
-
id?:
|
40823
|
-
uuid?: UuidFilter<"DailyRewardsBreakdown"> | string
|
40570
|
+
id?: UuidFilter<"DailyRewardsBreakdown"> | string
|
40824
40571
|
value?: FloatFilter<"DailyRewardsBreakdown"> | number
|
40825
40572
|
campaignId?: StringFilter<"DailyRewardsBreakdown"> | string
|
40826
40573
|
dailyRewardsRecordId?: StringFilter<"DailyRewardsBreakdown"> | string
|
@@ -40929,9 +40676,7 @@ export namespace Prisma {
|
|
40929
40676
|
AND?: UserComputedValueScalarWhereInput | UserComputedValueScalarWhereInput[]
|
40930
40677
|
OR?: UserComputedValueScalarWhereInput[]
|
40931
40678
|
NOT?: UserComputedValueScalarWhereInput | UserComputedValueScalarWhereInput[]
|
40932
|
-
id?:
|
40933
|
-
stringId?: StringFilter<"UserComputedValue"> | string
|
40934
|
-
uuid?: UuidFilter<"UserComputedValue"> | string
|
40679
|
+
id?: UuidFilter<"UserComputedValue"> | string
|
40935
40680
|
campaignId?: StringFilter<"UserComputedValue"> | string
|
40936
40681
|
address?: StringFilter<"UserComputedValue"> | string
|
40937
40682
|
reason?: StringFilter<"UserComputedValue"> | string
|
@@ -42492,8 +42237,7 @@ export namespace Prisma {
|
|
42492
42237
|
}
|
42493
42238
|
|
42494
42239
|
export type RewardBreakdownCreateWithoutProtocolInput = {
|
42495
|
-
id?:
|
42496
|
-
uuid?: string
|
42240
|
+
id?: string
|
42497
42241
|
reason: string
|
42498
42242
|
amount: string
|
42499
42243
|
claimed: string
|
@@ -42503,8 +42247,7 @@ export namespace Prisma {
|
|
42503
42247
|
}
|
42504
42248
|
|
42505
42249
|
export type RewardBreakdownUncheckedCreateWithoutProtocolInput = {
|
42506
|
-
id?:
|
42507
|
-
uuid?: string
|
42250
|
+
id?: string
|
42508
42251
|
reason: string
|
42509
42252
|
amount: string
|
42510
42253
|
claimed: string
|
@@ -42937,16 +42680,14 @@ export namespace Prisma {
|
|
42937
42680
|
}
|
42938
42681
|
|
42939
42682
|
export type AprBreakdownCreateWithoutAprRecordInput = {
|
42940
|
-
id?:
|
42941
|
-
uuid?: string
|
42683
|
+
id?: string
|
42942
42684
|
identifier: string
|
42943
42685
|
type: $Enums.AprType
|
42944
42686
|
value: number
|
42945
42687
|
}
|
42946
42688
|
|
42947
42689
|
export type AprBreakdownUncheckedCreateWithoutAprRecordInput = {
|
42948
|
-
id?:
|
42949
|
-
uuid?: string
|
42690
|
+
id?: string
|
42950
42691
|
identifier: string
|
42951
42692
|
type: $Enums.AprType
|
42952
42693
|
value: number
|
@@ -43031,8 +42772,7 @@ export namespace Prisma {
|
|
43031
42772
|
AND?: AprBreakdownScalarWhereInput | AprBreakdownScalarWhereInput[]
|
43032
42773
|
OR?: AprBreakdownScalarWhereInput[]
|
43033
42774
|
NOT?: AprBreakdownScalarWhereInput | AprBreakdownScalarWhereInput[]
|
43034
|
-
id?:
|
43035
|
-
uuid?: UuidFilter<"AprBreakdown"> | string
|
42775
|
+
id?: UuidFilter<"AprBreakdown"> | string
|
43036
42776
|
identifier?: StringFilter<"AprBreakdown"> | string
|
43037
42777
|
type?: EnumAprTypeFilter<"AprBreakdown"> | $Enums.AprType
|
43038
42778
|
value?: FloatFilter<"AprBreakdown"> | number
|
@@ -43139,16 +42879,14 @@ export namespace Prisma {
|
|
43139
42879
|
}
|
43140
42880
|
|
43141
42881
|
export type TVLBreakdownCreateWithoutTvlRecordInput = {
|
43142
|
-
id?:
|
43143
|
-
uuid?: string
|
42882
|
+
id?: string
|
43144
42883
|
identifier: string
|
43145
42884
|
type: $Enums.TvlType
|
43146
42885
|
value: number
|
43147
42886
|
}
|
43148
42887
|
|
43149
42888
|
export type TVLBreakdownUncheckedCreateWithoutTvlRecordInput = {
|
43150
|
-
id?:
|
43151
|
-
uuid?: string
|
42889
|
+
id?: string
|
43152
42890
|
identifier: string
|
43153
42891
|
type: $Enums.TvlType
|
43154
42892
|
value: number
|
@@ -43233,8 +42971,7 @@ export namespace Prisma {
|
|
43233
42971
|
AND?: TVLBreakdownScalarWhereInput | TVLBreakdownScalarWhereInput[]
|
43234
42972
|
OR?: TVLBreakdownScalarWhereInput[]
|
43235
42973
|
NOT?: TVLBreakdownScalarWhereInput | TVLBreakdownScalarWhereInput[]
|
43236
|
-
id?:
|
43237
|
-
uuid?: UuidFilter<"TVLBreakdown"> | string
|
42974
|
+
id?: UuidFilter<"TVLBreakdown"> | string
|
43238
42975
|
identifier?: StringFilter<"TVLBreakdown"> | string
|
43239
42976
|
type?: EnumTvlTypeFilter<"TVLBreakdown"> | $Enums.TvlType
|
43240
42977
|
value?: FloatFilter<"TVLBreakdown"> | number
|
@@ -43341,15 +43078,13 @@ export namespace Prisma {
|
|
43341
43078
|
}
|
43342
43079
|
|
43343
43080
|
export type DailyRewardsBreakdownCreateWithoutDailyRewardsRecordInput = {
|
43344
|
-
id?:
|
43345
|
-
uuid?: string
|
43081
|
+
id?: string
|
43346
43082
|
value: number
|
43347
43083
|
Campaign: CampaignCreateNestedOneWithoutDailyRewardsBreakdownInput
|
43348
43084
|
}
|
43349
43085
|
|
43350
43086
|
export type DailyRewardsBreakdownUncheckedCreateWithoutDailyRewardsRecordInput = {
|
43351
|
-
id?:
|
43352
|
-
uuid?: string
|
43087
|
+
id?: string
|
43353
43088
|
value: number
|
43354
43089
|
campaignId: string
|
43355
43090
|
}
|
@@ -43745,18 +43480,14 @@ export namespace Prisma {
|
|
43745
43480
|
}
|
43746
43481
|
|
43747
43482
|
export type UserComputedValueCreateWithoutUserInput = {
|
43748
|
-
id?:
|
43749
|
-
stringId?: string
|
43750
|
-
uuid?: string
|
43483
|
+
id?: string
|
43751
43484
|
reason: string
|
43752
43485
|
boost?: number | null
|
43753
43486
|
Campaign: CampaignCreateNestedOneWithoutUserComputedValueInput
|
43754
43487
|
}
|
43755
43488
|
|
43756
43489
|
export type UserComputedValueUncheckedCreateWithoutUserInput = {
|
43757
|
-
id?:
|
43758
|
-
stringId?: string
|
43759
|
-
uuid?: string
|
43490
|
+
id?: string
|
43760
43491
|
campaignId: string
|
43761
43492
|
reason: string
|
43762
43493
|
boost?: number | null
|
@@ -44017,8 +43748,7 @@ export namespace Prisma {
|
|
44017
43748
|
}
|
44018
43749
|
|
44019
43750
|
export type RewardBreakdownCreateWithoutRewardInput = {
|
44020
|
-
id?:
|
44021
|
-
uuid?: string
|
43751
|
+
id?: string
|
44022
43752
|
reason: string
|
44023
43753
|
amount: string
|
44024
43754
|
claimed: string
|
@@ -44028,8 +43758,7 @@ export namespace Prisma {
|
|
44028
43758
|
}
|
44029
43759
|
|
44030
43760
|
export type RewardBreakdownUncheckedCreateWithoutRewardInput = {
|
44031
|
-
id?:
|
44032
|
-
uuid?: string
|
43761
|
+
id?: string
|
44033
43762
|
protocolId?: string | null
|
44034
43763
|
reason: string
|
44035
43764
|
amount: string
|
@@ -44890,8 +44619,7 @@ export namespace Prisma {
|
|
44890
44619
|
}
|
44891
44620
|
|
44892
44621
|
export type RewardBreakdownCreateManyCampaignInput = {
|
44893
|
-
id?:
|
44894
|
-
uuid?: string
|
44622
|
+
id?: string
|
44895
44623
|
protocolId?: string | null
|
44896
44624
|
reason: string
|
44897
44625
|
amount: string
|
@@ -44901,8 +44629,7 @@ export namespace Prisma {
|
|
44901
44629
|
}
|
44902
44630
|
|
44903
44631
|
export type DailyRewardsBreakdownCreateManyCampaignInput = {
|
44904
|
-
id?:
|
44905
|
-
uuid?: string
|
44632
|
+
id?: string
|
44906
44633
|
value: number
|
44907
44634
|
dailyRewardsRecordId: string
|
44908
44635
|
}
|
@@ -44922,17 +44649,14 @@ export namespace Prisma {
|
|
44922
44649
|
}
|
44923
44650
|
|
44924
44651
|
export type UserComputedValueCreateManyCampaignInput = {
|
44925
|
-
id?:
|
44926
|
-
stringId?: string
|
44927
|
-
uuid?: string
|
44652
|
+
id?: string
|
44928
44653
|
address: string
|
44929
44654
|
reason: string
|
44930
44655
|
boost?: number | null
|
44931
44656
|
}
|
44932
44657
|
|
44933
44658
|
export type RewardBreakdownUpdateWithoutCampaignInput = {
|
44934
|
-
id?:
|
44935
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
44659
|
+
id?: StringFieldUpdateOperationsInput | string
|
44936
44660
|
reason?: StringFieldUpdateOperationsInput | string
|
44937
44661
|
amount?: StringFieldUpdateOperationsInput | string
|
44938
44662
|
claimed?: StringFieldUpdateOperationsInput | string
|
@@ -44942,8 +44666,7 @@ export namespace Prisma {
|
|
44942
44666
|
}
|
44943
44667
|
|
44944
44668
|
export type RewardBreakdownUncheckedUpdateWithoutCampaignInput = {
|
44945
|
-
id?:
|
44946
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
44669
|
+
id?: StringFieldUpdateOperationsInput | string
|
44947
44670
|
protocolId?: NullableStringFieldUpdateOperationsInput | string | null
|
44948
44671
|
reason?: StringFieldUpdateOperationsInput | string
|
44949
44672
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -44953,8 +44676,7 @@ export namespace Prisma {
|
|
44953
44676
|
}
|
44954
44677
|
|
44955
44678
|
export type RewardBreakdownUncheckedUpdateManyWithoutCampaignInput = {
|
44956
|
-
id?:
|
44957
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
44679
|
+
id?: StringFieldUpdateOperationsInput | string
|
44958
44680
|
protocolId?: NullableStringFieldUpdateOperationsInput | string | null
|
44959
44681
|
reason?: StringFieldUpdateOperationsInput | string
|
44960
44682
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -44964,22 +44686,19 @@ export namespace Prisma {
|
|
44964
44686
|
}
|
44965
44687
|
|
44966
44688
|
export type DailyRewardsBreakdownUpdateWithoutCampaignInput = {
|
44967
|
-
id?:
|
44968
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
44689
|
+
id?: StringFieldUpdateOperationsInput | string
|
44969
44690
|
value?: FloatFieldUpdateOperationsInput | number
|
44970
44691
|
DailyRewardsRecord?: DailyRewardsRecordUpdateOneRequiredWithoutDailyRewardsBreakdownNestedInput
|
44971
44692
|
}
|
44972
44693
|
|
44973
44694
|
export type DailyRewardsBreakdownUncheckedUpdateWithoutCampaignInput = {
|
44974
|
-
id?:
|
44975
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
44695
|
+
id?: StringFieldUpdateOperationsInput | string
|
44976
44696
|
value?: FloatFieldUpdateOperationsInput | number
|
44977
44697
|
dailyRewardsRecordId?: StringFieldUpdateOperationsInput | string
|
44978
44698
|
}
|
44979
44699
|
|
44980
44700
|
export type DailyRewardsBreakdownUncheckedUpdateManyWithoutCampaignInput = {
|
44981
|
-
id?:
|
44982
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
44701
|
+
id?: StringFieldUpdateOperationsInput | string
|
44983
44702
|
value?: FloatFieldUpdateOperationsInput | number
|
44984
44703
|
dailyRewardsRecordId?: StringFieldUpdateOperationsInput | string
|
44985
44704
|
}
|
@@ -45027,27 +44746,21 @@ export namespace Prisma {
|
|
45027
44746
|
}
|
45028
44747
|
|
45029
44748
|
export type UserComputedValueUpdateWithoutCampaignInput = {
|
45030
|
-
id?:
|
45031
|
-
stringId?: StringFieldUpdateOperationsInput | string
|
45032
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
44749
|
+
id?: StringFieldUpdateOperationsInput | string
|
45033
44750
|
reason?: StringFieldUpdateOperationsInput | string
|
45034
44751
|
boost?: NullableFloatFieldUpdateOperationsInput | number | null
|
45035
44752
|
User?: UserUpdateOneWithoutUserComputedValueNestedInput
|
45036
44753
|
}
|
45037
44754
|
|
45038
44755
|
export type UserComputedValueUncheckedUpdateWithoutCampaignInput = {
|
45039
|
-
id?:
|
45040
|
-
stringId?: StringFieldUpdateOperationsInput | string
|
45041
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
44756
|
+
id?: StringFieldUpdateOperationsInput | string
|
45042
44757
|
address?: StringFieldUpdateOperationsInput | string
|
45043
44758
|
reason?: StringFieldUpdateOperationsInput | string
|
45044
44759
|
boost?: NullableFloatFieldUpdateOperationsInput | number | null
|
45045
44760
|
}
|
45046
44761
|
|
45047
44762
|
export type UserComputedValueUncheckedUpdateManyWithoutCampaignInput = {
|
45048
|
-
id?:
|
45049
|
-
stringId?: StringFieldUpdateOperationsInput | string
|
45050
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
44763
|
+
id?: StringFieldUpdateOperationsInput | string
|
45051
44764
|
address?: StringFieldUpdateOperationsInput | string
|
45052
44765
|
reason?: StringFieldUpdateOperationsInput | string
|
45053
44766
|
boost?: NullableFloatFieldUpdateOperationsInput | number | null
|
@@ -45745,8 +45458,7 @@ export namespace Prisma {
|
|
45745
45458
|
}
|
45746
45459
|
|
45747
45460
|
export type RewardBreakdownCreateManyProtocolInput = {
|
45748
|
-
id?:
|
45749
|
-
uuid?: string
|
45461
|
+
id?: string
|
45750
45462
|
reason: string
|
45751
45463
|
amount: string
|
45752
45464
|
claimed: string
|
@@ -45877,8 +45589,7 @@ export namespace Prisma {
|
|
45877
45589
|
}
|
45878
45590
|
|
45879
45591
|
export type RewardBreakdownUpdateWithoutProtocolInput = {
|
45880
|
-
id?:
|
45881
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
45592
|
+
id?: StringFieldUpdateOperationsInput | string
|
45882
45593
|
reason?: StringFieldUpdateOperationsInput | string
|
45883
45594
|
amount?: StringFieldUpdateOperationsInput | string
|
45884
45595
|
claimed?: StringFieldUpdateOperationsInput | string
|
@@ -45888,8 +45599,7 @@ export namespace Prisma {
|
|
45888
45599
|
}
|
45889
45600
|
|
45890
45601
|
export type RewardBreakdownUncheckedUpdateWithoutProtocolInput = {
|
45891
|
-
id?:
|
45892
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
45602
|
+
id?: StringFieldUpdateOperationsInput | string
|
45893
45603
|
reason?: StringFieldUpdateOperationsInput | string
|
45894
45604
|
amount?: StringFieldUpdateOperationsInput | string
|
45895
45605
|
claimed?: StringFieldUpdateOperationsInput | string
|
@@ -45899,8 +45609,7 @@ export namespace Prisma {
|
|
45899
45609
|
}
|
45900
45610
|
|
45901
45611
|
export type RewardBreakdownUncheckedUpdateManyWithoutProtocolInput = {
|
45902
|
-
id?:
|
45903
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
45612
|
+
id?: StringFieldUpdateOperationsInput | string
|
45904
45613
|
reason?: StringFieldUpdateOperationsInput | string
|
45905
45614
|
amount?: StringFieldUpdateOperationsInput | string
|
45906
45615
|
claimed?: StringFieldUpdateOperationsInput | string
|
@@ -46187,93 +45896,81 @@ export namespace Prisma {
|
|
46187
45896
|
}
|
46188
45897
|
|
46189
45898
|
export type AprBreakdownCreateManyAprRecordInput = {
|
46190
|
-
id?:
|
46191
|
-
uuid?: string
|
45899
|
+
id?: string
|
46192
45900
|
identifier: string
|
46193
45901
|
type: $Enums.AprType
|
46194
45902
|
value: number
|
46195
45903
|
}
|
46196
45904
|
|
46197
45905
|
export type AprBreakdownUpdateWithoutAprRecordInput = {
|
46198
|
-
id?:
|
46199
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
45906
|
+
id?: StringFieldUpdateOperationsInput | string
|
46200
45907
|
identifier?: StringFieldUpdateOperationsInput | string
|
46201
45908
|
type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
|
46202
45909
|
value?: FloatFieldUpdateOperationsInput | number
|
46203
45910
|
}
|
46204
45911
|
|
46205
45912
|
export type AprBreakdownUncheckedUpdateWithoutAprRecordInput = {
|
46206
|
-
id?:
|
46207
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
45913
|
+
id?: StringFieldUpdateOperationsInput | string
|
46208
45914
|
identifier?: StringFieldUpdateOperationsInput | string
|
46209
45915
|
type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
|
46210
45916
|
value?: FloatFieldUpdateOperationsInput | number
|
46211
45917
|
}
|
46212
45918
|
|
46213
45919
|
export type AprBreakdownUncheckedUpdateManyWithoutAprRecordInput = {
|
46214
|
-
id?:
|
46215
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
45920
|
+
id?: StringFieldUpdateOperationsInput | string
|
46216
45921
|
identifier?: StringFieldUpdateOperationsInput | string
|
46217
45922
|
type?: EnumAprTypeFieldUpdateOperationsInput | $Enums.AprType
|
46218
45923
|
value?: FloatFieldUpdateOperationsInput | number
|
46219
45924
|
}
|
46220
45925
|
|
46221
45926
|
export type TVLBreakdownCreateManyTvlRecordInput = {
|
46222
|
-
id?:
|
46223
|
-
uuid?: string
|
45927
|
+
id?: string
|
46224
45928
|
identifier: string
|
46225
45929
|
type: $Enums.TvlType
|
46226
45930
|
value: number
|
46227
45931
|
}
|
46228
45932
|
|
46229
45933
|
export type TVLBreakdownUpdateWithoutTvlRecordInput = {
|
46230
|
-
id?:
|
46231
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
45934
|
+
id?: StringFieldUpdateOperationsInput | string
|
46232
45935
|
identifier?: StringFieldUpdateOperationsInput | string
|
46233
45936
|
type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
|
46234
45937
|
value?: FloatFieldUpdateOperationsInput | number
|
46235
45938
|
}
|
46236
45939
|
|
46237
45940
|
export type TVLBreakdownUncheckedUpdateWithoutTvlRecordInput = {
|
46238
|
-
id?:
|
46239
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
45941
|
+
id?: StringFieldUpdateOperationsInput | string
|
46240
45942
|
identifier?: StringFieldUpdateOperationsInput | string
|
46241
45943
|
type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
|
46242
45944
|
value?: FloatFieldUpdateOperationsInput | number
|
46243
45945
|
}
|
46244
45946
|
|
46245
45947
|
export type TVLBreakdownUncheckedUpdateManyWithoutTvlRecordInput = {
|
46246
|
-
id?:
|
46247
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
45948
|
+
id?: StringFieldUpdateOperationsInput | string
|
46248
45949
|
identifier?: StringFieldUpdateOperationsInput | string
|
46249
45950
|
type?: EnumTvlTypeFieldUpdateOperationsInput | $Enums.TvlType
|
46250
45951
|
value?: FloatFieldUpdateOperationsInput | number
|
46251
45952
|
}
|
46252
45953
|
|
46253
45954
|
export type DailyRewardsBreakdownCreateManyDailyRewardsRecordInput = {
|
46254
|
-
id?:
|
46255
|
-
uuid?: string
|
45955
|
+
id?: string
|
46256
45956
|
value: number
|
46257
45957
|
campaignId: string
|
46258
45958
|
}
|
46259
45959
|
|
46260
45960
|
export type DailyRewardsBreakdownUpdateWithoutDailyRewardsRecordInput = {
|
46261
|
-
id?:
|
46262
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
45961
|
+
id?: StringFieldUpdateOperationsInput | string
|
46263
45962
|
value?: FloatFieldUpdateOperationsInput | number
|
46264
45963
|
Campaign?: CampaignUpdateOneRequiredWithoutDailyRewardsBreakdownNestedInput
|
46265
45964
|
}
|
46266
45965
|
|
46267
45966
|
export type DailyRewardsBreakdownUncheckedUpdateWithoutDailyRewardsRecordInput = {
|
46268
|
-
id?:
|
46269
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
45967
|
+
id?: StringFieldUpdateOperationsInput | string
|
46270
45968
|
value?: FloatFieldUpdateOperationsInput | number
|
46271
45969
|
campaignId?: StringFieldUpdateOperationsInput | string
|
46272
45970
|
}
|
46273
45971
|
|
46274
45972
|
export type DailyRewardsBreakdownUncheckedUpdateManyWithoutDailyRewardsRecordInput = {
|
46275
|
-
id?:
|
46276
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
45973
|
+
id?: StringFieldUpdateOperationsInput | string
|
46277
45974
|
value?: FloatFieldUpdateOperationsInput | number
|
46278
45975
|
campaignId?: StringFieldUpdateOperationsInput | string
|
46279
45976
|
}
|
@@ -46314,9 +46011,7 @@ export namespace Prisma {
|
|
46314
46011
|
}
|
46315
46012
|
|
46316
46013
|
export type UserComputedValueCreateManyUserInput = {
|
46317
|
-
id?:
|
46318
|
-
stringId?: string
|
46319
|
-
uuid?: string
|
46014
|
+
id?: string
|
46320
46015
|
campaignId: string
|
46321
46016
|
reason: string
|
46322
46017
|
boost?: number | null
|
@@ -46440,27 +46135,21 @@ export namespace Prisma {
|
|
46440
46135
|
}
|
46441
46136
|
|
46442
46137
|
export type UserComputedValueUpdateWithoutUserInput = {
|
46443
|
-
id?:
|
46444
|
-
stringId?: StringFieldUpdateOperationsInput | string
|
46445
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
46138
|
+
id?: StringFieldUpdateOperationsInput | string
|
46446
46139
|
reason?: StringFieldUpdateOperationsInput | string
|
46447
46140
|
boost?: NullableFloatFieldUpdateOperationsInput | number | null
|
46448
46141
|
Campaign?: CampaignUpdateOneRequiredWithoutUserComputedValueNestedInput
|
46449
46142
|
}
|
46450
46143
|
|
46451
46144
|
export type UserComputedValueUncheckedUpdateWithoutUserInput = {
|
46452
|
-
id?:
|
46453
|
-
stringId?: StringFieldUpdateOperationsInput | string
|
46454
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
46145
|
+
id?: StringFieldUpdateOperationsInput | string
|
46455
46146
|
campaignId?: StringFieldUpdateOperationsInput | string
|
46456
46147
|
reason?: StringFieldUpdateOperationsInput | string
|
46457
46148
|
boost?: NullableFloatFieldUpdateOperationsInput | number | null
|
46458
46149
|
}
|
46459
46150
|
|
46460
46151
|
export type UserComputedValueUncheckedUpdateManyWithoutUserInput = {
|
46461
|
-
id?:
|
46462
|
-
stringId?: StringFieldUpdateOperationsInput | string
|
46463
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
46152
|
+
id?: StringFieldUpdateOperationsInput | string
|
46464
46153
|
campaignId?: StringFieldUpdateOperationsInput | string
|
46465
46154
|
reason?: StringFieldUpdateOperationsInput | string
|
46466
46155
|
boost?: NullableFloatFieldUpdateOperationsInput | number | null
|
@@ -46495,8 +46184,7 @@ export namespace Prisma {
|
|
46495
46184
|
}
|
46496
46185
|
|
46497
46186
|
export type RewardBreakdownCreateManyRewardInput = {
|
46498
|
-
id?:
|
46499
|
-
uuid?: string
|
46187
|
+
id?: string
|
46500
46188
|
protocolId?: string | null
|
46501
46189
|
reason: string
|
46502
46190
|
amount: string
|
@@ -46506,8 +46194,7 @@ export namespace Prisma {
|
|
46506
46194
|
}
|
46507
46195
|
|
46508
46196
|
export type RewardBreakdownUpdateWithoutRewardInput = {
|
46509
|
-
id?:
|
46510
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
46197
|
+
id?: StringFieldUpdateOperationsInput | string
|
46511
46198
|
reason?: StringFieldUpdateOperationsInput | string
|
46512
46199
|
amount?: StringFieldUpdateOperationsInput | string
|
46513
46200
|
claimed?: StringFieldUpdateOperationsInput | string
|
@@ -46517,8 +46204,7 @@ export namespace Prisma {
|
|
46517
46204
|
}
|
46518
46205
|
|
46519
46206
|
export type RewardBreakdownUncheckedUpdateWithoutRewardInput = {
|
46520
|
-
id?:
|
46521
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
46207
|
+
id?: StringFieldUpdateOperationsInput | string
|
46522
46208
|
protocolId?: NullableStringFieldUpdateOperationsInput | string | null
|
46523
46209
|
reason?: StringFieldUpdateOperationsInput | string
|
46524
46210
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -46528,8 +46214,7 @@ export namespace Prisma {
|
|
46528
46214
|
}
|
46529
46215
|
|
46530
46216
|
export type RewardBreakdownUncheckedUpdateManyWithoutRewardInput = {
|
46531
|
-
id?:
|
46532
|
-
uuid?: StringFieldUpdateOperationsInput | string
|
46217
|
+
id?: StringFieldUpdateOperationsInput | string
|
46533
46218
|
protocolId?: NullableStringFieldUpdateOperationsInput | string | null
|
46534
46219
|
reason?: StringFieldUpdateOperationsInput | string
|
46535
46220
|
amount?: StringFieldUpdateOperationsInput | string
|