@merkl/api 0.10.305 → 0.10.307
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/edge.js +9 -3
- package/dist/database/api/.generated/index-browser.js +6 -0
- package/dist/database/api/.generated/index.d.ts +156 -0
- package/dist/database/api/.generated/index.js +9 -3
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +3 -0
- package/dist/database/api/.generated/wasm.js +6 -0
- package/dist/src/eden/index.d.ts +9 -0
- package/dist/src/index.d.ts +3 -0
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +27 -26
- package/dist/src/modules/v4/programPayload/programPayload.repository.js +41 -30
- package/dist/src/modules/v4/reward/reward.controller.d.ts +3 -0
- package/dist/src/modules/v4/reward/reward.model.d.ts +6 -0
- package/dist/src/modules/v4/reward/reward.model.js +3 -0
- package/dist/src/modules/v4/reward/reward.repository.d.ts +36 -22
- package/dist/src/modules/v4/reward/reward.repository.js +43 -43
- package/dist/src/modules/v4/reward/reward.service.d.ts +8 -2
- package/dist/src/modules/v4/reward/reward.service.js +43 -6
- package/dist/src/modules/v4/router.d.ts +3 -0
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -16762,6 +16762,9 @@ export namespace Prisma {
|
|
16762
16762
|
root: string | null
|
16763
16763
|
recipient: string | null
|
16764
16764
|
rewardTokenId: string | null
|
16765
|
+
amount: string | null
|
16766
|
+
claimed: string | null
|
16767
|
+
pending: string | null
|
16765
16768
|
}
|
16766
16769
|
|
16767
16770
|
export type RewardMaxAggregateOutputType = {
|
@@ -16769,6 +16772,9 @@ export namespace Prisma {
|
|
16769
16772
|
root: string | null
|
16770
16773
|
recipient: string | null
|
16771
16774
|
rewardTokenId: string | null
|
16775
|
+
amount: string | null
|
16776
|
+
claimed: string | null
|
16777
|
+
pending: string | null
|
16772
16778
|
}
|
16773
16779
|
|
16774
16780
|
export type RewardCountAggregateOutputType = {
|
@@ -16776,6 +16782,9 @@ export namespace Prisma {
|
|
16776
16782
|
root: number
|
16777
16783
|
recipient: number
|
16778
16784
|
rewardTokenId: number
|
16785
|
+
amount: number
|
16786
|
+
claimed: number
|
16787
|
+
pending: number
|
16779
16788
|
proofs: number
|
16780
16789
|
_all: number
|
16781
16790
|
}
|
@@ -16786,6 +16795,9 @@ export namespace Prisma {
|
|
16786
16795
|
root?: true
|
16787
16796
|
recipient?: true
|
16788
16797
|
rewardTokenId?: true
|
16798
|
+
amount?: true
|
16799
|
+
claimed?: true
|
16800
|
+
pending?: true
|
16789
16801
|
}
|
16790
16802
|
|
16791
16803
|
export type RewardMaxAggregateInputType = {
|
@@ -16793,6 +16805,9 @@ export namespace Prisma {
|
|
16793
16805
|
root?: true
|
16794
16806
|
recipient?: true
|
16795
16807
|
rewardTokenId?: true
|
16808
|
+
amount?: true
|
16809
|
+
claimed?: true
|
16810
|
+
pending?: true
|
16796
16811
|
}
|
16797
16812
|
|
16798
16813
|
export type RewardCountAggregateInputType = {
|
@@ -16800,6 +16815,9 @@ export namespace Prisma {
|
|
16800
16815
|
root?: true
|
16801
16816
|
recipient?: true
|
16802
16817
|
rewardTokenId?: true
|
16818
|
+
amount?: true
|
16819
|
+
claimed?: true
|
16820
|
+
pending?: true
|
16803
16821
|
proofs?: true
|
16804
16822
|
_all?: true
|
16805
16823
|
}
|
@@ -16881,6 +16899,9 @@ export namespace Prisma {
|
|
16881
16899
|
root: string
|
16882
16900
|
recipient: string
|
16883
16901
|
rewardTokenId: string
|
16902
|
+
amount: string
|
16903
|
+
claimed: string
|
16904
|
+
pending: string
|
16884
16905
|
proofs: string[]
|
16885
16906
|
_count: RewardCountAggregateOutputType | null
|
16886
16907
|
_min: RewardMinAggregateOutputType | null
|
@@ -16906,6 +16927,9 @@ export namespace Prisma {
|
|
16906
16927
|
root?: boolean
|
16907
16928
|
recipient?: boolean
|
16908
16929
|
rewardTokenId?: boolean
|
16930
|
+
amount?: boolean
|
16931
|
+
claimed?: boolean
|
16932
|
+
pending?: boolean
|
16909
16933
|
proofs?: boolean
|
16910
16934
|
MerklRoot?: boolean | MerklRootDefaultArgs<ExtArgs>
|
16911
16935
|
User?: boolean | UserDefaultArgs<ExtArgs>
|
@@ -16919,6 +16943,9 @@ export namespace Prisma {
|
|
16919
16943
|
root?: boolean
|
16920
16944
|
recipient?: boolean
|
16921
16945
|
rewardTokenId?: boolean
|
16946
|
+
amount?: boolean
|
16947
|
+
claimed?: boolean
|
16948
|
+
pending?: boolean
|
16922
16949
|
proofs?: boolean
|
16923
16950
|
MerklRoot?: boolean | MerklRootDefaultArgs<ExtArgs>
|
16924
16951
|
User?: boolean | UserDefaultArgs<ExtArgs>
|
@@ -16930,6 +16957,9 @@ export namespace Prisma {
|
|
16930
16957
|
root?: boolean
|
16931
16958
|
recipient?: boolean
|
16932
16959
|
rewardTokenId?: boolean
|
16960
|
+
amount?: boolean
|
16961
|
+
claimed?: boolean
|
16962
|
+
pending?: boolean
|
16933
16963
|
proofs?: boolean
|
16934
16964
|
}
|
16935
16965
|
|
@@ -16959,6 +16989,9 @@ export namespace Prisma {
|
|
16959
16989
|
root: string
|
16960
16990
|
recipient: string
|
16961
16991
|
rewardTokenId: string
|
16992
|
+
amount: string
|
16993
|
+
claimed: string
|
16994
|
+
pending: string
|
16962
16995
|
proofs: string[]
|
16963
16996
|
}, ExtArgs["result"]["reward"]>
|
16964
16997
|
composites: {}
|
@@ -17361,6 +17394,9 @@ export namespace Prisma {
|
|
17361
17394
|
readonly root: FieldRef<"Reward", 'String'>
|
17362
17395
|
readonly recipient: FieldRef<"Reward", 'String'>
|
17363
17396
|
readonly rewardTokenId: FieldRef<"Reward", 'String'>
|
17397
|
+
readonly amount: FieldRef<"Reward", 'String'>
|
17398
|
+
readonly claimed: FieldRef<"Reward", 'String'>
|
17399
|
+
readonly pending: FieldRef<"Reward", 'String'>
|
17364
17400
|
readonly proofs: FieldRef<"Reward", 'String[]'>
|
17365
17401
|
}
|
17366
17402
|
|
@@ -23906,6 +23942,9 @@ export namespace Prisma {
|
|
23906
23942
|
root: 'root',
|
23907
23943
|
recipient: 'recipient',
|
23908
23944
|
rewardTokenId: 'rewardTokenId',
|
23945
|
+
amount: 'amount',
|
23946
|
+
claimed: 'claimed',
|
23947
|
+
pending: 'pending',
|
23909
23948
|
proofs: 'proofs'
|
23910
23949
|
};
|
23911
23950
|
|
@@ -24161,6 +24200,9 @@ export namespace Prisma {
|
|
24161
24200
|
root: 'root',
|
24162
24201
|
recipient: 'recipient',
|
24163
24202
|
rewardTokenId: 'rewardTokenId',
|
24203
|
+
amount: 'amount',
|
24204
|
+
claimed: 'claimed',
|
24205
|
+
pending: 'pending',
|
24164
24206
|
proofs: 'proofs'
|
24165
24207
|
};
|
24166
24208
|
|
@@ -25362,6 +25404,9 @@ export namespace Prisma {
|
|
25362
25404
|
root?: StringFilter<"Reward"> | string
|
25363
25405
|
recipient?: StringFilter<"Reward"> | string
|
25364
25406
|
rewardTokenId?: StringFilter<"Reward"> | string
|
25407
|
+
amount?: StringFilter<"Reward"> | string
|
25408
|
+
claimed?: StringFilter<"Reward"> | string
|
25409
|
+
pending?: StringFilter<"Reward"> | string
|
25365
25410
|
proofs?: StringNullableListFilter<"Reward">
|
25366
25411
|
MerklRoot?: XOR<MerklRootScalarRelationFilter, MerklRootWhereInput>
|
25367
25412
|
User?: XOR<UserScalarRelationFilter, UserWhereInput>
|
@@ -25374,6 +25419,9 @@ export namespace Prisma {
|
|
25374
25419
|
root?: SortOrder
|
25375
25420
|
recipient?: SortOrder
|
25376
25421
|
rewardTokenId?: SortOrder
|
25422
|
+
amount?: SortOrder
|
25423
|
+
claimed?: SortOrder
|
25424
|
+
pending?: SortOrder
|
25377
25425
|
proofs?: SortOrder
|
25378
25426
|
MerklRoot?: MerklRootOrderByWithRelationInput
|
25379
25427
|
User?: UserOrderByWithRelationInput
|
@@ -25391,6 +25439,9 @@ export namespace Prisma {
|
|
25391
25439
|
root?: StringFilter<"Reward"> | string
|
25392
25440
|
recipient?: StringFilter<"Reward"> | string
|
25393
25441
|
rewardTokenId?: StringFilter<"Reward"> | string
|
25442
|
+
amount?: StringFilter<"Reward"> | string
|
25443
|
+
claimed?: StringFilter<"Reward"> | string
|
25444
|
+
pending?: StringFilter<"Reward"> | string
|
25394
25445
|
proofs?: StringNullableListFilter<"Reward">
|
25395
25446
|
MerklRoot?: XOR<MerklRootScalarRelationFilter, MerklRootWhereInput>
|
25396
25447
|
User?: XOR<UserScalarRelationFilter, UserWhereInput>
|
@@ -25403,6 +25454,9 @@ export namespace Prisma {
|
|
25403
25454
|
root?: SortOrder
|
25404
25455
|
recipient?: SortOrder
|
25405
25456
|
rewardTokenId?: SortOrder
|
25457
|
+
amount?: SortOrder
|
25458
|
+
claimed?: SortOrder
|
25459
|
+
pending?: SortOrder
|
25406
25460
|
proofs?: SortOrder
|
25407
25461
|
_count?: RewardCountOrderByAggregateInput
|
25408
25462
|
_max?: RewardMaxOrderByAggregateInput
|
@@ -25417,6 +25471,9 @@ export namespace Prisma {
|
|
25417
25471
|
root?: StringWithAggregatesFilter<"Reward"> | string
|
25418
25472
|
recipient?: StringWithAggregatesFilter<"Reward"> | string
|
25419
25473
|
rewardTokenId?: StringWithAggregatesFilter<"Reward"> | string
|
25474
|
+
amount?: StringWithAggregatesFilter<"Reward"> | string
|
25475
|
+
claimed?: StringWithAggregatesFilter<"Reward"> | string
|
25476
|
+
pending?: StringWithAggregatesFilter<"Reward"> | string
|
25420
25477
|
proofs?: StringNullableListFilter<"Reward">
|
25421
25478
|
}
|
25422
25479
|
|
@@ -26756,6 +26813,9 @@ export namespace Prisma {
|
|
26756
26813
|
|
26757
26814
|
export type RewardCreateInput = {
|
26758
26815
|
id: string
|
26816
|
+
amount?: string
|
26817
|
+
claimed?: string
|
26818
|
+
pending?: string
|
26759
26819
|
proofs?: RewardCreateproofsInput | string[]
|
26760
26820
|
MerklRoot: MerklRootCreateNestedOneWithoutRewardsInput
|
26761
26821
|
User: UserCreateNestedOneWithoutRewardsInput
|
@@ -26768,12 +26828,18 @@ export namespace Prisma {
|
|
26768
26828
|
root: string
|
26769
26829
|
recipient: string
|
26770
26830
|
rewardTokenId: string
|
26831
|
+
amount?: string
|
26832
|
+
claimed?: string
|
26833
|
+
pending?: string
|
26771
26834
|
proofs?: RewardCreateproofsInput | string[]
|
26772
26835
|
Breakdown?: RewardBreakdownUncheckedCreateNestedManyWithoutRewardInput
|
26773
26836
|
}
|
26774
26837
|
|
26775
26838
|
export type RewardUpdateInput = {
|
26776
26839
|
id?: StringFieldUpdateOperationsInput | string
|
26840
|
+
amount?: StringFieldUpdateOperationsInput | string
|
26841
|
+
claimed?: StringFieldUpdateOperationsInput | string
|
26842
|
+
pending?: StringFieldUpdateOperationsInput | string
|
26777
26843
|
proofs?: RewardUpdateproofsInput | string[]
|
26778
26844
|
MerklRoot?: MerklRootUpdateOneRequiredWithoutRewardsNestedInput
|
26779
26845
|
User?: UserUpdateOneRequiredWithoutRewardsNestedInput
|
@@ -26786,6 +26852,9 @@ export namespace Prisma {
|
|
26786
26852
|
root?: StringFieldUpdateOperationsInput | string
|
26787
26853
|
recipient?: StringFieldUpdateOperationsInput | string
|
26788
26854
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
26855
|
+
amount?: StringFieldUpdateOperationsInput | string
|
26856
|
+
claimed?: StringFieldUpdateOperationsInput | string
|
26857
|
+
pending?: StringFieldUpdateOperationsInput | string
|
26789
26858
|
proofs?: RewardUpdateproofsInput | string[]
|
26790
26859
|
Breakdown?: RewardBreakdownUncheckedUpdateManyWithoutRewardNestedInput
|
26791
26860
|
}
|
@@ -26795,11 +26864,17 @@ export namespace Prisma {
|
|
26795
26864
|
root: string
|
26796
26865
|
recipient: string
|
26797
26866
|
rewardTokenId: string
|
26867
|
+
amount?: string
|
26868
|
+
claimed?: string
|
26869
|
+
pending?: string
|
26798
26870
|
proofs?: RewardCreateproofsInput | string[]
|
26799
26871
|
}
|
26800
26872
|
|
26801
26873
|
export type RewardUpdateManyMutationInput = {
|
26802
26874
|
id?: StringFieldUpdateOperationsInput | string
|
26875
|
+
amount?: StringFieldUpdateOperationsInput | string
|
26876
|
+
claimed?: StringFieldUpdateOperationsInput | string
|
26877
|
+
pending?: StringFieldUpdateOperationsInput | string
|
26803
26878
|
proofs?: RewardUpdateproofsInput | string[]
|
26804
26879
|
}
|
26805
26880
|
|
@@ -26808,6 +26883,9 @@ export namespace Prisma {
|
|
26808
26883
|
root?: StringFieldUpdateOperationsInput | string
|
26809
26884
|
recipient?: StringFieldUpdateOperationsInput | string
|
26810
26885
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
26886
|
+
amount?: StringFieldUpdateOperationsInput | string
|
26887
|
+
claimed?: StringFieldUpdateOperationsInput | string
|
26888
|
+
pending?: StringFieldUpdateOperationsInput | string
|
26811
26889
|
proofs?: RewardUpdateproofsInput | string[]
|
26812
26890
|
}
|
26813
26891
|
|
@@ -28397,6 +28475,9 @@ export namespace Prisma {
|
|
28397
28475
|
root?: SortOrder
|
28398
28476
|
recipient?: SortOrder
|
28399
28477
|
rewardTokenId?: SortOrder
|
28478
|
+
amount?: SortOrder
|
28479
|
+
claimed?: SortOrder
|
28480
|
+
pending?: SortOrder
|
28400
28481
|
proofs?: SortOrder
|
28401
28482
|
}
|
28402
28483
|
|
@@ -28405,6 +28486,9 @@ export namespace Prisma {
|
|
28405
28486
|
root?: SortOrder
|
28406
28487
|
recipient?: SortOrder
|
28407
28488
|
rewardTokenId?: SortOrder
|
28489
|
+
amount?: SortOrder
|
28490
|
+
claimed?: SortOrder
|
28491
|
+
pending?: SortOrder
|
28408
28492
|
}
|
28409
28493
|
|
28410
28494
|
export type RewardMinOrderByAggregateInput = {
|
@@ -28412,6 +28496,9 @@ export namespace Prisma {
|
|
28412
28496
|
root?: SortOrder
|
28413
28497
|
recipient?: SortOrder
|
28414
28498
|
rewardTokenId?: SortOrder
|
28499
|
+
amount?: SortOrder
|
28500
|
+
claimed?: SortOrder
|
28501
|
+
pending?: SortOrder
|
28415
28502
|
}
|
28416
28503
|
|
28417
28504
|
export type RewardScalarRelationFilter = {
|
@@ -33016,6 +33103,9 @@ export namespace Prisma {
|
|
33016
33103
|
|
33017
33104
|
export type RewardCreateWithoutRewardTokenInput = {
|
33018
33105
|
id: string
|
33106
|
+
amount?: string
|
33107
|
+
claimed?: string
|
33108
|
+
pending?: string
|
33019
33109
|
proofs?: RewardCreateproofsInput | string[]
|
33020
33110
|
MerklRoot: MerklRootCreateNestedOneWithoutRewardsInput
|
33021
33111
|
User: UserCreateNestedOneWithoutRewardsInput
|
@@ -33026,6 +33116,9 @@ export namespace Prisma {
|
|
33026
33116
|
id: string
|
33027
33117
|
root: string
|
33028
33118
|
recipient: string
|
33119
|
+
amount?: string
|
33120
|
+
claimed?: string
|
33121
|
+
pending?: string
|
33029
33122
|
proofs?: RewardCreateproofsInput | string[]
|
33030
33123
|
Breakdown?: RewardBreakdownUncheckedCreateNestedManyWithoutRewardInput
|
33031
33124
|
}
|
@@ -33201,6 +33294,9 @@ export namespace Prisma {
|
|
33201
33294
|
root?: StringFilter<"Reward"> | string
|
33202
33295
|
recipient?: StringFilter<"Reward"> | string
|
33203
33296
|
rewardTokenId?: StringFilter<"Reward"> | string
|
33297
|
+
amount?: StringFilter<"Reward"> | string
|
33298
|
+
claimed?: StringFilter<"Reward"> | string
|
33299
|
+
pending?: StringFilter<"Reward"> | string
|
33204
33300
|
proofs?: StringNullableListFilter<"Reward">
|
33205
33301
|
}
|
33206
33302
|
|
@@ -33895,6 +33991,9 @@ export namespace Prisma {
|
|
33895
33991
|
|
33896
33992
|
export type RewardCreateWithoutUserInput = {
|
33897
33993
|
id: string
|
33994
|
+
amount?: string
|
33995
|
+
claimed?: string
|
33996
|
+
pending?: string
|
33898
33997
|
proofs?: RewardCreateproofsInput | string[]
|
33899
33998
|
MerklRoot: MerklRootCreateNestedOneWithoutRewardsInput
|
33900
33999
|
RewardToken: TokenCreateNestedOneWithoutRewardInput
|
@@ -33905,6 +34004,9 @@ export namespace Prisma {
|
|
33905
34004
|
id: string
|
33906
34005
|
root: string
|
33907
34006
|
rewardTokenId: string
|
34007
|
+
amount?: string
|
34008
|
+
claimed?: string
|
34009
|
+
pending?: string
|
33908
34010
|
proofs?: RewardCreateproofsInput | string[]
|
33909
34011
|
Breakdown?: RewardBreakdownUncheckedCreateNestedManyWithoutRewardInput
|
33910
34012
|
}
|
@@ -34293,6 +34395,9 @@ export namespace Prisma {
|
|
34293
34395
|
|
34294
34396
|
export type RewardCreateWithoutBreakdownInput = {
|
34295
34397
|
id: string
|
34398
|
+
amount?: string
|
34399
|
+
claimed?: string
|
34400
|
+
pending?: string
|
34296
34401
|
proofs?: RewardCreateproofsInput | string[]
|
34297
34402
|
MerklRoot: MerklRootCreateNestedOneWithoutRewardsInput
|
34298
34403
|
User: UserCreateNestedOneWithoutRewardsInput
|
@@ -34304,6 +34409,9 @@ export namespace Prisma {
|
|
34304
34409
|
root: string
|
34305
34410
|
recipient: string
|
34306
34411
|
rewardTokenId: string
|
34412
|
+
amount?: string
|
34413
|
+
claimed?: string
|
34414
|
+
pending?: string
|
34307
34415
|
proofs?: RewardCreateproofsInput | string[]
|
34308
34416
|
}
|
34309
34417
|
|
@@ -34399,6 +34507,9 @@ export namespace Prisma {
|
|
34399
34507
|
|
34400
34508
|
export type RewardUpdateWithoutBreakdownInput = {
|
34401
34509
|
id?: StringFieldUpdateOperationsInput | string
|
34510
|
+
amount?: StringFieldUpdateOperationsInput | string
|
34511
|
+
claimed?: StringFieldUpdateOperationsInput | string
|
34512
|
+
pending?: StringFieldUpdateOperationsInput | string
|
34402
34513
|
proofs?: RewardUpdateproofsInput | string[]
|
34403
34514
|
MerklRoot?: MerklRootUpdateOneRequiredWithoutRewardsNestedInput
|
34404
34515
|
User?: UserUpdateOneRequiredWithoutRewardsNestedInput
|
@@ -34410,6 +34521,9 @@ export namespace Prisma {
|
|
34410
34521
|
root?: StringFieldUpdateOperationsInput | string
|
34411
34522
|
recipient?: StringFieldUpdateOperationsInput | string
|
34412
34523
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
34524
|
+
amount?: StringFieldUpdateOperationsInput | string
|
34525
|
+
claimed?: StringFieldUpdateOperationsInput | string
|
34526
|
+
pending?: StringFieldUpdateOperationsInput | string
|
34413
34527
|
proofs?: RewardUpdateproofsInput | string[]
|
34414
34528
|
}
|
34415
34529
|
|
@@ -34493,6 +34607,9 @@ export namespace Prisma {
|
|
34493
34607
|
|
34494
34608
|
export type RewardCreateWithoutMerklRootInput = {
|
34495
34609
|
id: string
|
34610
|
+
amount?: string
|
34611
|
+
claimed?: string
|
34612
|
+
pending?: string
|
34496
34613
|
proofs?: RewardCreateproofsInput | string[]
|
34497
34614
|
User: UserCreateNestedOneWithoutRewardsInput
|
34498
34615
|
RewardToken: TokenCreateNestedOneWithoutRewardInput
|
@@ -34503,6 +34620,9 @@ export namespace Prisma {
|
|
34503
34620
|
id: string
|
34504
34621
|
recipient: string
|
34505
34622
|
rewardTokenId: string
|
34623
|
+
amount?: string
|
34624
|
+
claimed?: string
|
34625
|
+
pending?: string
|
34506
34626
|
proofs?: RewardCreateproofsInput | string[]
|
34507
34627
|
Breakdown?: RewardBreakdownUncheckedCreateNestedManyWithoutRewardInput
|
34508
34628
|
}
|
@@ -35933,6 +36053,9 @@ export namespace Prisma {
|
|
35933
36053
|
id: string
|
35934
36054
|
root: string
|
35935
36055
|
recipient: string
|
36056
|
+
amount?: string
|
36057
|
+
claimed?: string
|
36058
|
+
pending?: string
|
35936
36059
|
proofs?: RewardCreateproofsInput | string[]
|
35937
36060
|
}
|
35938
36061
|
|
@@ -36071,6 +36194,9 @@ export namespace Prisma {
|
|
36071
36194
|
|
36072
36195
|
export type RewardUpdateWithoutRewardTokenInput = {
|
36073
36196
|
id?: StringFieldUpdateOperationsInput | string
|
36197
|
+
amount?: StringFieldUpdateOperationsInput | string
|
36198
|
+
claimed?: StringFieldUpdateOperationsInput | string
|
36199
|
+
pending?: StringFieldUpdateOperationsInput | string
|
36074
36200
|
proofs?: RewardUpdateproofsInput | string[]
|
36075
36201
|
MerklRoot?: MerklRootUpdateOneRequiredWithoutRewardsNestedInput
|
36076
36202
|
User?: UserUpdateOneRequiredWithoutRewardsNestedInput
|
@@ -36081,6 +36207,9 @@ export namespace Prisma {
|
|
36081
36207
|
id?: StringFieldUpdateOperationsInput | string
|
36082
36208
|
root?: StringFieldUpdateOperationsInput | string
|
36083
36209
|
recipient?: StringFieldUpdateOperationsInput | string
|
36210
|
+
amount?: StringFieldUpdateOperationsInput | string
|
36211
|
+
claimed?: StringFieldUpdateOperationsInput | string
|
36212
|
+
pending?: StringFieldUpdateOperationsInput | string
|
36084
36213
|
proofs?: RewardUpdateproofsInput | string[]
|
36085
36214
|
Breakdown?: RewardBreakdownUncheckedUpdateManyWithoutRewardNestedInput
|
36086
36215
|
}
|
@@ -36089,6 +36218,9 @@ export namespace Prisma {
|
|
36089
36218
|
id?: StringFieldUpdateOperationsInput | string
|
36090
36219
|
root?: StringFieldUpdateOperationsInput | string
|
36091
36220
|
recipient?: StringFieldUpdateOperationsInput | string
|
36221
|
+
amount?: StringFieldUpdateOperationsInput | string
|
36222
|
+
claimed?: StringFieldUpdateOperationsInput | string
|
36223
|
+
pending?: StringFieldUpdateOperationsInput | string
|
36092
36224
|
proofs?: RewardUpdateproofsInput | string[]
|
36093
36225
|
}
|
36094
36226
|
|
@@ -36245,6 +36377,9 @@ export namespace Prisma {
|
|
36245
36377
|
id: string
|
36246
36378
|
root: string
|
36247
36379
|
rewardTokenId: string
|
36380
|
+
amount?: string
|
36381
|
+
claimed?: string
|
36382
|
+
pending?: string
|
36248
36383
|
proofs?: RewardCreateproofsInput | string[]
|
36249
36384
|
}
|
36250
36385
|
|
@@ -36273,6 +36408,9 @@ export namespace Prisma {
|
|
36273
36408
|
|
36274
36409
|
export type RewardUpdateWithoutUserInput = {
|
36275
36410
|
id?: StringFieldUpdateOperationsInput | string
|
36411
|
+
amount?: StringFieldUpdateOperationsInput | string
|
36412
|
+
claimed?: StringFieldUpdateOperationsInput | string
|
36413
|
+
pending?: StringFieldUpdateOperationsInput | string
|
36276
36414
|
proofs?: RewardUpdateproofsInput | string[]
|
36277
36415
|
MerklRoot?: MerklRootUpdateOneRequiredWithoutRewardsNestedInput
|
36278
36416
|
RewardToken?: TokenUpdateOneRequiredWithoutRewardNestedInput
|
@@ -36283,6 +36421,9 @@ export namespace Prisma {
|
|
36283
36421
|
id?: StringFieldUpdateOperationsInput | string
|
36284
36422
|
root?: StringFieldUpdateOperationsInput | string
|
36285
36423
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
36424
|
+
amount?: StringFieldUpdateOperationsInput | string
|
36425
|
+
claimed?: StringFieldUpdateOperationsInput | string
|
36426
|
+
pending?: StringFieldUpdateOperationsInput | string
|
36286
36427
|
proofs?: RewardUpdateproofsInput | string[]
|
36287
36428
|
Breakdown?: RewardBreakdownUncheckedUpdateManyWithoutRewardNestedInput
|
36288
36429
|
}
|
@@ -36291,6 +36432,9 @@ export namespace Prisma {
|
|
36291
36432
|
id?: StringFieldUpdateOperationsInput | string
|
36292
36433
|
root?: StringFieldUpdateOperationsInput | string
|
36293
36434
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
36435
|
+
amount?: StringFieldUpdateOperationsInput | string
|
36436
|
+
claimed?: StringFieldUpdateOperationsInput | string
|
36437
|
+
pending?: StringFieldUpdateOperationsInput | string
|
36294
36438
|
proofs?: RewardUpdateproofsInput | string[]
|
36295
36439
|
}
|
36296
36440
|
|
@@ -36420,11 +36564,17 @@ export namespace Prisma {
|
|
36420
36564
|
id: string
|
36421
36565
|
recipient: string
|
36422
36566
|
rewardTokenId: string
|
36567
|
+
amount?: string
|
36568
|
+
claimed?: string
|
36569
|
+
pending?: string
|
36423
36570
|
proofs?: RewardCreateproofsInput | string[]
|
36424
36571
|
}
|
36425
36572
|
|
36426
36573
|
export type RewardUpdateWithoutMerklRootInput = {
|
36427
36574
|
id?: StringFieldUpdateOperationsInput | string
|
36575
|
+
amount?: StringFieldUpdateOperationsInput | string
|
36576
|
+
claimed?: StringFieldUpdateOperationsInput | string
|
36577
|
+
pending?: StringFieldUpdateOperationsInput | string
|
36428
36578
|
proofs?: RewardUpdateproofsInput | string[]
|
36429
36579
|
User?: UserUpdateOneRequiredWithoutRewardsNestedInput
|
36430
36580
|
RewardToken?: TokenUpdateOneRequiredWithoutRewardNestedInput
|
@@ -36435,6 +36585,9 @@ export namespace Prisma {
|
|
36435
36585
|
id?: StringFieldUpdateOperationsInput | string
|
36436
36586
|
recipient?: StringFieldUpdateOperationsInput | string
|
36437
36587
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
36588
|
+
amount?: StringFieldUpdateOperationsInput | string
|
36589
|
+
claimed?: StringFieldUpdateOperationsInput | string
|
36590
|
+
pending?: StringFieldUpdateOperationsInput | string
|
36438
36591
|
proofs?: RewardUpdateproofsInput | string[]
|
36439
36592
|
Breakdown?: RewardBreakdownUncheckedUpdateManyWithoutRewardNestedInput
|
36440
36593
|
}
|
@@ -36443,6 +36596,9 @@ export namespace Prisma {
|
|
36443
36596
|
id?: StringFieldUpdateOperationsInput | string
|
36444
36597
|
recipient?: StringFieldUpdateOperationsInput | string
|
36445
36598
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
36599
|
+
amount?: StringFieldUpdateOperationsInput | string
|
36600
|
+
claimed?: StringFieldUpdateOperationsInput | string
|
36601
|
+
pending?: StringFieldUpdateOperationsInput | string
|
36446
36602
|
proofs?: RewardUpdateproofsInput | string[]
|
36447
36603
|
}
|
36448
36604
|
|