@merkl/api 0.19.41 → 0.19.43
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 +1 -1
- package/dist/database/api/.generated/drizzle/schema.js +1 -1
- package/dist/database/api/.generated/drizzle/schema.ts +1 -1
- package/dist/database/api/.generated/edge.js +3 -3
- package/dist/database/api/.generated/index.d.ts +89 -33
- package/dist/database/api/.generated/index.js +3 -3
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +1 -1
- package/dist/src/jobs/reward-breakdowns.d.ts +1 -1
- package/dist/src/jobs/reward-breakdowns.js +1 -3
- package/dist/src/modules/v4/reward/reward.repository.d.ts +2 -2
- package/dist/src/modules/v4/reward/reward.service.d.ts +2 -2
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -25062,7 +25062,7 @@ export namespace Prisma {
|
|
25062
25062
|
export type RewardBreakdownGroupByOutputType = {
|
25063
25063
|
id: number
|
25064
25064
|
stringId: string
|
25065
|
-
uuid: string
|
25065
|
+
uuid: string | null
|
25066
25066
|
protocolId: string | null
|
25067
25067
|
reason: string
|
25068
25068
|
amount: string
|
@@ -25179,7 +25179,7 @@ export namespace Prisma {
|
|
25179
25179
|
scalars: $Extensions.GetPayloadResult<{
|
25180
25180
|
id: number
|
25181
25181
|
stringId: string
|
25182
|
-
uuid: string
|
25182
|
+
uuid: string | null
|
25183
25183
|
protocolId: string | null
|
25184
25184
|
reason: string
|
25185
25185
|
amount: string
|
@@ -33703,7 +33703,7 @@ export namespace Prisma {
|
|
33703
33703
|
NOT?: RewardBreakdownWhereInput | RewardBreakdownWhereInput[]
|
33704
33704
|
id?: IntFilter<"RewardBreakdown"> | number
|
33705
33705
|
stringId?: StringFilter<"RewardBreakdown"> | string
|
33706
|
-
uuid?:
|
33706
|
+
uuid?: UuidNullableFilter<"RewardBreakdown"> | string | null
|
33707
33707
|
protocolId?: StringNullableFilter<"RewardBreakdown"> | string | null
|
33708
33708
|
reason?: StringFilter<"RewardBreakdown"> | string
|
33709
33709
|
amount?: StringFilter<"RewardBreakdown"> | string
|
@@ -33719,7 +33719,7 @@ export namespace Prisma {
|
|
33719
33719
|
export type RewardBreakdownOrderByWithRelationInput = {
|
33720
33720
|
id?: SortOrder
|
33721
33721
|
stringId?: SortOrder
|
33722
|
-
uuid?: SortOrder
|
33722
|
+
uuid?: SortOrderInput | SortOrder
|
33723
33723
|
protocolId?: SortOrderInput | SortOrder
|
33724
33724
|
reason?: SortOrder
|
33725
33725
|
amount?: SortOrder
|
@@ -33740,7 +33740,7 @@ export namespace Prisma {
|
|
33740
33740
|
OR?: RewardBreakdownWhereInput[]
|
33741
33741
|
NOT?: RewardBreakdownWhereInput | RewardBreakdownWhereInput[]
|
33742
33742
|
stringId?: StringFilter<"RewardBreakdown"> | string
|
33743
|
-
uuid?:
|
33743
|
+
uuid?: UuidNullableFilter<"RewardBreakdown"> | string | null
|
33744
33744
|
protocolId?: StringNullableFilter<"RewardBreakdown"> | string | null
|
33745
33745
|
reason?: StringFilter<"RewardBreakdown"> | string
|
33746
33746
|
amount?: StringFilter<"RewardBreakdown"> | string
|
@@ -33756,7 +33756,7 @@ export namespace Prisma {
|
|
33756
33756
|
export type RewardBreakdownOrderByWithAggregationInput = {
|
33757
33757
|
id?: SortOrder
|
33758
33758
|
stringId?: SortOrder
|
33759
|
-
uuid?: SortOrder
|
33759
|
+
uuid?: SortOrderInput | SortOrder
|
33760
33760
|
protocolId?: SortOrderInput | SortOrder
|
33761
33761
|
reason?: SortOrder
|
33762
33762
|
amount?: SortOrder
|
@@ -33777,7 +33777,7 @@ export namespace Prisma {
|
|
33777
33777
|
NOT?: RewardBreakdownScalarWhereWithAggregatesInput | RewardBreakdownScalarWhereWithAggregatesInput[]
|
33778
33778
|
id?: IntWithAggregatesFilter<"RewardBreakdown"> | number
|
33779
33779
|
stringId?: StringWithAggregatesFilter<"RewardBreakdown"> | string
|
33780
|
-
uuid?:
|
33780
|
+
uuid?: UuidNullableWithAggregatesFilter<"RewardBreakdown"> | string | null
|
33781
33781
|
protocolId?: StringNullableWithAggregatesFilter<"RewardBreakdown"> | string | null
|
33782
33782
|
reason?: StringWithAggregatesFilter<"RewardBreakdown"> | string
|
33783
33783
|
amount?: StringWithAggregatesFilter<"RewardBreakdown"> | string
|
@@ -35402,7 +35402,7 @@ export namespace Prisma {
|
|
35402
35402
|
|
35403
35403
|
export type RewardBreakdownCreateInput = {
|
35404
35404
|
stringId?: string
|
35405
|
-
uuid?: string
|
35405
|
+
uuid?: string | null
|
35406
35406
|
reason: string
|
35407
35407
|
amount: string
|
35408
35408
|
claimed: string
|
@@ -35415,7 +35415,7 @@ export namespace Prisma {
|
|
35415
35415
|
export type RewardBreakdownUncheckedCreateInput = {
|
35416
35416
|
id?: number
|
35417
35417
|
stringId?: string
|
35418
|
-
uuid?: string
|
35418
|
+
uuid?: string | null
|
35419
35419
|
protocolId?: string | null
|
35420
35420
|
reason: string
|
35421
35421
|
amount: string
|
@@ -35427,7 +35427,7 @@ export namespace Prisma {
|
|
35427
35427
|
|
35428
35428
|
export type RewardBreakdownUpdateInput = {
|
35429
35429
|
stringId?: StringFieldUpdateOperationsInput | string
|
35430
|
-
uuid?:
|
35430
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
35431
35431
|
reason?: StringFieldUpdateOperationsInput | string
|
35432
35432
|
amount?: StringFieldUpdateOperationsInput | string
|
35433
35433
|
claimed?: StringFieldUpdateOperationsInput | string
|
@@ -35440,7 +35440,7 @@ export namespace Prisma {
|
|
35440
35440
|
export type RewardBreakdownUncheckedUpdateInput = {
|
35441
35441
|
id?: IntFieldUpdateOperationsInput | number
|
35442
35442
|
stringId?: StringFieldUpdateOperationsInput | string
|
35443
|
-
uuid?:
|
35443
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
35444
35444
|
protocolId?: NullableStringFieldUpdateOperationsInput | string | null
|
35445
35445
|
reason?: StringFieldUpdateOperationsInput | string
|
35446
35446
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -35453,7 +35453,7 @@ export namespace Prisma {
|
|
35453
35453
|
export type RewardBreakdownCreateManyInput = {
|
35454
35454
|
id?: number
|
35455
35455
|
stringId?: string
|
35456
|
-
uuid?: string
|
35456
|
+
uuid?: string | null
|
35457
35457
|
protocolId?: string | null
|
35458
35458
|
reason: string
|
35459
35459
|
amount: string
|
@@ -35465,7 +35465,7 @@ export namespace Prisma {
|
|
35465
35465
|
|
35466
35466
|
export type RewardBreakdownUpdateManyMutationInput = {
|
35467
35467
|
stringId?: StringFieldUpdateOperationsInput | string
|
35468
|
-
uuid?:
|
35468
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
35469
35469
|
reason?: StringFieldUpdateOperationsInput | string
|
35470
35470
|
amount?: StringFieldUpdateOperationsInput | string
|
35471
35471
|
claimed?: StringFieldUpdateOperationsInput | string
|
@@ -35475,7 +35475,7 @@ export namespace Prisma {
|
|
35475
35475
|
export type RewardBreakdownUncheckedUpdateManyInput = {
|
35476
35476
|
id?: IntFieldUpdateOperationsInput | number
|
35477
35477
|
stringId?: StringFieldUpdateOperationsInput | string
|
35478
|
-
uuid?:
|
35478
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
35479
35479
|
protocolId?: NullableStringFieldUpdateOperationsInput | string | null
|
35480
35480
|
reason?: StringFieldUpdateOperationsInput | string
|
35481
35481
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -37300,6 +37300,19 @@ export namespace Prisma {
|
|
37300
37300
|
pending?: SortOrder
|
37301
37301
|
}
|
37302
37302
|
|
37303
|
+
export type UuidNullableFilter<$PrismaModel = never> = {
|
37304
|
+
equals?: string | StringFieldRefInput<$PrismaModel> | null
|
37305
|
+
in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
37306
|
+
notIn?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
37307
|
+
lt?: string | StringFieldRefInput<$PrismaModel>
|
37308
|
+
lte?: string | StringFieldRefInput<$PrismaModel>
|
37309
|
+
gt?: string | StringFieldRefInput<$PrismaModel>
|
37310
|
+
gte?: string | StringFieldRefInput<$PrismaModel>
|
37311
|
+
search?: string
|
37312
|
+
mode?: QueryMode
|
37313
|
+
not?: NestedUuidNullableFilter<$PrismaModel> | string | null
|
37314
|
+
}
|
37315
|
+
|
37303
37316
|
export type RewardScalarRelationFilter = {
|
37304
37317
|
is?: RewardWhereInput
|
37305
37318
|
isNot?: RewardWhereInput
|
@@ -37364,6 +37377,22 @@ export namespace Prisma {
|
|
37364
37377
|
id?: SortOrder
|
37365
37378
|
}
|
37366
37379
|
|
37380
|
+
export type UuidNullableWithAggregatesFilter<$PrismaModel = never> = {
|
37381
|
+
equals?: string | StringFieldRefInput<$PrismaModel> | null
|
37382
|
+
in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
37383
|
+
notIn?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
37384
|
+
lt?: string | StringFieldRefInput<$PrismaModel>
|
37385
|
+
lte?: string | StringFieldRefInput<$PrismaModel>
|
37386
|
+
gt?: string | StringFieldRefInput<$PrismaModel>
|
37387
|
+
gte?: string | StringFieldRefInput<$PrismaModel>
|
37388
|
+
search?: string
|
37389
|
+
mode?: QueryMode
|
37390
|
+
not?: NestedUuidNullableWithAggregatesFilter<$PrismaModel> | string | null
|
37391
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
37392
|
+
_min?: NestedStringNullableFilter<$PrismaModel>
|
37393
|
+
_max?: NestedStringNullableFilter<$PrismaModel>
|
37394
|
+
}
|
37395
|
+
|
37367
37396
|
export type MerklRootOrderByRelevanceInput = {
|
37368
37397
|
fields: MerklRootOrderByRelevanceFieldEnum | MerklRootOrderByRelevanceFieldEnum[]
|
37369
37398
|
sort: SortOrder
|
@@ -40206,6 +40235,33 @@ export namespace Prisma {
|
|
40206
40235
|
_max?: NestedEnumTvlTypeFilter<$PrismaModel>
|
40207
40236
|
}
|
40208
40237
|
|
40238
|
+
export type NestedUuidNullableFilter<$PrismaModel = never> = {
|
40239
|
+
equals?: string | StringFieldRefInput<$PrismaModel> | null
|
40240
|
+
in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
40241
|
+
notIn?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
40242
|
+
lt?: string | StringFieldRefInput<$PrismaModel>
|
40243
|
+
lte?: string | StringFieldRefInput<$PrismaModel>
|
40244
|
+
gt?: string | StringFieldRefInput<$PrismaModel>
|
40245
|
+
gte?: string | StringFieldRefInput<$PrismaModel>
|
40246
|
+
search?: string
|
40247
|
+
not?: NestedUuidNullableFilter<$PrismaModel> | string | null
|
40248
|
+
}
|
40249
|
+
|
40250
|
+
export type NestedUuidNullableWithAggregatesFilter<$PrismaModel = never> = {
|
40251
|
+
equals?: string | StringFieldRefInput<$PrismaModel> | null
|
40252
|
+
in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
40253
|
+
notIn?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
40254
|
+
lt?: string | StringFieldRefInput<$PrismaModel>
|
40255
|
+
lte?: string | StringFieldRefInput<$PrismaModel>
|
40256
|
+
gt?: string | StringFieldRefInput<$PrismaModel>
|
40257
|
+
gte?: string | StringFieldRefInput<$PrismaModel>
|
40258
|
+
search?: string
|
40259
|
+
not?: NestedUuidNullableWithAggregatesFilter<$PrismaModel> | string | null
|
40260
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
40261
|
+
_min?: NestedStringNullableFilter<$PrismaModel>
|
40262
|
+
_max?: NestedStringNullableFilter<$PrismaModel>
|
40263
|
+
}
|
40264
|
+
|
40209
40265
|
export type NestedEnumPriceSourceMethodFilter<$PrismaModel = never> = {
|
40210
40266
|
equals?: $Enums.PriceSourceMethod | EnumPriceSourceMethodFieldRefInput<$PrismaModel>
|
40211
40267
|
in?: $Enums.PriceSourceMethod[] | ListEnumPriceSourceMethodFieldRefInput<$PrismaModel>
|
@@ -40418,7 +40474,7 @@ export namespace Prisma {
|
|
40418
40474
|
|
40419
40475
|
export type RewardBreakdownCreateWithoutCampaignInput = {
|
40420
40476
|
stringId?: string
|
40421
|
-
uuid?: string
|
40477
|
+
uuid?: string | null
|
40422
40478
|
reason: string
|
40423
40479
|
amount: string
|
40424
40480
|
claimed: string
|
@@ -40430,7 +40486,7 @@ export namespace Prisma {
|
|
40430
40486
|
export type RewardBreakdownUncheckedCreateWithoutCampaignInput = {
|
40431
40487
|
id?: number
|
40432
40488
|
stringId?: string
|
40433
|
-
uuid?: string
|
40489
|
+
uuid?: string | null
|
40434
40490
|
protocolId?: string | null
|
40435
40491
|
reason: string
|
40436
40492
|
amount: string
|
@@ -40770,7 +40826,7 @@ export namespace Prisma {
|
|
40770
40826
|
NOT?: RewardBreakdownScalarWhereInput | RewardBreakdownScalarWhereInput[]
|
40771
40827
|
id?: IntFilter<"RewardBreakdown"> | number
|
40772
40828
|
stringId?: StringFilter<"RewardBreakdown"> | string
|
40773
|
-
uuid?:
|
40829
|
+
uuid?: UuidNullableFilter<"RewardBreakdown"> | string | null
|
40774
40830
|
protocolId?: StringNullableFilter<"RewardBreakdown"> | string | null
|
40775
40831
|
reason?: StringFilter<"RewardBreakdown"> | string
|
40776
40832
|
amount?: StringFilter<"RewardBreakdown"> | string
|
@@ -42467,7 +42523,7 @@ export namespace Prisma {
|
|
42467
42523
|
|
42468
42524
|
export type RewardBreakdownCreateWithoutProtocolInput = {
|
42469
42525
|
stringId?: string
|
42470
|
-
uuid?: string
|
42526
|
+
uuid?: string | null
|
42471
42527
|
reason: string
|
42472
42528
|
amount: string
|
42473
42529
|
claimed: string
|
@@ -42479,7 +42535,7 @@ export namespace Prisma {
|
|
42479
42535
|
export type RewardBreakdownUncheckedCreateWithoutProtocolInput = {
|
42480
42536
|
id?: number
|
42481
42537
|
stringId?: string
|
42482
|
-
uuid?: string
|
42538
|
+
uuid?: string | null
|
42483
42539
|
reason: string
|
42484
42540
|
amount: string
|
42485
42541
|
claimed: string
|
@@ -43975,7 +44031,7 @@ export namespace Prisma {
|
|
43975
44031
|
|
43976
44032
|
export type RewardBreakdownCreateWithoutRewardInput = {
|
43977
44033
|
stringId?: string
|
43978
|
-
uuid?: string
|
44034
|
+
uuid?: string | null
|
43979
44035
|
reason: string
|
43980
44036
|
amount: string
|
43981
44037
|
claimed: string
|
@@ -43987,7 +44043,7 @@ export namespace Prisma {
|
|
43987
44043
|
export type RewardBreakdownUncheckedCreateWithoutRewardInput = {
|
43988
44044
|
id?: number
|
43989
44045
|
stringId?: string
|
43990
|
-
uuid?: string
|
44046
|
+
uuid?: string | null
|
43991
44047
|
protocolId?: string | null
|
43992
44048
|
reason: string
|
43993
44049
|
amount: string
|
@@ -44850,7 +44906,7 @@ export namespace Prisma {
|
|
44850
44906
|
export type RewardBreakdownCreateManyCampaignInput = {
|
44851
44907
|
id?: number
|
44852
44908
|
stringId?: string
|
44853
|
-
uuid?: string
|
44909
|
+
uuid?: string | null
|
44854
44910
|
protocolId?: string | null
|
44855
44911
|
reason: string
|
44856
44912
|
amount: string
|
@@ -44891,7 +44947,7 @@ export namespace Prisma {
|
|
44891
44947
|
|
44892
44948
|
export type RewardBreakdownUpdateWithoutCampaignInput = {
|
44893
44949
|
stringId?: StringFieldUpdateOperationsInput | string
|
44894
|
-
uuid?:
|
44950
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
44895
44951
|
reason?: StringFieldUpdateOperationsInput | string
|
44896
44952
|
amount?: StringFieldUpdateOperationsInput | string
|
44897
44953
|
claimed?: StringFieldUpdateOperationsInput | string
|
@@ -44903,7 +44959,7 @@ export namespace Prisma {
|
|
44903
44959
|
export type RewardBreakdownUncheckedUpdateWithoutCampaignInput = {
|
44904
44960
|
id?: IntFieldUpdateOperationsInput | number
|
44905
44961
|
stringId?: StringFieldUpdateOperationsInput | string
|
44906
|
-
uuid?:
|
44962
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
44907
44963
|
protocolId?: NullableStringFieldUpdateOperationsInput | string | null
|
44908
44964
|
reason?: StringFieldUpdateOperationsInput | string
|
44909
44965
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -44915,7 +44971,7 @@ export namespace Prisma {
|
|
44915
44971
|
export type RewardBreakdownUncheckedUpdateManyWithoutCampaignInput = {
|
44916
44972
|
id?: IntFieldUpdateOperationsInput | number
|
44917
44973
|
stringId?: StringFieldUpdateOperationsInput | string
|
44918
|
-
uuid?:
|
44974
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
44919
44975
|
protocolId?: NullableStringFieldUpdateOperationsInput | string | null
|
44920
44976
|
reason?: StringFieldUpdateOperationsInput | string
|
44921
44977
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -45701,7 +45757,7 @@ export namespace Prisma {
|
|
45701
45757
|
export type RewardBreakdownCreateManyProtocolInput = {
|
45702
45758
|
id?: number
|
45703
45759
|
stringId?: string
|
45704
|
-
uuid?: string
|
45760
|
+
uuid?: string | null
|
45705
45761
|
reason: string
|
45706
45762
|
amount: string
|
45707
45763
|
claimed: string
|
@@ -45827,7 +45883,7 @@ export namespace Prisma {
|
|
45827
45883
|
|
45828
45884
|
export type RewardBreakdownUpdateWithoutProtocolInput = {
|
45829
45885
|
stringId?: StringFieldUpdateOperationsInput | string
|
45830
|
-
uuid?:
|
45886
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
45831
45887
|
reason?: StringFieldUpdateOperationsInput | string
|
45832
45888
|
amount?: StringFieldUpdateOperationsInput | string
|
45833
45889
|
claimed?: StringFieldUpdateOperationsInput | string
|
@@ -45839,7 +45895,7 @@ export namespace Prisma {
|
|
45839
45895
|
export type RewardBreakdownUncheckedUpdateWithoutProtocolInput = {
|
45840
45896
|
id?: IntFieldUpdateOperationsInput | number
|
45841
45897
|
stringId?: StringFieldUpdateOperationsInput | string
|
45842
|
-
uuid?:
|
45898
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
45843
45899
|
reason?: StringFieldUpdateOperationsInput | string
|
45844
45900
|
amount?: StringFieldUpdateOperationsInput | string
|
45845
45901
|
claimed?: StringFieldUpdateOperationsInput | string
|
@@ -45851,7 +45907,7 @@ export namespace Prisma {
|
|
45851
45907
|
export type RewardBreakdownUncheckedUpdateManyWithoutProtocolInput = {
|
45852
45908
|
id?: IntFieldUpdateOperationsInput | number
|
45853
45909
|
stringId?: StringFieldUpdateOperationsInput | string
|
45854
|
-
uuid?:
|
45910
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
45855
45911
|
reason?: StringFieldUpdateOperationsInput | string
|
45856
45912
|
amount?: StringFieldUpdateOperationsInput | string
|
45857
45913
|
claimed?: StringFieldUpdateOperationsInput | string
|
@@ -46441,7 +46497,7 @@ export namespace Prisma {
|
|
46441
46497
|
export type RewardBreakdownCreateManyRewardInput = {
|
46442
46498
|
id?: number
|
46443
46499
|
stringId?: string
|
46444
|
-
uuid?: string
|
46500
|
+
uuid?: string | null
|
46445
46501
|
protocolId?: string | null
|
46446
46502
|
reason: string
|
46447
46503
|
amount: string
|
@@ -46452,7 +46508,7 @@ export namespace Prisma {
|
|
46452
46508
|
|
46453
46509
|
export type RewardBreakdownUpdateWithoutRewardInput = {
|
46454
46510
|
stringId?: StringFieldUpdateOperationsInput | string
|
46455
|
-
uuid?:
|
46511
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
46456
46512
|
reason?: StringFieldUpdateOperationsInput | string
|
46457
46513
|
amount?: StringFieldUpdateOperationsInput | string
|
46458
46514
|
claimed?: StringFieldUpdateOperationsInput | string
|
@@ -46464,7 +46520,7 @@ export namespace Prisma {
|
|
46464
46520
|
export type RewardBreakdownUncheckedUpdateWithoutRewardInput = {
|
46465
46521
|
id?: IntFieldUpdateOperationsInput | number
|
46466
46522
|
stringId?: StringFieldUpdateOperationsInput | string
|
46467
|
-
uuid?:
|
46523
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
46468
46524
|
protocolId?: NullableStringFieldUpdateOperationsInput | string | null
|
46469
46525
|
reason?: StringFieldUpdateOperationsInput | string
|
46470
46526
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -46476,7 +46532,7 @@ export namespace Prisma {
|
|
46476
46532
|
export type RewardBreakdownUncheckedUpdateManyWithoutRewardInput = {
|
46477
46533
|
id?: IntFieldUpdateOperationsInput | number
|
46478
46534
|
stringId?: StringFieldUpdateOperationsInput | string
|
46479
|
-
uuid?:
|
46535
|
+
uuid?: NullableStringFieldUpdateOperationsInput | string | null
|
46480
46536
|
protocolId?: NullableStringFieldUpdateOperationsInput | string | null
|
46481
46537
|
reason?: StringFieldUpdateOperationsInput | string
|
46482
46538
|
amount?: StringFieldUpdateOperationsInput | string
|