@merkl/api 0.16.43 → 0.16.45
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 +18 -0
- package/dist/database/api/.generated/drizzle/schema.js +2 -0
- package/dist/database/api/.generated/drizzle/schema.ts +3 -0
- package/dist/database/api/.generated/edge.js +12 -3
- package/dist/database/api/.generated/index-browser.js +9 -0
- package/dist/database/api/.generated/index.d.ts +148 -1
- package/dist/database/api/.generated/index.js +12 -3
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +9 -0
- package/dist/database/api/.generated/wasm.js +9 -0
- package/dist/src/eden/index.d.ts +6293 -9158
- package/dist/src/index.d.ts +56 -629
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +4 -0
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +8 -0
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +8 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +52 -629
- package/dist/src/modules/v4/opportunity/opportunity.controller.js +1 -10
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +5 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +349 -74
- package/dist/src/modules/v4/opportunity/opportunity.service.js +18 -18
- package/dist/src/modules/v4/protocol/protocol.repository.d.ts +1 -0
- package/dist/src/modules/v4/router.d.ts +56 -629
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -219,6 +219,17 @@ export const PriceSourceMethod: {
|
|
219
219
|
|
220
220
|
export type PriceSourceMethod = (typeof PriceSourceMethod)[keyof typeof PriceSourceMethod]
|
221
221
|
|
222
|
+
|
223
|
+
export const DistributionType: {
|
224
|
+
DUTCH_AUCTION: 'DUTCH_AUCTION',
|
225
|
+
FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE: 'FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE',
|
226
|
+
FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE: 'FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE',
|
227
|
+
FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT: 'FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT',
|
228
|
+
FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT: 'FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT'
|
229
|
+
};
|
230
|
+
|
231
|
+
export type DistributionType = (typeof DistributionType)[keyof typeof DistributionType]
|
232
|
+
|
222
233
|
}
|
223
234
|
|
224
235
|
export type LoggedEntityType = $Enums.LoggedEntityType
|
@@ -253,6 +264,10 @@ export type PriceSourceMethod = $Enums.PriceSourceMethod
|
|
253
264
|
|
254
265
|
export const PriceSourceMethod: typeof $Enums.PriceSourceMethod
|
255
266
|
|
267
|
+
export type DistributionType = $Enums.DistributionType
|
268
|
+
|
269
|
+
export const DistributionType: typeof $Enums.DistributionType
|
270
|
+
|
256
271
|
/**
|
257
272
|
* ## Prisma Client ʲˢ
|
258
273
|
*
|
@@ -3708,6 +3723,7 @@ export namespace Prisma {
|
|
3708
3723
|
distributionChainId: number | null
|
3709
3724
|
campaignId: string | null
|
3710
3725
|
type: string | null
|
3726
|
+
distributionType: $Enums.DistributionType | null
|
3711
3727
|
subType: number | null
|
3712
3728
|
rewardTokenId: string | null
|
3713
3729
|
amount: string | null
|
@@ -3723,6 +3739,7 @@ export namespace Prisma {
|
|
3723
3739
|
distributionChainId: number | null
|
3724
3740
|
campaignId: string | null
|
3725
3741
|
type: string | null
|
3742
|
+
distributionType: $Enums.DistributionType | null
|
3726
3743
|
subType: number | null
|
3727
3744
|
rewardTokenId: string | null
|
3728
3745
|
amount: string | null
|
@@ -3738,6 +3755,7 @@ export namespace Prisma {
|
|
3738
3755
|
distributionChainId: number
|
3739
3756
|
campaignId: number
|
3740
3757
|
type: number
|
3758
|
+
distributionType: number
|
3741
3759
|
subType: number
|
3742
3760
|
rewardTokenId: number
|
3743
3761
|
amount: number
|
@@ -3772,6 +3790,7 @@ export namespace Prisma {
|
|
3772
3790
|
distributionChainId?: true
|
3773
3791
|
campaignId?: true
|
3774
3792
|
type?: true
|
3793
|
+
distributionType?: true
|
3775
3794
|
subType?: true
|
3776
3795
|
rewardTokenId?: true
|
3777
3796
|
amount?: true
|
@@ -3787,6 +3806,7 @@ export namespace Prisma {
|
|
3787
3806
|
distributionChainId?: true
|
3788
3807
|
campaignId?: true
|
3789
3808
|
type?: true
|
3809
|
+
distributionType?: true
|
3790
3810
|
subType?: true
|
3791
3811
|
rewardTokenId?: true
|
3792
3812
|
amount?: true
|
@@ -3802,6 +3822,7 @@ export namespace Prisma {
|
|
3802
3822
|
distributionChainId?: true
|
3803
3823
|
campaignId?: true
|
3804
3824
|
type?: true
|
3825
|
+
distributionType?: true
|
3805
3826
|
subType?: true
|
3806
3827
|
rewardTokenId?: true
|
3807
3828
|
amount?: true
|
@@ -3905,6 +3926,7 @@ export namespace Prisma {
|
|
3905
3926
|
distributionChainId: number
|
3906
3927
|
campaignId: string
|
3907
3928
|
type: string
|
3929
|
+
distributionType: $Enums.DistributionType
|
3908
3930
|
subType: number | null
|
3909
3931
|
rewardTokenId: string
|
3910
3932
|
amount: string
|
@@ -3940,6 +3962,7 @@ export namespace Prisma {
|
|
3940
3962
|
distributionChainId?: boolean
|
3941
3963
|
campaignId?: boolean
|
3942
3964
|
type?: boolean
|
3965
|
+
distributionType?: boolean
|
3943
3966
|
subType?: boolean
|
3944
3967
|
rewardTokenId?: boolean
|
3945
3968
|
amount?: boolean
|
@@ -3967,6 +3990,7 @@ export namespace Prisma {
|
|
3967
3990
|
distributionChainId?: boolean
|
3968
3991
|
campaignId?: boolean
|
3969
3992
|
type?: boolean
|
3993
|
+
distributionType?: boolean
|
3970
3994
|
subType?: boolean
|
3971
3995
|
rewardTokenId?: boolean
|
3972
3996
|
amount?: boolean
|
@@ -3988,6 +4012,7 @@ export namespace Prisma {
|
|
3988
4012
|
distributionChainId?: boolean
|
3989
4013
|
campaignId?: boolean
|
3990
4014
|
type?: boolean
|
4015
|
+
distributionType?: boolean
|
3991
4016
|
subType?: boolean
|
3992
4017
|
rewardTokenId?: boolean
|
3993
4018
|
amount?: boolean
|
@@ -4009,6 +4034,7 @@ export namespace Prisma {
|
|
4009
4034
|
distributionChainId?: boolean
|
4010
4035
|
campaignId?: boolean
|
4011
4036
|
type?: boolean
|
4037
|
+
distributionType?: boolean
|
4012
4038
|
subType?: boolean
|
4013
4039
|
rewardTokenId?: boolean
|
4014
4040
|
amount?: boolean
|
@@ -4019,7 +4045,7 @@ export namespace Prisma {
|
|
4019
4045
|
creatorAddress?: boolean
|
4020
4046
|
}
|
4021
4047
|
|
4022
|
-
export type CampaignOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "computeChainId" | "distributionChainId" | "campaignId" | "type" | "subType" | "rewardTokenId" | "amount" | "opportunityId" | "startTimestamp" | "endTimestamp" | "params" | "creatorAddress", ExtArgs["result"]["campaign"]>
|
4048
|
+
export type CampaignOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "computeChainId" | "distributionChainId" | "campaignId" | "type" | "distributionType" | "subType" | "rewardTokenId" | "amount" | "opportunityId" | "startTimestamp" | "endTimestamp" | "params" | "creatorAddress", ExtArgs["result"]["campaign"]>
|
4023
4049
|
export type CampaignInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
4024
4050
|
ComputeChain?: boolean | ChainDefaultArgs<ExtArgs>
|
4025
4051
|
DistributionChain?: boolean | ChainDefaultArgs<ExtArgs>
|
@@ -4068,6 +4094,7 @@ export namespace Prisma {
|
|
4068
4094
|
distributionChainId: number
|
4069
4095
|
campaignId: string
|
4070
4096
|
type: string
|
4097
|
+
distributionType: $Enums.DistributionType
|
4071
4098
|
subType: number | null
|
4072
4099
|
rewardTokenId: string
|
4073
4100
|
amount: string
|
@@ -4514,6 +4541,7 @@ export namespace Prisma {
|
|
4514
4541
|
readonly distributionChainId: FieldRef<"Campaign", 'Int'>
|
4515
4542
|
readonly campaignId: FieldRef<"Campaign", 'String'>
|
4516
4543
|
readonly type: FieldRef<"Campaign", 'String'>
|
4544
|
+
readonly distributionType: FieldRef<"Campaign", 'DistributionType'>
|
4517
4545
|
readonly subType: FieldRef<"Campaign", 'Int'>
|
4518
4546
|
readonly rewardTokenId: FieldRef<"Campaign", 'String'>
|
4519
4547
|
readonly amount: FieldRef<"Campaign", 'String'>
|
@@ -31422,6 +31450,7 @@ export namespace Prisma {
|
|
31422
31450
|
distributionChainId: 'distributionChainId',
|
31423
31451
|
campaignId: 'campaignId',
|
31424
31452
|
type: 'type',
|
31453
|
+
distributionType: 'distributionType',
|
31425
31454
|
subType: 'subType',
|
31426
31455
|
rewardTokenId: 'rewardTokenId',
|
31427
31456
|
amount: 'amount',
|
@@ -32021,6 +32050,20 @@ export namespace Prisma {
|
|
32021
32050
|
|
32022
32051
|
|
32023
32052
|
|
32053
|
+
/**
|
32054
|
+
* Reference to a field of type 'DistributionType'
|
32055
|
+
*/
|
32056
|
+
export type EnumDistributionTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DistributionType'>
|
32057
|
+
|
32058
|
+
|
32059
|
+
|
32060
|
+
/**
|
32061
|
+
* Reference to a field of type 'DistributionType[]'
|
32062
|
+
*/
|
32063
|
+
export type ListEnumDistributionTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DistributionType[]'>
|
32064
|
+
|
32065
|
+
|
32066
|
+
|
32024
32067
|
/**
|
32025
32068
|
* Reference to a field of type 'BigInt'
|
32026
32069
|
*/
|
@@ -32201,6 +32244,7 @@ export namespace Prisma {
|
|
32201
32244
|
distributionChainId?: IntFilter<"Campaign"> | number
|
32202
32245
|
campaignId?: StringFilter<"Campaign"> | string
|
32203
32246
|
type?: StringFilter<"Campaign"> | string
|
32247
|
+
distributionType?: EnumDistributionTypeFilter<"Campaign"> | $Enums.DistributionType
|
32204
32248
|
subType?: IntNullableFilter<"Campaign"> | number | null
|
32205
32249
|
rewardTokenId?: StringFilter<"Campaign"> | string
|
32206
32250
|
amount?: StringFilter<"Campaign"> | string
|
@@ -32227,6 +32271,7 @@ export namespace Prisma {
|
|
32227
32271
|
distributionChainId?: SortOrder
|
32228
32272
|
campaignId?: SortOrder
|
32229
32273
|
type?: SortOrder
|
32274
|
+
distributionType?: SortOrder
|
32230
32275
|
subType?: SortOrderInput | SortOrder
|
32231
32276
|
rewardTokenId?: SortOrder
|
32232
32277
|
amount?: SortOrder
|
@@ -32258,6 +32303,7 @@ export namespace Prisma {
|
|
32258
32303
|
distributionChainId?: IntFilter<"Campaign"> | number
|
32259
32304
|
campaignId?: StringFilter<"Campaign"> | string
|
32260
32305
|
type?: StringFilter<"Campaign"> | string
|
32306
|
+
distributionType?: EnumDistributionTypeFilter<"Campaign"> | $Enums.DistributionType
|
32261
32307
|
subType?: IntNullableFilter<"Campaign"> | number | null
|
32262
32308
|
rewardTokenId?: StringFilter<"Campaign"> | string
|
32263
32309
|
amount?: StringFilter<"Campaign"> | string
|
@@ -32284,6 +32330,7 @@ export namespace Prisma {
|
|
32284
32330
|
distributionChainId?: SortOrder
|
32285
32331
|
campaignId?: SortOrder
|
32286
32332
|
type?: SortOrder
|
32333
|
+
distributionType?: SortOrder
|
32287
32334
|
subType?: SortOrderInput | SortOrder
|
32288
32335
|
rewardTokenId?: SortOrder
|
32289
32336
|
amount?: SortOrder
|
@@ -32308,6 +32355,7 @@ export namespace Prisma {
|
|
32308
32355
|
distributionChainId?: IntWithAggregatesFilter<"Campaign"> | number
|
32309
32356
|
campaignId?: StringWithAggregatesFilter<"Campaign"> | string
|
32310
32357
|
type?: StringWithAggregatesFilter<"Campaign"> | string
|
32358
|
+
distributionType?: EnumDistributionTypeWithAggregatesFilter<"Campaign"> | $Enums.DistributionType
|
32311
32359
|
subType?: IntNullableWithAggregatesFilter<"Campaign"> | number | null
|
32312
32360
|
rewardTokenId?: StringWithAggregatesFilter<"Campaign"> | string
|
32313
32361
|
amount?: StringWithAggregatesFilter<"Campaign"> | string
|
@@ -33851,6 +33899,7 @@ export namespace Prisma {
|
|
33851
33899
|
id: string
|
33852
33900
|
campaignId: string
|
33853
33901
|
type: string
|
33902
|
+
distributionType: $Enums.DistributionType
|
33854
33903
|
subType?: number | null
|
33855
33904
|
amount: string
|
33856
33905
|
startTimestamp: bigint | number
|
@@ -33874,6 +33923,7 @@ export namespace Prisma {
|
|
33874
33923
|
distributionChainId: number
|
33875
33924
|
campaignId: string
|
33876
33925
|
type: string
|
33926
|
+
distributionType: $Enums.DistributionType
|
33877
33927
|
subType?: number | null
|
33878
33928
|
rewardTokenId: string
|
33879
33929
|
amount: string
|
@@ -33893,6 +33943,7 @@ export namespace Prisma {
|
|
33893
33943
|
id?: StringFieldUpdateOperationsInput | string
|
33894
33944
|
campaignId?: StringFieldUpdateOperationsInput | string
|
33895
33945
|
type?: StringFieldUpdateOperationsInput | string
|
33946
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
33896
33947
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
33897
33948
|
amount?: StringFieldUpdateOperationsInput | string
|
33898
33949
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -33916,6 +33967,7 @@ export namespace Prisma {
|
|
33916
33967
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
33917
33968
|
campaignId?: StringFieldUpdateOperationsInput | string
|
33918
33969
|
type?: StringFieldUpdateOperationsInput | string
|
33970
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
33919
33971
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
33920
33972
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
33921
33973
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -33937,6 +33989,7 @@ export namespace Prisma {
|
|
33937
33989
|
distributionChainId: number
|
33938
33990
|
campaignId: string
|
33939
33991
|
type: string
|
33992
|
+
distributionType: $Enums.DistributionType
|
33940
33993
|
subType?: number | null
|
33941
33994
|
rewardTokenId: string
|
33942
33995
|
amount: string
|
@@ -33951,6 +34004,7 @@ export namespace Prisma {
|
|
33951
34004
|
id?: StringFieldUpdateOperationsInput | string
|
33952
34005
|
campaignId?: StringFieldUpdateOperationsInput | string
|
33953
34006
|
type?: StringFieldUpdateOperationsInput | string
|
34007
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
33954
34008
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
33955
34009
|
amount?: StringFieldUpdateOperationsInput | string
|
33956
34010
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -33964,6 +34018,7 @@ export namespace Prisma {
|
|
33964
34018
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
33965
34019
|
campaignId?: StringFieldUpdateOperationsInput | string
|
33966
34020
|
type?: StringFieldUpdateOperationsInput | string
|
34021
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
33967
34022
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
33968
34023
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
33969
34024
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -35483,6 +35538,13 @@ export namespace Prisma {
|
|
35483
35538
|
not?: NestedIntFilter<$PrismaModel> | number
|
35484
35539
|
}
|
35485
35540
|
|
35541
|
+
export type EnumDistributionTypeFilter<$PrismaModel = never> = {
|
35542
|
+
equals?: $Enums.DistributionType | EnumDistributionTypeFieldRefInput<$PrismaModel>
|
35543
|
+
in?: $Enums.DistributionType[] | ListEnumDistributionTypeFieldRefInput<$PrismaModel>
|
35544
|
+
notIn?: $Enums.DistributionType[] | ListEnumDistributionTypeFieldRefInput<$PrismaModel>
|
35545
|
+
not?: NestedEnumDistributionTypeFilter<$PrismaModel> | $Enums.DistributionType
|
35546
|
+
}
|
35547
|
+
|
35486
35548
|
export type IntNullableFilter<$PrismaModel = never> = {
|
35487
35549
|
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
35488
35550
|
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
@@ -35619,6 +35681,7 @@ export namespace Prisma {
|
|
35619
35681
|
distributionChainId?: SortOrder
|
35620
35682
|
campaignId?: SortOrder
|
35621
35683
|
type?: SortOrder
|
35684
|
+
distributionType?: SortOrder
|
35622
35685
|
subType?: SortOrder
|
35623
35686
|
rewardTokenId?: SortOrder
|
35624
35687
|
amount?: SortOrder
|
@@ -35643,6 +35706,7 @@ export namespace Prisma {
|
|
35643
35706
|
distributionChainId?: SortOrder
|
35644
35707
|
campaignId?: SortOrder
|
35645
35708
|
type?: SortOrder
|
35709
|
+
distributionType?: SortOrder
|
35646
35710
|
subType?: SortOrder
|
35647
35711
|
rewardTokenId?: SortOrder
|
35648
35712
|
amount?: SortOrder
|
@@ -35658,6 +35722,7 @@ export namespace Prisma {
|
|
35658
35722
|
distributionChainId?: SortOrder
|
35659
35723
|
campaignId?: SortOrder
|
35660
35724
|
type?: SortOrder
|
35725
|
+
distributionType?: SortOrder
|
35661
35726
|
subType?: SortOrder
|
35662
35727
|
rewardTokenId?: SortOrder
|
35663
35728
|
amount?: SortOrder
|
@@ -35710,6 +35775,16 @@ export namespace Prisma {
|
|
35710
35775
|
_max?: NestedIntFilter<$PrismaModel>
|
35711
35776
|
}
|
35712
35777
|
|
35778
|
+
export type EnumDistributionTypeWithAggregatesFilter<$PrismaModel = never> = {
|
35779
|
+
equals?: $Enums.DistributionType | EnumDistributionTypeFieldRefInput<$PrismaModel>
|
35780
|
+
in?: $Enums.DistributionType[] | ListEnumDistributionTypeFieldRefInput<$PrismaModel>
|
35781
|
+
notIn?: $Enums.DistributionType[] | ListEnumDistributionTypeFieldRefInput<$PrismaModel>
|
35782
|
+
not?: NestedEnumDistributionTypeWithAggregatesFilter<$PrismaModel> | $Enums.DistributionType
|
35783
|
+
_count?: NestedIntFilter<$PrismaModel>
|
35784
|
+
_min?: NestedEnumDistributionTypeFilter<$PrismaModel>
|
35785
|
+
_max?: NestedEnumDistributionTypeFilter<$PrismaModel>
|
35786
|
+
}
|
35787
|
+
|
35713
35788
|
export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
35714
35789
|
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
35715
35790
|
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
@@ -37365,6 +37440,10 @@ export namespace Prisma {
|
|
37365
37440
|
set?: string
|
37366
37441
|
}
|
37367
37442
|
|
37443
|
+
export type EnumDistributionTypeFieldUpdateOperationsInput = {
|
37444
|
+
set?: $Enums.DistributionType
|
37445
|
+
}
|
37446
|
+
|
37368
37447
|
export type NullableIntFieldUpdateOperationsInput = {
|
37369
37448
|
set?: number | null
|
37370
37449
|
increment?: number
|
@@ -39419,6 +39498,13 @@ export namespace Prisma {
|
|
39419
39498
|
not?: NestedIntFilter<$PrismaModel> | number
|
39420
39499
|
}
|
39421
39500
|
|
39501
|
+
export type NestedEnumDistributionTypeFilter<$PrismaModel = never> = {
|
39502
|
+
equals?: $Enums.DistributionType | EnumDistributionTypeFieldRefInput<$PrismaModel>
|
39503
|
+
in?: $Enums.DistributionType[] | ListEnumDistributionTypeFieldRefInput<$PrismaModel>
|
39504
|
+
notIn?: $Enums.DistributionType[] | ListEnumDistributionTypeFieldRefInput<$PrismaModel>
|
39505
|
+
not?: NestedEnumDistributionTypeFilter<$PrismaModel> | $Enums.DistributionType
|
39506
|
+
}
|
39507
|
+
|
39422
39508
|
export type NestedIntNullableFilter<$PrismaModel = never> = {
|
39423
39509
|
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
39424
39510
|
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
@@ -39486,6 +39572,16 @@ export namespace Prisma {
|
|
39486
39572
|
not?: NestedFloatFilter<$PrismaModel> | number
|
39487
39573
|
}
|
39488
39574
|
|
39575
|
+
export type NestedEnumDistributionTypeWithAggregatesFilter<$PrismaModel = never> = {
|
39576
|
+
equals?: $Enums.DistributionType | EnumDistributionTypeFieldRefInput<$PrismaModel>
|
39577
|
+
in?: $Enums.DistributionType[] | ListEnumDistributionTypeFieldRefInput<$PrismaModel>
|
39578
|
+
notIn?: $Enums.DistributionType[] | ListEnumDistributionTypeFieldRefInput<$PrismaModel>
|
39579
|
+
not?: NestedEnumDistributionTypeWithAggregatesFilter<$PrismaModel> | $Enums.DistributionType
|
39580
|
+
_count?: NestedIntFilter<$PrismaModel>
|
39581
|
+
_min?: NestedEnumDistributionTypeFilter<$PrismaModel>
|
39582
|
+
_max?: NestedEnumDistributionTypeFilter<$PrismaModel>
|
39583
|
+
}
|
39584
|
+
|
39489
39585
|
export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
39490
39586
|
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
39491
39587
|
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
@@ -40450,6 +40546,7 @@ export namespace Prisma {
|
|
40450
40546
|
id: string
|
40451
40547
|
campaignId: string
|
40452
40548
|
type: string
|
40549
|
+
distributionType: $Enums.DistributionType
|
40453
40550
|
subType?: number | null
|
40454
40551
|
amount: string
|
40455
40552
|
startTimestamp: bigint | number
|
@@ -40472,6 +40569,7 @@ export namespace Prisma {
|
|
40472
40569
|
distributionChainId: number
|
40473
40570
|
campaignId: string
|
40474
40571
|
type: string
|
40572
|
+
distributionType: $Enums.DistributionType
|
40475
40573
|
subType?: number | null
|
40476
40574
|
rewardTokenId: string
|
40477
40575
|
amount: string
|
@@ -40506,6 +40604,7 @@ export namespace Prisma {
|
|
40506
40604
|
id?: StringFieldUpdateOperationsInput | string
|
40507
40605
|
campaignId?: StringFieldUpdateOperationsInput | string
|
40508
40606
|
type?: StringFieldUpdateOperationsInput | string
|
40607
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
40509
40608
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
40510
40609
|
amount?: StringFieldUpdateOperationsInput | string
|
40511
40610
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -40528,6 +40627,7 @@ export namespace Prisma {
|
|
40528
40627
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
40529
40628
|
campaignId?: StringFieldUpdateOperationsInput | string
|
40530
40629
|
type?: StringFieldUpdateOperationsInput | string
|
40630
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
40531
40631
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
40532
40632
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
40533
40633
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -40546,6 +40646,7 @@ export namespace Prisma {
|
|
40546
40646
|
id: string
|
40547
40647
|
campaignId: string
|
40548
40648
|
type: string
|
40649
|
+
distributionType: $Enums.DistributionType
|
40549
40650
|
subType?: number | null
|
40550
40651
|
amount: string
|
40551
40652
|
startTimestamp: bigint | number
|
@@ -40568,6 +40669,7 @@ export namespace Prisma {
|
|
40568
40669
|
distributionChainId: number
|
40569
40670
|
campaignId: string
|
40570
40671
|
type: string
|
40672
|
+
distributionType: $Enums.DistributionType
|
40571
40673
|
subType?: number | null
|
40572
40674
|
rewardTokenId: string
|
40573
40675
|
amount: string
|
@@ -40602,6 +40704,7 @@ export namespace Prisma {
|
|
40602
40704
|
id?: StringFieldUpdateOperationsInput | string
|
40603
40705
|
campaignId?: StringFieldUpdateOperationsInput | string
|
40604
40706
|
type?: StringFieldUpdateOperationsInput | string
|
40707
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
40605
40708
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
40606
40709
|
amount?: StringFieldUpdateOperationsInput | string
|
40607
40710
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -40624,6 +40727,7 @@ export namespace Prisma {
|
|
40624
40727
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
40625
40728
|
campaignId?: StringFieldUpdateOperationsInput | string
|
40626
40729
|
type?: StringFieldUpdateOperationsInput | string
|
40730
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
40627
40731
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
40628
40732
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
40629
40733
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -40642,6 +40746,7 @@ export namespace Prisma {
|
|
40642
40746
|
id: string
|
40643
40747
|
campaignId: string
|
40644
40748
|
type: string
|
40749
|
+
distributionType: $Enums.DistributionType
|
40645
40750
|
subType?: number | null
|
40646
40751
|
amount: string
|
40647
40752
|
startTimestamp: bigint | number
|
@@ -40664,6 +40769,7 @@ export namespace Prisma {
|
|
40664
40769
|
distributionChainId: number
|
40665
40770
|
campaignId: string
|
40666
40771
|
type: string
|
40772
|
+
distributionType: $Enums.DistributionType
|
40667
40773
|
subType?: number | null
|
40668
40774
|
rewardTokenId: string
|
40669
40775
|
amount: string
|
@@ -40721,6 +40827,7 @@ export namespace Prisma {
|
|
40721
40827
|
id?: StringFieldUpdateOperationsInput | string
|
40722
40828
|
campaignId?: StringFieldUpdateOperationsInput | string
|
40723
40829
|
type?: StringFieldUpdateOperationsInput | string
|
40830
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
40724
40831
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
40725
40832
|
amount?: StringFieldUpdateOperationsInput | string
|
40726
40833
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -40743,6 +40850,7 @@ export namespace Prisma {
|
|
40743
40850
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
40744
40851
|
campaignId?: StringFieldUpdateOperationsInput | string
|
40745
40852
|
type?: StringFieldUpdateOperationsInput | string
|
40853
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
40746
40854
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
40747
40855
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
40748
40856
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -40812,6 +40920,7 @@ export namespace Prisma {
|
|
40812
40920
|
id: string
|
40813
40921
|
campaignId: string
|
40814
40922
|
type: string
|
40923
|
+
distributionType: $Enums.DistributionType
|
40815
40924
|
subType?: number | null
|
40816
40925
|
amount: string
|
40817
40926
|
startTimestamp: bigint | number
|
@@ -40833,6 +40942,7 @@ export namespace Prisma {
|
|
40833
40942
|
distributionChainId: number
|
40834
40943
|
campaignId: string
|
40835
40944
|
type: string
|
40945
|
+
distributionType: $Enums.DistributionType
|
40836
40946
|
subType?: number | null
|
40837
40947
|
rewardTokenId: string
|
40838
40948
|
amount: string
|
@@ -40862,6 +40972,7 @@ export namespace Prisma {
|
|
40862
40972
|
id: string
|
40863
40973
|
campaignId: string
|
40864
40974
|
type: string
|
40975
|
+
distributionType: $Enums.DistributionType
|
40865
40976
|
subType?: number | null
|
40866
40977
|
amount: string
|
40867
40978
|
startTimestamp: bigint | number
|
@@ -40883,6 +40994,7 @@ export namespace Prisma {
|
|
40883
40994
|
computeChainId: number
|
40884
40995
|
campaignId: string
|
40885
40996
|
type: string
|
40997
|
+
distributionType: $Enums.DistributionType
|
40886
40998
|
subType?: number | null
|
40887
40999
|
rewardTokenId: string
|
40888
41000
|
amount: string
|
@@ -41141,6 +41253,7 @@ export namespace Prisma {
|
|
41141
41253
|
distributionChainId?: IntFilter<"Campaign"> | number
|
41142
41254
|
campaignId?: StringFilter<"Campaign"> | string
|
41143
41255
|
type?: StringFilter<"Campaign"> | string
|
41256
|
+
distributionType?: EnumDistributionTypeFilter<"Campaign"> | $Enums.DistributionType
|
41144
41257
|
subType?: IntNullableFilter<"Campaign"> | number | null
|
41145
41258
|
rewardTokenId?: StringFilter<"Campaign"> | string
|
41146
41259
|
amount?: StringFilter<"Campaign"> | string
|
@@ -41465,6 +41578,7 @@ export namespace Prisma {
|
|
41465
41578
|
id: string
|
41466
41579
|
campaignId: string
|
41467
41580
|
type: string
|
41581
|
+
distributionType: $Enums.DistributionType
|
41468
41582
|
subType?: number | null
|
41469
41583
|
amount: string
|
41470
41584
|
startTimestamp: bigint | number
|
@@ -41487,6 +41601,7 @@ export namespace Prisma {
|
|
41487
41601
|
distributionChainId: number
|
41488
41602
|
campaignId: string
|
41489
41603
|
type: string
|
41604
|
+
distributionType: $Enums.DistributionType
|
41490
41605
|
subType?: number | null
|
41491
41606
|
rewardTokenId: string
|
41492
41607
|
amount: string
|
@@ -42103,6 +42218,7 @@ export namespace Prisma {
|
|
42103
42218
|
id: string
|
42104
42219
|
campaignId: string
|
42105
42220
|
type: string
|
42221
|
+
distributionType: $Enums.DistributionType
|
42106
42222
|
subType?: number | null
|
42107
42223
|
amount: string
|
42108
42224
|
startTimestamp: bigint | number
|
@@ -42125,6 +42241,7 @@ export namespace Prisma {
|
|
42125
42241
|
distributionChainId: number
|
42126
42242
|
campaignId: string
|
42127
42243
|
type: string
|
42244
|
+
distributionType: $Enums.DistributionType
|
42128
42245
|
subType?: number | null
|
42129
42246
|
amount: string
|
42130
42247
|
opportunityId: string
|
@@ -42909,6 +43026,7 @@ export namespace Prisma {
|
|
42909
43026
|
id: string
|
42910
43027
|
campaignId: string
|
42911
43028
|
type: string
|
43029
|
+
distributionType: $Enums.DistributionType
|
42912
43030
|
subType?: number | null
|
42913
43031
|
amount: string
|
42914
43032
|
startTimestamp: bigint | number
|
@@ -42931,6 +43049,7 @@ export namespace Prisma {
|
|
42931
43049
|
distributionChainId: number
|
42932
43050
|
campaignId: string
|
42933
43051
|
type: string
|
43052
|
+
distributionType: $Enums.DistributionType
|
42934
43053
|
subType?: number | null
|
42935
43054
|
rewardTokenId: string
|
42936
43055
|
amount: string
|
@@ -42984,6 +43103,7 @@ export namespace Prisma {
|
|
42984
43103
|
id?: StringFieldUpdateOperationsInput | string
|
42985
43104
|
campaignId?: StringFieldUpdateOperationsInput | string
|
42986
43105
|
type?: StringFieldUpdateOperationsInput | string
|
43106
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
42987
43107
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
42988
43108
|
amount?: StringFieldUpdateOperationsInput | string
|
42989
43109
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -43006,6 +43126,7 @@ export namespace Prisma {
|
|
43006
43126
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
43007
43127
|
campaignId?: StringFieldUpdateOperationsInput | string
|
43008
43128
|
type?: StringFieldUpdateOperationsInput | string
|
43129
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
43009
43130
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
43010
43131
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
43011
43132
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -43107,6 +43228,7 @@ export namespace Prisma {
|
|
43107
43228
|
id: string
|
43108
43229
|
campaignId: string
|
43109
43230
|
type: string
|
43231
|
+
distributionType: $Enums.DistributionType
|
43110
43232
|
subType?: number | null
|
43111
43233
|
amount: string
|
43112
43234
|
startTimestamp: bigint | number
|
@@ -43129,6 +43251,7 @@ export namespace Prisma {
|
|
43129
43251
|
distributionChainId: number
|
43130
43252
|
campaignId: string
|
43131
43253
|
type: string
|
43254
|
+
distributionType: $Enums.DistributionType
|
43132
43255
|
subType?: number | null
|
43133
43256
|
rewardTokenId: string
|
43134
43257
|
amount: string
|
@@ -43620,6 +43743,7 @@ export namespace Prisma {
|
|
43620
43743
|
id: string
|
43621
43744
|
campaignId: string
|
43622
43745
|
type: string
|
43746
|
+
distributionType: $Enums.DistributionType
|
43623
43747
|
subType?: number | null
|
43624
43748
|
amount: string
|
43625
43749
|
startTimestamp: bigint | number
|
@@ -43642,6 +43766,7 @@ export namespace Prisma {
|
|
43642
43766
|
distributionChainId: number
|
43643
43767
|
campaignId: string
|
43644
43768
|
type: string
|
43769
|
+
distributionType: $Enums.DistributionType
|
43645
43770
|
subType?: number | null
|
43646
43771
|
rewardTokenId: string
|
43647
43772
|
amount: string
|
@@ -43742,6 +43867,7 @@ export namespace Prisma {
|
|
43742
43867
|
id?: StringFieldUpdateOperationsInput | string
|
43743
43868
|
campaignId?: StringFieldUpdateOperationsInput | string
|
43744
43869
|
type?: StringFieldUpdateOperationsInput | string
|
43870
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
43745
43871
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
43746
43872
|
amount?: StringFieldUpdateOperationsInput | string
|
43747
43873
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -43764,6 +43890,7 @@ export namespace Prisma {
|
|
43764
43890
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
43765
43891
|
campaignId?: StringFieldUpdateOperationsInput | string
|
43766
43892
|
type?: StringFieldUpdateOperationsInput | string
|
43893
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
43767
43894
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
43768
43895
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
43769
43896
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -44414,6 +44541,7 @@ export namespace Prisma {
|
|
44414
44541
|
distributionChainId: number
|
44415
44542
|
campaignId: string
|
44416
44543
|
type: string
|
44544
|
+
distributionType: $Enums.DistributionType
|
44417
44545
|
subType?: number | null
|
44418
44546
|
rewardTokenId: string
|
44419
44547
|
amount: string
|
@@ -44429,6 +44557,7 @@ export namespace Prisma {
|
|
44429
44557
|
computeChainId: number
|
44430
44558
|
campaignId: string
|
44431
44559
|
type: string
|
44560
|
+
distributionType: $Enums.DistributionType
|
44432
44561
|
subType?: number | null
|
44433
44562
|
rewardTokenId: string
|
44434
44563
|
amount: string
|
@@ -44515,6 +44644,7 @@ export namespace Prisma {
|
|
44515
44644
|
id?: StringFieldUpdateOperationsInput | string
|
44516
44645
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44517
44646
|
type?: StringFieldUpdateOperationsInput | string
|
44647
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
44518
44648
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44519
44649
|
amount?: StringFieldUpdateOperationsInput | string
|
44520
44650
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -44536,6 +44666,7 @@ export namespace Prisma {
|
|
44536
44666
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
44537
44667
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44538
44668
|
type?: StringFieldUpdateOperationsInput | string
|
44669
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
44539
44670
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44540
44671
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
44541
44672
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -44556,6 +44687,7 @@ export namespace Prisma {
|
|
44556
44687
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
44557
44688
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44558
44689
|
type?: StringFieldUpdateOperationsInput | string
|
44690
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
44559
44691
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44560
44692
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
44561
44693
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -44570,6 +44702,7 @@ export namespace Prisma {
|
|
44570
44702
|
id?: StringFieldUpdateOperationsInput | string
|
44571
44703
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44572
44704
|
type?: StringFieldUpdateOperationsInput | string
|
44705
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
44573
44706
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44574
44707
|
amount?: StringFieldUpdateOperationsInput | string
|
44575
44708
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -44591,6 +44724,7 @@ export namespace Prisma {
|
|
44591
44724
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
44592
44725
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44593
44726
|
type?: StringFieldUpdateOperationsInput | string
|
44727
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
44594
44728
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44595
44729
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
44596
44730
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -44611,6 +44745,7 @@ export namespace Prisma {
|
|
44611
44745
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
44612
44746
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44613
44747
|
type?: StringFieldUpdateOperationsInput | string
|
44748
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
44614
44749
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44615
44750
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
44616
44751
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -44813,6 +44948,7 @@ export namespace Prisma {
|
|
44813
44948
|
distributionChainId: number
|
44814
44949
|
campaignId: string
|
44815
44950
|
type: string
|
44951
|
+
distributionType: $Enums.DistributionType
|
44816
44952
|
subType?: number | null
|
44817
44953
|
rewardTokenId: string
|
44818
44954
|
amount: string
|
@@ -44894,6 +45030,7 @@ export namespace Prisma {
|
|
44894
45030
|
id?: StringFieldUpdateOperationsInput | string
|
44895
45031
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44896
45032
|
type?: StringFieldUpdateOperationsInput | string
|
45033
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
44897
45034
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44898
45035
|
amount?: StringFieldUpdateOperationsInput | string
|
44899
45036
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -44916,6 +45053,7 @@ export namespace Prisma {
|
|
44916
45053
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
44917
45054
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44918
45055
|
type?: StringFieldUpdateOperationsInput | string
|
45056
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
44919
45057
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44920
45058
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
44921
45059
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -44936,6 +45074,7 @@ export namespace Prisma {
|
|
44936
45074
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
44937
45075
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44938
45076
|
type?: StringFieldUpdateOperationsInput | string
|
45077
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
44939
45078
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44940
45079
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
44941
45080
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -45211,6 +45350,7 @@ export namespace Prisma {
|
|
45211
45350
|
distributionChainId: number
|
45212
45351
|
campaignId: string
|
45213
45352
|
type: string
|
45353
|
+
distributionType: $Enums.DistributionType
|
45214
45354
|
subType?: number | null
|
45215
45355
|
amount: string
|
45216
45356
|
opportunityId: string
|
@@ -45316,6 +45456,7 @@ export namespace Prisma {
|
|
45316
45456
|
id?: StringFieldUpdateOperationsInput | string
|
45317
45457
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45318
45458
|
type?: StringFieldUpdateOperationsInput | string
|
45459
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
45319
45460
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45320
45461
|
amount?: StringFieldUpdateOperationsInput | string
|
45321
45462
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -45338,6 +45479,7 @@ export namespace Prisma {
|
|
45338
45479
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
45339
45480
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45340
45481
|
type?: StringFieldUpdateOperationsInput | string
|
45482
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
45341
45483
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45342
45484
|
amount?: StringFieldUpdateOperationsInput | string
|
45343
45485
|
opportunityId?: StringFieldUpdateOperationsInput | string
|
@@ -45358,6 +45500,7 @@ export namespace Prisma {
|
|
45358
45500
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
45359
45501
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45360
45502
|
type?: StringFieldUpdateOperationsInput | string
|
45503
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
45361
45504
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45362
45505
|
amount?: StringFieldUpdateOperationsInput | string
|
45363
45506
|
opportunityId?: StringFieldUpdateOperationsInput | string
|
@@ -45572,6 +45715,7 @@ export namespace Prisma {
|
|
45572
45715
|
distributionChainId: number
|
45573
45716
|
campaignId: string
|
45574
45717
|
type: string
|
45718
|
+
distributionType: $Enums.DistributionType
|
45575
45719
|
subType?: number | null
|
45576
45720
|
rewardTokenId: string
|
45577
45721
|
amount: string
|
@@ -45648,6 +45792,7 @@ export namespace Prisma {
|
|
45648
45792
|
id?: StringFieldUpdateOperationsInput | string
|
45649
45793
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45650
45794
|
type?: StringFieldUpdateOperationsInput | string
|
45795
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
45651
45796
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45652
45797
|
amount?: StringFieldUpdateOperationsInput | string
|
45653
45798
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -45670,6 +45815,7 @@ export namespace Prisma {
|
|
45670
45815
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
45671
45816
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45672
45817
|
type?: StringFieldUpdateOperationsInput | string
|
45818
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
45673
45819
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45674
45820
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
45675
45821
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -45690,6 +45836,7 @@ export namespace Prisma {
|
|
45690
45836
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
45691
45837
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45692
45838
|
type?: StringFieldUpdateOperationsInput | string
|
45839
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
45693
45840
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45694
45841
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
45695
45842
|
amount?: StringFieldUpdateOperationsInput | string
|